summaryrefslogtreecommitdiff
path: root/include/clew/clew.h
blob: f932b341cde20503ab5fd4e412fe88478942031e (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
#ifndef CLEW_CLEW_H_INCLUDED
#define CLEW_CLEW_H_INCLUDED

//////////////////////////////////////////////////////////////////////////
//  Copyright (c) 2009-2011 Organic Vectory B.V.
//  Written by George van Venrooij
//
//  Distributed under the Boost Software License, Version 1.0.
//  (See accompanying file license.txt)
//////////////////////////////////////////////////////////////////////////

//! \file clew.h
//! \brief OpenCL run-time loader header
//!
//! This file contains a copy of the contents of CL.H and CL_PLATFORM.H from the
//! official OpenCL spec. The purpose of this code is to load the OpenCL dynamic
//! library at run-time and thus allow the executable to function on many
//! platforms regardless of the vendor of the OpenCL driver actually installed.
//! Some of the techniques used here were inspired by work done in the GLEW
//! library (http://glew.sourceforge.net/)

//  Run-time dynamic linking functionality based on concepts used in GLEW
#ifdef  __OPENCL_CL_H
#error cl.h included before clew.h
#endif

#ifdef  __OPENCL_CL_PLATFORM_H
#error cl_platform.h included before clew.h
#endif

#ifndef CLCC_GENERATE_DOCUMENTATION
//  Prevent cl.h inclusion
#define __OPENCL_CL_H
//  Prevent cl_platform.h inclusion
#define __CL_PLATFORM_H
#endif  //  CLCC_GENERATE_DOCUMENTATION

/*******************************************************************************
* Copyright (c) 2008-2009 The Khronos Group Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and/or associated documentation files (the
* "Materials"), to deal in the Materials without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Materials, and to
* permit persons to whom the Materials are furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Materials.
*
* THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
******************************************************************************/
#ifdef __APPLE__
/* Contains #defines for AVAILABLE_MAC_OS_X_VERSION_10_6_AND_LATER below */
#include <AvailabilityMacros.h>
#endif

#ifdef __cplusplus
extern "C" {
#endif

#ifndef CLCC_GENERATE_DOCUMENTATION

#if defined(_WIN32)
#define CL_API_ENTRY
#define CL_API_CALL __stdcall
#else
#define CL_API_ENTRY
#define CL_API_CALL
#endif

#if defined(__APPLE__)
#define CL_API_SUFFIX__VERSION_1_0   AVAILABLE_MAC_OS_X_VERSION_10_6_AND_LATER
#define CL_EXTENSION_WEAK_LINK       __attribute__((weak_import))
#else
#define CL_API_SUFFIX__VERSION_1_0
#define CL_EXTENSION_WEAK_LINK
#endif

#if defined(_WIN32) && defined(_MSC_VER)

/* scalar types  */
typedef signed   __int8         cl_char;
typedef unsigned __int8         cl_uchar;
typedef signed   __int16        cl_short;
typedef unsigned __int16        cl_ushort;
typedef signed   __int32        cl_int;
typedef unsigned __int32        cl_uint;
typedef signed   __int64        cl_long;
typedef unsigned __int64        cl_ulong;

typedef unsigned __int16        cl_half;
typedef float                   cl_float;
typedef double                  cl_double;


/*
* Vector types
*
*  Note:   OpenCL requires that all types be naturally aligned.
*          This means that vector types must be naturally aligned.
*          For example, a vector of four floats must be aligned to
*          a 16 byte boundary (calculated as 4 * the natural 4-byte
*          alignment of the float).  The alignment qualifiers here
*          will only function properly if your compiler supports them
*          and if you don't actively work to defeat them.  For example,
*          in order for a cl_float4 to be 16 byte aligned in a struct,
*          the start of the struct must itself be 16-byte aligned.
*
*          Maintaining proper alignment is the user's responsibility.
*/
typedef signed   __int8          cl_char2[2];
typedef signed   __int8          cl_char4[4];
typedef signed   __int8          cl_char8[8];
typedef signed   __int8          cl_char16[16];
typedef unsigned __int8         cl_uchar2[2];
typedef unsigned __int8         cl_uchar4[4];
typedef unsigned __int8         cl_uchar8[8];
typedef unsigned __int8         cl_uchar16[16];

typedef signed   __int16         cl_short2[2];
typedef signed   __int16         cl_short4[4];
typedef signed   __int16         cl_short8[8];
typedef signed   __int16         cl_short16[16];
typedef unsigned __int16        cl_ushort2[2];
typedef unsigned __int16        cl_ushort4[4];
typedef unsigned __int16        cl_ushort8[8];
typedef unsigned __int16        cl_ushort16[16];

typedef signed   __int32         cl_int2[2];
typedef signed   __int32         cl_int4[4];
typedef signed   __int32         cl_int8[8];
typedef signed   __int32         cl_int16[16];
typedef unsigned __int32        cl_uint2[2];
typedef unsigned __int32        cl_uint4[4];
typedef unsigned __int32        cl_uint8[8];
typedef unsigned __int32        cl_uint16[16];

typedef signed   __int64         cl_long2[2];
typedef signed   __int64         cl_long4[4];
typedef signed   __int64         cl_long8[8];
typedef signed   __int64         cl_long16[16];
typedef unsigned __int64        cl_ulong2[2];
typedef unsigned __int64        cl_ulong4[4];
typedef unsigned __int64        cl_ulong8[8];
typedef unsigned __int64        cl_ulong16[16];

typedef float           cl_float2[2];
typedef float           cl_float4[4];
typedef float           cl_float8[8];
typedef float           cl_float16[16];

typedef double          cl_double2[2];
typedef double          cl_double4[4];
typedef double          cl_double8[8];
typedef double          cl_double16[16];
/* There are no vector types for half */

#else

#include <stdint.h>

/* scalar types  */
typedef int8_t          cl_char;
typedef uint8_t         cl_uchar;
typedef int16_t         cl_short    __attribute__((aligned(2)));
typedef uint16_t        cl_ushort   __attribute__((aligned(2)));
typedef int32_t         cl_int      __attribute__((aligned(4)));
typedef uint32_t        cl_uint     __attribute__((aligned(4)));
typedef int64_t         cl_long     __attribute__((aligned(8)));
typedef uint64_t        cl_ulong    __attribute__((aligned(8)));

typedef uint16_t        cl_half     __attribute__((aligned(2)));
typedef float           cl_float    __attribute__((aligned(4)));
typedef double          cl_double   __attribute__((aligned(8)));

/*
* Vector types
*
*  Note:   OpenCL requires that all types be naturally aligned.
*          This means that vector types must be naturally aligned.
*          For example, a vector of four floats must be aligned to
*          a 16 byte boundary (calculated as 4 * the natural 4-byte
*          alignment of the float).  The alignment qualifiers here
*          will only function properly if your compiler supports them
*          and if you don't actively work to defeat them.  For example,
*          in order for a cl_float4 to be 16 byte aligned in a struct,
*          the start of the struct must itself be 16-byte aligned.
*
*          Maintaining proper alignment is the user's responsibility.
*/
typedef int8_t          cl_char2[2]     __attribute__((aligned(2)));
typedef int8_t          cl_char4[4]     __attribute__((aligned(4)));
typedef int8_t          cl_char8[8]     __attribute__((aligned(8)));
typedef int8_t          cl_char16[16]   __attribute__((aligned(16)));
typedef uint8_t         cl_uchar2[2]    __attribute__((aligned(2)));
typedef uint8_t         cl_uchar4[4]    __attribute__((aligned(4)));
typedef uint8_t         cl_uchar8[8]    __attribute__((aligned(8)));
typedef uint8_t         cl_uchar16[16]  __attribute__((aligned(16)));

typedef int16_t         cl_short2[2]     __attribute__((aligned(4)));
typedef int16_t         cl_short4[4]     __attribute__((aligned(8)));
typedef int16_t         cl_short8[8]     __attribute__((aligned(16)));
typedef int16_t         cl_short16[16]   __attribute__((aligned(32)));
typedef uint16_t        cl_ushort2[2]    __attribute__((aligned(4)));
typedef uint16_t        cl_ushort4[4]    __attribute__((aligned(8)));
typedef uint16_t        cl_ushort8[8]    __attribute__((aligned(16)));
typedef uint16_t        cl_ushort16[16]  __attribute__((aligned(32)));

typedef int32_t         cl_int2[2]      __attribute__((aligned(8)));
typedef int32_t         cl_int4[4]      __attribute__((aligned(16)));
typedef int32_t         cl_int8[8]      __attribute__((aligned(32)));
typedef int32_t         cl_int16[16]    __attribute__((aligned(64)));
typedef uint32_t        cl_uint2[2]     __attribute__((aligned(8)));
typedef uint32_t        cl_uint4[4]     __attribute__((aligned(16)));
typedef uint32_t        cl_uint8[8]     __attribute__((aligned(32)));
typedef uint32_t        cl_uint16[16]   __attribute__((aligned(64)));

typedef int64_t         cl_long2[2]     __attribute__((aligned(16)));
typedef int64_t         cl_long4[4]     __attribute__((aligned(32)));
typedef int64_t         cl_long8[8]     __attribute__((aligned(64)));
typedef int64_t         cl_long16[16]   __attribute__((aligned(128)));
typedef uint64_t        cl_ulong2[2]    __attribute__((aligned(16)));
typedef uint64_t        cl_ulong4[4]    __attribute__((aligned(32)));
typedef uint64_t        cl_ulong8[8]    __attribute__((aligned(64)));
typedef uint64_t        cl_ulong16[16]  __attribute__((aligned(128)));

typedef float           cl_float2[2]    __attribute__((aligned(8)));
typedef float           cl_float4[4]    __attribute__((aligned(16)));
typedef float           cl_float8[8]    __attribute__((aligned(32)));
typedef float           cl_float16[16]  __attribute__((aligned(64)));

typedef double          cl_double2[2]   __attribute__((aligned(16)));
typedef double          cl_double4[4]   __attribute__((aligned(32)));
typedef double          cl_double8[8]   __attribute__((aligned(64)));
typedef double          cl_double16[16] __attribute__((aligned(128)));

/* There are no vector types for half */

#endif

/******************************************************************************/

// Macro names and corresponding values defined by OpenCL

#define CL_SCHAR_MAX        127
#define CL_SCHAR_MIN        (-127-1)
#define CL_SHRT_MIN         (-32767-1)
#define CL_INT_MIN          (-2147483647-1)
#define CL_LONG_MAX         ((cl_long) 0x7FFFFFFFFFFFFFFFLL)
#define CL_LONG_MIN         ((cl_long) -0x7FFFFFFFFFFFFFFFLL - 1LL)
#define CL_ULONG_MAX        ((cl_ulong) 0xFFFFFFFFFFFFFFFFULL)

#define CL_FLT_MAX_10_EXP   +38
#define CL_FLT_MAX_EXP      +128
#define CL_FLT_MIN_10_EXP   -37
#define CL_FLT_MIN_EXP      -125
#if defined(_MSC_VER)
// MSVC doesn't understand hex floats
#define CL_FLT_MAX          3.402823466e+38F
#define CL_FLT_MIN          1.175494351e-38F
#define CL_FLT_EPSILON      1.192092896e-07F
#else
#define CL_FLT_MAX          0x1.fffffep127f
#define CL_FLT_MIN          0x1.0p-126f
#define CL_FLT_EPSILON      0x1.0p-23f
#endif

#define CL_DBL_MAX_10_EXP   +308
#define CL_DBL_MAX_EXP      +1024
#define CL_DBL_MIN_10_EXP   -307
#define CL_DBL_MIN_EXP      -1021
#if defined(_MSC_VER)
// MSVC doesn't understand hex floats
#define CL_DBL_MAX          1.7976931348623158e+308
#define CL_DBL_MIN          2.2250738585072014e-308
#define CL_DBL_EPSILON      2.2204460492503131e-016
#else
#define CL_DBL_MAX          0x1.fffffffffffffp1023
#define CL_DBL_MIN          0x1.0p-1022
#define CL_DBL_EPSILON      0x1.0p-52
#endif

#include <stddef.h>


//  CL.h contents
/******************************************************************************/

typedef struct _cl_platform_id *    cl_platform_id;
typedef struct _cl_device_id *      cl_device_id;
typedef struct _cl_context *        cl_context;
typedef struct _cl_command_queue *  cl_command_queue;
typedef struct _cl_mem *            cl_mem;
typedef struct _cl_program *        cl_program;
typedef struct _cl_kernel *         cl_kernel;
typedef struct _cl_event *          cl_event;
typedef struct _cl_sampler *        cl_sampler;

typedef cl_uint             cl_bool;                     /* WARNING!  Unlike cl_ types in cl_platform.h, cl_bool is not guaranteed to be the same size as the bool in kernels. */
typedef cl_ulong            cl_bitfield;
typedef cl_bitfield         cl_device_type;
typedef cl_uint             cl_platform_info;
typedef cl_uint             cl_device_info;
typedef cl_bitfield         cl_device_address_info;
typedef cl_bitfield         cl_device_fp_config;
typedef cl_uint             cl_device_mem_cache_type;
typedef cl_uint             cl_device_local_mem_type;
typedef cl_bitfield         cl_device_exec_capabilities;
typedef cl_bitfield         cl_command_queue_properties;

typedef intptr_t            cl_context_properties;
typedef cl_uint             cl_context_info;
typedef cl_uint             cl_command_queue_info;
typedef cl_uint             cl_channel_order;
typedef cl_uint             cl_channel_type;
typedef cl_bitfield         cl_mem_flags;
typedef cl_uint             cl_mem_object_type;
typedef cl_uint             cl_mem_info;
typedef cl_uint             cl_image_info;
typedef cl_uint             cl_addressing_mode;
typedef cl_uint             cl_filter_mode;
typedef cl_uint             cl_sampler_info;
typedef cl_bitfield         cl_map_flags;
typedef cl_uint             cl_program_info;
typedef cl_uint             cl_program_build_info;
typedef cl_int              cl_build_status;
typedef cl_uint             cl_kernel_info;
typedef cl_uint             cl_kernel_work_group_info;
typedef cl_uint             cl_event_info;
typedef cl_uint             cl_command_type;
typedef cl_uint             cl_profiling_info;

typedef struct {
    cl_channel_order        image_channel_order;
    cl_channel_type         image_channel_data_type;
} cl_image_format;



/******************************************************************************/

// Error Codes
#define CL_SUCCESS                                  0
#define CL_DEVICE_NOT_FOUND                         -1
#define CL_DEVICE_NOT_AVAILABLE                     -2
#define CL_COMPILER_NOT_AVAILABLE                   -3
#define CL_MEM_OBJECT_ALLOCATION_FAILURE            -4
#define CL_OUT_OF_RESOURCES                         -5
#define CL_OUT_OF_HOST_MEMORY                       -6
#define CL_PROFILING_INFO_NOT_AVAILABLE             -7
#define CL_MEM_COPY_OVERLAP                         -8
#define CL_IMAGE_FORMAT_MISMATCH                    -9
#define CL_IMAGE_FORMAT_NOT_SUPPORTED               -10
#define CL_BUILD_PROGRAM_FAILURE                    -11
#define CL_MAP_FAILURE                              -12

#define CL_INVALID_VALUE                            -30
#define CL_INVALID_DEVICE_TYPE                      -31
#define CL_INVALID_PLATFORM                         -32
#define CL_INVALID_DEVICE                           -33
#define CL_INVALID_CONTEXT                          -34
#define CL_INVALID_QUEUE_PROPERTIES                 -35
#define CL_INVALID_COMMAND_QUEUE                    -36
#define CL_INVALID_HOST_PTR                         -37
#define CL_INVALID_MEM_OBJECT                       -38
#define CL_INVALID_IMAGE_FORMAT_DESCRIPTOR          -39
#define CL_INVALID_IMAGE_SIZE                       -40
#define CL_INVALID_SAMPLER                          -41
#define CL_INVALID_BINARY                           -42
#define CL_INVALID_BUILD_OPTIONS                    -43
#define CL_INVALID_PROGRAM                          -44
#define CL_INVALID_PROGRAM_EXECUTABLE               -45
#define CL_INVALID_KERNEL_NAME                      -46
#define CL_INVALID_KERNEL_DEFINITION                -47
#define CL_INVALID_KERNEL                           -48
#define CL_INVALID_ARG_INDEX                        -49
#define CL_INVALID_ARG_VALUE                        -50
#define CL_INVALID_ARG_SIZE                         -51
#define CL_INVALID_KERNEL_ARGS                      -52
#define CL_INVALID_WORK_DIMENSION                   -53
#define CL_INVALID_WORK_GROUP_SIZE                  -54
#define CL_INVALID_WORK_ITEM_SIZE                   -55
#define CL_INVALID_GLOBAL_OFFSET                    -56
#define CL_INVALID_EVENT_WAIT_LIST                  -57
#define CL_INVALID_EVENT                            -58
#define CL_INVALID_OPERATION                        -59
#define CL_INVALID_GL_OBJECT                        -60
#define CL_INVALID_BUFFER_SIZE                      -61
#define CL_INVALID_MIP_LEVEL                        -62
#define CL_INVALID_GLOBAL_WORK_SIZE                 -63

// cl_bool
#define CL_TRUE                                     1

// cl_platform_info
#define CL_PLATFORM_PROFILE                         0x0900
#define CL_PLATFORM_VERSION                         0x0901
#define CL_PLATFORM_NAME                            0x0902
#define CL_PLATFORM_VENDOR                          0x0903
#define CL_PLATFORM_EXTENSIONS                      0x0904

// cl_device_type - bitfield
#define CL_DEVICE_TYPE_DEFAULT                      (1 << 0)
#define CL_DEVICE_TYPE_CPU                          (1 << 1)
#define CL_DEVICE_TYPE_GPU                          (1 << 2)
#define CL_DEVICE_TYPE_ACCELERATOR                  (1 << 3)
#define CL_DEVICE_TYPE_ALL                          0xFFFFFFFF

// cl_device_info
#define CL_DEVICE_MAX_COMPUTE_UNITS                 0x1002
#define CL_DEVICE_PREFERRED_VECTOR_WIDTH_FLOAT      0x100A
#define CL_DEVICE_MAX_CLOCK_FREQUENCY               0x100C
#define CL_DEVICE_GLOBAL_MEM_SIZE                   0x101F
#define CL_DEVICE_NAME                              0x102B
#define CL_DEVICE_VENDOR                            0x102C
#define CL_DRIVER_VERSION                           0x102D
#define CL_DEVICE_VERSION                           0x102F
#define CL_DEVICE_EXTENSIONS                        0x1030
#define CL_DEVICE_PLATFORM                          0x1031

// cl_device_fp_config - bitfield
#define CL_FP_DENORM                                (1 << 0)
#define CL_FP_INF_NAN                               (1 << 1)
#define CL_FP_ROUND_TO_NEAREST                      (1 << 2)
#define CL_FP_ROUND_TO_ZERO                         (1 << 3)
#define CL_FP_ROUND_TO_INF                          (1 << 4)
#define CL_FP_FMA                                   (1 << 5)

// cl_device_exec_capabilities - bitfield
#define CL_EXEC_KERNEL                              (1 << 0)
#define CL_EXEC_NATIVE_KERNEL                       (1 << 1)

// cl_command_queue_properties - bitfield
#define CL_QUEUE_OUT_OF_ORDER_EXEC_MODE_ENABLE      (1 << 0)
#define CL_QUEUE_PROFILING_ENABLE                   (1 << 1)

// cl_context_info
#define CL_CONTEXT_DEVICES                          0x1081

// cl_context_properties
#define CL_CONTEXT_PLATFORM                         0x1084

// cl_mem_flags - bitfield
#define CL_MEM_READ_WRITE                           (1 << 0)
#define CL_MEM_WRITE_ONLY                           (1 << 1)
#define CL_MEM_READ_ONLY                            (1 << 2)
#define CL_MEM_USE_HOST_PTR                         (1 << 3)
#define CL_MEM_ALLOC_HOST_PTR                       (1 << 4)
#define CL_MEM_COPY_HOST_PTR                        (1 << 5)

// cl_map_flags - bitfield
#define CL_MAP_READ                                 (1 << 0)
#define CL_MAP_WRITE                                (1 << 1)

// cl_program_info
#define CL_PROGRAM_NUM_DEVICES                      0x1162
#define CL_PROGRAM_DEVICES                          0x1163
#define CL_PROGRAM_BINARY_SIZES                     0x1165
#define CL_PROGRAM_BINARIES                         0x1166

// cl_program_build_info
#define CL_PROGRAM_BUILD_STATUS                     0x1181
#define CL_PROGRAM_BUILD_LOG                        0x1183

// cl_build_status
#define CL_BUILD_NONE                               -1
#define CL_BUILD_ERROR                              -2
#define CL_BUILD_IN_PROGRESS                        -3

/********************************************************************************************************/

/********************************************************************************************************/

//  Function signature typedef's

// Platform API
typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLGETPLATFORMIDS)(cl_uint          /* num_entries */,
                 cl_platform_id * /* platforms */,
                 cl_uint *        /* num_platforms */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLGETPLATFORMINFO)(cl_platform_id   /* platform */,
                  cl_platform_info /* param_name */,
                  size_t           /* param_value_size */,
                  void *           /* param_value */,
                  size_t *         /* param_value_size_ret */) CL_API_SUFFIX__VERSION_1_0;

// Device APIs
typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLGETDEVICEIDS)(cl_platform_id   /* platform */,
               cl_device_type   /* device_type */,
               cl_uint          /* num_entries */,
               cl_device_id *   /* devices */,
               cl_uint *        /* num_devices */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLGETDEVICEINFO)(cl_device_id    /* device */,
                cl_device_info  /* param_name */,
                size_t          /* param_value_size */,
                void *          /* param_value */,
                size_t *        /* param_value_size_ret */) CL_API_SUFFIX__VERSION_1_0;

// Context APIs
typedef CL_API_ENTRY cl_context (CL_API_CALL *
PFNCLCREATECONTEXT)(const cl_context_properties * /* properties */,
                cl_uint                       /* num_devices */,
                const cl_device_id *          /* devices */,
                void (*pfn_notify)(const char *, const void *, size_t, void *) /* pfn_notify */,
                void *                        /* user_data */,
                cl_int *                      /* errcode_ret */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_context (CL_API_CALL *
PFNCLCREATECONTEXTFROMTYPE)(const cl_context_properties * /* properties */,
                        cl_device_type                /* device_type */,
                        void (*pfn_notify)(const char *, const void *, size_t, void *) /* pfn_notify */,
                        void *                        /* user_data */,
                        cl_int *                      /* errcode_ret */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLRETAINCONTEXT)(cl_context /* context */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLRELEASECONTEXT)(cl_context /* context */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLGETCONTEXTINFO)(cl_context         /* context */,
                 cl_context_info    /* param_name */,
                 size_t             /* param_value_size */,
                 void *             /* param_value */,
                 size_t *           /* param_value_size_ret */) CL_API_SUFFIX__VERSION_1_0;

// Command Queue APIs
typedef CL_API_ENTRY cl_command_queue (CL_API_CALL *
PFNCLCREATECOMMANDQUEUE)(cl_context                     /* context */,
                     cl_device_id                   /* device */,
                     cl_command_queue_properties    /* properties */,
                     cl_int *                       /* errcode_ret */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLRETAINCOMMANDQUEUE)(cl_command_queue /* command_queue */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLRELEASECOMMANDQUEUE)(cl_command_queue /* command_queue */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLGETCOMMANDQUEUEINFO)(cl_command_queue      /* command_queue */,
                      cl_command_queue_info /* param_name */,
                      size_t                /* param_value_size */,
                      void *                /* param_value */,
                      size_t *              /* param_value_size_ret */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLSETCOMMANDQUEUEPROPERTY)(cl_command_queue              /* command_queue */,
                          cl_command_queue_properties   /* properties */,
                          cl_bool                        /* enable */,
                          cl_command_queue_properties * /* old_properties */) CL_API_SUFFIX__VERSION_1_0;

// Memory Object APIs
typedef CL_API_ENTRY cl_mem (CL_API_CALL *
PFNCLCREATEBUFFER)(cl_context   /* context */,
               cl_mem_flags /* flags */,
               size_t       /* size */,
               void *       /* host_ptr */,
               cl_int *     /* errcode_ret */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_mem (CL_API_CALL *
PFNCLCREATEIMAGE2D)(cl_context              /* context */,
                cl_mem_flags            /* flags */,
                const cl_image_format * /* image_format */,
                size_t                  /* image_width */,
                size_t                  /* image_height */,
                size_t                  /* image_row_pitch */,
                void *                  /* host_ptr */,
                cl_int *                /* errcode_ret */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_mem (CL_API_CALL *
PFNCLCREATEIMAGE3D)(cl_context              /* context */,
                cl_mem_flags            /* flags */,
                const cl_image_format * /* image_format */,
                size_t                  /* image_width */,
                size_t                  /* image_height */,
                size_t                  /* image_depth */,
                size_t                  /* image_row_pitch */,
                size_t                  /* image_slice_pitch */,
                void *                  /* host_ptr */,
                cl_int *                /* errcode_ret */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLRETAINMEMOBJECT)(cl_mem /* memobj */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLRELEASEMEMOBJECT)(cl_mem /* memobj */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLGETSUPPORTEDIMAGEFORMATS)(cl_context           /* context */,
                           cl_mem_flags         /* flags */,
                           cl_mem_object_type   /* image_type */,
                           cl_uint              /* num_entries */,
                           cl_image_format *    /* image_formats */,
                           cl_uint *            /* num_image_formats */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLGETMEMOBJECTINFO)(cl_mem           /* memobj */,
                   cl_mem_info      /* param_name */,
                   size_t           /* param_value_size */,
                   void *           /* param_value */,
                   size_t *         /* param_value_size_ret */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLGETIMAGEINFO)(cl_mem           /* image */,
               cl_image_info    /* param_name */,
               size_t           /* param_value_size */,
               void *           /* param_value */,
               size_t *         /* param_value_size_ret */) CL_API_SUFFIX__VERSION_1_0;

// Sampler APIs
typedef CL_API_ENTRY cl_sampler (CL_API_CALL *
PFNCLCREATESAMPLER)(cl_context          /* context */,
                cl_bool             /* normalized_coords */,
                cl_addressing_mode  /* addressing_mode */,
                cl_filter_mode      /* filter_mode */,
                cl_int *            /* errcode_ret */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLRETAINSAMPLER)(cl_sampler /* sampler */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLRELEASESAMPLER)(cl_sampler /* sampler */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLGETSAMPLERINFO)(cl_sampler         /* sampler */,
                 cl_sampler_info    /* param_name */,
                 size_t             /* param_value_size */,
                 void *             /* param_value */,
                 size_t *           /* param_value_size_ret */) CL_API_SUFFIX__VERSION_1_0;

// Program Object APIs
typedef CL_API_ENTRY cl_program (CL_API_CALL *
PFNCLCREATEPROGRAMWITHSOURCE)(cl_context        /* context */,
                          cl_uint           /* count */,
                          const char **     /* strings */,
                          const size_t *    /* lengths */,
                          cl_int *          /* errcode_ret */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_program (CL_API_CALL *
PFNCLCREATEPROGRAMWITHBINARY)(cl_context                     /* context */,
                          cl_uint                        /* num_devices */,
                          const cl_device_id *           /* device_list */,
                          const size_t *                 /* lengths */,
                          const unsigned char **         /* binaries */,
                          cl_int *                       /* binary_status */,
                          cl_int *                       /* errcode_ret */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLRETAINPROGRAM)(cl_program /* program */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLRELEASEPROGRAM)(cl_program /* program */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLBUILDPROGRAM)(cl_program           /* program */,
               cl_uint              /* num_devices */,
               const cl_device_id * /* device_list */,
               const char *         /* options */,
               void (*pfn_notify)(cl_program /* program */, void * /* user_data */),
               void *               /* user_data */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLUNLOADCOMPILER)(void) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLGETPROGRAMINFO)(cl_program         /* program */,
                 cl_program_info    /* param_name */,
                 size_t             /* param_value_size */,
                 void *             /* param_value */,
                 size_t *           /* param_value_size_ret */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLGETPROGRAMBUILDINFO)(cl_program            /* program */,
                      cl_device_id          /* device */,
                      cl_program_build_info /* param_name */,
                      size_t                /* param_value_size */,
                      void *                /* param_value */,
                      size_t *              /* param_value_size_ret */) CL_API_SUFFIX__VERSION_1_0;

// Kernel Object APIs
typedef CL_API_ENTRY cl_kernel (CL_API_CALL *
PFNCLCREATEKERNEL)(cl_program      /* program */,
               const char *    /* kernel_name */,
               cl_int *        /* errcode_ret */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLCREATEKERNELSINPROGRAM)(cl_program     /* program */,
                         cl_uint        /* num_kernels */,
                         cl_kernel *    /* kernels */,
                         cl_uint *      /* num_kernels_ret */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLRETAINKERNEL)(cl_kernel    /* kernel */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLRELEASEKERNEL)(cl_kernel   /* kernel */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLSETKERNELARG)(cl_kernel    /* kernel */,
               cl_uint      /* arg_index */,
               size_t       /* arg_size */,
               const void * /* arg_value */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLGETKERNELINFO)(cl_kernel       /* kernel */,
                cl_kernel_info  /* param_name */,
                size_t          /* param_value_size */,
                void *          /* param_value */,
                size_t *        /* param_value_size_ret */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLGETKERNELWORKGROUPINFO)(cl_kernel                  /* kernel */,
                         cl_device_id               /* device */,
                         cl_kernel_work_group_info  /* param_name */,
                         size_t                     /* param_value_size */,
                         void *                     /* param_value */,
                         size_t *                   /* param_value_size_ret */) CL_API_SUFFIX__VERSION_1_0;

// Event Object APIs
typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLWAITFOREVENTS)(cl_uint             /* num_events */,
                const cl_event *    /* event_list */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLGETEVENTINFO)(cl_event         /* event */,
               cl_event_info    /* param_name */,
               size_t           /* param_value_size */,
               void *           /* param_value */,
               size_t *         /* param_value_size_ret */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLRETAINEVENT)(cl_event /* event */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLRELEASEEVENT)(cl_event /* event */) CL_API_SUFFIX__VERSION_1_0;

// Profiling APIs
typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLGETEVENTPROFILINGINFO)(cl_event            /* event */,
                        cl_profiling_info   /* param_name */,
                        size_t              /* param_value_size */,
                        void *              /* param_value */,
                        size_t *            /* param_value_size_ret */) CL_API_SUFFIX__VERSION_1_0;

// Flush and Finish APIs
typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLFLUSH)(cl_command_queue /* command_queue */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLFINISH)(cl_command_queue /* command_queue */) CL_API_SUFFIX__VERSION_1_0;

// Enqueued Commands APIs
typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLENQUEUEREADBUFFER)(cl_command_queue    /* command_queue */,
                    cl_mem              /* buffer */,
                    cl_bool             /* blocking_read */,
                    size_t              /* offset */,
                    size_t              /* cb */,
                    void *              /* ptr */,
                    cl_uint             /* num_events_in_wait_list */,
                    const cl_event *    /* event_wait_list */,
                    cl_event *          /* event */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLENQUEUEWRITEBUFFER)(cl_command_queue   /* command_queue */,
                     cl_mem             /* buffer */,
                     cl_bool            /* blocking_write */,
                     size_t             /* offset */,
                     size_t             /* cb */,
                     const void *       /* ptr */,
                     cl_uint            /* num_events_in_wait_list */,
                     const cl_event *   /* event_wait_list */,
                     cl_event *         /* event */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLENQUEUECOPYBUFFER)(cl_command_queue    /* command_queue */,
                    cl_mem              /* src_buffer */,
                    cl_mem              /* dst_buffer */,
                    size_t              /* src_offset */,
                    size_t              /* dst_offset */,
                    size_t              /* cb */,
                    cl_uint             /* num_events_in_wait_list */,
                    const cl_event *    /* event_wait_list */,
                    cl_event *          /* event */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLENQUEUEREADIMAGE)(cl_command_queue     /* command_queue */,
                   cl_mem               /* image */,
                   cl_bool              /* blocking_read */,
                   const size_t *       /* origin[3] */,
                   const size_t *       /* region[3] */,
                   size_t               /* row_pitch */,
                   size_t               /* slice_pitch */,
                   void *               /* ptr */,
                   cl_uint              /* num_events_in_wait_list */,
                   const cl_event *     /* event_wait_list */,
                   cl_event *           /* event */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLENQUEUEWRITEIMAGE)(cl_command_queue    /* command_queue */,
                    cl_mem              /* image */,
                    cl_bool             /* blocking_write */,
                    const size_t *      /* origin[3] */,
                    const size_t *      /* region[3] */,
                    size_t              /* input_row_pitch */,
                    size_t              /* input_slice_pitch */,
                    const void *        /* ptr */,
                    cl_uint             /* num_events_in_wait_list */,
                    const cl_event *    /* event_wait_list */,
                    cl_event *          /* event */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLENQUEUECOPYIMAGE)(cl_command_queue     /* command_queue */,
                   cl_mem               /* src_image */,
                   cl_mem               /* dst_image */,
                   const size_t *       /* src_origin[3] */,
                   const size_t *       /* dst_origin[3] */,
                   const size_t *       /* region[3] */,
                   cl_uint              /* num_events_in_wait_list */,
                   const cl_event *     /* event_wait_list */,
                   cl_event *           /* event */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLENQUEUECOPYIMAGETOBUFFER)(cl_command_queue /* command_queue */,
                           cl_mem           /* src_image */,
                           cl_mem           /* dst_buffer */,
                           const size_t *   /* src_origin[3] */,
                           const size_t *   /* region[3] */,
                           size_t           /* dst_offset */,
                           cl_uint          /* num_events_in_wait_list */,
                           const cl_event * /* event_wait_list */,
                           cl_event *       /* event */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLENQUEUECOPYBUFFERTOIMAGE)(cl_command_queue /* command_queue */,
                           cl_mem           /* src_buffer */,
                           cl_mem           /* dst_image */,
                           size_t           /* src_offset */,
                           const size_t *   /* dst_origin[3] */,
                           const size_t *   /* region[3] */,
                           cl_uint          /* num_events_in_wait_list */,
                           const cl_event * /* event_wait_list */,
                           cl_event *       /* event */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY void * (CL_API_CALL *
PFNCLENQUEUEMAPBUFFER)(cl_command_queue /* command_queue */,
                   cl_mem           /* buffer */,
                   cl_bool          /* blocking_map */,
                   cl_map_flags     /* map_flags */,
                   size_t           /* offset */,
                   size_t           /* cb */,
                   cl_uint          /* num_events_in_wait_list */,
                   const cl_event * /* event_wait_list */,
                   cl_event *       /* event */,
                   cl_int *         /* errcode_ret */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY void * (CL_API_CALL *
PFNCLENQUEUEMAPIMAGE)(cl_command_queue  /* command_queue */,
                  cl_mem            /* image */,
                  cl_bool           /* blocking_map */,
                  cl_map_flags      /* map_flags */,
                  const size_t *    /* origin[3] */,
                  const size_t *    /* region[3] */,
                  size_t *          /* image_row_pitch */,
                  size_t *          /* image_slice_pitch */,
                  cl_uint           /* num_events_in_wait_list */,
                  const cl_event *  /* event_wait_list */,
                  cl_event *        /* event */,
                  cl_int *          /* errcode_ret */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLENQUEUEUNMAPMEMOBJECT)(cl_command_queue /* command_queue */,
                        cl_mem           /* memobj */,
                        void *           /* mapped_ptr */,
                        cl_uint          /* num_events_in_wait_list */,
                        const cl_event *  /* event_wait_list */,
                        cl_event *        /* event */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLENQUEUENDRANGEKERNEL)(cl_command_queue /* command_queue */,
                       cl_kernel        /* kernel */,
                       cl_uint          /* work_dim */,
                       const size_t *   /* global_work_offset */,
                       const size_t *   /* global_work_size */,
                       const size_t *   /* local_work_size */,
                       cl_uint          /* num_events_in_wait_list */,
                       const cl_event * /* event_wait_list */,
                       cl_event *       /* event */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLENQUEUETASK)(cl_command_queue  /* command_queue */,
              cl_kernel         /* kernel */,
              cl_uint           /* num_events_in_wait_list */,
              const cl_event *  /* event_wait_list */,
              cl_event *        /* event */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLENQUEUENATIVEKERNEL)(cl_command_queue  /* command_queue */,
                      void (*user_func)(void *),
                      void *            /* args */,
                      size_t            /* cb_args */,
                      cl_uint           /* num_mem_objects */,
                      const cl_mem *    /* mem_list */,
                      const void **     /* args_mem_loc */,
                      cl_uint           /* num_events_in_wait_list */,
                      const cl_event *  /* event_wait_list */,
                      cl_event *        /* event */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLENQUEUEMARKER)(cl_command_queue    /* command_queue */,
                cl_event *          /* event */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLENQUEUEWAITFOREVENTS)(cl_command_queue /* command_queue */,
                       cl_uint          /* num_events */,
                       const cl_event * /* event_list */) CL_API_SUFFIX__VERSION_1_0;

typedef CL_API_ENTRY cl_int (CL_API_CALL *
PFNCLENQUEUEBARRIER)(cl_command_queue /* command_queue */) CL_API_SUFFIX__VERSION_1_0;

// Extension function access
//
// Returns the extension function address for the given function name,
// or NULL if a valid function can not be found.  The client must
// check to make sure the address is not NULL, before using or
// calling the returned function address.
//
typedef CL_API_ENTRY void * (CL_API_CALL * PFNCLGETEXTENSIONFUNCTIONADDRESS)(const char * /* func_name */) CL_API_SUFFIX__VERSION_1_0;

#ifdef CLEW_STATIC
#  define CLEWAPI extern
#else
#  ifdef CLEW_BUILD
#    if defined(_WIN32)
#      define CLEWAPI extern __declspec(dllexport)
#    elif defined(HAVE_GCC_VISIBILITY_FEATURE)
#      define CLEWAPI extern __attribute__ ((visibility("default")))
#    else
#      define CLEWAPI extern
#    endif
#  else
#    if defined(_WIN32)
#      define CLEWAPI extern __declspec(dllimport)
#    else
#      define CLEWAPI extern
#    endif
#  endif
#endif

#define CLEW_FUN_EXPORT CLEWAPI

#define CLEW_GET_FUN(x) x


//  Variables holding function entry points
CLEW_FUN_EXPORT     PFNCLGETPLATFORMIDS                 __clewGetPlatformIDs                ;
CLEW_FUN_EXPORT     PFNCLGETPLATFORMINFO                __clewGetPlatformInfo               ;
CLEW_FUN_EXPORT     PFNCLGETDEVICEIDS                   __clewGetDeviceIDs                  ;
CLEW_FUN_EXPORT     PFNCLGETDEVICEINFO                  __clewGetDeviceInfo                 ;
CLEW_FUN_EXPORT     PFNCLCREATECONTEXT                  __clewCreateContext                 ;
CLEW_FUN_EXPORT     PFNCLCREATECONTEXTFROMTYPE          __clewCreateContextFromType         ;
CLEW_FUN_EXPORT     PFNCLRETAINCONTEXT                  __clewRetainContext                 ;
CLEW_FUN_EXPORT     PFNCLRELEASECONTEXT                 __clewReleaseContext                ;
CLEW_FUN_EXPORT     PFNCLGETCONTEXTINFO                 __clewGetContextInfo                ;
CLEW_FUN_EXPORT     PFNCLCREATECOMMANDQUEUE             __clewCreateCommandQueue            ;
CLEW_FUN_EXPORT     PFNCLRETAINCOMMANDQUEUE             __clewRetainCommandQueue            ;
CLEW_FUN_EXPORT     PFNCLRELEASECOMMANDQUEUE            __clewReleaseCommandQueue           ;
CLEW_FUN_EXPORT     PFNCLGETCOMMANDQUEUEINFO            __clewGetCommandQueueInfo           ;
CLEW_FUN_EXPORT     PFNCLSETCOMMANDQUEUEPROPERTY        __clewSetCommandQueueProperty       ;
CLEW_FUN_EXPORT     PFNCLCREATEBUFFER                   __clewCreateBuffer                  ;
CLEW_FUN_EXPORT     PFNCLCREATEIMAGE2D                  __clewCreateImage2D                 ;
CLEW_FUN_EXPORT     PFNCLCREATEIMAGE3D                  __clewCreateImage3D                 ;
CLEW_FUN_EXPORT     PFNCLRETAINMEMOBJECT                __clewRetainMemObject               ;
CLEW_FUN_EXPORT     PFNCLRELEASEMEMOBJECT               __clewReleaseMemObject              ;
CLEW_FUN_EXPORT     PFNCLGETSUPPORTEDIMAGEFORMATS       __clewGetSupportedImageFormats      ;
CLEW_FUN_EXPORT     PFNCLGETMEMOBJECTINFO               __clewGetMemObjectInfo              ;
CLEW_FUN_EXPORT     PFNCLGETIMAGEINFO                   __clewGetImageInfo                  ;
CLEW_FUN_EXPORT     PFNCLCREATESAMPLER                  __clewCreateSampler                 ;
CLEW_FUN_EXPORT     PFNCLRETAINSAMPLER                  __clewRetainSampler                 ;
CLEW_FUN_EXPORT     PFNCLRELEASESAMPLER                 __clewReleaseSampler                ;
CLEW_FUN_EXPORT     PFNCLGETSAMPLERINFO                 __clewGetSamplerInfo                ;
CLEW_FUN_EXPORT     PFNCLCREATEPROGRAMWITHSOURCE        __clewCreateProgramWithSource       ;
CLEW_FUN_EXPORT     PFNCLCREATEPROGRAMWITHBINARY        __clewCreateProgramWithBinary       ;
CLEW_FUN_EXPORT     PFNCLRETAINPROGRAM                  __clewRetainProgram                 ;
CLEW_FUN_EXPORT     PFNCLRELEASEPROGRAM                 __clewReleaseProgram                ;
CLEW_FUN_EXPORT     PFNCLBUILDPROGRAM                   __clewBuildProgram                  ;
CLEW_FUN_EXPORT     PFNCLUNLOADCOMPILER                 __clewUnloadCompiler                ;
CLEW_FUN_EXPORT     PFNCLGETPROGRAMINFO                 __clewGetProgramInfo                ;
CLEW_FUN_EXPORT     PFNCLGETPROGRAMBUILDINFO            __clewGetProgramBuildInfo           ;
CLEW_FUN_EXPORT     PFNCLCREATEKERNEL                   __clewCreateKernel                  ;
CLEW_FUN_EXPORT     PFNCLCREATEKERNELSINPROGRAM         __clewCreateKernelsInProgram        ;
CLEW_FUN_EXPORT     PFNCLRETAINKERNEL                   __clewRetainKernel                  ;
CLEW_FUN_EXPORT     PFNCLRELEASEKERNEL                  __clewReleaseKernel                 ;
CLEW_FUN_EXPORT     PFNCLSETKERNELARG                   __clewSetKernelArg                  ;
CLEW_FUN_EXPORT     PFNCLGETKERNELINFO                  __clewGetKernelInfo                 ;
CLEW_FUN_EXPORT     PFNCLGETKERNELWORKGROUPINFO         __clewGetKernelWorkGroupInfo        ;
CLEW_FUN_EXPORT     PFNCLWAITFOREVENTS                  __clewWaitForEvents                 ;
CLEW_FUN_EXPORT     PFNCLGETEVENTINFO                   __clewGetEventInfo                  ;
CLEW_FUN_EXPORT     PFNCLRETAINEVENT                    __clewRetainEvent                   ;
CLEW_FUN_EXPORT     PFNCLRELEASEEVENT                   __clewReleaseEvent                  ;
CLEW_FUN_EXPORT     PFNCLGETEVENTPROFILINGINFO          __clewGetEventProfilingInfo         ;
CLEW_FUN_EXPORT     PFNCLFLUSH                          __clewFlush                         ;
CLEW_FUN_EXPORT     PFNCLFINISH                         __clewFinish                        ;
CLEW_FUN_EXPORT     PFNCLENQUEUEREADBUFFER              __clewEnqueueReadBuffer             ;
CLEW_FUN_EXPORT     PFNCLENQUEUEWRITEBUFFER             __clewEnqueueWriteBuffer            ;
CLEW_FUN_EXPORT     PFNCLENQUEUECOPYBUFFER              __clewEnqueueCopyBuffer             ;
CLEW_FUN_EXPORT     PFNCLENQUEUEREADIMAGE               __clewEnqueueReadImage              ;
CLEW_FUN_EXPORT     PFNCLENQUEUEWRITEIMAGE              __clewEnqueueWriteImage             ;
CLEW_FUN_EXPORT     PFNCLENQUEUECOPYIMAGE               __clewEnqueueCopyImage              ;
CLEW_FUN_EXPORT     PFNCLENQUEUECOPYIMAGETOBUFFER       __clewEnqueueCopyImageToBuffer      ;
CLEW_FUN_EXPORT     PFNCLENQUEUECOPYBUFFERTOIMAGE       __clewEnqueueCopyBufferToImage      ;
CLEW_FUN_EXPORT     PFNCLENQUEUEMAPBUFFER               __clewEnqueueMapBuffer              ;
CLEW_FUN_EXPORT     PFNCLENQUEUEMAPIMAGE                __clewEnqueueMapImage               ;
CLEW_FUN_EXPORT     PFNCLENQUEUEUNMAPMEMOBJECT          __clewEnqueueUnmapMemObject         ;
CLEW_FUN_EXPORT     PFNCLENQUEUENDRANGEKERNEL           __clewEnqueueNDRangeKernel          ;
CLEW_FUN_EXPORT     PFNCLENQUEUETASK                    __clewEnqueueTask                   ;
CLEW_FUN_EXPORT     PFNCLENQUEUENATIVEKERNEL            __clewEnqueueNativeKernel           ;
CLEW_FUN_EXPORT     PFNCLENQUEUEMARKER                  __clewEnqueueMarker                 ;
CLEW_FUN_EXPORT     PFNCLENQUEUEWAITFOREVENTS           __clewEnqueueWaitForEvents          ;
CLEW_FUN_EXPORT     PFNCLENQUEUEBARRIER                 __clewEnqueueBarrier                ;
CLEW_FUN_EXPORT     PFNCLGETEXTENSIONFUNCTIONADDRESS    __clewGetExtensionFunctionAddress   ;


#define clGetPlatformIDs                CLEW_GET_FUN(__clewGetPlatformIDs                )
#define clGetPlatformInfo               CLEW_GET_FUN(__clewGetPlatformInfo               )
#define clGetDeviceIDs                  CLEW_GET_FUN(__clewGetDeviceIDs                  )
#define clGetDeviceInfo                 CLEW_GET_FUN(__clewGetDeviceInfo                 )
#define clCreateContext                 CLEW_GET_FUN(__clewCreateContext                 )
#define clCreateContextFromType         CLEW_GET_FUN(__clewCreateContextFromType         )
#define clRetainContext                 CLEW_GET_FUN(__clewRetainContext                 )
#define clReleaseContext                CLEW_GET_FUN(__clewReleaseContext                )
#define clGetContextInfo                CLEW_GET_FUN(__clewGetContextInfo                )
#define clCreateCommandQueue            CLEW_GET_FUN(__clewCreateCommandQueue            )
#define clRetainCommandQueue            CLEW_GET_FUN(__clewRetainCommandQueue            )
#define clReleaseCommandQueue           CLEW_GET_FUN(__clewReleaseCommandQueue           )
#define clGetCommandQueueInfo           CLEW_GET_FUN(__clewGetCommandQueueInfo           )
#define clSetCommandQueueProperty       CLEW_GET_FUN(__clewSetCommandQueueProperty       )
#define clCreateBuffer                  CLEW_GET_FUN(__clewCreateBuffer                  )
#define clCreateImage2D                 CLEW_GET_FUN(__clewCreateImage2D                 )
#define clCreateImage3D                 CLEW_GET_FUN(__clewCreateImage3D                 )
#define clRetainMemObject               CLEW_GET_FUN(__clewRetainMemObject               )
#define clReleaseMemObject              CLEW_GET_FUN(__clewReleaseMemObject              )
#define clGetSupportedImageFormats      CLEW_GET_FUN(__clewGetSupportedImageFormats      )
#define clGetMemObjectInfo              CLEW_GET_FUN(__clewGetMemObjectInfo              )
#define clGetImageInfo                  CLEW_GET_FUN(__clewGetImageInfo                  )
#define clCreateSampler                 CLEW_GET_FUN(__clewCreateSampler                 )
#define clRetainSampler                 CLEW_GET_FUN(__clewRetainSampler                 )
#define clReleaseSampler                CLEW_GET_FUN(__clewReleaseSampler                )
#define clGetSamplerInfo                CLEW_GET_FUN(__clewGetSamplerInfo                )
#define clCreateProgramWithSource       CLEW_GET_FUN(__clewCreateProgramWithSource       )
#define clCreateProgramWithBinary       CLEW_GET_FUN(__clewCreateProgramWithBinary       )
#define clRetainProgram                 CLEW_GET_FUN(__clewRetainProgram                 )
#define clReleaseProgram                CLEW_GET_FUN(__clewReleaseProgram                )
#define clBuildProgram                  CLEW_GET_FUN(__clewBuildProgram                  )
#define clUnloadCompiler                CLEW_GET_FUN(__clewUnloadCompiler                )
#define clGetProgramInfo                CLEW_GET_FUN(__clewGetProgramInfo                )
#define clGetProgramBuildInfo           CLEW_GET_FUN(__clewGetProgramBuildInfo           )
#define clCreateKernel                  CLEW_GET_FUN(__clewCreateKernel                  )
#define clCreateKernelsInProgram        CLEW_GET_FUN(__clewCreateKernelsInProgram        )
#define clRetainKernel                  CLEW_GET_FUN(__clewRetainKernel                  )
#define clReleaseKernel                 CLEW_GET_FUN(__clewReleaseKernel                 )
#define clSetKernelArg                  CLEW_GET_FUN(__clewSetKernelArg                  )
#define clGetKernelInfo                 CLEW_GET_FUN(__clewGetKernelInfo                 )
#define clGetKernelWorkGroupInfo        CLEW_GET_FUN(__clewGetKernelWorkGroupInfo        )
#define clWaitForEvents                 CLEW_GET_FUN(__clewWaitForEvents                 )
#define clGetEventInfo                  CLEW_GET_FUN(__clewGetEventInfo                  )
#define clRetainEvent                   CLEW_GET_FUN(__clewRetainEvent                   )
#define clReleaseEvent                  CLEW_GET_FUN(__clewReleaseEvent                  )
#define clGetEventProfilingInfo         CLEW_GET_FUN(__clewGetEventProfilingInfo         )
#define clFlush                         CLEW_GET_FUN(__clewFlush                         )
#define clFinish                        CLEW_GET_FUN(__clewFinish                        )
#define clEnqueueReadBuffer             CLEW_GET_FUN(__clewEnqueueReadBuffer             )
#define clEnqueueWriteBuffer            CLEW_GET_FUN(__clewEnqueueWriteBuffer            )
#define clEnqueueCopyBuffer             CLEW_GET_FUN(__clewEnqueueCopyBuffer             )
#define clEnqueueReadImage              CLEW_GET_FUN(__clewEnqueueReadImage              )
#define clEnqueueWriteImage             CLEW_GET_FUN(__clewEnqueueWriteImage             )
#define clEnqueueCopyImage              CLEW_GET_FUN(__clewEnqueueCopyImage              )
#define clEnqueueCopyImageToBuffer      CLEW_GET_FUN(__clewEnqueueCopyImageToBuffer      )
#define clEnqueueCopyBufferToImage      CLEW_GET_FUN(__clewEnqueueCopyBufferToImage      )
#define clEnqueueMapBuffer              CLEW_GET_FUN(__clewEnqueueMapBuffer              )
#define clEnqueueMapImage               CLEW_GET_FUN(__clewEnqueueMapImage               )
#define clEnqueueUnmapMemObject         CLEW_GET_FUN(__clewEnqueueUnmapMemObject         )
#define clEnqueueNDRangeKernel          CLEW_GET_FUN(__clewEnqueueNDRangeKernel          )
#define clEnqueueTask                   CLEW_GET_FUN(__clewEnqueueTask                   )
#define clEnqueueNativeKernel           CLEW_GET_FUN(__clewEnqueueNativeKernel           )
#define clEnqueueMarker                 CLEW_GET_FUN(__clewEnqueueMarker                 )
#define clEnqueueWaitForEvents          CLEW_GET_FUN(__clewEnqueueWaitForEvents          )
#define clEnqueueBarrier                CLEW_GET_FUN(__clewEnqueueBarrier                )
#define clGetExtensionFunctionAddress   CLEW_GET_FUN(__clewGetExtensionFunctionAddress   )

#endif  //  CLCC_GENERATE_DOCUMENTATION

#define CLEW_SUCCESS                0       //!<    Success error code
#define CLEW_ERROR_OPEN_FAILED      -1      //!<    Error code for failing to open the dynamic library
#define CLEW_ERROR_ATEXIT_FAILED    -2      //!<    Error code for failing to queue the closing of the dynamic library to atexit()
#define CLEW_ERROR_IMPORT_FAILED    -3      //!<    Error code for failing to import a named function from the dll

//! \brief Load OpenCL dynamic library and set function entry points
CLEW_FUN_EXPORT int         clewInit        (const char*);
//! \brief Convert an OpenCL error code to its string equivalent
CLEW_FUN_EXPORT const char* clewErrorString (cl_int error);

#ifdef __cplusplus
}
#endif

#endif  //  CLEW_CLEW_H_INCLUDED
s/diff/source/es/sfx2/source/menu.po?h=distro/suse/suse-4.0&id=2a531c1cdded4ca03e7ca5b96fb356883edfa370'>source/es/sfx2/source/menu.po56
-rw-r--r--source/es/sfx2/source/view.po148
-rw-r--r--source/es/shell/source/win32/shlxthandler/res.po164
-rw-r--r--source/es/starmath/source.po1902
-rw-r--r--source/es/svl/source/items.po20
-rw-r--r--source/es/svl/source/misc.po329
-rw-r--r--source/es/svtools/source/contnr.po232
-rw-r--r--source/es/svtools/source/control.po212
-rw-r--r--source/es/svtools/source/dialogs.po824
-rw-r--r--source/es/svtools/source/filter.po252
-rw-r--r--source/es/svtools/source/java.po64
-rw-r--r--source/es/svtools/source/misc.po1532
-rw-r--r--source/es/svtools/source/toolpanel.po24
-rw-r--r--source/es/svtools/workben/unodialog.po36
-rw-r--r--source/es/svx/inc.po296
-rw-r--r--source/es/svx/source/accessibility.po164
-rw-r--r--source/es/svx/source/dialog.po3579
-rw-r--r--source/es/svx/source/engine3d.po674
-rw-r--r--source/es/svx/source/fmcomp.po104
-rw-r--r--source/es/svx/source/form.po1196
-rw-r--r--source/es/svx/source/gallery2.po742
-rw-r--r--source/es/svx/source/items.po602
-rw-r--r--source/es/svx/source/src.po586
-rw-r--r--source/es/svx/source/stbctrls.po121
-rw-r--r--source/es/svx/source/svdraw.po2588
-rw-r--r--source/es/svx/source/table.po20
-rw-r--r--source/es/svx/source/tbxctrls.po370
-rw-r--r--source/es/svx/source/toolbars.po88
-rw-r--r--source/es/svx/source/unodialogs/textconversiondlgs.po326
-rw-r--r--source/es/sw/source/core/layout.po24
-rw-r--r--source/es/sw/source/core/undo.po652
-rw-r--r--source/es/sw/source/core/unocore.po44
-rw-r--r--source/es/sw/source/ui/app.po1119
-rw-r--r--source/es/sw/source/ui/chrdlg.po498
-rw-r--r--source/es/sw/source/ui/config.po1172
-rw-r--r--source/es/sw/source/ui/dbui.po1404
-rw-r--r--source/es/sw/source/ui/dialog.po435
-rw-r--r--source/es/sw/source/ui/dochdl.po68
-rw-r--r--source/es/sw/source/ui/docvw.po354
-rw-r--r--source/es/sw/source/ui/envelp.po671
-rw-r--r--source/es/sw/source/ui/fldui.po1049
-rw-r--r--source/es/sw/source/ui/fmtui.po218
-rw-r--r--source/es/sw/source/ui/frmdlg.po841
-rw-r--r--source/es/sw/source/ui/globdoc.po24
-rw-r--r--source/es/sw/source/ui/index.po870
-rw-r--r--source/es/sw/source/ui/lingu.po82
-rw-r--r--source/es/sw/source/ui/misc.po1269
-rw-r--r--source/es/sw/source/ui/ribbar.po440
-rw-r--r--source/es/sw/source/ui/shells.po248
-rw-r--r--source/es/sw/source/ui/smartmenu.po20
-rw-r--r--source/es/sw/source/ui/table.po589
-rw-r--r--source/es/sw/source/ui/uiview.po168
-rw-r--r--source/es/sw/source/ui/utlui.po2066
-rw-r--r--source/es/sw/source/ui/web.po60
-rw-r--r--source/es/sw/source/ui/wrtsh.po40
-rw-r--r--source/es/swext/mediawiki/help.po382
-rw-r--r--source/es/swext/mediawiki/src.po24
-rw-r--r--source/es/swext/mediawiki/src/registry/data/org/openoffice/Office.po24
-rw-r--r--source/es/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po144
-rw-r--r--source/es/sysui/desktop/share.po305
-rw-r--r--source/es/uui/source.po751
-rw-r--r--source/es/vcl/source/src.po818
-rw-r--r--source/es/wizards/source/euro.po348
-rw-r--r--source/es/wizards/source/formwizard.po2823
-rw-r--r--source/es/wizards/source/importwizard.po326
-rw-r--r--source/es/wizards/source/schedule.po213
-rw-r--r--source/es/wizards/source/template.po248
-rw-r--r--source/es/xmlsecurity/source/component.po20
-rw-r--r--source/es/xmlsecurity/source/dialogs.po370
330 files changed, 319235 insertions, 0 deletions
diff --git a/source/es/accessibility/source/helper.po b/source/es/accessibility/source/helper.po
new file mode 100644
index 00000000000..c5270e3fa0b
--- /dev/null
+++ b/source/es/accessibility/source/helper.po
@@ -0,0 +1,24 @@
+#. extracted from accessibility/source/helper.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+accessibility%2Fsource%2Fhelper.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 20:00+0200\n"
+"Last-Translator: Alexandro <jza@openoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: accessiblestrings.src#RID_STR_ACC_NAME_BROWSEBUTTON.string.text
+msgid "Browse"
+msgstr "Examinar"
+
+#: accessiblestrings.src#RID_STR_ACC_DESC_PANELDECL_TABBAR.string.text
+msgid "Panel Deck Tab Bar"
+msgstr "Barra de pestañas del grupo de paneles"
diff --git a/source/es/avmedia/source/framework.po b/source/es/avmedia/source/framework.po
new file mode 100644
index 00000000000..65ed72b647a
--- /dev/null
+++ b/source/es/avmedia/source/framework.po
@@ -0,0 +1,68 @@
+#. extracted from avmedia/source/framework.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+avmedia%2Fsource%2Fframework.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 20:00+0200\n"
+"Last-Translator: Alexandro <jza@openoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: mediacontrol.src#AVMEDIA_STR_OPEN.string.text
+msgid "Open"
+msgstr "Abrir"
+
+#: mediacontrol.src#AVMEDIA_STR_INSERT.string.text
+msgid "Apply"
+msgstr "Aplicar"
+
+#: mediacontrol.src#AVMEDIA_STR_PLAY.string.text
+msgid "Play"
+msgstr "Reproducir"
+
+#: mediacontrol.src#AVMEDIA_STR_PAUSE.string.text
+msgid "Pause"
+msgstr "Pausar"
+
+#: mediacontrol.src#AVMEDIA_STR_STOP.string.text
+msgid "Stop"
+msgstr "Detener"
+
+#: mediacontrol.src#AVMEDIA_STR_ENDLESS.string.text
+msgid "Repeat"
+msgstr "Repetir"
+
+#: mediacontrol.src#AVMEDIA_STR_MUTE.string.text
+msgid "Mute"
+msgstr "Silenciar"
+
+#: mediacontrol.src#AVMEDIA_STR_ZOOM.string.text
+msgid "View"
+msgstr "Ver"
+
+#: mediacontrol.src#AVMEDIA_STR_ZOOM_50.string.text
+msgid "50%"
+msgstr "50%"
+
+#: mediacontrol.src#AVMEDIA_STR_ZOOM_100.string.text
+msgid "100%"
+msgstr "100%"
+
+#: mediacontrol.src#AVMEDIA_STR_ZOOM_200.string.text
+msgid "200%"
+msgstr "200%"
+
+#: mediacontrol.src#AVMEDIA_STR_ZOOM_FIT.string.text
+msgid "Scaled"
+msgstr "Escalado"
+
+#: mediacontrol.src#AVMEDIA_STR_MEDIAPLAYER.string.text
+msgid "Media Player"
+msgstr "Reproductor de medios"
diff --git a/source/es/avmedia/source/viewer.po b/source/es/avmedia/source/viewer.po
new file mode 100644
index 00000000000..7ac30e7111b
--- /dev/null
+++ b/source/es/avmedia/source/viewer.po
@@ -0,0 +1,36 @@
+#. extracted from avmedia/source/viewer.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+avmedia%2Fsource%2Fviewer.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-06-13 18:59+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: mediawindow.src#AVMEDIA_STR_INSERTMEDIA_DLG.string.text
+msgid "Insert Movie and Sound"
+msgstr "Insertar vídeo y sonido"
+
+#: mediawindow.src#AVMEDIA_STR_OPENMEDIA_DLG.string.text
+msgid "Open Movie and Sound"
+msgstr "Abrir vídeo y sonido"
+
+#: mediawindow.src#AVMEDIA_STR_ALL_MEDIAFILES.string.text
+msgid "All movie and sound files"
+msgstr "Todos los archivos de vídeo y sonido"
+
+#: mediawindow.src#AVMEDIA_STR_ALL_FILES.string.text
+msgid "All files"
+msgstr "Todos los archivos"
+
+#: mediawindow.src#AVMEDIA_ERR_URL.errorbox.text
+msgid "The format of the selected file is not supported."
+msgstr "El formato del archivo seleccionado no es compatible."
diff --git a/source/es/basctl/source/basicide.po b/source/es/basctl/source/basicide.po
new file mode 100644
index 00000000000..8bf5ac8c67c
--- /dev/null
+++ b/source/es/basctl/source/basicide.po
@@ -0,0 +1,807 @@
+#. extracted from basctl/source/basicide.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+basctl%2Fsource%2Fbasicide.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-08-14 05:12+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: moduldlg.src#RID_TD_ORGANIZE.RID_TC_ORGANIZE.RID_TP_MOD.pageitem.text
+msgctxt "moduldlg.src#RID_TD_ORGANIZE.RID_TC_ORGANIZE.RID_TP_MOD.pageitem.text"
+msgid "Modules"
+msgstr "Módulos"
+
+#: moduldlg.src#RID_TD_ORGANIZE.RID_TC_ORGANIZE.RID_TP_DLG.pageitem.text
+msgid "Dialogs"
+msgstr "Diálogos"
+
+#: moduldlg.src#RID_TD_ORGANIZE.RID_TC_ORGANIZE.RID_TP_LIB.pageitem.text
+msgid "Libraries"
+msgstr "Bibliotecas"
+
+#: moduldlg.src#RID_TD_ORGANIZE.tabdialog.text
+msgid "%PRODUCTNAME Basic Macro Organizer"
+msgstr "Organizador de macros Basic de %PRODUCTNAME"
+
+#: moduldlg.src#RID_TP_MODULS.RID_STR_LIB.fixedtext.text
+msgid "M~odule"
+msgstr "Módul~o"
+
+#: moduldlg.src#RID_TP_MODULS.RID_PB_EDIT.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_MODULS.RID_PB_EDIT.pushbutton.text"
+msgid "~Edit"
+msgstr "~Editar"
+
+#: moduldlg.src#RID_TP_MODULS.RID_PB_CLOSE.cancelbutton.text
+msgctxt "moduldlg.src#RID_TP_MODULS.RID_PB_CLOSE.cancelbutton.text"
+msgid "Close"
+msgstr "Cerrar"
+
+#: moduldlg.src#RID_TP_MODULS.RID_PB_NEWMOD.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_MODULS.RID_PB_NEWMOD.pushbutton.text"
+msgid "~New..."
+msgstr "~Nuevo..."
+
+#: moduldlg.src#RID_TP_MODULS.RID_PB_NEWDLG.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_MODULS.RID_PB_NEWDLG.pushbutton.text"
+msgid "~New..."
+msgstr "~Nuevo..."
+
+#: moduldlg.src#RID_TP_MODULS.RID_PB_DELETE.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_MODULS.RID_PB_DELETE.pushbutton.text"
+msgid "~Delete"
+msgstr "~Eliminar"
+
+#: moduldlg.src#RID_TP_DLGS.RID_STR_LIB.fixedtext.text
+msgctxt "moduldlg.src#RID_TP_DLGS.RID_STR_LIB.fixedtext.text"
+msgid "Dialog"
+msgstr "Diálogo"
+
+#: moduldlg.src#RID_TP_DLGS.RID_PB_EDIT.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_DLGS.RID_PB_EDIT.pushbutton.text"
+msgid "~Edit"
+msgstr "~Editar"
+
+#: moduldlg.src#RID_TP_DLGS.RID_PB_CLOSE.cancelbutton.text
+msgctxt "moduldlg.src#RID_TP_DLGS.RID_PB_CLOSE.cancelbutton.text"
+msgid "Close"
+msgstr "Cerrar"
+
+#: moduldlg.src#RID_TP_DLGS.RID_PB_NEWMOD.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_DLGS.RID_PB_NEWMOD.pushbutton.text"
+msgid "~New..."
+msgstr "Nue~vo..."
+
+#: moduldlg.src#RID_TP_DLGS.RID_PB_NEWDLG.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_DLGS.RID_PB_NEWDLG.pushbutton.text"
+msgid "~New..."
+msgstr "Nue~vo..."
+
+#: moduldlg.src#RID_TP_DLGS.RID_PB_DELETE.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_DLGS.RID_PB_DELETE.pushbutton.text"
+msgid "~Delete"
+msgstr "E~liminar"
+
+#: moduldlg.src#RID_TP_LIBS.RID_STR_BASICS.fixedtext.text
+msgid "L~ocation"
+msgstr "~Ubicación"
+
+#: moduldlg.src#RID_TP_LIBS.RID_STR_LIB.fixedtext.text
+msgid "~Library"
+msgstr "~Biblioteca"
+
+#: moduldlg.src#RID_TP_LIBS.RID_PB_EDIT.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_LIBS.RID_PB_EDIT.pushbutton.text"
+msgid "~Edit"
+msgstr "~Editar"
+
+#: moduldlg.src#RID_TP_LIBS.RID_PB_CLOSE.cancelbutton.text
+msgctxt "moduldlg.src#RID_TP_LIBS.RID_PB_CLOSE.cancelbutton.text"
+msgid "Close"
+msgstr "Cerrar"
+
+#: moduldlg.src#RID_TP_LIBS.RID_PB_PASSWORD.pushbutton.text
+msgid "~Password..."
+msgstr "~Contraseña..."
+
+#: moduldlg.src#RID_TP_LIBS.RID_PB_NEWLIB.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_LIBS.RID_PB_NEWLIB.pushbutton.text"
+msgid "~New..."
+msgstr "~Nuevo..."
+
+#: moduldlg.src#RID_TP_LIBS.RID_PB_APPEND.pushbutton.text
+msgid "~Import..."
+msgstr "~Importar..."
+
+#: moduldlg.src#RID_TP_LIBS.RID_PB_EXPORT.pushbutton.text
+msgid "E~xport..."
+msgstr "E~xportar..."
+
+#: moduldlg.src#RID_TP_LIBS.RID_PB_DELETE.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_LIBS.RID_PB_DELETE.pushbutton.text"
+msgid "~Delete"
+msgstr "Elim~inar..."
+
+#: moduldlg.src#RID_DLG_LIBS.RID_FL_OPTIONS.fixedline.text
+msgid "Options"
+msgstr "Opciones"
+
+#: moduldlg.src#RID_DLG_LIBS.RID_CB_REF.checkbox.text
+msgid "Insert as reference (read-only)"
+msgstr "Insertar como referencia (sólo para lectura)"
+
+#: moduldlg.src#RID_DLG_LIBS.RID_CB_REPL.checkbox.text
+msgid "Replace existing libraries"
+msgstr "Reemplazar bibliotecas existentes"
+
+#: moduldlg.src#RID_DLG_GOTOLINE.RID_FT_LINE.fixedtext.text
+msgid "~Line Number:"
+msgstr "~Número de línea:"
+
+#: moduldlg.src#RID_DLG_NEWLIB.RID_FT_NEWLIB.fixedtext.text
+msgid "~Name:"
+msgstr "~Nombre:"
+
+#: moduldlg.src#RID_DLG_EXPORT.RB_EXPORTASPACKAGE.radiobutton.text
+msgid "Export as ~extension"
+msgstr "Exportar como ~extensión"
+
+#: moduldlg.src#RID_DLG_EXPORT.RB_EXPORTASBASIC.radiobutton.text
+msgctxt "moduldlg.src#RID_DLG_EXPORT.RB_EXPORTASBASIC.radiobutton.text"
+msgid "Export as BASIC library"
+msgstr "Exportar como biblioteca de BASIC"
+
+#: moduldlg.src#RID_DLG_EXPORT.modaldialog.text
+msgid "Export Basic library"
+msgstr "Exportar biblioteca de Basic"
+
+#: moduldlg.src#RID_STR_EXPORTPACKAGE.string.text
+msgid "Export library as extension"
+msgstr "Exportar biblioteca como extensión"
+
+#: moduldlg.src#RID_STR_EXPORTBASIC.string.text
+msgctxt "moduldlg.src#RID_STR_EXPORTBASIC.string.text"
+msgid "Export as BASIC library"
+msgstr "Exportar como biblioteca de BASIC"
+
+#: moduldlg.src#RID_STR_PACKAGE_BUNDLE.string.text
+msgid "Extension"
+msgstr "Extensión"
+
+#: basidesh.src#RID_STR_FILTER_ALLFILES.string.text
+msgid "<All>"
+msgstr "<Todos>"
+
+#: basidesh.src#RID_STR_NOMODULE.string.text
+msgid "< No Module >"
+msgstr "< Ningún módulo >"
+
+#: basidesh.src#RID_STR_WRONGPASSWORD.string.text
+msgid "Incorrect Password"
+msgstr "Contraseña incorrecta"
+
+#: basidesh.src#RID_STR_OPEN.string.text
+msgid "Load"
+msgstr "Cargar"
+
+#: basidesh.src#RID_STR_SAVE.string.text
+msgid "Save"
+msgstr "Guardar"
+
+#: basidesh.src#RID_STR_SOURCETOBIG.string.text
+msgid ""
+"The source text is too large and can be neither compiled nor saved.\n"
+"Delete some of the comments or transfer some methods into another module."
+msgstr ""
+"El texto fuente es demasiado grande por lo que no se puede guardar ni compilar.\n"
+"Elimine algunos comentarios o transfiera algunos métodos a otro módulo."
+
+#: basidesh.src#RID_STR_ERROROPENSTORAGE.string.text
+msgid "Error opening file"
+msgstr "Error al abrir el archivo"
+
+#: basidesh.src#RID_STR_ERROROPENLIB.string.text
+msgid "Error loading library"
+msgstr "Error al cargar la biblioteca"
+
+#: basidesh.src#RID_STR_NOLIBINSTORAGE.string.text
+msgid "The file does not contain any BASIC libraries"
+msgstr "El archivo no contiene bibliotecas BASIC"
+
+#: basidesh.src#RID_STR_BADSBXNAME.string.text
+msgid "Invalid Name"
+msgstr "Nombre no válido"
+
+#: basidesh.src#RID_STR_LIBNAMETOLONG.string.text
+msgid "A library name can have up to 30 characters."
+msgstr "Un nombre de biblioteca puede tener hasta 30 caracteres."
+
+#: basidesh.src#RID_STR_ERRORCHOOSEMACRO.string.text
+msgid "Macros from other documents are not accessible."
+msgstr "No se puede acceder a las macros de otros documentos."
+
+#: basidesh.src#RID_STR_LIBISREADONLY.string.text
+msgid "This library is read-only."
+msgstr "Esta biblioteca es de solo lectura."
+
+#: basidesh.src#RID_STR_REPLACELIB.string.text
+msgid "'XX' cannot be replaced."
+msgstr "«XX» no se puede reemplazar."
+
+#: basidesh.src#RID_STR_IMPORTNOTPOSSIBLE.string.text
+msgid "'XX' cannot be added."
+msgstr "No se puede añadir «XX»."
+
+#: basidesh.src#RID_STR_NOIMPORT.string.text
+msgid "'XX' was not added."
+msgstr "«XX» no se añadió."
+
+#: basidesh.src#RID_STR_ENTERPASSWORD.string.text
+msgid "Enter password for 'XX'"
+msgstr "Introducir contraseña para «XX»"
+
+#: basidesh.src#RID_STR_SBXNAMEALLREADYUSED.string.text
+msgid "Name already exists"
+msgstr "El nombre ya existe"
+
+#: basidesh.src#RID_STR_SIGNED.string.text
+msgid "(Signed)"
+msgstr "(Firmado)"
+
+#: basidesh.src#RID_STR_SBXNAMEALLREADYUSED2.string.text
+msgid "Object with same name already exists"
+msgstr "Ya existe un objeto con el mismo nombre"
+
+#: basidesh.src#RID_STR_FILEEXISTS.string.text
+msgid "The 'XX' file already exists"
+msgstr "El archivo «XX» ya existe"
+
+#: basidesh.src#RID_STR_CANNOTRUNMACRO.string.text
+msgid ""
+"For security reasons, you cannot run this macro.\n"
+"\n"
+"For more information, check the security settings."
+msgstr ""
+"Por motivos de seguridad, no puede ejecutar esta macro.\n"
+"\n"
+"Para más información, compruebe la configuración de seguridad."
+
+#: basidesh.src#RID_STR_COMPILEERROR.string.text
+msgid "Compile Error: "
+msgstr "Error de compilación: "
+
+#: basidesh.src#RID_STR_RUNTIMEERROR.string.text
+msgid "Runtime Error: #"
+msgstr "Error en tiempo de ejecución: #"
+
+#: basidesh.src#RID_STR_SEARCHNOTFOUND.string.text
+msgid "Search key not found"
+msgstr "No se encontró la expresión buscada"
+
+#: basidesh.src#RID_STR_SEARCHFROMSTART.string.text
+msgid "Search to last module complete. Continue at first module?"
+msgstr "Se buscó hasta el último módulo. ¿Continuar la búsqueda en el primer módulo?"
+
+#: basidesh.src#RID_STR_SEARCHREPLACES.string.text
+msgid "Search key replaced XX times"
+msgstr "Expresión buscada reemplazada XX veces"
+
+#: basidesh.src#RID_STR_COULDNTREAD.string.text
+msgid "The file could not be read"
+msgstr "No se pudo leer el archivo"
+
+#: basidesh.src#RID_STR_COULDNTWRITE.string.text
+msgid "The file could not be saved"
+msgstr "No se pudo guardar el archivo"
+
+#: basidesh.src#RID_STR_CANNOTCHANGENAMESTDLIB.string.text
+msgid "The name of the default library cannot be changed."
+msgstr "No se puede modificar el nombre de la biblioteca predeterminada."
+
+#: basidesh.src#RID_STR_CANNOTCHANGENAMEREFLIB.string.text
+msgid "The name of a referenced library cannot be changed."
+msgstr "No se puede modificar el nombre de una biblioteca referenciada"
+
+#: basidesh.src#RID_STR_CANNOTUNLOADSTDLIB.string.text
+msgid "The default library cannot be deactivated"
+msgstr "No se puede desactivar la biblioteca predeterminada"
+
+#: basidesh.src#RID_STR_GENERATESOURCE.string.text
+msgid "Generating source"
+msgstr "Creando un texto fuente"
+
+#: basidesh.src#RID_STR_FILENAME.string.text
+msgid "File name:"
+msgstr "Nombre del archivo:"
+
+#: basidesh.src#RID_STR_APPENDLIBS.string.text
+msgid "Import Libraries"
+msgstr "Importar bibliotecas"
+
+#: basidesh.src#RID_STR_QUERYDELMACRO.string.text
+msgid "Do you want to delete the macro XX?"
+msgstr "¿Desea eliminar la macro XX?"
+
+#: basidesh.src#RID_STR_QUERYDELDIALOG.string.text
+msgid "Do you want to delete the XX dialog?"
+msgstr "¿Desea eliminar el diálogo XX?"
+
+#: basidesh.src#RID_STR_QUERYDELLIB.string.text
+msgid "Do you want to delete the XX library?"
+msgstr "¿Desea eliminar la biblioteca XX?"
+
+#: basidesh.src#RID_STR_QUERYDELLIBREF.string.text
+msgid "Do you want to delete the reference to the XX library?"
+msgstr "¿Desea eliminar la referencia a la biblioteca XX?"
+
+#: basidesh.src#RID_STR_QUERYDELMODULE.string.text
+msgid "Do you want to delete the XX module?"
+msgstr "¿Desea eliminar el módulo XX?"
+
+#: basidesh.src#RID_STR_OBJNOTFOUND.string.text
+msgid "Object or method not found"
+msgstr "No se ha encontrado el objeto o método"
+
+#: basidesh.src#RID_STR_BASIC.string.text
+msgid "BASIC"
+msgstr "BASIC"
+
+#: basidesh.src#RID_STR_LINE.string.text
+msgid "Ln"
+msgstr "Li"
+
+#: basidesh.src#RID_STR_COLUMN.string.text
+msgid "Col"
+msgstr "Col"
+
+#: basidesh.src#RID_STR_DOC.string.text
+msgid "Document"
+msgstr "Documento"
+
+#: basidesh.src#RID_BASICIDE_OBJECTBAR.string.text
+msgid "Macro Bar"
+msgstr "Barra de macro"
+
+#: basidesh.src#RID_STR_CANNOTCLOSE.string.text
+msgid "The window cannot be closed while BASIC is running."
+msgstr "No se puede cerrar la ventana mientras se ejecuta BASIC."
+
+#: basidesh.src#RID_STR_REPLACESTDLIB.string.text
+msgid "The default library cannot be replaced."
+msgstr "No se puede sustituir la biblioteca predeterminada."
+
+#: basidesh.src#RID_STR_REFNOTPOSSIBLE.string.text
+msgid "Reference to 'XX' not possible."
+msgstr "No es posible la referencia a 'XX' ."
+
+#: basidesh.src#RID_STR_WATCHNAME.string.text
+msgid "Watch"
+msgstr "Observador"
+
+#: basidesh.src#RID_STR_WATCHVARIABLE.string.text
+msgid "Variable"
+msgstr "Variable"
+
+#: basidesh.src#RID_STR_WATCHVALUE.string.text
+msgid "Value"
+msgstr "Valor"
+
+#: basidesh.src#RID_STR_WATCHTYPE.string.text
+msgid "Type"
+msgstr "Tipo"
+
+#: basidesh.src#RID_STR_STACKNAME.string.text
+msgid "Call Stack"
+msgstr "Pila de comandos"
+
+#: basidesh.src#RID_STR_INITIDE.string.text
+msgid "BASIC Initialization"
+msgstr "Inicialización de BASIC"
+
+#: basidesh.src#RID_STR_STDMODULENAME.string.text
+msgid "Module"
+msgstr "Módulo"
+
+#: basidesh.src#RID_STR_STDDIALOGNAME.string.text
+msgctxt "basidesh.src#RID_STR_STDDIALOGNAME.string.text"
+msgid "Dialog"
+msgstr "Diálogo"
+
+#: basidesh.src#RID_STR_STDLIBNAME.string.text
+msgid "Library"
+msgstr "Biblioteca"
+
+#: basidesh.src#RID_STR_NEWLIB.string.text
+msgid "New Library"
+msgstr "Biblioteca nueva"
+
+#: basidesh.src#RID_STR_NEWMOD.string.text
+msgid "New Module"
+msgstr "Módulo nuevo"
+
+#: basidesh.src#RID_STR_NEWDLG.string.text
+msgid "New Dialog"
+msgstr "Diálogo nuevo"
+
+#: basidesh.src#RID_STR_ALL.string.text
+msgid "All"
+msgstr "Todos"
+
+#: basidesh.src#RID_STR_PAGE.string.text
+msgid "Page"
+msgstr "Página"
+
+#: basidesh.src#RID_STR_MACRONAMEREQ.string.text
+msgid "A name must be entered."
+msgstr "Se debe introducir un nombre."
+
+#: basidesh.src#RID_STR_WILLSTOPPRG.string.text
+msgid ""
+"You will have to restart the program after this edit.\n"
+"Continue?"
+msgstr ""
+"Tendrá que reiniciar el programa después de estas modificaciones.\n"
+"¿Continuar?"
+
+#: basidesh.src#RID_STR_SEARCHALLMODULES.string.text
+msgid "Do you want to replace the text in all active modules?"
+msgstr "¿Desea reemplazar el texto en todos los módulos activos?"
+
+#: basidesh.src#RID_IMGBTN_REMOVEWATCH.imagebutton.text
+msgid "-"
+msgstr "-"
+
+#: basidesh.src#RID_IMGBTN_REMOVEWATCH.imagebutton.quickhelptext
+msgid "Remove Watch"
+msgstr "Eliminar observador"
+
+#: basidesh.src#RID_STR_REMOVEWATCH.string.text
+msgid "Watch:"
+msgstr "Observador:"
+
+#: basidesh.src#RID_STR_STACK.string.text
+msgid "Calls: "
+msgstr "Llamadas: "
+
+#: basidesh.src#RID_STR_USERMACROS.string.text
+msgid "My Macros"
+msgstr "Mis macros"
+
+#: basidesh.src#RID_STR_USERDIALOGS.string.text
+msgid "My Dialogs"
+msgstr "Mis diálogos"
+
+#: basidesh.src#RID_STR_USERMACROSDIALOGS.string.text
+msgid "My Macros & Dialogs"
+msgstr "Mis macros y diálogos"
+
+#: basidesh.src#RID_STR_SHAREMACROS.string.text
+msgid "%PRODUCTNAME Macros"
+msgstr "Macros de %PRODUCTNAME"
+
+#: basidesh.src#RID_STR_SHAREDIALOGS.string.text
+msgid "%PRODUCTNAME Dialogs"
+msgstr "Diálogos de %PRODUCTNAME"
+
+#: basidesh.src#RID_STR_SHAREMACROSDIALOGS.string.text
+msgid "%PRODUCTNAME Macros & Dialogs"
+msgstr "Macros y diálogos de %PRODUCTNAME"
+
+#: basidesh.src#RID_POPUP_BRKPROPS.RID_ACTIV.menuitem.text
+msgctxt "basidesh.src#RID_POPUP_BRKPROPS.RID_ACTIV.menuitem.text"
+msgid "Active"
+msgstr "Activo"
+
+#: basidesh.src#RID_POPUP_BRKPROPS.RID_BRKPROPS.menuitem.text
+msgctxt "basidesh.src#RID_POPUP_BRKPROPS.RID_BRKPROPS.menuitem.text"
+msgid "Properties..."
+msgstr "Propiedades..."
+
+#: basidesh.src#RID_POPUP_BRKPROPS.menu.text
+msgid "Properties"
+msgstr "Propiedades"
+
+#: basidesh.src#RID_POPUP_BRKDLG.RID_BRKDLG.menuitem.text
+msgid "Manage Breakpoints..."
+msgstr "Administrar puntos de interrupción..."
+
+#: basidesh.src#RID_POPUP_BRKDLG.menu.text
+msgctxt "basidesh.src#RID_POPUP_BRKDLG.menu.text"
+msgid "Manage Breakpoints"
+msgstr "Administrar puntos de interrupción"
+
+#: basidesh.src#RID_POPUP_TABBAR.RID_INSERT.SID_BASICIDE_NEWMODULE.menuitem.text
+msgid "BASIC Module"
+msgstr "Módulo BASIC"
+
+#: basidesh.src#RID_POPUP_TABBAR.RID_INSERT.SID_BASICIDE_NEWDIALOG.menuitem.text
+msgid "BASIC Dialog"
+msgstr "Diálogo BASIC"
+
+#: basidesh.src#RID_POPUP_TABBAR.RID_INSERT.menuitem.text
+msgid "Insert"
+msgstr "Insertar"
+
+#: basidesh.src#RID_POPUP_TABBAR.SID_BASICIDE_DELETECURRENT.menuitem.text
+msgctxt "basidesh.src#RID_POPUP_TABBAR.SID_BASICIDE_DELETECURRENT.menuitem.text"
+msgid "Delete"
+msgstr "Eliminar"
+
+#: basidesh.src#RID_POPUP_TABBAR.SID_BASICIDE_RENAMECURRENT.menuitem.text
+msgctxt "basidesh.src#RID_POPUP_TABBAR.SID_BASICIDE_RENAMECURRENT.menuitem.text"
+msgid "Rename"
+msgstr "Renombrar"
+
+#: basidesh.src#RID_POPUP_TABBAR.SID_BASICIDE_HIDECURPAGE.menuitem.text
+msgid "Hide"
+msgstr "Ocultar"
+
+#: basidesh.src#RID_POPUP_TABBAR.SID_BASICIDE_MODULEDLG.menuitem.text
+msgid "Modules..."
+msgstr "Módulos..."
+
+#: basidesh.src#RID_POPUP_DLGED.SID_SHOW_PROPERTYBROWSER.menuitem.text
+msgctxt "basidesh.src#RID_POPUP_DLGED.SID_SHOW_PROPERTYBROWSER.menuitem.text"
+msgid "Properties..."
+msgstr "Propiedades..."
+
+#: basidesh.src#RID_STR_QUERYREPLACEMACRO.string.text
+msgid "Do you want to overwrite the XX macro?"
+msgstr "¿Quiere sobreescribir la macro XX?"
+
+#: basidesh.src#RID_STR_TRANSLATION_NOTLOCALIZED.string.text
+msgid "<Not localized>"
+msgstr "<No localizado>"
+
+#: basidesh.src#RID_STR_TRANSLATION_DEFAULT.string.text
+msgid "[Default Language]"
+msgstr "[Idioma predeterminado]"
+
+#: basidesh.src#RID_STR_DOCUMENT_OBJECTS.string.text
+msgid "Document Objects"
+msgstr "Objetos del documento"
+
+#: basidesh.src#RID_STR_USERFORMS.string.text
+msgid "Forms"
+msgstr "Formularios"
+
+#: basidesh.src#RID_STR_NORMAL_MODULES.string.text
+msgctxt "basidesh.src#RID_STR_NORMAL_MODULES.string.text"
+msgid "Modules"
+msgstr "Módulos"
+
+#: basidesh.src#RID_STR_CLASS_MODULES.string.text
+msgid "Class Modules"
+msgstr "Clases de módulos"
+
+#: basidesh.src#RID_STR_DLGIMP_CLASH_RENAME.string.text
+msgctxt "basidesh.src#RID_STR_DLGIMP_CLASH_RENAME.string.text"
+msgid "Rename"
+msgstr "Renombrar"
+
+#: basidesh.src#RID_STR_DLGIMP_CLASH_REPLACE.string.text
+msgid "Replace"
+msgstr "Reemplazar"
+
+#: basidesh.src#RID_STR_DLGIMP_CLASH_TITLE.string.text
+msgid "Dialog Import - Name already used"
+msgstr "Dialogo de Importación - Nombre ya usado"
+
+#: basidesh.src#RID_STR_DLGIMP_CLASH_TEXT.string.text
+msgid ""
+"The library already contains a dialog with the name:\n"
+"\n"
+"$(ARG1)\n"
+"\n"
+"Rename dialog to keep current dialog or replace existing dialog.\n"
+" "
+msgstr ""
+"La biblioteca ya contiene un diálogo con el nombre:\n"
+"\n"
+"$(ARG1)\n"
+"\n"
+"Renombre el diálogo para mantener el existente, o reemplácelo.\n"
+" "
+
+#: basidesh.src#RID_STR_DLGIMP_MISMATCH_ADD.string.text
+msgid "Add"
+msgstr "Añadir"
+
+#: basidesh.src#RID_STR_DLGIMP_MISMATCH_OMIT.string.text
+msgid "Omit"
+msgstr "Omitir"
+
+#: basidesh.src#RID_STR_DLGIMP_MISMATCH_TITLE.string.text
+msgid "Dialog Import - Language Mismatch"
+msgstr "Importar diálogo - Inconsistencias de idioma"
+
+#: basidesh.src#RID_STR_DLGIMP_MISMATCH_TEXT.string.text
+msgid ""
+"The dialog to be imported supports other languages than the target library.\n"
+"\n"
+"Add these languages to the library to keep additional language resources provided by the dialog or omit them to stay with the current library languages.\n"
+"\n"
+"Note: For languages not supported by the dialog the resources of the dialog's default language will be used.\n"
+" "
+msgstr ""
+"El diálogo que se importará admite idiomas que no están en la biblioteca de destino.\n"
+"\n"
+"Agregue estos idiomas a la biblioteca para preservar los recursos adicionales de idioma que proporciona el diálogo, u omítalos para mantener los idiomas actuales de la biblioteca.\n"
+"\n"
+"Nota: Se usarán los recursos del idioma predeterminado del diálogo para aquellos idiomas que el diálogo no tenga definidos.\n"
+" "
+
+#: basidesh.src#RID_STR_GETLINE.string.text
+msgid "Goto Line"
+msgstr "Ir a la línea"
+
+#: basicprint.src#RID_PRINTDLG_STRLIST.1.itemlist.text
+msgid "Print range"
+msgstr "Rango de impresión"
+
+#: basicprint.src#RID_PRINTDLG_STRLIST.2.itemlist.text
+msgid "All ~Pages"
+msgstr "Todas las ~páginas"
+
+#: basicprint.src#RID_PRINTDLG_STRLIST.3.itemlist.text
+msgid "Pa~ges"
+msgstr "Pá~ginas"
+
+#: brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_PB_NEW.pushbutton.text
+msgid "New"
+msgstr "Nuevo"
+
+#: brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_PB_DEL.pushbutton.text
+msgctxt "brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_PB_DEL.pushbutton.text"
+msgid "Delete"
+msgstr "Eliminar"
+
+#: brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_CHKB_ACTIVE.checkbox.text
+msgctxt "brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_CHKB_ACTIVE.checkbox.text"
+msgid "Active"
+msgstr "Activo"
+
+#: brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_FT_PASS.fixedtext.text
+msgid "Pass Count:"
+msgstr "Cantidad de pasadas:"
+
+#: brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_FT_BRKPOINTS.fixedtext.text
+msgid "Breakpoints"
+msgstr "Puntos de interrupción"
+
+#: brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.modaldialog.text
+msgctxt "brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.modaldialog.text"
+msgid "Manage Breakpoints"
+msgstr "Administrar puntos de interrupción"
+
+#: objdlg.src#RID_BASICIDE_OBJCAT.RID_TB_TOOLBOX.TBITEM_SHOW.toolboxitem.text
+msgid "Show"
+msgstr "Mostrar"
+
+#: objdlg.src#RID_BASICIDE_OBJCAT.dockingwindow.text
+msgid "Object Catalog"
+msgstr "Catálogo de objetos"
+
+#: objdlg.src#RID_STR_TLB_MACROS.string.text
+msgid "Objects Tree"
+msgstr "Árbol de objetos"
+
+#: moptions.src#RID_MACROOPTIONS.RID_FT_DESCR.fixedtext.text
+msgctxt "moptions.src#RID_MACROOPTIONS.RID_FT_DESCR.fixedtext.text"
+msgid "Description"
+msgstr "Descripción"
+
+#: moptions.src#RID_MACROOPTIONS.RID_FL_HELP.fixedline.text
+msgid "Help information"
+msgstr "Información de ayuda"
+
+#: moptions.src#RID_MACROOPTIONS.RID_FT_HELPID.fixedtext.text
+msgid "Help ID"
+msgstr "ID de ayuda"
+
+#: moptions.src#RID_MACROOPTIONS.RID_FT_HELPNAME.fixedtext.text
+msgid "Help file name"
+msgstr "Nombre del archivo de ayuda"
+
+#: moptions.src#RID_MACROOPTIONS.modaldialog.text
+msgctxt "moptions.src#RID_MACROOPTIONS.modaldialog.text"
+msgid "Description"
+msgstr "Descripción"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_TXT_MACROSIN.fixedtext.text
+msgid "Existing macros ~in:"
+msgstr "Macros existentes ~en:"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_TXT_MACRONAME.fixedtext.text
+msgid "~Macro name"
+msgstr "Nombre de la ~macro"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_TXT_MACROFROM.fixedtext.text
+msgid "Macro ~from"
+msgstr "~Desde la macro"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_TXT_SAVEMACRO.fixedtext.text
+msgid "Save m~acro in"
+msgstr "Guardar la m~acro en"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_TXT_DESCRIPTION.fixedtext.text
+msgid "De~scription"
+msgstr "De~scripción"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_RUN.pushbutton.text
+msgid "R~un"
+msgstr "Ejec~utar"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_CLOSE.cancelbutton.text
+msgctxt "macrodlg.src#RID_MACROCHOOSER.RID_PB_CLOSE.cancelbutton.text"
+msgid "Close"
+msgstr "Cerrar"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_ASSIGN.pushbutton.text
+msgid "~Assign..."
+msgstr "~Asignar..."
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_EDIT.pushbutton.text
+msgctxt "macrodlg.src#RID_MACROCHOOSER.RID_PB_EDIT.pushbutton.text"
+msgid "~Edit"
+msgstr "~Editar"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_NEWLIB.pushbutton.text
+msgid "New ~Library"
+msgstr "Nueva ~biblioteca"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_NEWMOD.pushbutton.text
+msgid "New M~odule"
+msgstr "Nuevo ~módulo"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_DEL.pushbutton.text
+msgctxt "macrodlg.src#RID_MACROCHOOSER.RID_PB_DEL.pushbutton.text"
+msgid "~Delete"
+msgstr "~Eliminar..."
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_ORG.pushbutton.text
+msgid "~Organizer..."
+msgstr "~Organizador..."
+
+#: macrodlg.src#RID_MACROCHOOSER.modaldialog.text
+msgid "%PRODUCTNAME Basic Macros"
+msgstr "Macros Basic de %PRODUCTNAME"
+
+#: macrodlg.src#RID_STR_STDMACRONAME.string.text
+msgid "Macro"
+msgstr "Macro"
+
+#: macrodlg.src#RID_STR_BTNDEL.string.text
+msgctxt "macrodlg.src#RID_STR_BTNDEL.string.text"
+msgid "~Delete"
+msgstr "~Eliminar..."
+
+#: macrodlg.src#RID_STR_BTNNEW.string.text
+msgid "~New"
+msgstr "~Nuevo"
+
+#: macrodlg.src#RID_STR_CLOSE.string.text
+msgctxt "macrodlg.src#RID_STR_CLOSE.string.text"
+msgid "Close"
+msgstr "Cerrar"
+
+#: macrodlg.src#RID_STR_CHOOSE.string.text
+msgid "Choose"
+msgstr "Seleccionar"
+
+#: macrodlg.src#RID_STR_RUN.string.text
+msgid "Run"
+msgstr "Ejecutar"
+
+#: macrodlg.src#RID_STR_RECORD.string.text
+msgid "~Save"
+msgstr "~Guardar"
diff --git a/source/es/basctl/source/dlged.po b/source/es/basctl/source/dlged.po
new file mode 100644
index 00000000000..aa63f3786d3
--- /dev/null
+++ b/source/es/basctl/source/dlged.po
@@ -0,0 +1,106 @@
+#. extracted from basctl/source/dlged.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+basctl%2Fsource%2Fdlged.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-06-30 12:17+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.FT_LANGUAGE.fixedtext.text
+msgid "Present Languages"
+msgstr "Idiomas disponibles"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.PB_ADD_LANG.pushbutton.text
+msgid "Add..."
+msgstr "Añadir..."
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.PB_DEL_LANG.pushbutton.text
+msgid "Delete"
+msgstr "Eliminar"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.PB_MAKE_DEFAULT.pushbutton.text
+msgid "Default"
+msgstr "Predeterminado"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.FT_INFO.fixedtext.text
+msgid "The default language is used if no localization for a user interface locale is present. Furthermore all strings from the default language are copied to resources of newly added languages."
+msgstr "Si una determinada configuración regional de interfaz de usuario no está localizada, se utiliza el idioma predeterminado. Asimismo, todas las cadenas del idioma predeterminado se copian en los recursos de los idiomas que se hayan incorporado."
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.PB_CLOSE.okbutton.text
+msgid "~Close"
+msgstr "C~errar"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.STR_DEF_LANG.string.text
+msgid "[Default Language]"
+msgstr "[Idioma predeterminado]"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.STR_DELETE.string.text
+msgid "~Delete"
+msgstr "~Eliminar"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.STR_CREATE_LANG.string.text
+msgid "<Press 'Add' to create language resources>"
+msgstr "<Pulse 'Añadir' para crear recursos de idiomas>"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.modaldialog.text
+msgid "Manage User Interface Languages [$1]"
+msgstr "Administrar idiomas de interfaz de usuario [$1]"
+
+#: managelang.src#RID_QRYBOX_LANGUAGE.querybox.text
+msgid ""
+"You are about to delete the resources for the selected language(s). All user interface strings for this language(s) will be deleted.\n"
+"\n"
+"Do you want to delete the resources of the selected language(s)?"
+msgstr ""
+"Va a eliminar los recursos del idioma(s) seleccionados. Se van a eliminar todas las cadenas de interfaz de usuario para este idioma(s).\n"
+"\n"
+"¿Desea eliminar los recursos de los idiomas seleccionados?"
+
+#: managelang.src#RID_QRYBOX_LANGUAGE.querybox.title
+msgid "Delete Language Resources"
+msgstr "Eliminar recursos del idioma"
+
+#: managelang.src#RID_DLG_SETDEF_LANGUAGE.FT_DEF_LANGUAGE.fixedtext.text
+msgid "Default language"
+msgstr "Idioma predeterminado"
+
+#: managelang.src#RID_DLG_SETDEF_LANGUAGE.FT_DEF_INFO.fixedtext.text
+msgid "Select a language to define the default user interface language. All currently present strings will be assigned to the resources created for the selected language."
+msgstr "Seleccione un idioma para definir el idioma predeterminado de interfaz de usuario. Todas las cadenas que existan se asignarán a los recursos que creados para el idioma seleccionado."
+
+#: managelang.src#RID_DLG_SETDEF_LANGUAGE.STR_ADDLANG_TITLE.string.text
+msgid "Add User Interface Languages"
+msgstr "Añadir idiomas de interfaz de usuario"
+
+#: managelang.src#RID_DLG_SETDEF_LANGUAGE.STR_ADDLANG_LABEL.string.text
+msgid "Available Languages"
+msgstr "Idiomas disponibles"
+
+#: managelang.src#RID_DLG_SETDEF_LANGUAGE.STR_ADDLANG_INFO.string.text
+msgid "Select languages to be added. Resources for these languages will be created in the library. Strings of the current default user interface language will be copied to these new resources by default."
+msgstr "Seleccione los idiomas a añadir. Los recursos de dichos idiomas se crearán en la biblioteca. Las cadenas del idioma predeterminado de interfaz de usuario se copiarán de forma predeterminada en estos recursos nuevos."
+
+#: managelang.src#RID_DLG_SETDEF_LANGUAGE.modaldialog.text
+msgid "Set Default User Interface Language"
+msgstr "Establecer idioma predeterminado de interfaz de usuario"
+
+#: dlgresid.src#RID_STR_BRWTITLE_PROPERTIES.string.text
+msgid "Properties: "
+msgstr "Propiedades: "
+
+#: dlgresid.src#RID_STR_BRWTITLE_NO_PROPERTIES.string.text
+msgid "No Control marked"
+msgstr "Ningún elemento de control seleccionado"
+
+#: dlgresid.src#RID_STR_BRWTITLE_MULTISELECT.string.text
+msgid "Multiselection"
+msgstr "Selección múltiple"
diff --git a/source/es/basic/source/classes.po b/source/es/basic/source/classes.po
new file mode 100644
index 00000000000..67b315de03c
--- /dev/null
+++ b/source/es/basic/source/classes.po
@@ -0,0 +1,562 @@
+#. extracted from basic/source/classes.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+basic%2Fsource%2Fclasses.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-08-14 06:16+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: sb.src#RID_BASIC_START.SbERR_SYNTAX___ERRCODE_RES_MASK.string.text
+msgid "Syntax error."
+msgstr "Error de sintaxis."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_GOSUB___ERRCODE_RES_MASK.string.text
+msgid "Return without Gosub."
+msgstr "Retorno sin Gosub."
+
+#: sb.src#RID_BASIC_START.SbERR_REDO_FROM_START___ERRCODE_RES_MASK.string.text
+msgid "Incorrect entry; please retry."
+msgstr "Entrada incorrecta, vuelva a intentarlo."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_ARGUMENT___ERRCODE_RES_MASK.string.text
+msgid "Invalid procedure call."
+msgstr "Llamada a procedimiento no válida."
+
+#: sb.src#RID_BASIC_START.SbERR_MATH_OVERFLOW___ERRCODE_RES_MASK.string.text
+msgid "Overflow."
+msgstr "Desbordamiento."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_MEMORY___ERRCODE_RES_MASK.string.text
+msgid "Not enough memory."
+msgstr "No hay suficiente memoria."
+
+#: sb.src#RID_BASIC_START.SbERR_ALREADY_DIM___ERRCODE_RES_MASK.string.text
+msgid "Array already dimensioned."
+msgstr "Matriz ya dimensionada."
+
+#: sb.src#RID_BASIC_START.SbERR_OUT_OF_RANGE___ERRCODE_RES_MASK.string.text
+msgid "Index out of defined range."
+msgstr "Índice fuera del área definida."
+
+#: sb.src#RID_BASIC_START.SbERR_DUPLICATE_DEF___ERRCODE_RES_MASK.string.text
+msgid "Duplicate definition."
+msgstr "Definición duplicada."
+
+#: sb.src#RID_BASIC_START.SbERR_ZERODIV___ERRCODE_RES_MASK.string.text
+msgid "Division by zero."
+msgstr "División por cero."
+
+#: sb.src#RID_BASIC_START.SbERR_VAR_UNDEFINED___ERRCODE_RES_MASK.string.text
+msgid "Variable not defined."
+msgstr "Variable no definida."
+
+#: sb.src#RID_BASIC_START.SbERR_CONVERSION___ERRCODE_RES_MASK.string.text
+msgid "Data type mismatch."
+msgstr "Discrepancia del tipo de datos."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_PARAMETER___ERRCODE_RES_MASK.string.text
+msgid "Invalid parameter."
+msgstr "Parámetro no válido."
+
+#: sb.src#RID_BASIC_START.SbERR_USER_ABORT___ERRCODE_RES_MASK.string.text
+msgid "Process interrupted by user."
+msgstr "Proceso interrumpido por el usuario."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_RESUME___ERRCODE_RES_MASK.string.text
+msgid "Resume without error."
+msgstr "Reanudar sin error."
+
+#: sb.src#RID_BASIC_START.SbERR_STACK_OVERFLOW___ERRCODE_RES_MASK.string.text
+msgid "Not enough stack memory."
+msgstr "No hay suficiente memoria de pila."
+
+#: sb.src#RID_BASIC_START.SbERR_PROC_UNDEFINED___ERRCODE_RES_MASK.string.text
+msgid "Sub-procedure or function procedure not defined."
+msgstr "Subprocedimiento o procedimiento de función no definido."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_DLL_LOAD___ERRCODE_RES_MASK.string.text
+msgid "Error loading DLL file."
+msgstr "Error al cargar el archivo DLL."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_DLL_CALL___ERRCODE_RES_MASK.string.text
+msgid "Wrong DLL call convention."
+msgstr "Convención de llamada DLL incorrecta."
+
+#: sb.src#RID_BASIC_START.SbERR_INTERNAL_ERROR___ERRCODE_RES_MASK.string.text
+msgid "Internal error $(ARG1)."
+msgstr "Error interno $(ARG1)."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_CHANNEL___ERRCODE_RES_MASK.string.text
+msgid "Invalid file name or file number."
+msgstr "El nombre o número del archivo no es válido."
+
+#: sb.src#RID_BASIC_START.SbERR_FILE_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "File not found."
+msgstr "Archivo no encontrado."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_FILE_MODE___ERRCODE_RES_MASK.string.text
+msgid "Incorrect file mode."
+msgstr "Modo de archivo incorrecto."
+
+#: sb.src#RID_BASIC_START.SbERR_FILE_ALREADY_OPEN___ERRCODE_RES_MASK.string.text
+msgid "File already open."
+msgstr "Archivo ya abierto."
+
+#: sb.src#RID_BASIC_START.SbERR_IO_ERROR___ERRCODE_RES_MASK.string.text
+msgid "Device I/O error."
+msgstr "Error de E/S del dispositivo."
+
+#: sb.src#RID_BASIC_START.SbERR_FILE_EXISTS___ERRCODE_RES_MASK.string.text
+msgid "File already exists."
+msgstr "Este archivo ya existe."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_RECORD_LENGTH___ERRCODE_RES_MASK.string.text
+msgid "Incorrect record length."
+msgstr "Longitud de registro incorrecta."
+
+#: sb.src#RID_BASIC_START.SbERR_DISK_FULL___ERRCODE_RES_MASK.string.text
+msgid "Disk or hard drive full."
+msgstr "Disco o unidad de disco duro llenos."
+
+#: sb.src#RID_BASIC_START.SbERR_READ_PAST_EOF___ERRCODE_RES_MASK.string.text
+msgid "Reading exceeds EOF."
+msgstr "La lectura supera el fin de archivo (EOF)."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_RECORD_NUMBER___ERRCODE_RES_MASK.string.text
+msgid "Incorrect record number."
+msgstr "Número de registro incorrecto."
+
+#: sb.src#RID_BASIC_START.SbERR_TOO_MANY_FILES___ERRCODE_RES_MASK.string.text
+msgid "Too many files."
+msgstr "Demasiados archivos."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_DEVICE___ERRCODE_RES_MASK.string.text
+msgid "Device not available."
+msgstr "Dispositivo no disponible."
+
+#: sb.src#RID_BASIC_START.SbERR_ACCESS_DENIED___ERRCODE_RES_MASK.string.text
+msgid "Access denied."
+msgstr "Acceso denegado."
+
+#: sb.src#RID_BASIC_START.SbERR_NOT_READY___ERRCODE_RES_MASK.string.text
+msgid "Disk not ready."
+msgstr "Disco no preparado."
+
+#: sb.src#RID_BASIC_START.SbERR_NOT_IMPLEMENTED___ERRCODE_RES_MASK.string.text
+msgid "Not implemented."
+msgstr "No implementado."
+
+#: sb.src#RID_BASIC_START.SbERR_DIFFERENT_DRIVE___ERRCODE_RES_MASK.string.text
+msgid "Renaming on different drives impossible."
+msgstr "No es posible el cambio de nombre en varias unidades."
+
+#: sb.src#RID_BASIC_START.SbERR_ACCESS_ERROR___ERRCODE_RES_MASK.string.text
+msgid "Path/File access error."
+msgstr "Error de acceso al archivo o la ruta."
+
+#: sb.src#RID_BASIC_START.SbERR_PATH_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "Path not found."
+msgstr "No se ha encontrado la ruta."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_OBJECT___ERRCODE_RES_MASK.string.text
+msgid "Object variable not set."
+msgstr "Variable de objeto no establecida."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_PATTERN___ERRCODE_RES_MASK.string.text
+msgid "Invalid string pattern."
+msgstr "Patrón de cadena de caracteres no válido."
+
+#: sb.src#RID_BASIC_START.SBERR_IS_NULL___ERRCODE_RES_MASK.string.text
+msgid "Use of zero not permitted."
+msgstr "No se permite el uso del cero."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_ERROR___ERRCODE_RES_MASK.string.text
+msgid "DDE Error."
+msgstr "Error de DDE."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_WAITINGACK___ERRCODE_RES_MASK.string.text
+msgid "Awaiting response to DDE connection."
+msgstr "Esperando respuesta para la conexión DDE."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_OUTOFCHANNELS___ERRCODE_RES_MASK.string.text
+msgid "No DDE channels available."
+msgstr "No hay canales DDE disponibles."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_NO_RESPONSE___ERRCODE_RES_MASK.string.text
+msgid "No application responded to DDE connect initiation."
+msgstr "Ninguna aplicación ha respondido a la iniciación de conexión DDE."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_MULT_RESPONSES___ERRCODE_RES_MASK.string.text
+msgid "Too many applications responded to DDE connect initiation."
+msgstr "Demasiadas aplicaciones han respondido a la iniciación de conexión DDE."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_CHANNEL_LOCKED___ERRCODE_RES_MASK.string.text
+msgid "DDE channel locked."
+msgstr "Canal DDE bloqueado."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_NOTPROCESSED___ERRCODE_RES_MASK.string.text
+msgid "External application cannot execute DDE operation."
+msgstr "Una aplicación externa no puede ejecutar la operación DDE."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_TIMEOUT___ERRCODE_RES_MASK.string.text
+msgid "Timeout while waiting for DDE response."
+msgstr "Tiempo de espera excedido mientras se esperaba la respuesta de DDE."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_USER_INTERRUPT___ERRCODE_RES_MASK.string.text
+msgid "User pressed ESCAPE during DDE operation."
+msgstr "El usuario presionó ESCAPE durante la operación DDE."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_BUSY___ERRCODE_RES_MASK.string.text
+msgid "External application busy."
+msgstr "Aplicación externa ocupada."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_NO_DATA___ERRCODE_RES_MASK.string.text
+msgid "DDE operation without data."
+msgstr "Operación de DDE sin datos."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_WRONG_DATA_FORMAT___ERRCODE_RES_MASK.string.text
+msgid "Data are in wrong format."
+msgstr "Los datos tienen un formato incorrecto."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_PARTNER_QUIT___ERRCODE_RES_MASK.string.text
+msgid "External application has been terminated."
+msgstr "Se ha cerrado la aplicación externa."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_CONV_CLOSED___ERRCODE_RES_MASK.string.text
+msgid "DDE connection interrupted or modified."
+msgstr "Se ha interrumpido o modificado la conexión DDE."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_NO_CHANNEL___ERRCODE_RES_MASK.string.text
+msgid "DDE method invoked with no channel open."
+msgstr "Se ha invocado el método DDE sin un canal abierto."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_INVALID_LINK___ERRCODE_RES_MASK.string.text
+msgid "Invalid DDE link format."
+msgstr "Formato de vínculo DDE no válido."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_QUEUE_OVERFLOW___ERRCODE_RES_MASK.string.text
+msgid "DDE message has been lost."
+msgstr "Se ha perdido el mensaje DDE."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_LINK_ALREADY_EST___ERRCODE_RES_MASK.string.text
+msgid "Paste link already performed."
+msgstr "Pegar vínculo ya ejecutado."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_LINK_INV_TOPIC___ERRCODE_RES_MASK.string.text
+msgid "Link mode cannot be set due to invalid link topic."
+msgstr "No se puede establecer el modo de vínculo debido a un vínculo de un tema no válido."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_DLL_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "DDE requires the DDEML.DLL file."
+msgstr "DDE necesita el archivo DDEML.DLL."
+
+#: sb.src#RID_BASIC_START.SbERR_CANNOT_LOAD___ERRCODE_RES_MASK.string.text
+msgid "Module cannot be loaded; invalid format."
+msgstr "No se puede cargar el módulo: formato no válido."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_INDEX___ERRCODE_RES_MASK.string.text
+msgid "Invalid object index."
+msgstr "Índice de objetos no válido."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_ACTIVE_OBJECT___ERRCODE_RES_MASK.string.text
+msgid "Object is not available."
+msgstr "El objeto no está disponible."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_PROP_VALUE___ERRCODE_RES_MASK.string.text
+msgid "Incorrect property value."
+msgstr "Valor de propiedad incorrecto."
+
+#: sb.src#RID_BASIC_START.SbERR_PROP_READONLY___ERRCODE_RES_MASK.string.text
+msgid "This property is read-only."
+msgstr "Esta propiedad es de sólo lectura."
+
+#: sb.src#RID_BASIC_START.SbERR_PROP_WRITEONLY___ERRCODE_RES_MASK.string.text
+msgid "This property is write only."
+msgstr "Esta propiedad es de sólo escritura."
+
+#: sb.src#RID_BASIC_START.SbERR_INVALID_OBJECT___ERRCODE_RES_MASK.string.text
+msgid "Invalid object reference."
+msgstr "Referencia de objetos no válida."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_METHOD___ERRCODE_RES_MASK.string.text
+msgid "Property or method not found: $(ARG1)."
+msgstr "Propiedad o método no encontrados: $(ARG1)."
+
+#: sb.src#RID_BASIC_START.SbERR_NEEDS_OBJECT___ERRCODE_RES_MASK.string.text
+msgid "Object required."
+msgstr "Objeto necesario."
+
+#: sb.src#RID_BASIC_START.SbERR_INVALID_USAGE_OBJECT___ERRCODE_RES_MASK.string.text
+msgid "Invalid use of an object."
+msgstr "Uso no válido de un objeto."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_OLE___ERRCODE_RES_MASK.string.text
+msgid "OLE Automation is not supported by this object."
+msgstr "Este objeto no admite la automatización OLE."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_METHOD___ERRCODE_RES_MASK.string.text
+msgid "This property or method is not supported by the object."
+msgstr "El objeto no admite este método o propiedad."
+
+#: sb.src#RID_BASIC_START.SbERR_OLE_ERROR___ERRCODE_RES_MASK.string.text
+msgid "OLE Automation Error."
+msgstr "Error en la automatización OLE."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_ACTION___ERRCODE_RES_MASK.string.text
+msgid "This action is not supported by given object."
+msgstr "El objeto determinado no admite esta acción."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_NAMED_ARGS___ERRCODE_RES_MASK.string.text
+msgid "Named arguments are not supported by given object."
+msgstr "El objeto determinado no admite los argumentos nombrados."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_LOCALE___ERRCODE_RES_MASK.string.text
+msgid "The current locale setting is not supported by the given object."
+msgstr "El objeto determinado no admite la configuración local actual."
+
+#: sb.src#RID_BASIC_START.SbERR_NAMED_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "Named argument not found."
+msgstr "No se encuentra el argumento nombrado."
+
+#: sb.src#RID_BASIC_START.SbERR_NOT_OPTIONAL___ERRCODE_RES_MASK.string.text
+msgid "Argument is not optional."
+msgstr "El argumento no es opcional."
+
+#: sb.src#RID_BASIC_START.SbERR_WRONG_ARGS___ERRCODE_RES_MASK.string.text
+msgctxt "sb.src#RID_BASIC_START.SbERR_WRONG_ARGS___ERRCODE_RES_MASK.string.text"
+msgid "Invalid number of arguments."
+msgstr "Número no válido de argumentos."
+
+#: sb.src#RID_BASIC_START.SbERR_NOT_A_COLL___ERRCODE_RES_MASK.string.text
+msgid "Object is not a list."
+msgstr "El objeto no es una lista."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_ORDINAL___ERRCODE_RES_MASK.string.text
+msgid "Invalid ordinal number."
+msgstr "Número ordinal no válido."
+
+#: sb.src#RID_BASIC_START.SbERR_DLLPROC_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "Specified DLL function not found."
+msgstr "No se encuentra la función DLL especificada."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_CLIPBD_FORMAT___ERRCODE_RES_MASK.string.text
+msgid "Invalid clipboard format."
+msgstr "Formato no válido del portapapeles."
+
+#: sb.src#RID_BASIC_START.SbERR_PROPERTY_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "Object does not have this property."
+msgstr "El objeto no tiene esta propiedad."
+
+#: sb.src#RID_BASIC_START.SbERR_METHOD_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "Object does not have this method."
+msgstr "El objeto no tiene este método."
+
+#: sb.src#RID_BASIC_START.SbERR_ARG_MISSING___ERRCODE_RES_MASK.string.text
+msgid "Required argument lacking."
+msgstr "Falta argumento requerido."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_NUMBER_OF_ARGS___ERRCODE_RES_MASK.string.text
+msgctxt "sb.src#RID_BASIC_START.SbERR_BAD_NUMBER_OF_ARGS___ERRCODE_RES_MASK.string.text"
+msgid "Invalid number of arguments."
+msgstr "Número no válido de argumentos."
+
+#: sb.src#RID_BASIC_START.SbERR_METHOD_FAILED___ERRCODE_RES_MASK.string.text
+msgid "Error executing a method."
+msgstr "Error al ejecutar un método."
+
+#: sb.src#RID_BASIC_START.SbERR_SETPROP_FAILED___ERRCODE_RES_MASK.string.text
+msgid "Unable to set property."
+msgstr "No es posible definir la propiedad."
+
+#: sb.src#RID_BASIC_START.SbERR_GETPROP_FAILED___ERRCODE_RES_MASK.string.text
+msgid "Unable to determine property."
+msgstr "No es posible determinar la propiedad."
+
+#: sb.src#RID_BASIC_START.SbERR_UNEXPECTED___ERRCODE_RES_MASK.string.text
+msgid "Unexpected symbol: $(ARG1)."
+msgstr "Símbolo no esperado: $(ARG1)."
+
+#: sb.src#RID_BASIC_START.SbERR_EXPECTED___ERRCODE_RES_MASK.string.text
+msgid "Expected: $(ARG1)."
+msgstr "Se esperaba: $(ARG1)."
+
+#: sb.src#RID_BASIC_START.SbERR_SYMBOL_EXPECTED___ERRCODE_RES_MASK.string.text
+msgid "Symbol expected."
+msgstr "Símbolo esperado."
+
+#: sb.src#RID_BASIC_START.SbERR_VAR_EXPECTED___ERRCODE_RES_MASK.string.text
+msgid "Variable expected."
+msgstr "Variable esperada."
+
+#: sb.src#RID_BASIC_START.SbERR_LABEL_EXPECTED___ERRCODE_RES_MASK.string.text
+msgid "Label expected."
+msgstr "Etiqueta esperada."
+
+#: sb.src#RID_BASIC_START.SbERR_LVALUE_EXPECTED___ERRCODE_RES_MASK.string.text
+msgid "Value cannot be applied."
+msgstr "No se puede aplicar el valor."
+
+#: sb.src#RID_BASIC_START.SbERR_VAR_DEFINED___ERRCODE_RES_MASK.string.text
+msgid "Variable $(ARG1) already defined."
+msgstr "La variable $(ARG1) ya está definida."
+
+#: sb.src#RID_BASIC_START.SbERR_PROC_DEFINED___ERRCODE_RES_MASK.string.text
+msgid "Sub procedure or function procedure $(ARG1) already defined."
+msgstr "Subprocedimiento o procedimiento de función $(ARG1) ya definido."
+
+#: sb.src#RID_BASIC_START.SbERR_LABEL_DEFINED___ERRCODE_RES_MASK.string.text
+msgid "Label $(ARG1) already defined."
+msgstr "La etiqueta $(ARG1) ya está definida."
+
+#: sb.src#RID_BASIC_START.SbERR_UNDEF_VAR___ERRCODE_RES_MASK.string.text
+msgid "Variable $(ARG1) not found."
+msgstr "No se encuentra la variable $(ARG1)."
+
+#: sb.src#RID_BASIC_START.SbERR_UNDEF_ARRAY___ERRCODE_RES_MASK.string.text
+msgid "Array or procedure $(ARG1) not found."
+msgstr "No se encuentra la matriz o el procedimiento $(ARG1)."
+
+#: sb.src#RID_BASIC_START.SbERR_UNDEF_PROC___ERRCODE_RES_MASK.string.text
+msgid "Procedure $(ARG1) not found."
+msgstr "No se encuentra el procedimiento $(ARG1)."
+
+#: sb.src#RID_BASIC_START.SbERR_UNDEF_LABEL___ERRCODE_RES_MASK.string.text
+msgid "Label $(ARG1) undefined."
+msgstr "La etiqueta $(ARG1) no está definida."
+
+#: sb.src#RID_BASIC_START.SbERR_UNDEF_TYPE___ERRCODE_RES_MASK.string.text
+msgid "Unknown data type $(ARG1)."
+msgstr "Tipo de datos $(ARG1) desconocido."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_EXIT___ERRCODE_RES_MASK.string.text
+msgid "Exit $(ARG1) expected."
+msgstr "Se esperaba la salida $(ARG1)."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_BLOCK___ERRCODE_RES_MASK.string.text
+msgid "Statement block still open: $(ARG1) missing."
+msgstr "Bloqueo de instrucción todavía abierto: falta $(ARG1)."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_BRACKETS___ERRCODE_RES_MASK.string.text
+msgid "Parentheses do not match."
+msgstr "Los paréntesis no coinciden."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_DECLARATION___ERRCODE_RES_MASK.string.text
+msgid "Symbol $(ARG1) already defined differently."
+msgstr "El símbolo $(ARG1) ya se ha definido de forma diferente."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_PARAMETERS___ERRCODE_RES_MASK.string.text
+msgid "Parameters do not correspond to procedure."
+msgstr "Los parámetros no se corresponden con el procedimiento."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_CHAR_IN_NUMBER___ERRCODE_RES_MASK.string.text
+msgid "Invalid character in number."
+msgstr "Carácter no válido en el número."
+
+#: sb.src#RID_BASIC_START.SbERR_MUST_HAVE_DIMS___ERRCODE_RES_MASK.string.text
+msgid "Array must be dimensioned."
+msgstr "Se debe dimensionar la matriz."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_IF___ERRCODE_RES_MASK.string.text
+msgid "Else/Endif without If."
+msgstr "Else/Endif sin If."
+
+#: sb.src#RID_BASIC_START.SbERR_NOT_IN_SUBR___ERRCODE_RES_MASK.string.text
+msgid "$(ARG1) not allowed within a procedure."
+msgstr "No se permite $(ARG1) en un procedimiento."
+
+#: sb.src#RID_BASIC_START.SbERR_NOT_IN_MAIN___ERRCODE_RES_MASK.string.text
+msgid "$(ARG1) not allowed outside a procedure."
+msgstr "No se permite $(ARG1) fuera de un procedimiento."
+
+#: sb.src#RID_BASIC_START.SbERR_WRONG_DIMS___ERRCODE_RES_MASK.string.text
+msgid "Dimension specifications do not match."
+msgstr "Las especificaciones de dimensiones no coinciden."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_OPTION___ERRCODE_RES_MASK.string.text
+msgid "Unknown option: $(ARG1)."
+msgstr "Opción desconocida: $(ARG1)."
+
+#: sb.src#RID_BASIC_START.SbERR_CONSTANT_REDECLARED___ERRCODE_RES_MASK.string.text
+msgid "Constant $(ARG1) redefined."
+msgstr "La constante $(ARG1) se ha vuelto a definir."
+
+#: sb.src#RID_BASIC_START.SbERR_PROG_TOO_LARGE___ERRCODE_RES_MASK.string.text
+msgid "Program too large."
+msgstr "El programa es demasiado grande."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_STRINGS_ARRAYS___ERRCODE_RES_MASK.string.text
+msgid "Strings or arrays not permitted."
+msgstr "Matrices o cadenas de caracteres no permitidos."
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_EXCEPTION___ERRCODE_RES_MASK.string.text
+msgid "An exception occurred $(ARG1)."
+msgstr "Se ha producido una excepción $(ARG1)."
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_ARRAY_FIX___ERRCODE_RES_MASK.string.text
+msgid "This array is fixed or temporarily locked."
+msgstr "Este arreglo es fijo o temporalmente supendido."
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_STRING_OVERFLOW___ERRCODE_RES_MASK.string.text
+msgid "Out of string space."
+msgstr "Fuera de espacio en cadena."
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_EXPR_TOO_COMPLEX___ERRCODE_RES_MASK.string.text
+msgid "Expression Too Complex."
+msgstr "Expresión muy compleja."
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_OPER_NOT_PERFORM___ERRCODE_RES_MASK.string.text
+msgid "Can't perform requested operation."
+msgstr "No se puede producir la operación solicitada."
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_TOO_MANY_DLL___ERRCODE_RES_MASK.string.text
+msgid "Too many DLL application clients."
+msgstr "Demasiadas aplicaciones clientes tipo DLL."
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_LOOP_NOT_INIT___ERRCODE_RES_MASK.string.text
+msgid "For loop not initialized."
+msgstr "No se inicializó el bucle For."
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_COMPAT___ERRCODE_RES_MASK.string.text
+msgid "$(ARG1)"
+msgstr "$(ARG1)"
+
+#: sb.src#IDS_SBERR_TERMINATED.string.text
+msgid "The macro running has been interrupted"
+msgstr "Se ha interrumpido la macro activa"
+
+#: sb.src#IDS_SBERR_STOREREF.string.text
+msgid "Reference will not be saved: "
+msgstr "No se guardará la referencia: "
+
+#: sb.src#ERRCODE_BASMGR_LIBLOAD___ERRCODE_RES_MASK.string.text
+msgid "Error loading library '$(ARG1)'."
+msgstr "Error al cargar la biblioteca '$(ARG1)'."
+
+#: sb.src#ERRCODE_BASMGR_LIBSAVE___ERRCODE_RES_MASK.string.text
+msgid "Error saving library: '$(ARG1)'."
+msgstr "Error al guardar la biblioteca: '$(ARG1)'."
+
+#: sb.src#ERRCODE_BASMGR_MGROPEN___ERRCODE_RES_MASK.string.text
+msgid "The BASIC from the file '$(ARG1)' could not be initialized."
+msgstr "No se ha podido inicializar BASIC desde el archivo '$(ARG1)'."
+
+#: sb.src#ERRCODE_BASMGR_MGRSAVE___ERRCODE_RES_MASK.string.text
+msgid "Error saving BASIC: '$(ARG1)'."
+msgstr "Error al guardar BASIC: '$(ARG1)'."
+
+#: sb.src#ERRCODE_BASMGR_REMOVELIB___ERRCODE_RES_MASK.string.text
+msgid "Error removing library."
+msgstr "Error al suprimir la biblioteca."
+
+#: sb.src#ERRCODE_BASMGR_UNLOADLIB___ERRCODE_RES_MASK.string.text
+msgid "The library could not be removed from memory."
+msgstr "No se pudo eliminar la biblioteca de la memoria."
diff --git a/source/es/basic/source/sbx.po b/source/es/basic/source/sbx.po
new file mode 100644
index 00000000000..06b0d2e2264
--- /dev/null
+++ b/source/es/basic/source/sbx.po
@@ -0,0 +1,44 @@
+#. extracted from basic/source/sbx.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+basic%2Fsource%2Fsbx.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 20:00+0200\n"
+"Last-Translator: Alexandro <jza@openoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: format.src#STR_BASICKEY_FORMAT_ON.string.text
+msgid "On"
+msgstr "Activado"
+
+#: format.src#STR_BASICKEY_FORMAT_OFF.string.text
+msgid "Off"
+msgstr "Desactivado"
+
+#: format.src#STR_BASICKEY_FORMAT_TRUE.string.text
+msgid "True"
+msgstr "Verdadero"
+
+#: format.src#STR_BASICKEY_FORMAT_FALSE.string.text
+msgid "False"
+msgstr "Falso"
+
+#: format.src#STR_BASICKEY_FORMAT_YES.string.text
+msgid "Yes"
+msgstr "Sí"
+
+#: format.src#STR_BASICKEY_FORMAT_NO.string.text
+msgid "No"
+msgstr "No"
+
+#: format.src#STR_BASICKEY_FORMAT_CURRENCY.string.text
+msgid "@0.00 $;@(0.00 $)"
+msgstr "@0.00 $;@(0.00 $)"
diff --git a/source/es/chart2/source/controller/dialogs.po b/source/es/chart2/source/controller/dialogs.po
new file mode 100644
index 00000000000..016ce0dcbd2
--- /dev/null
+++ b/source/es/chart2/source/controller/dialogs.po
@@ -0,0 +1,1740 @@
+#. extracted from chart2/source/controller/dialogs.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+chart2%2Fsource%2Fcontroller%2Fdialogs.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-08-14 05:39+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: tp_TitleRotation.src#TP_ALIGNMENT.BTN_TXTSTACKED.tristatebox.text
+msgctxt "tp_TitleRotation.src#TP_ALIGNMENT.BTN_TXTSTACKED.tristatebox.text"
+msgid "Ve~rtically stacked"
+msgstr "Disposición ve~rtical"
+
+#: tp_TitleRotation.src#TP_ALIGNMENT.FT_DEGREES.fixedtext.text
+msgctxt "tp_TitleRotation.src#TP_ALIGNMENT.FT_DEGREES.fixedtext.text"
+msgid "~Degrees"
+msgstr "~Grados"
+
+#: tp_TitleRotation.src#TP_ALIGNMENT.FL_ALIGN.fixedline.text
+msgctxt "tp_TitleRotation.src#TP_ALIGNMENT.FL_ALIGN.fixedline.text"
+msgid "Text orientation"
+msgstr "Orientación del texto"
+
+#: tp_TitleRotation.src#TP_ALIGNMENT.FT_TEXTDIR.fixedtext.text
+msgctxt "tp_TitleRotation.src#TP_ALIGNMENT.FT_TEXTDIR.fixedtext.text"
+msgid "Te~xt direction"
+msgstr "Dirección de te~xto"
+
+#: Strings_ChartTypes.src#STR_TYPE_COLUMN.string.text
+msgid "Column"
+msgstr "Columna"
+
+#: Strings_ChartTypes.src#STR_TYPE_BAR.string.text
+msgid "Bar"
+msgstr "Barra"
+
+#: Strings_ChartTypes.src#STR_TYPE_AREA.string.text
+msgctxt "Strings_ChartTypes.src#STR_TYPE_AREA.string.text"
+msgid "Area"
+msgstr "Área"
+
+#: Strings_ChartTypes.src#STR_TYPE_PIE.string.text
+msgid "Pie"
+msgstr "Círculo"
+
+#: Strings_ChartTypes.src#STR_PIE_EXPLODED.string.text
+msgid "Exploded Pie Chart"
+msgstr "Gráfico circular esparcido"
+
+#: Strings_ChartTypes.src#STR_DONUT_EXPLODED.string.text
+msgid "Exploded Donut Chart"
+msgstr "Gráfico de anillos seccionado"
+
+#: Strings_ChartTypes.src#STR_DONUT.string.text
+msgid "Donut"
+msgstr "Anillo"
+
+#: Strings_ChartTypes.src#STR_TYPE_LINE.string.text
+msgctxt "Strings_ChartTypes.src#STR_TYPE_LINE.string.text"
+msgid "Line"
+msgstr "Línea"
+
+#: Strings_ChartTypes.src#STR_TYPE_XY.string.text
+msgid "XY (Scatter)"
+msgstr "XY (dispersión)"
+
+#: Strings_ChartTypes.src#STR_POINTS_AND_LINES.string.text
+msgid "Points and Lines"
+msgstr "Puntos y líneas"
+
+#: Strings_ChartTypes.src#STR_POINTS_ONLY.string.text
+msgid "Points Only"
+msgstr "Sólo puntos"
+
+#: Strings_ChartTypes.src#STR_LINES_ONLY.string.text
+msgid "Lines Only"
+msgstr "Sólo líneas"
+
+#: Strings_ChartTypes.src#STR_LINES_3D.string.text
+msgid "3D Lines"
+msgstr "Líneas 3D"
+
+#: Strings_ChartTypes.src#STR_TYPE_COMBI_COLUMN_LINE.string.text
+msgid "Column and Line"
+msgstr "Línea y columna"
+
+#: Strings_ChartTypes.src#STR_LINE_COLUMN.string.text
+msgid "Columns and Lines"
+msgstr "Líneas y columnas"
+
+#: Strings_ChartTypes.src#STR_LINE_STACKEDCOLUMN.string.text
+msgid "Stacked Columns and Lines"
+msgstr "Líneas y columnas apiladas"
+
+#: Strings_ChartTypes.src#STR_TYPE_NET.string.text
+msgid "Net"
+msgstr "Red"
+
+#: Strings_ChartTypes.src#STR_TYPE_STOCK.string.text
+msgid "Stock"
+msgstr "Stock"
+
+#: Strings_ChartTypes.src#STR_STOCK_1.string.text
+msgid "Stock Chart 1"
+msgstr "Diagrama de curso 1"
+
+#: Strings_ChartTypes.src#STR_STOCK_2.string.text
+msgid "Stock Chart 2"
+msgstr "Diagrama de curso 2"
+
+#: Strings_ChartTypes.src#STR_STOCK_3.string.text
+msgid "Stock Chart 3"
+msgstr "Diagrama de curso 3"
+
+#: Strings_ChartTypes.src#STR_STOCK_4.string.text
+msgid "Stock Chart 4"
+msgstr "Diagrama de curso 4"
+
+#: Strings_ChartTypes.src#STR_NORMAL.string.text
+msgid "Normal"
+msgstr "Normal"
+
+#: Strings_ChartTypes.src#STR_STACKED.string.text
+msgid "Stacked"
+msgstr "En pilas"
+
+#: Strings_ChartTypes.src#STR_PERCENT.string.text
+msgid "Percent Stacked"
+msgstr "Porcentaje apilado"
+
+#: Strings_ChartTypes.src#STR_DEEP.string.text
+msgctxt "Strings_ChartTypes.src#STR_DEEP.string.text"
+msgid "Deep"
+msgstr "Profundidad"
+
+#: Strings_ChartTypes.src#STR_FILLED.string.text
+msgid "Filled"
+msgstr "Llenado"
+
+#: Strings_ChartTypes.src#STR_TYPE_BUBBLE.string.text
+msgid "Bubble"
+msgstr "Burbuja"
+
+#: Strings_ChartTypes.src#STR_BUBBLE_1.string.text
+msgid "Bubble Chart"
+msgstr "Gráfico de Burbuja"
+
+#: Strings.src#STR_DLG_CHART_WIZARD.string.text
+msgid "Chart Wizard"
+msgstr "Asistente de gráficos"
+
+#: Strings.src#STR_DLG_SMOOTH_LINE_PROPERTIES.string.text
+msgid "Smooth Lines"
+msgstr "Líneas suaves"
+
+#: Strings.src#STR_DLG_NUMBERFORMAT_FOR_PERCENTAGE_VALUE.string.text
+msgid "Number Format for Percentage Value"
+msgstr "Formato de número por valor del porcentaje."
+
+#: Strings.src#STR_PAGE_CHARTTYPE.string.text
+msgid "Chart Type"
+msgstr "Tipo de gráfico"
+
+#: Strings.src#STR_PAGE_DATA_RANGE.string.text
+msgid "Data Range"
+msgstr "Rango de datos"
+
+#: Strings.src#STR_PAGE_CHART_ELEMENTS.string.text
+msgid "Chart Elements"
+msgstr "Elementos de gráficos"
+
+#: Strings.src#STR_PAGE_CHART_LOCATION.string.text
+msgid "Chart Location"
+msgstr "Ubicación del gráfico"
+
+#: Strings.src#STR_PAGE_LINE.string.text
+msgctxt "Strings.src#STR_PAGE_LINE.string.text"
+msgid "Line"
+msgstr "Línea"
+
+#: Strings.src#STR_PAGE_BORDER.string.text
+msgid "Borders"
+msgstr "Borde"
+
+#: Strings.src#STR_PAGE_AREA.string.text
+msgctxt "Strings.src#STR_PAGE_AREA.string.text"
+msgid "Area"
+msgstr "Área"
+
+#: Strings.src#STR_PAGE_TRANSPARENCY.string.text
+msgid "Transparency"
+msgstr "Transparencia"
+
+#: Strings.src#STR_PAGE_FONT.string.text
+msgctxt "Strings.src#STR_PAGE_FONT.string.text"
+msgid "Font"
+msgstr "Fuente"
+
+#: Strings.src#STR_PAGE_FONT_EFFECTS.string.text
+msgctxt "Strings.src#STR_PAGE_FONT_EFFECTS.string.text"
+msgid "Font Effects"
+msgstr "Efecto de fuentes"
+
+#: Strings.src#STR_PAGE_NUMBERS.string.text
+msgid "Numbers"
+msgstr "Números"
+
+#: Strings.src#STR_PAGE_POSITION.string.text
+msgctxt "Strings.src#STR_PAGE_POSITION.string.text"
+msgid "Position"
+msgstr "Posición"
+
+#: Strings.src#STR_BUTTON_UP.string.text
+msgid "Up"
+msgstr "Arriba"
+
+#: Strings.src#STR_BUTTON_DOWN.string.text
+msgid "Down"
+msgstr "Abajo"
+
+#: Strings.src#STR_PAGE_LAYOUT.string.text
+msgid "Layout"
+msgstr "Diseño"
+
+#: Strings.src#STR_PAGE_OPTIONS.string.text
+msgid "Options"
+msgstr "Opciones"
+
+#: Strings.src#STR_PAGE_SCALE.string.text
+msgctxt "Strings.src#STR_PAGE_SCALE.string.text"
+msgid "Scale"
+msgstr "Escala"
+
+#: Strings.src#STR_PAGE_POSITIONING.string.text
+msgid "Positioning"
+msgstr "Posición"
+
+#: Strings.src#STR_PAGE_TRENDLINE_TYPE.string.text
+msgid "Type"
+msgstr "Tipo"
+
+#: Strings.src#STR_PAGE_XERROR_BARS.string.text
+msgctxt "Strings.src#STR_PAGE_XERROR_BARS.string.text"
+msgid "X Error Bars"
+msgstr "Barras de error X"
+
+#: Strings.src#STR_PAGE_YERROR_BARS.string.text
+msgctxt "Strings.src#STR_PAGE_YERROR_BARS.string.text"
+msgid "Y Error Bars"
+msgstr "Barras de error Y"
+
+#: Strings.src#STR_PAGE_ZERROR_BARS.string.text
+msgctxt "Strings.src#STR_PAGE_ZERROR_BARS.string.text"
+msgid "Z Error Bars"
+msgstr "Barras de error Z"
+
+#: Strings.src#STR_PAGE_ALIGNMENT.string.text
+msgctxt "Strings.src#STR_PAGE_ALIGNMENT.string.text"
+msgid "Alignment"
+msgstr "Alineación"
+
+#: Strings.src#STR_PAGE_PERSPECTIVE.string.text
+msgid "Perspective"
+msgstr "Perspectiva"
+
+#: Strings.src#STR_PAGE_APPEARANCE.string.text
+msgid "Appearance"
+msgstr "Apariencia"
+
+#: Strings.src#STR_PAGE_ILLUMINATION.string.text
+msgid "Illumination"
+msgstr "Iluminación"
+
+#: Strings.src#STR_PAGE_ASIAN.string.text
+msgctxt "Strings.src#STR_PAGE_ASIAN.string.text"
+msgid "Asian Typography"
+msgstr "Tipografía Asiática"
+
+#: Strings.src#STR_OBJECT_AVERAGE_LINE_WITH_PARAMETERS.string.text
+msgid "Mean value line with value %AVERAGE_VALUE and standard deviation %STD_DEVIATION"
+msgstr "La línea del valor medio con un valor de %AVERAGE_VALUE y una desviación estándar del %STD_DEVIATION"
+
+#: Strings.src#STR_OBJECT_AXIS.string.text
+msgid "Axis"
+msgstr "Eje"
+
+#: Strings.src#STR_OBJECT_AXIS_X.string.text
+msgid "X Axis"
+msgstr "Eje X"
+
+#: Strings.src#STR_OBJECT_AXIS_Y.string.text
+msgid "Y Axis"
+msgstr "Eje Y"
+
+#: Strings.src#STR_OBJECT_AXIS_Z.string.text
+msgid "Z Axis"
+msgstr "Eje Z"
+
+#: Strings.src#STR_OBJECT_SECONDARY_X_AXIS.string.text
+msgid "Secondary X Axis"
+msgstr "Eje X secundario"
+
+#: Strings.src#STR_OBJECT_SECONDARY_Y_AXIS.string.text
+msgid "Secondary Y Axis"
+msgstr "Eje Y secundario"
+
+#: Strings.src#STR_OBJECT_AXES.string.text
+msgctxt "Strings.src#STR_OBJECT_AXES.string.text"
+msgid "Axes"
+msgstr "Ejes"
+
+#: Strings.src#STR_OBJECT_GRIDS.string.text
+msgctxt "Strings.src#STR_OBJECT_GRIDS.string.text"
+msgid "Grids"
+msgstr "Cuadrículas"
+
+#: Strings.src#STR_OBJECT_GRID.string.text
+msgid "Grid"
+msgstr "Cuadrícula"
+
+#: Strings.src#STR_OBJECT_GRID_MAJOR_X.string.text
+msgid "X Axis Major Grid"
+msgstr "Cuadrícula mayor del eje X"
+
+#: Strings.src#STR_OBJECT_GRID_MAJOR_Y.string.text
+msgid "Y Axis Major Grid"
+msgstr "Cuadrícula mayor del eje Y"
+
+#: Strings.src#STR_OBJECT_GRID_MAJOR_Z.string.text
+msgid "Z Axis Major Grid"
+msgstr "Cuadrícula mayor del eje Z"
+
+#: Strings.src#STR_OBJECT_GRID_MINOR_X.string.text
+msgid "X Axis Minor Grid"
+msgstr "Cuadrícula menor del eje X"
+
+#: Strings.src#STR_OBJECT_GRID_MINOR_Y.string.text
+msgid "Y Axis Minor Grid"
+msgstr "Cuadrícula menor del eje Y"
+
+#: Strings.src#STR_OBJECT_GRID_MINOR_Z.string.text
+msgid "Z Axis Minor Grid"
+msgstr "Cuadrícula menor del eje Z"
+
+#: Strings.src#STR_OBJECT_LEGEND.string.text
+msgid "Legend"
+msgstr "Leyenda"
+
+#: Strings.src#STR_OBJECT_TITLE.string.text
+msgid "Title"
+msgstr "Título"
+
+#: Strings.src#STR_OBJECT_TITLES.string.text
+msgid "Titles"
+msgstr "Títulos"
+
+#: Strings.src#STR_OBJECT_TITLE_MAIN.string.text
+msgid "Main Title"
+msgstr "Título principal"
+
+#: Strings.src#STR_OBJECT_TITLE_SUB.string.text
+msgid "Subtitle"
+msgstr "Subtítulo"
+
+#: Strings.src#STR_OBJECT_TITLE_X_AXIS.string.text
+msgid "X Axis Title"
+msgstr "Título del eje X"
+
+#: Strings.src#STR_OBJECT_TITLE_Y_AXIS.string.text
+msgid "Y Axis Title"
+msgstr "Título del eje Y"
+
+#: Strings.src#STR_OBJECT_TITLE_Z_AXIS.string.text
+msgid "Z Axis Title"
+msgstr "Título del eje Z"
+
+#: Strings.src#STR_OBJECT_TITLE_SECONDARY_X_AXIS.string.text
+msgid "Secondary X Axis Title"
+msgstr "Título secundario del eje X"
+
+#: Strings.src#STR_OBJECT_TITLE_SECONDARY_Y_AXIS.string.text
+msgid "Secondary Y Axis Title"
+msgstr "Título secundario del eje Y"
+
+#: Strings.src#STR_OBJECT_LABEL.string.text
+msgid "Label"
+msgstr "Etiqueta"
+
+#: Strings.src#STR_OBJECT_DATALABELS.string.text
+msgid "Data Labels"
+msgstr "Etiquetas de datos"
+
+#: Strings.src#STR_OBJECT_DATAPOINT.string.text
+msgid "Data Point"
+msgstr "Punto de datos"
+
+#: Strings.src#STR_OBJECT_DATAPOINTS.string.text
+msgid "Data Points"
+msgstr "Puntos de datos"
+
+#: Strings.src#STR_OBJECT_LEGEND_SYMBOL.string.text
+msgid "Legend Key"
+msgstr "Clave de leyenda"
+
+#: Strings.src#STR_OBJECT_DATASERIES.string.text
+msgctxt "Strings.src#STR_OBJECT_DATASERIES.string.text"
+msgid "Data Series"
+msgstr "Series de datos"
+
+#: Strings.src#STR_OBJECT_DATASERIES_PLURAL.string.text
+msgctxt "Strings.src#STR_OBJECT_DATASERIES_PLURAL.string.text"
+msgid "Data Series"
+msgstr "Series de datos"
+
+#: Strings.src#STR_OBJECT_CURVE.string.text
+msgid "Trend Line"
+msgstr "Línea de tendencia"
+
+#: Strings.src#STR_OBJECT_CURVES.string.text
+msgid "Trend Lines"
+msgstr "Líneas de tendencia"
+
+#: Strings.src#STR_OBJECT_CURVE_WITH_PARAMETERS.string.text
+msgid "Trend line %FORMULA with accuracy R² = %RSQUARED"
+msgstr "Línea de tendencia %FORMULA con precisión R² = %RSQUARED"
+
+#: Strings.src#STR_OBJECT_AVERAGE_LINE.string.text
+msgid "Mean Value Line"
+msgstr "Línea del valor medio"
+
+#: Strings.src#STR_OBJECT_CURVE_EQUATION.string.text
+msgctxt "Strings.src#STR_OBJECT_CURVE_EQUATION.string.text"
+msgid "Equation"
+msgstr "Ecuación"
+
+#: Strings.src#STR_OBJECT_ERROR_BARS_X.string.text
+msgctxt "Strings.src#STR_OBJECT_ERROR_BARS_X.string.text"
+msgid "X Error Bars"
+msgstr "Barras de error X"
+
+#: Strings.src#STR_OBJECT_ERROR_BARS_Y.string.text
+msgctxt "Strings.src#STR_OBJECT_ERROR_BARS_Y.string.text"
+msgid "Y Error Bars"
+msgstr "Barras de error Y"
+
+#: Strings.src#STR_OBJECT_ERROR_BARS_Z.string.text
+msgctxt "Strings.src#STR_OBJECT_ERROR_BARS_Z.string.text"
+msgid "Z Error Bars"
+msgstr "Barras de error Z"
+
+#: Strings.src#STR_OBJECT_STOCK_LOSS.string.text
+msgid "Stock Loss"
+msgstr "Reducción"
+
+#: Strings.src#STR_OBJECT_STOCK_GAIN.string.text
+msgid "Stock Gain"
+msgstr "Crecimiento"
+
+#: Strings.src#STR_OBJECT_PAGE.string.text
+msgid "Chart Area"
+msgstr "Área de gráficos"
+
+#: Strings.src#STR_OBJECT_DIAGRAM.string.text
+msgid "Chart"
+msgstr "Gráfico"
+
+#: Strings.src#STR_OBJECT_DIAGRAM_WALL.string.text
+msgid "Chart Wall"
+msgstr "Plano lateral del gráfico"
+
+#: Strings.src#STR_OBJECT_DIAGRAM_FLOOR.string.text
+msgid "Chart Floor"
+msgstr "Gráfico de superficie"
+
+#: Strings.src#STR_OBJECT_SHAPE.string.text
+msgid "Drawing Object"
+msgstr "Objeto de dibujo"
+
+#: Strings.src#STR_TIP_SELECT_RANGE.string.text
+msgid "Select data range"
+msgstr "Seleccionar un rango de datos"
+
+#: Strings.src#STR_TIP_CHOOSECOLOR.string.text
+msgid "Select a color using the color dialog"
+msgstr "Seleccionar un color usando el diálogo de color"
+
+#: Strings.src#STR_TIP_LIGHTSOURCE_X.string.text
+msgid "Light Source %LIGHTNUMBER"
+msgstr "Iluminación %LIGHTNUMBER"
+
+#: Strings.src#STR_TIP_DATASERIES.string.text
+msgid "Data Series '%SERIESNAME'"
+msgstr "Serie de datos '%SERIESNAME'"
+
+#: Strings.src#STR_TIP_DATAPOINT_INDEX.string.text
+msgid "Data Point %POINTNUMBER"
+msgstr "Punto de datos %POINTNUMBER"
+
+#: Strings.src#STR_TIP_DATAPOINT_VALUES.string.text
+msgid "Values: %POINTVALUES"
+msgstr "Valores: %POINTVALUES"
+
+#: Strings.src#STR_TIP_DATAPOINT.string.text
+msgid "Data Point %POINTNUMBER, data series %SERIESNUMBER, values: %POINTVALUES"
+msgstr "Punto de datos %POINTNUMBER, series de datos %SERIESNUMBER, valores: %POINTVALUES"
+
+#: Strings.src#STR_STATUS_DATAPOINT_MARKED.string.text
+msgid "Data point %POINTNUMBER in data series %SERIESNUMBER selected, values: %POINTVALUES"
+msgstr "Punto de datos %POINTNUMBER en serie de datos %SERIESNUMBER seleccionado, valor: %POINTVALUES"
+
+#: Strings.src#STR_STATUS_OBJECT_MARKED.string.text
+msgid "%OBJECTNAME selected"
+msgstr "%OBJECTNAME seleccionada"
+
+#: Strings.src#STR_STATUS_PIE_SEGMENT_EXPLODED.string.text
+msgid "Pie exploded by %PERCENTVALUE percent"
+msgstr "Circulos expandidos por porcentaje %PERCENTVALUE"
+
+#: Strings.src#STR_OBJECT_FOR_SERIES.string.text
+msgid "%OBJECTNAME for Data Series '%SERIESNAME'"
+msgstr "%OBJECTNAME para las series de dato '%SERIESNAME'"
+
+#: Strings.src#STR_OBJECT_FOR_ALL_SERIES.string.text
+msgid "%OBJECTNAME for all Data Series"
+msgstr "%OBJECTNAME para todas las series de datos"
+
+#: Strings.src#STR_ACTION_EDIT_CHARTTYPE.string.text
+msgid "Edit chart type"
+msgstr "Editar tipo de gráfico"
+
+#: Strings.src#STR_ACTION_EDIT_DATA_RANGES.string.text
+msgid "Edit data ranges"
+msgstr "Editar rangos de datos"
+
+#: Strings.src#STR_ACTION_EDIT_3D_VIEW.string.text
+msgid "Edit 3D view"
+msgstr "Editar vista 3D"
+
+#: Strings.src#STR_ACTION_EDIT_CHART_DATA.string.text
+msgid "Edit chart data"
+msgstr "Editar datos del gráfico"
+
+#: Strings.src#STR_ACTION_TOGGLE_LEGEND.string.text
+msgid "Legend on/off"
+msgstr "Activar/desactivar leyenda"
+
+#: Strings.src#STR_ACTION_TOGGLE_GRID_HORZ.string.text
+msgid "Horizontal grid on/off"
+msgstr "Activar/desactivar cuadricula horizontal"
+
+#: Strings.src#STR_ACTION_SCALE_TEXT.string.text
+msgid "Scale Text"
+msgstr "Escalar texto"
+
+#: Strings.src#STR_ACTION_REARRANGE_CHART.string.text
+msgid "Automatic Layout"
+msgstr "Diseño automático"
+
+#: Strings.src#STR_ACTION_NOTPOSSIBLE.string.text
+msgid "This function cannot be completed with the selected objects."
+msgstr ""
+"No es posible ejecutar la acción\n"
+"con los objetos seleccionados."
+
+#: Strings.src#STR_ACTION_EDIT_TEXT.string.text
+msgid "Edit text"
+msgstr "Editar el texto"
+
+#: Strings.src#STR_COLUMN_LABEL.string.text
+msgid "Column %COLUMNNUMBER"
+msgstr "Columna %COLUMNNUMBER"
+
+#: Strings.src#STR_ROW_LABEL.string.text
+msgid "Row %ROWNUMBER"
+msgstr "Fila %ROWNUMBER"
+
+#: Strings.src#STR_DATA_ROLE_LABEL.string.text
+msgid "Name"
+msgstr "Nombre"
+
+#: Strings.src#STR_DATA_ROLE_X.string.text
+msgid "X-Values"
+msgstr "Valores-X"
+
+#: Strings.src#STR_DATA_ROLE_Y.string.text
+msgid "Y-Values"
+msgstr "Valores-Y"
+
+#: Strings.src#STR_DATA_ROLE_SIZE.string.text
+msgid "Bubble Sizes"
+msgstr "Tamaño de Burbuja"
+
+#: Strings.src#STR_DATA_ROLE_X_ERROR.string.text
+msgid "X-Error-Bars"
+msgstr "Barras-Error-X"
+
+#: Strings.src#STR_DATA_ROLE_X_ERROR_POSITIVE.string.text
+msgid "Positive X-Error-Bars"
+msgstr "Barras-Error-X Positivas"
+
+#: Strings.src#STR_DATA_ROLE_X_ERROR_NEGATIVE.string.text
+msgid "Negative X-Error-Bars"
+msgstr "Barras-Error-X Negativas"
+
+#: Strings.src#STR_DATA_ROLE_Y_ERROR.string.text
+msgid "Y-Error-Bars"
+msgstr "Barras-Error-Y"
+
+#: Strings.src#STR_DATA_ROLE_Y_ERROR_POSITIVE.string.text
+msgid "Positive Y-Error-Bars"
+msgstr "Barras-Error-Y Positivas"
+
+#: Strings.src#STR_DATA_ROLE_Y_ERROR_NEGATIVE.string.text
+msgid "Negative Y-Error-Bars"
+msgstr "Barras-Error-Y Negativas"
+
+#: Strings.src#STR_DATA_ROLE_FIRST.string.text
+msgid "Open Values"
+msgstr "Abrir valores"
+
+#: Strings.src#STR_DATA_ROLE_LAST.string.text
+msgid "Close Values"
+msgstr "Cerrar valores"
+
+#: Strings.src#STR_DATA_ROLE_MIN.string.text
+msgid "Low Values"
+msgstr "Valores bajos"
+
+#: Strings.src#STR_DATA_ROLE_MAX.string.text
+msgid "High Values"
+msgstr "Valores altos"
+
+#: Strings.src#STR_DATA_ROLE_CATEGORIES.string.text
+msgid "Categories"
+msgstr "Categorías"
+
+#: Strings.src#STR_DATA_UNNAMED_SERIES.string.text
+msgid "Unnamed Series"
+msgstr "Serie sin nombre"
+
+#: Strings.src#STR_DATA_UNNAMED_SERIES_WITH_INDEX.string.text
+msgid "Unnamed Series %NUMBER"
+msgstr "Serie sin nombre %NUMBER"
+
+#: Strings.src#STR_DATA_SELECT_RANGE_FOR_SERIES.string.text
+msgid "Select Range for %VALUETYPE of %SERIESNAME"
+msgstr "Seleccionar rango para %VALUETYPE de %SERIESNAME"
+
+#: Strings.src#STR_DATA_SELECT_RANGE_FOR_CATEGORIES.string.text
+msgid "Select Range for Categories"
+msgstr "Seleccionar rango para categorías"
+
+#: Strings.src#STR_DATA_SELECT_RANGE_FOR_DATALABELS.string.text
+msgid "Select Range for data labels"
+msgstr "Seleccionar rango para etiquetas de datos"
+
+#: Strings.src#STR_DATA_SELECT_RANGE_FOR_POSITIVE_ERRORBARS.string.text
+msgid "Select Range for Positive Error Bars"
+msgstr "Seleccionar rango para barras de error positivas"
+
+#: Strings.src#STR_DATA_SELECT_RANGE_FOR_NEGATIVE_ERRORBARS.string.text
+msgid "Select Range for Negative Error Bars"
+msgstr "Seleccionar rango para barras de error negativas"
+
+#: Strings.src#STR_DATA_EDITOR_INCORRECT_INPUT.string.text
+msgid ""
+"Your last input is incorrect.\n"
+"Ignore this change and close the dialog?"
+msgstr ""
+"Su última entrada es incorrecta.\n"
+"¿Ignorar estos cambios y cerrar el diálogo?"
+
+#: Strings.src#STR_TEXT_DIRECTION_LTR.string.text
+msgid "Left-to-right"
+msgstr "Izquierda-a-derecha"
+
+#: Strings.src#STR_TEXT_DIRECTION_RTL.string.text
+msgid "Right-to-left"
+msgstr "Derecha-a-izquierda"
+
+#: Strings.src#STR_TEXT_DIRECTION_SUPER.string.text
+msgid "Use superordinate object settings"
+msgstr "Utilizar las configuraciones del objeto superior"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.CB_AXIS_LABEL_SCHOW_DESCR.checkbox.text
+msgid "Sho~w labels"
+msgstr "Mostrar ~etiqueta"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.FL_AXIS_LABEL_ORIENTATION.fixedline.text
+msgctxt "tp_AxisLabel.src#TP_AXIS_LABEL.FL_AXIS_LABEL_ORIENTATION.fixedline.text"
+msgid "Text orientation"
+msgstr "Orientación del texto"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.PB_AXIS_LABEL_TEXTSTACKED.tristatebox.text
+msgctxt "tp_AxisLabel.src#TP_AXIS_LABEL.PB_AXIS_LABEL_TEXTSTACKED.tristatebox.text"
+msgid "Ve~rtically stacked"
+msgstr "Disposición ve~rtical"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.FT_AXIS_LABEL_DEGREES.fixedtext.text
+msgctxt "tp_AxisLabel.src#TP_AXIS_LABEL.FT_AXIS_LABEL_DEGREES.fixedtext.text"
+msgid "~Degrees"
+msgstr "~Grado"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.FL_AXIS_LABEL_TEXTFLOW.fixedline.text
+msgid "Text flow"
+msgstr "Flujo del texto"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.CB_AXIS_LABEL_TEXTOVERLAP.checkbox.text
+msgid "O~verlap"
+msgstr "So~breponer"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.CB_AXIS_LABEL_TEXTBREAK.checkbox.text
+msgid "~Break"
+msgstr "~Salto"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.FL_AXIS_LABEL_ORDER.fixedline.text
+msgid "Order"
+msgstr "Organizar"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.RB_AXIS_LABEL_SIDEBYSIDE.radiobutton.text
+msgid "~Tile"
+msgstr "~Mosaico"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.RB_AXIS_LABEL_UPDOWN.radiobutton.text
+msgid "St~agger odd"
+msgstr "~Organización impar"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.RB_AXIS_LABEL_DOWNUP.radiobutton.text
+msgid "Stagger ~even"
+msgstr "Orga~nización par"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.RB_AXIS_LABEL_AUTOORDER.radiobutton.text
+msgctxt "tp_AxisLabel.src#TP_AXIS_LABEL.RB_AXIS_LABEL_AUTOORDER.radiobutton.text"
+msgid "A~utomatic"
+msgstr "A~utomático"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.FT_AXIS_TEXTDIR.fixedtext.text
+msgctxt "tp_AxisLabel.src#TP_AXIS_LABEL.FT_AXIS_TEXTDIR.fixedtext.text"
+msgid "Te~xt direction"
+msgstr "Dirección del te~xto"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.FT_CAPTION_FOR_WIZARD.fixedtext.text
+msgid "Customize data ranges for individual data series"
+msgstr "Configure los rangos de datos para cada serie"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.FT_SERIES.fixedtext.text
+msgid "Data ~series"
+msgstr "Series de ~datos"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.FT_ROLE.fixedtext.text
+msgid "~Data ranges"
+msgstr "~Rangos de datos"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.FT_RANGE.fixedtext.text
+msgid "Ran~ge for %VALUETYPE"
+msgstr "Ran~go para %VALUETYPE"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.FT_CATEGORIES.fixedtext.text
+msgid "~Categories"
+msgstr "~Categorías"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.FT_DATALABELS.fixedtext.text
+msgid "Data ~labels"
+msgstr "Etiquetas de ~datos"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.BTN_ADD.pushbutton.text
+msgid "~Add"
+msgstr "~Añadir"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.BTN_REMOVE.pushbutton.text
+msgid "~Remove"
+msgstr "~Eliminar"
+
+#: tp_ChartType.src#TP_CHARTTYPE.FT_CHARTTYPE.fixedtext.text
+msgid "Choose a chart type"
+msgstr "Seleccione un tipo de gráfico"
+
+#: tp_ChartType.src#TP_CHARTTYPE.CB_X_AXIS_CATEGORIES.checkbox.text
+msgid "X axis with Categories"
+msgstr "Eje X con categorías"
+
+#: tp_ChartType.src#TP_CHARTTYPE.CB_3D_LOOK.checkbox.text
+msgid "~3D Look"
+msgstr "Vista ~3D"
+
+#: tp_ChartType.src#TP_CHARTTYPE.CB_STACKED.checkbox.text
+msgid "~Stack series"
+msgstr "~Series apliladas"
+
+#: tp_ChartType.src#TP_CHARTTYPE.RB_STACK_Y.radiobutton.text
+msgid "On top"
+msgstr "Arriba"
+
+#: tp_ChartType.src#TP_CHARTTYPE.RB_STACK_Y_PERCENT.radiobutton.text
+msgid "Percent"
+msgstr "Porcentaje"
+
+#: tp_ChartType.src#TP_CHARTTYPE.RB_STACK_Z.radiobutton.text
+msgctxt "tp_ChartType.src#TP_CHARTTYPE.RB_STACK_Z.radiobutton.text"
+msgid "Deep"
+msgstr "Fondo"
+
+#: tp_ChartType.src#TP_CHARTTYPE.CB_SPLINES.checkbox.text
+msgid "S~mooth lines"
+msgstr "Líneas s~uaves"
+
+#: tp_ChartType.src#TP_CHARTTYPE.PB_SPLINE_DIALOG.pushbutton.text
+msgid "Properties..."
+msgstr "Propiedades..."
+
+#: tp_ChartType.src#TP_CHARTTYPE.CB_XVALUE_SORTING.checkbox.text
+msgid "~Sort by X values"
+msgstr "~Ordenar por valores de X"
+
+#: tp_ChartType.src#DLG_SPLINE_PROPERTIES.RB_SPLINES_CUBIC.radiobutton.text
+msgid "Cubic spline"
+msgstr "Spline cúbico"
+
+#: tp_ChartType.src#DLG_SPLINE_PROPERTIES.RB_SPLINES_B.radiobutton.text
+msgid "B-Spline"
+msgstr "B-Spline"
+
+#: tp_ChartType.src#DLG_SPLINE_PROPERTIES.FT_SPLINE_RESOLUTION.fixedtext.text
+msgid "~Resolution"
+msgstr "~Resolución"
+
+#: tp_ChartType.src#DLG_SPLINE_PROPERTIES.FT_SPLINE_ORDER.fixedtext.text
+msgid "~Degree of polynomials"
+msgstr "~Grado de los polinomios"
+
+#: tp_RangeChooser.src#TP_RANGECHOOSER.FT_CAPTION_FOR_WIZARD.fixedtext.text
+msgid "Choose a data range"
+msgstr "Seleccione un rango de datos"
+
+#: tp_RangeChooser.src#TP_RANGECHOOSER.FT_RANGE.fixedtext.text
+msgid "~Data range"
+msgstr "~Rango de datos"
+
+#: tp_RangeChooser.src#TP_RANGECHOOSER.RB_DATAROWS.radiobutton.text
+msgid "Data series in ~rows"
+msgstr "Serie de datos en ~filas"
+
+#: tp_RangeChooser.src#TP_RANGECHOOSER.RB_DATACOLS.radiobutton.text
+msgid "Data series in ~columns"
+msgstr "Serie de datos en ~columnas"
+
+#: tp_RangeChooser.src#TP_RANGECHOOSER.CB_FIRST_ROW_ASLABELS.checkbox.text
+msgid "~First row as label"
+msgstr "Primera ~fila como etiqueta"
+
+#: tp_RangeChooser.src#TP_RANGECHOOSER.CB_FIRST_COLUMN_ASLABELS.checkbox.text
+msgid "F~irst column as label"
+msgstr "Primera c~olumna como etiqueta"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.1.fixedline.text
+msgid "Align data series to"
+msgstr "Alinear línea de datos a"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.RBT_OPT_AXIS_1.radiobutton.text
+msgid "Primary Y axis"
+msgstr "Eje primario Y"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.RBT_OPT_AXIS_2.radiobutton.text
+msgid "Secondary Y axis"
+msgstr "Ejes secundarios Y"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.GB_BAR.fixedline.text
+msgid "Settings"
+msgstr "Configuración"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.FT_OVERLAP.fixedtext.text
+msgid "~Overlap"
+msgstr "~Sobreponer"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.FT_GAP.fixedtext.text
+msgid "~Spacing"
+msgstr "~Espacio"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.CB_CONNECTOR.checkbox.text
+msgid "Connection lines"
+msgstr "Líneas de conexión"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.CB_BARS_SIDE_BY_SIDE.checkbox.text
+msgid "Show ~bars side by side"
+msgstr "Mostrar ~barras lado con lado"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.FL_PLOT_OPTIONS.fixedline.text
+msgctxt "tp_SeriesToAxis.src#TP_OPTIONS.FL_PLOT_OPTIONS.fixedline.text"
+msgid "Plot options"
+msgstr "Opciones de Plot"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.FT_MISSING_VALUES.fixedtext.text
+msgid "Plot missing values"
+msgstr "Valores de trazo perdidos"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.RB_DONT_PAINT.radiobutton.text
+msgid "~Leave gap"
+msgstr "~Mostrar espacio"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.RB_ASSUME_ZERO.radiobutton.text
+msgid "~Assume zero"
+msgstr "~Asumir cero"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.RB_CONTINUE_LINE.radiobutton.text
+msgid "~Continue line"
+msgstr "~Continuar la línea"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.CB_INCLUDE_HIDDEN_CELLS.checkbox.text
+msgctxt "tp_SeriesToAxis.src#TP_OPTIONS.CB_INCLUDE_HIDDEN_CELLS.checkbox.text"
+msgid "Include ~values from hidden cells"
+msgstr "Incluir ~valores desde las celdas ocultas"
+
+#: tp_3D_SceneGeometry.src#CUSTOMUNITTEXT_DEGREE.#define.text
+msgid " degrees"
+msgstr " grados"
+
+#: tp_3D_SceneGeometry.src#TP_3D_SCENEGEOMETRY.CBX_RIGHT_ANGLED_AXES.checkbox.text
+msgid "~Right-angled axes"
+msgstr "Ejes del ángulo de~recho"
+
+#: tp_3D_SceneGeometry.src#TP_3D_SCENEGEOMETRY.FT_X_ROTATION.fixedtext.text
+msgid "~X rotation"
+msgstr "Rotación en ~X"
+
+#: tp_3D_SceneGeometry.src#TP_3D_SCENEGEOMETRY.FT_Y_ROTATION.fixedtext.text
+msgid "~Y rotation"
+msgstr "Rotación en ~Y"
+
+#: tp_3D_SceneGeometry.src#TP_3D_SCENEGEOMETRY.FT_Z_ROTATION.fixedtext.text
+msgid "~Z rotation"
+msgstr "Rotación en ~Z"
+
+#: tp_3D_SceneGeometry.src#TP_3D_SCENEGEOMETRY.CBX_PERSPECTIVE.checkbox.text
+msgid "~Perspective"
+msgstr "~Perspectiva"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.FL_TYPE.fixedline.text
+msgid "Regression Type"
+msgstr "Curva de regresión"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.RB_NONE.radiobutton.text
+msgctxt "res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.RB_NONE.radiobutton.text"
+msgid "~None"
+msgstr "~Ninguno"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.RB_LINEAR.radiobutton.text
+msgid "~Linear"
+msgstr "~Lineal"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.RB_LOGARITHMIC.radiobutton.text
+msgid "L~ogarithmic"
+msgstr "L~ogarítmico"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.RB_EXPONENTIAL.radiobutton.text
+msgid "E~xponential"
+msgstr "E~xponencial"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.RB_POWER.radiobutton.text
+msgid "~Power"
+msgstr "~Poder"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.FL_EQUATION.fixedline.text
+msgctxt "res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.FL_EQUATION.fixedline.text"
+msgid "Equation"
+msgstr "Ecuación"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.CB_SHOW_EQUATION.checkbox.text
+msgid "Show ~equation"
+msgstr "Mostrar ~ecuación"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.CB_SHOW_CORRELATION_COEFF.checkbox.text
+msgid "Show ~coefficient of determination (R²)"
+msgstr "Mostrar ~coeficiente determinado(R²)"
+
+#: tp_Scale.src#STR_LIST_TIME_UNIT.1.stringlist.text
+msgid "Days"
+msgstr "Días"
+
+#: tp_Scale.src#STR_LIST_TIME_UNIT.2.stringlist.text
+msgid "Months"
+msgstr "Meses"
+
+#: tp_Scale.src#STR_LIST_TIME_UNIT.3.stringlist.text
+msgid "Years"
+msgstr "Años"
+
+#: tp_Scale.src#TP_SCALE.FL_SCALE.fixedline.text
+msgctxt "tp_Scale.src#TP_SCALE.FL_SCALE.fixedline.text"
+msgid "Scale"
+msgstr "Escala"
+
+#: tp_Scale.src#TP_SCALE.CBX_REVERSE.checkbox.text
+msgid "~Reverse direction"
+msgstr "Dirección en ~reversa"
+
+#: tp_Scale.src#TP_SCALE.CBX_LOGARITHM.checkbox.text
+msgid "~Logarithmic scale"
+msgstr "Escala ~logarítmica"
+
+#: tp_Scale.src#TP_SCALE.TXT_AXIS_TYPE.fixedtext.text
+msgid "T~ype"
+msgstr "~Tipo"
+
+#: tp_Scale.src#TP_SCALE.LB_AXIS_TYPE.1.stringlist.text
+msgid "Automatic"
+msgstr "Automática"
+
+#: tp_Scale.src#TP_SCALE.LB_AXIS_TYPE.2.stringlist.text
+msgid "Text"
+msgstr "Texto"
+
+#: tp_Scale.src#TP_SCALE.LB_AXIS_TYPE.3.stringlist.text
+msgid "Date"
+msgstr "Fecha"
+
+#: tp_Scale.src#TP_SCALE.TXT_MIN.fixedtext.text
+msgid "~Minimum"
+msgstr "~Mínimo"
+
+#: tp_Scale.src#TP_SCALE.CBX_AUTO_MIN.checkbox.text
+msgid "~Automatic"
+msgstr "~Automático"
+
+#: tp_Scale.src#TP_SCALE.TXT_MAX.fixedtext.text
+msgid "Ma~ximum"
+msgstr "Má~ximo"
+
+#: tp_Scale.src#TP_SCALE.CBX_AUTO_MAX.checkbox.text
+msgctxt "tp_Scale.src#TP_SCALE.CBX_AUTO_MAX.checkbox.text"
+msgid "A~utomatic"
+msgstr "~Automático"
+
+#: tp_Scale.src#TP_SCALE.TXT_TIME_RESOLUTION.fixedtext.text
+msgid "R~esolution"
+msgstr "R~esolución"
+
+#: tp_Scale.src#TP_SCALE.CBX_AUTO_TIME_RESOLUTION.checkbox.text
+msgctxt "tp_Scale.src#TP_SCALE.CBX_AUTO_TIME_RESOLUTION.checkbox.text"
+msgid "Automat~ic"
+msgstr "Automát~ica"
+
+#: tp_Scale.src#TP_SCALE.TXT_STEP_MAIN.fixedtext.text
+msgid "Ma~jor interval"
+msgstr "Intervalo ~principal"
+
+#: tp_Scale.src#TP_SCALE.CBX_AUTO_STEP_MAIN.checkbox.text
+msgid "Au~tomatic"
+msgstr "~Automático"
+
+#: tp_Scale.src#TP_SCALE.TXT_STEP_HELP_COUNT.fixedtext.text
+msgid "Minor inter~val count"
+msgstr "Intervalos secundarios"
+
+#: tp_Scale.src#TP_SCALE.TXT_STEP_HELP.fixedtext.text
+msgid "Minor inter~val"
+msgstr "Inter~valo menor"
+
+#: tp_Scale.src#TP_SCALE.CBX_AUTO_STEP_HELP.checkbox.text
+msgid "Aut~omatic"
+msgstr "~Automático"
+
+#: tp_Scale.src#TP_SCALE.TXT_ORIGIN.fixedtext.text
+msgid "Re~ference value"
+msgstr "Valor de re~ferencia"
+
+#: tp_Scale.src#TP_SCALE.CBX_AUTO_ORIGIN.checkbox.text
+msgctxt "tp_Scale.src#TP_SCALE.CBX_AUTO_ORIGIN.checkbox.text"
+msgid "Automat~ic"
+msgstr "Automát~ico"
+
+#: dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.FL_PRIMARY_AXIS.fixedline.text
+msgctxt "dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.FL_PRIMARY_AXIS.fixedline.text"
+msgid "Axes"
+msgstr "Ejes"
+
+#: dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.FL_PRIMARY_GRID.fixedline.text
+msgid "Major grids"
+msgstr "Cuadrículas principales"
+
+#: dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.CB_X_PRIMARY.checkbox.text
+msgctxt "dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.CB_X_PRIMARY.checkbox.text"
+msgid "~X axis"
+msgstr "Eje ~X"
+
+#: dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.CB_Y_PRIMARY.checkbox.text
+msgctxt "dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.CB_Y_PRIMARY.checkbox.text"
+msgid "~Y axis"
+msgstr "Eje ~Y"
+
+#: dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.CB_Z_PRIMARY.checkbox.text
+msgctxt "dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.CB_Z_PRIMARY.checkbox.text"
+msgid "~Z axis"
+msgstr "Eje ~Z"
+
+#: dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.FL_SECONDARY_AXIS.fixedline.text
+msgid "Secondary axes"
+msgstr "Ejes secundarios"
+
+#: dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.FL_SECONDARY_GRID.fixedline.text
+msgid "Minor grids"
+msgstr "Cuadrículas auxiliares"
+
+#: Strings_Statistic.src#STR_INDICATE_BOTH.string.text
+msgid "Negative and Positive"
+msgstr "Negativo y positivo"
+
+#: Strings_Statistic.src#STR_INDICATE_DOWN.string.text
+msgid "Negative"
+msgstr "Negativo"
+
+#: Strings_Statistic.src#STR_INDICATE_UP.string.text
+msgid "Positive"
+msgstr "Positivo"
+
+#: Strings_Statistic.src#STR_CONTROLTEXT_ERROR_BARS_FROM_DATA.string.text
+msgid "From Data Table"
+msgstr "Desde la tabla de datos"
+
+#: Strings_Statistic.src#STR_REGRESSION_LINEAR.string.text
+msgid "Linear (%SERIESNAME)"
+msgstr "Lineal (%SERIESNAME)"
+
+#: Strings_Statistic.src#STR_REGRESSION_LOG.string.text
+msgid "Logarithmic (%SERIESNAME)"
+msgstr "Logarítmica (%SERIESNAME)"
+
+#: Strings_Statistic.src#STR_REGRESSION_EXP.string.text
+msgid "Exponential (%SERIESNAME)"
+msgstr "Exponencial (%SERIESNAME)"
+
+#: Strings_Statistic.src#STR_REGRESSION_POWER.string.text
+msgid "Power (%SERIESNAME)"
+msgstr "Potencia (%SERIESNAME)"
+
+#: Strings_Statistic.src#STR_REGRESSION_MEAN.string.text
+msgid "Mean (%SERIESNAME)"
+msgstr "Promedio (%SERIESNAME)"
+
+#: res_TextSeparator.src#LB_TEXT_SEPARATOR.1.stringlist.text
+msgid "Space"
+msgstr "Espacio"
+
+#: res_TextSeparator.src#LB_TEXT_SEPARATOR.2.stringlist.text
+msgid "Comma"
+msgstr "Coma"
+
+#: res_TextSeparator.src#LB_TEXT_SEPARATOR.3.stringlist.text
+msgid "Semicolon"
+msgstr "Semicoma"
+
+#: res_TextSeparator.src#LB_TEXT_SEPARATOR.4.stringlist.text
+msgid "New line"
+msgstr "Nueva línea"
+
+#: res_BarGeometry.src#LB_BAR_GEOMETRY.1.stringlist.text
+msgid "Box"
+msgstr "Caja"
+
+#: res_BarGeometry.src#LB_BAR_GEOMETRY.2.stringlist.text
+msgid "Cylinder"
+msgstr "Cilíndro"
+
+#: res_BarGeometry.src#LB_BAR_GEOMETRY.3.stringlist.text
+msgid "Cone"
+msgstr "Cono"
+
+#: res_BarGeometry.src#LB_BAR_GEOMETRY.4.stringlist.text
+msgid "Pyramid"
+msgstr "Pirámide"
+
+#: tp_3D_SceneIllumination.src#TP_3D_SCENEILLUMINATION.FT_LIGHTSOURCE.fixedtext.text
+msgid "~Light source"
+msgstr "Fuente de ~luz"
+
+#: tp_3D_SceneIllumination.src#TP_3D_SCENEILLUMINATION.FT_AMBIENTLIGHT.fixedtext.text
+msgid "~Ambient light"
+msgstr "Luz ~ambiental"
+
+#: tp_3D_SceneIllumination.src#STR_LIGHT_PREVIEW.string.text
+msgid "Light Preview"
+msgstr "Vista preliminar de la iluminación"
+
+#: dlg_DataSource.src#DLG_DATA_SOURCE.tabdialog.text
+msgid "Data Ranges"
+msgstr "Rango de datos"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_INSERT_ROW.toolboxitem.text
+msgid "Insert Row"
+msgstr "Insertar fila"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_INSERT_COL.toolboxitem.text
+msgid "Insert Series"
+msgstr "Insertar series"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_INSERT_TEXT_COL.toolboxitem.text
+msgid "Insert Text Column"
+msgstr "Insertar columna de texto"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_DELETE_ROW.toolboxitem.text
+msgid "Delete Row"
+msgstr "Eliminar fila"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_DELETE_COL.toolboxitem.text
+msgid "Delete Series"
+msgstr "Eliminar series"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_SWAP_COL.toolboxitem.text
+msgid "Move Series Right"
+msgstr "Mover series a la derecha"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_SWAP_ROW.toolboxitem.text
+msgid "Move Row Down"
+msgstr "Mover filas abajo"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.modaldialog.text
+msgid "Data Table"
+msgstr "Tabla de datos"
+
+#: Strings_Scale.src#STR_INVALID_NUMBER.string.text
+msgid "Numbers are required. Check your input."
+msgstr "Se requieren números. Revise sus datos."
+
+#: Strings_Scale.src#STR_STEP_GT_ZERO.string.text
+msgid "The major interval requires a positive number. Check your input."
+msgstr "El intérvalo mayor requiere un número positivo. Revise sus datos."
+
+#: Strings_Scale.src#STR_BAD_LOGARITHM.string.text
+msgid "The logarithmic scale requires positive numbers. Check your input."
+msgstr "La escala logarítmica requiere números positivos. Revise sus datos."
+
+#: Strings_Scale.src#STR_MIN_GREATER_MAX.string.text
+msgid "The minimum must be lower than the maximum. Check your input."
+msgstr "El mínimo debe ser menor que el máximo. Revise sus datos."
+
+#: Strings_Scale.src#STR_INVALID_INTERVALS.string.text
+msgid "The major interval needs to be greater than the minor interval. Check your input."
+msgstr "El intervalo principal debe ser mayor que el intervalo secundario. Verifique los datos."
+
+#: Strings_Scale.src#STR_INVALID_TIME_UNIT.string.text
+msgid "The major and minor interval need to be greater or equal to the resolution. Check your input."
+msgstr "Los dos intervalos, principal y secundario, deben ser mayores que la resolución. Verifique los datos."
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.1.stringlist.text
+msgid "Best fit"
+msgstr "Mejor acomodo"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.2.stringlist.text
+msgid "Center"
+msgstr "Centro"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.3.stringlist.text
+msgid "Above"
+msgstr "Arriba"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.4.stringlist.text
+msgid "Top left"
+msgstr "Arriba e izquierda"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.5.stringlist.text
+msgid "Left"
+msgstr "Izquierda"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.6.stringlist.text
+msgid "Bottom left"
+msgstr "Abajo e izquierda"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.7.stringlist.text
+msgid "Below"
+msgstr "Abajo"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.8.stringlist.text
+msgid "Bottom right"
+msgstr "Abajo y derecha"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.9.stringlist.text
+msgid "Right"
+msgstr "Derecha"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.10.stringlist.text
+msgid "Top right"
+msgstr "Arriba y derecha"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.11.stringlist.text
+msgid "Inside"
+msgstr "Adentro"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.12.stringlist.text
+msgid "Outside"
+msgstr "Afuera"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.13.stringlist.text
+msgid "Near origin"
+msgstr "Cerca del origen"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.CB_VALUE_AS_NUMBER.checkbox.text
+msgid "Show value as ~number"
+msgstr "Mostrar valores como ~números"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.PB_NUMBERFORMAT.pushbutton.text
+msgid "Number ~format..."
+msgstr "~Formato de número..."
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.CB_VALUE_AS_PERCENTAGE.checkbox.text
+msgid "Show value as ~percentage"
+msgstr "Mostrar valores como ~porcentaje"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.PB_PERCENT_NUMBERFORMAT.pushbutton.text
+msgid "Percentage f~ormat..."
+msgstr "Formato de p~orcentaje..."
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.CB_CATEGORY.checkbox.text
+msgid "Show ~category"
+msgstr "Mostrar ~categoría"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.CB_SYMBOL.checkbox.text
+msgid "Show ~legend key"
+msgstr "Mostrar clave de ~leyenda"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.FT_LABEL_PLACEMENT.fixedtext.text
+msgid "Place~ment"
+msgstr "Posiciona~miento"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.FL_LABEL_ROTATE.fixedline.text
+msgid "Rotate Text"
+msgstr "Girar texto"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.FT_LABEL_DEGREES.fixedtext.text
+msgctxt "res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.FT_LABEL_DEGREES.fixedtext.text"
+msgid "~Degrees"
+msgstr "~Grados"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.FT_LABEL_TEXTDIR.fixedtext.text
+msgctxt "res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.FT_LABEL_TEXTDIR.fixedtext.text"
+msgid "Te~xt direction"
+msgstr "Dirección de te~xto"
+
+#: dlg_ShapeParagraph.src#DLG_SHAPE_PARAGRAPH.1.RID_SVXPAGE_STD_PARAGRAPH.pageitem.text
+msgid "Indents & Spacing"
+msgstr "Sangrías y espaciado"
+
+#: dlg_ShapeParagraph.src#DLG_SHAPE_PARAGRAPH.1.RID_SVXPAGE_ALIGN_PARAGRAPH.pageitem.text
+msgctxt "dlg_ShapeParagraph.src#DLG_SHAPE_PARAGRAPH.1.RID_SVXPAGE_ALIGN_PARAGRAPH.pageitem.text"
+msgid "Alignment"
+msgstr "Alineación"
+
+#: dlg_ShapeParagraph.src#DLG_SHAPE_PARAGRAPH.1.RID_SVXPAGE_PARA_ASIAN.pageitem.text
+msgctxt "dlg_ShapeParagraph.src#DLG_SHAPE_PARAGRAPH.1.RID_SVXPAGE_PARA_ASIAN.pageitem.text"
+msgid "Asian Typography"
+msgstr "Tipografía asiática"
+
+#: dlg_ShapeParagraph.src#DLG_SHAPE_PARAGRAPH.1.RID_SVXPAGE_TABULATOR.pageitem.text
+msgid "Tab"
+msgstr "Tabulador"
+
+#: dlg_ShapeParagraph.src#DLG_SHAPE_PARAGRAPH.tabdialog.text
+msgid "Paragraph"
+msgstr "Párrafo"
+
+#: dlg_ShapeFont.src#DLG_SHAPE_FONT.1.RID_SVXPAGE_CHAR_NAME.pageitem.text
+msgctxt "dlg_ShapeFont.src#DLG_SHAPE_FONT.1.RID_SVXPAGE_CHAR_NAME.pageitem.text"
+msgid "Font"
+msgstr "Fuente"
+
+#: dlg_ShapeFont.src#DLG_SHAPE_FONT.1.RID_SVXPAGE_CHAR_EFFECTS.pageitem.text
+msgctxt "dlg_ShapeFont.src#DLG_SHAPE_FONT.1.RID_SVXPAGE_CHAR_EFFECTS.pageitem.text"
+msgid "Font Effects"
+msgstr "Efecto de fuentes"
+
+#: dlg_ShapeFont.src#DLG_SHAPE_FONT.1.RID_SVXPAGE_CHAR_POSITION.pageitem.text
+msgid "Font Position"
+msgstr "Posición de fuente"
+
+#: dlg_ShapeFont.src#DLG_SHAPE_FONT.tabdialog.text
+msgid "Character"
+msgstr "Carácter"
+
+#: tp_3D_SceneAppearance.src#TP_3D_SCENEAPPEARANCE.FT_SCHEME.fixedtext.text
+msgid "Sche~me"
+msgstr "Esque~ma"
+
+#: tp_3D_SceneAppearance.src#TP_3D_SCENEAPPEARANCE.CB_SHADING.checkbox.text
+msgid "~Shading"
+msgstr "~Sombreado"
+
+#: tp_3D_SceneAppearance.src#TP_3D_SCENEAPPEARANCE.CB_OBJECTLINES.checkbox.text
+msgid "~Object borders"
+msgstr "Bordes del ~objeto"
+
+#: tp_3D_SceneAppearance.src#TP_3D_SCENEAPPEARANCE.CB_ROUNDEDEDGE.checkbox.text
+msgid "~Rounded edges"
+msgstr "Bordes ~redondeados"
+
+#: res_SecondaryAxisCheckBoxes_tmpl.hrc#SECONDARYAXISCHECKBOXES__xpos__ypos__xOffset__yOffset__.CB_X_SECONDARY.checkbox.text
+msgctxt "res_SecondaryAxisCheckBoxes_tmpl.hrc#SECONDARYAXISCHECKBOXES__xpos__ypos__xOffset__yOffset__.CB_X_SECONDARY.checkbox.text"
+msgid "X ~axis"
+msgstr "~Eje X"
+
+#: res_SecondaryAxisCheckBoxes_tmpl.hrc#SECONDARYAXISCHECKBOXES__xpos__ypos__xOffset__yOffset__.CB_Y_SECONDARY.checkbox.text
+msgctxt "res_SecondaryAxisCheckBoxes_tmpl.hrc#SECONDARYAXISCHECKBOXES__xpos__ypos__xOffset__yOffset__.CB_Y_SECONDARY.checkbox.text"
+msgid "Y ax~is"
+msgstr "E~je Y"
+
+#: res_SecondaryAxisCheckBoxes_tmpl.hrc#SECONDARYAXISCHECKBOXES__xpos__ypos__xOffset__yOffset__.CB_Z_SECONDARY.checkbox.text
+msgid "Z axi~s"
+msgstr "Eje ~Z"
+
+#: res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_MAINTITLE.fixedtext.text
+msgid "~Title"
+msgstr "~Título"
+
+#: res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_SUBTITLE.fixedtext.text
+msgid "~Subtitle"
+msgstr "~Subtítulo"
+
+#: res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FL_AXES.fixedline.text
+msgctxt "res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FL_AXES.fixedline.text"
+msgid "Axes"
+msgstr "Ejes"
+
+#: res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_TITLE_X_AXIS.fixedtext.text
+msgctxt "res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_TITLE_X_AXIS.fixedtext.text"
+msgid "~X axis"
+msgstr "Eje ~X"
+
+#: res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_TITLE_Y_AXIS.fixedtext.text
+msgctxt "res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_TITLE_Y_AXIS.fixedtext.text"
+msgid "~Y axis"
+msgstr "Eje ~Y"
+
+#: res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_TITLE_Z_AXIS.fixedtext.text
+msgctxt "res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_TITLE_Z_AXIS.fixedtext.text"
+msgid "~Z axis"
+msgstr "Eje ~Z"
+
+#: res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FL_SECONDARY_AXES.fixedline.text
+msgid "Secondary Axes"
+msgstr "Ejes secundarios"
+
+#: res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_TITLE_SECONDARY_X_AXIS.fixedtext.text
+msgctxt "res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_TITLE_SECONDARY_X_AXIS.fixedtext.text"
+msgid "X ~axis"
+msgstr "~Eje X"
+
+#: res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_TITLE_SECONDARY_Y_AXIS.fixedtext.text
+msgctxt "res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_TITLE_SECONDARY_Y_AXIS.fixedtext.text"
+msgid "Y ax~is"
+msgstr "E~je Y"
+
+#: tp_Wizard_TitlesAndObjects.src#TP_WIZARD_TITLEANDOBJECTS.FT_TITLEDESCRIPTION.fixedtext.text
+msgid "Choose titles, legend, and grid settings"
+msgstr "Escoger títulos, leyendas y configuración de cuadrícula"
+
+#: tp_Wizard_TitlesAndObjects.src#TP_WIZARD_TITLEANDOBJECTS.FL_GRIDS.fixedline.text
+msgid "Display grids"
+msgstr "Mostrar cuadriculas"
+
+#: tp_PolarOptions.src#TP_POLAROPTIONS.CB_CLOCKWISE.checkbox.text
+msgid "~Clockwise direction"
+msgstr "~Sentido horario"
+
+#: tp_PolarOptions.src#TP_POLAROPTIONS.FL_STARTING_ANGLE.fixedline.text
+msgid "Starting angle"
+msgstr "Ángulo inicial"
+
+#: tp_PolarOptions.src#TP_POLAROPTIONS.FT_ROTATION_DEGREES.fixedtext.text
+msgctxt "tp_PolarOptions.src#TP_POLAROPTIONS.FT_ROTATION_DEGREES.fixedtext.text"
+msgid "~Degrees"
+msgstr "~Grado"
+
+#: tp_PolarOptions.src#TP_POLAROPTIONS.FL_PLOT_OPTIONS_POLAR.fixedline.text
+msgctxt "tp_PolarOptions.src#TP_POLAROPTIONS.FL_PLOT_OPTIONS_POLAR.fixedline.text"
+msgid "Plot options"
+msgstr "Opciones de Plot"
+
+#: tp_PolarOptions.src#TP_POLAROPTIONS.CB_INCLUDE_HIDDEN_CELLS_POLAR.checkbox.text
+msgctxt "tp_PolarOptions.src#TP_POLAROPTIONS.CB_INCLUDE_HIDDEN_CELLS_POLAR.checkbox.text"
+msgid "Include ~values from hidden cells"
+msgstr "Incluir ~valores de las celdas fue oculta"
+
+#: res_ErrorBar_tmpl.hrc#WORKAROUND.1.stringlist.text
+msgid "Standard Error"
+msgstr "Error estándar"
+
+#: res_ErrorBar_tmpl.hrc#WORKAROUND.2.stringlist.text
+msgid "Standard Deviation"
+msgstr "Desviación estándar"
+
+#: res_ErrorBar_tmpl.hrc#WORKAROUND.3.stringlist.text
+msgid "Variance"
+msgstr "Varianza"
+
+#: res_ErrorBar_tmpl.hrc#WORKAROUND.4.stringlist.text
+msgid "Error Margin"
+msgstr "Margen de error"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.FL_ERROR.fixedline.text
+msgid "Error Category"
+msgstr "Categoría de error"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_NONE.radiobutton.text
+msgctxt "res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_NONE.radiobutton.text"
+msgid "~None"
+msgstr "~Ninguno"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_CONST.radiobutton.text
+msgid "~Constant Value"
+msgstr "Valor ~constante"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_PERCENT.radiobutton.text
+msgid "~Percentage"
+msgstr "~Porcentaje"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_RANGE.radiobutton.text
+msgid "Cell ~Range"
+msgstr "~Rango de celda"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.FL_PARAMETERS.fixedline.text
+msgid "Parameters"
+msgstr "Parametros"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.FT_POSITIVE.fixedtext.text
+msgid "P~ositive (+)"
+msgstr "P~ositivo (+)"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.FT_NEGATIVE.fixedtext.text
+msgid "~Negative (-)"
+msgstr "~Negativo (-)"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.CB_SYN_POS_NEG.checkbox.text
+msgid "Same value for both"
+msgstr "El mismo valor para ambos"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.FL_INDICATE.fixedline.text
+msgid "Error Indicator"
+msgstr "Indicador de errores"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_BOTH.radiobutton.text
+msgid "Positive ~and Negative"
+msgstr "Positivo ~y Negativo"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_POSITIVE.radiobutton.text
+msgid "Pos~itive"
+msgstr "Pos~itivo"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_NEGATIVE.radiobutton.text
+msgid "Ne~gative"
+msgstr "Ne~gativo"
+
+#: tp_LegendPosition.src#TP_LEGEND_POS.GRP_LEGEND.fixedline.text
+msgctxt "tp_LegendPosition.src#TP_LEGEND_POS.GRP_LEGEND.fixedline.text"
+msgid "Position"
+msgstr "Posición"
+
+#: tp_LegendPosition.src#TP_LEGEND_POS.FL_LEGEND_TEXTORIENT.fixedline.text
+msgctxt "tp_LegendPosition.src#TP_LEGEND_POS.FL_LEGEND_TEXTORIENT.fixedline.text"
+msgid "Text orientation"
+msgstr "Orientación del texto"
+
+#: tp_LegendPosition.src#TP_LEGEND_POS.FT_LEGEND_TEXTDIR.fixedtext.text
+msgctxt "tp_LegendPosition.src#TP_LEGEND_POS.FT_LEGEND_TEXTDIR.fixedtext.text"
+msgid "Te~xt direction"
+msgstr "Dirección de te~xto"
+
+#: res_LegendPosition_tmpl.hrc#RESOURCE_LEGENDDISPLAY__xpos___ypos__.CBX_SHOWLEGEND.checkbox.text
+msgid "~Display legend"
+msgstr "~Mostrar leyenda"
+
+#: res_LegendPosition_tmpl.hrc#RESOURCE_LEGENDPOSITION__xpos___ypos__.RBT_LEFT.radiobutton.text
+msgid "~Left"
+msgstr "~Izquierda"
+
+#: res_LegendPosition_tmpl.hrc#RESOURCE_LEGENDPOSITION__xpos___ypos__.RBT_RIGHT.radiobutton.text
+msgid "~Right"
+msgstr "~Derecha"
+
+#: res_LegendPosition_tmpl.hrc#RESOURCE_LEGENDPOSITION__xpos___ypos__.RBT_TOP.radiobutton.text
+msgid "~Top"
+msgstr "~Arriba"
+
+#: res_LegendPosition_tmpl.hrc#RESOURCE_LEGENDPOSITION__xpos___ypos__.RBT_BOTTOM.radiobutton.text
+msgid "~Bottom"
+msgstr "~Abajo"
+
+#: dlg_View3D.src#DLG_3D_VIEW.tabdialog.text
+msgid "3D View"
+msgstr "Vista en 3D"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FL_AXIS_LINE.fixedline.text
+msgid "Axis line"
+msgstr "Línea de ejes"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FT_CROSSES_OTHER_AXIS_AT.fixedtext.text
+msgid "~Cross other axis at"
+msgstr "~Cruza otros ejes en"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_CROSSES_OTHER_AXIS_AT.1.stringlist.text
+msgid "Start"
+msgstr "Inicio"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_CROSSES_OTHER_AXIS_AT.2.stringlist.text
+msgid "End"
+msgstr "Fin"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_CROSSES_OTHER_AXIS_AT.3.stringlist.text
+msgid "Value"
+msgstr "Valor"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_CROSSES_OTHER_AXIS_AT.4.stringlist.text
+msgid "Category"
+msgstr "Categoría"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_AXIS_BETWEEN_CATEGORIES.checkbox.text
+msgid "Axis ~between categories"
+msgstr "Ejes e~ntre categorías"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FL_LABELS.fixedline.text
+msgid "Labels"
+msgstr "Etiquetas"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FT_PLACE_LABELS.fixedtext.text
+msgid "~Place labels"
+msgstr "~Coloca etiquetas"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_LABELS.1.stringlist.text
+msgid "Near axis"
+msgstr "Ejes cercanos"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_LABELS.2.stringlist.text
+msgid "Near axis (other side)"
+msgstr "Ejes cercanos (otro lado)"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_LABELS.3.stringlist.text
+msgid "Outside start"
+msgstr "Comenzar fuera"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_LABELS.4.stringlist.text
+msgid "Outside end"
+msgstr "Finalizar fuera"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FT_AXIS_LABEL_DISTANCE.fixedtext.text
+msgid "~Distance"
+msgstr "~Distancia"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FL_TICKS.fixedline.text
+msgid "Interval marks"
+msgstr "Marcas de intervalo"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FT_MAJOR.fixedtext.text
+msgid "Major:"
+msgstr "Mayor:"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_TICKS_INNER.checkbox.text
+msgid "~Inner"
+msgstr "~Interno"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_TICKS_OUTER.checkbox.text
+msgid "~Outer"
+msgstr "~Exterior"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FT_MINOR.fixedtext.text
+msgid "Minor:"
+msgstr "Menor:"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_MINOR_INNER.checkbox.text
+msgid "I~nner"
+msgstr "I~nterior"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_MINOR_OUTER.checkbox.text
+msgid "O~uter"
+msgstr "E~xterior"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FT_PLACE_TICKS.fixedtext.text
+msgid "Place ~marks"
+msgstr "Colocar ~marcas"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_TICKS.1.stringlist.text
+msgid "At labels"
+msgstr "En etiquetas"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_TICKS.2.stringlist.text
+msgid "At axis"
+msgstr "En ejes"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_TICKS.3.stringlist.text
+msgid "At axis and labels"
+msgstr "En ejes y etiquetas"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FL_GRIDS.fixedline.text
+msgctxt "tp_AxisPositions.src#TP_AXIS_POSITIONS.FL_GRIDS.fixedline.text"
+msgid "Grids"
+msgstr "Cuadrículas"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_MAJOR_GRID.checkbox.text
+msgid "Show major ~grid"
+msgstr "Mostrar cu~adrícula mayor"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.PB_MAJOR_GRID.pushbutton.text
+msgid "Mo~re..."
+msgstr "Má~s..."
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_MINOR_GRID.checkbox.text
+msgid "~Show minor grid"
+msgstr "Mo~strar cuadrícula menor"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.PB_MINOR_GRID.pushbutton.text
+msgid "Mor~e..."
+msgstr "Má~s..."
+
+#: Strings_AdditionalControls.src#STR_3DSCHEME_SIMPLE.string.text
+msgid "Simple"
+msgstr "Sencilla"
+
+#: Strings_AdditionalControls.src#STR_3DSCHEME_REALISTIC.string.text
+msgid "Realistic"
+msgstr "Realista"
+
+#: Strings_AdditionalControls.src#STR_3DSCHEME_CUSTOM.string.text
+msgid "Custom"
+msgstr "Personalizada"
+
+#: Strings_AdditionalControls.src#STR_BAR_GEOMETRY.string.text
+msgid "Shape"
+msgstr "Forma"
+
+#: Strings_AdditionalControls.src#STR_NUMBER_OF_LINES.string.text
+msgid "~Number of lines"
+msgstr "~Número de líneas"
+
+#: Strings_AdditionalControls.src#STR_TEXT_SEPARATOR.string.text
+msgid "Separator"
+msgstr "Separador"
diff --git a/source/es/connectivity/registry/ado/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/ado/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..e4d2760103c
--- /dev/null
+++ b/source/es/connectivity/registry/ado/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,28 @@
+#. extracted from connectivity/registry/ado/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fado%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-06-13 19:01+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_ado__.DriverTypeDisplayName.value.text
+msgid "ADO"
+msgstr "ADO"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_ado_access_PROVIDER_Microsoft.Jet.OLEDB.4.0_DATA_SOURCE__.DriverTypeDisplayName.value.text
+msgid "Microsoft Access"
+msgstr "Microsoft Access"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_ado_access_Provider_Microsoft.ACE.OLEDB.12.0_DATA_SOURCE__.DriverTypeDisplayName.value.text
+msgid "Microsoft Access 2007"
+msgstr "Microsoft Access 2007"
diff --git a/source/es/connectivity/registry/calc/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/calc/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..b92edae7e4d
--- /dev/null
+++ b/source/es/connectivity/registry/calc/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,20 @@
+#. extracted from connectivity/registry/calc/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fcalc%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-06-13 19:01+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_calc__.DriverTypeDisplayName.value.text
+msgid "Spreadsheet"
+msgstr "Hoja de cálculo"
diff --git a/source/es/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..eb6c3a4e953
--- /dev/null
+++ b/source/es/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,20 @@
+#. extracted from connectivity/registry/dbase/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fdbase%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-06-13 19:01+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_dbase__.DriverTypeDisplayName.value.text
+msgid "dBASE"
+msgstr "dBASE"
diff --git a/source/es/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..3569e2d8ff3
--- /dev/null
+++ b/source/es/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,28 @@
+#. extracted from connectivity/registry/evoab2/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fevoab2%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-06-13 19:01+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_evolution_local.DriverTypeDisplayName.value.text
+msgid "Evolution Local"
+msgstr "Evolution local"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_evolution_ldap.DriverTypeDisplayName.value.text
+msgid "Evolution LDAP"
+msgstr "Evolution LDAP"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_evolution_groupwise.DriverTypeDisplayName.value.text
+msgid "Groupwise"
+msgstr "Groupwise"
diff --git a/source/es/connectivity/registry/flat/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/flat/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..4c8c3865875
--- /dev/null
+++ b/source/es/connectivity/registry/flat/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,20 @@
+#. extracted from connectivity/registry/flat/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fflat%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-06-13 19:01+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_flat__.DriverTypeDisplayName.value.text
+msgid "Text"
+msgstr "Texto"
diff --git a/source/es/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..f2bc51448bb
--- /dev/null
+++ b/source/es/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,20 @@
+#. extracted from connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fhsqldb%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-06-13 19:01+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_embedded_hsqldb.DriverTypeDisplayName.value.text
+msgid "HSQL database engine"
+msgstr "Motor de base de datos HSQL"
diff --git a/source/es/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..5fa7bbbf87d
--- /dev/null
+++ b/source/es/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,24 @@
+#. extracted from connectivity/registry/jdbc/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fjdbc%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-06-13 19:02+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.jdbc__.DriverTypeDisplayName.value.text
+msgid "JDBC"
+msgstr "JDBC"
+
+#: Drivers.xcu#.Drivers.Installed.jdbc_oracle_thin__.DriverTypeDisplayName.value.text
+msgid "Oracle JDBC"
+msgstr "Oracle JDBC"
diff --git a/source/es/connectivity/registry/kab/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/kab/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..44bfa9434c4
--- /dev/null
+++ b/source/es/connectivity/registry/kab/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,20 @@
+#. extracted from connectivity/registry/kab/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fkab%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2012-06-13 19:02+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_kab.DriverTypeDisplayName.value.text
+msgid "KDE Address Book"
+msgstr "Libreta de direcciones de KDE"
diff --git a/source/es/connectivity/registry/macab/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..6dd0e389551
--- /dev/null
+++ b/source/es/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,20 @@
+#. extracted from connectivity/registry/macab/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fmacab%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-06-13 19:02+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_macab.DriverTypeDisplayName.value.text
+msgid "Mac OS X Address Book"
+msgstr "Libreta de direcciones de Mac OS X"
diff --git a/source/es/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..bea98ade2a8
--- /dev/null
+++ b/source/es/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,36 @@
+#. extracted from connectivity/registry/mozab/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fmozab%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-06-13 19:03+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_outlook.DriverTypeDisplayName.value.text
+msgid "Microsoft Outlook Address Book"
+msgstr "Libreta de direcciones de Microsoft Outlook"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_outlookexp.DriverTypeDisplayName.value.text
+msgid "Microsoft Windows Address Book"
+msgstr "Libreta de direcciones de Windows"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_mozilla_.DriverTypeDisplayName.value.text
+msgid "SeaMonkey Address Book"
+msgstr "Libreta de direcciones de SeaMonkey"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_thunderbird_.DriverTypeDisplayName.value.text
+msgid "Thunderbird/Icedove Address Book"
+msgstr "Libreta de direcciones de Thunderbird/Icedove"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_ldap__.DriverTypeDisplayName.value.text
+msgid "LDAP Address Book"
+msgstr "Libreta de direcciones LDAP"
diff --git a/source/es/connectivity/registry/mozab2/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/mozab2/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..79af962625e
--- /dev/null
+++ b/source/es/connectivity/registry/mozab2/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,28 @@
+#. extracted from connectivity/registry/mozab2/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fmozab2%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2012-06-13 19:03+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_mozilla_.DriverTypeDisplayName.value.text
+msgid "SeaMonkey Address Book"
+msgstr "Libreta de direcciones de SeaMonkey"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_thunderbird_.DriverTypeDisplayName.value.text
+msgid "Thunderbird/Icedove Address Book"
+msgstr "Libreta de direcciones de Thunderbird/Icedove"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_ldap__.DriverTypeDisplayName.value.text
+msgid "LDAP Address Book"
+msgstr "Libreta de direcciones LDAP"
diff --git a/source/es/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..41c08843b9a
--- /dev/null
+++ b/source/es/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,28 @@
+#. extracted from connectivity/registry/mysql/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fmysql%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-06-13 19:04+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_mysql_jdbc__.DriverTypeDisplayName.value.text
+msgid "MySQL (JDBC)"
+msgstr "MySQL (JDBC)"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_mysql_odbc__.DriverTypeDisplayName.value.text
+msgid "MySQL (ODBC)"
+msgstr "MySQL (ODBC)"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_mysql_mysqlc__.DriverTypeDisplayName.value.text
+msgid "MySQL (Native)"
+msgstr "MySQL (Nativa)"
diff --git a/source/es/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..ec7dd13dd01
--- /dev/null
+++ b/source/es/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,20 @@
+#. extracted from connectivity/registry/odbc/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fodbc%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-06-13 19:04+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_odbc__.DriverTypeDisplayName.value.text
+msgid "ODBC"
+msgstr "ODBC"
diff --git a/source/es/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..90e08e96b85
--- /dev/null
+++ b/source/es/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,20 @@
+#. extracted from connectivity/registry/postgresql/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fpostgresql%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-06-13 19:04+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_postgresql__.DriverTypeDisplayName.value.text
+msgid "PostgreSQL"
+msgstr "PostgreSQL"
diff --git a/source/es/connectivity/registry/tdeab/org/openofffice/Office/DataAccess.po b/source/es/connectivity/registry/tdeab/org/openofffice/Office/DataAccess.po
new file mode 100644
index 00000000000..e78d70aa2ed
--- /dev/null
+++ b/source/es/connectivity/registry/tdeab/org/openofffice/Office/DataAccess.po
@@ -0,0 +1,20 @@
+#. extracted from connectivity/registry/tdeab/org/openofffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Ftdeab%2Forg%2Fopenofffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-06-13 19:04+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_tdeab.DriverTypeDisplayName.value.text
+msgid "TDE Address Book"
+msgstr "Libreta de direcciones TDE"
diff --git a/source/es/connectivity/source/resource.po b/source/es/connectivity/source/resource.po
new file mode 100644
index 00000000000..4b0692eff30
--- /dev/null
+++ b/source/es/connectivity/source/resource.po
@@ -0,0 +1,568 @@
+#. extracted from connectivity/source/resource.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fsource%2Fresource.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-08-14 06:17+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: conn_error_message.src#256___2_100___0.string.text
+msgid "The record operation has been vetoed."
+msgstr "El record de operación ha sido vetado."
+
+#: conn_error_message.src#256___2_200___0.string.text
+msgid "The statement contains a cyclic reference to one or more sub queries."
+msgstr "La sentencia contiene una referencia cíclica a una o más subconsultas."
+
+#: conn_error_message.src#256___2_300___0.string.text
+msgid "The name must not contain any slashes ('/')."
+msgstr "El nombre no puede contener ninguna diagonal ('/')."
+
+#: conn_error_message.src#256___2_301___0.string.text
+msgid "$1$ is no SQL conform identifier."
+msgstr "$1$ no es un identificador de SQL."
+
+#: conn_error_message.src#256___2_302___0.string.text
+msgid "Query names must not contain quote characters."
+msgstr "Los nombres de las consultas no deben contener caracteres en comillas."
+
+#: conn_error_message.src#256___2_303___0.string.text
+msgid "The name '$1$' is already in use in the database."
+msgstr "El nombre '$1$' esta siendo usado por la base de datos."
+
+#: conn_error_message.src#256___2_304___0.string.text
+msgid "No connection to the database exists."
+msgstr "No hay conexión a la base de datos."
+
+#: conn_error_message.src#256___2_500___0.string.text
+msgid "No $1$ exists."
+msgstr "No existe $1$ ."
+
+#: conn_error_message.src#256___2_550___0.string.text
+msgid "Unable to display the complete table content. Please apply a filter."
+msgstr "No se puede mostrar el contenido completo de la tabla. Aplique un filtro."
+
+#. This must be the term referring to address books in the user's Mozilla/Seamonkey profile in the system.
+#: conn_shared_res.src#STR_MOZILLA_ADDRESSBOOKS.string.text
+msgid "Mozilla/Seamonkey Addressbook Directory"
+msgstr "Directorio de Libreta de Direcciones Mozilla/Seamonkey"
+
+#. This must be the term referring to address books in the user's Thunderbird profile in the system.
+#: conn_shared_res.src#STR_THUNDERBIRD_ADDRESSBOOKS.string.text
+msgid "Thunderbird Addressbook Directory"
+msgstr "Directorio de Direcciones de Thunderbird."
+
+#: conn_shared_res.src#STR_OE_ADDRESSBOOK.string.text
+msgid "Outlook Express Addressbook"
+msgstr "Libreta de Direcciones Outlook Express"
+
+#: conn_shared_res.src#STR_OUTLOOK_MAPI_ADDRESSBOOK.string.text
+msgid "Outlook (MAPI) Addressbook"
+msgstr "Libreta de Direcciones Outlook (MAPI)"
+
+#: conn_shared_res.src#STR_NO_TABLE_CREATION_SUPPORT.string.text
+msgid "Creating tables is not supported for this kind of address books."
+msgstr "No se admite la creación de tablas en este tipo de libretas de direcciones."
+
+#: conn_shared_res.src#STR_MOZILLA_IS_RUNNING.string.text
+msgid "Cannot create new address books while Mozilla is running."
+msgstr "No es posible crear nuevas libretas de direcciones si Mozilla está en ejecución."
+
+#: conn_shared_res.src#STR_COULD_NOT_RETRIEVE_AB_ENTRY.string.text
+msgid "An address book entry could not be retrieved, an unknown error occurred."
+msgstr "No se ha podido recuperar una entrada de la libreta de direcciones, se ha producido un error desconocido."
+
+#: conn_shared_res.src#STR_COULD_NOT_GET_DIRECTORY_NAME.string.text
+msgid "An address book directory name could not be retrieved, an unknown error occurred."
+msgstr "No se ha podido recuperar un directorio de la libreta de direcciones, se ha producido un error desconocido."
+
+#: conn_shared_res.src#STR_TIMEOUT_WAITING.string.text
+msgid "Timed out while waiting for the result."
+msgstr "Se ha superado el tiempo de espera mientras se esperaba el resultado."
+
+#: conn_shared_res.src#STR_ERR_EXECUTING_QUERY.string.text
+msgid "An error occurred while executing the query."
+msgstr "Se ha producido un error mientras se ejecutaba la consulta."
+
+#: conn_shared_res.src#STR_MOZILLA_IS_RUNNIG_NO_CHANGES.string.text
+msgid "You can't make any changes to mozilla address book when mozilla is running."
+msgstr "No puede hacer cambios en la libreta de direcciones de Mozilla si se está ejecutando."
+
+#: conn_shared_res.src#STR_FOREIGN_PROCESS_CHANGED_AB.string.text
+msgid "Mozilla Address Book has been changed out of this process, we can't modify it in this condition."
+msgstr "Se ha cambiado la libreta de direcciones de Mozilla fuera de este proceso; no es posible modificarla en esta situación."
+
+#: conn_shared_res.src#STR_CANT_FIND_ROW.string.text
+msgid "Can't find the requested row."
+msgstr "No es posible encontrar la fila solicitada."
+
+#: conn_shared_res.src#STR_CANT_FIND_CARD_FOR_ROW.string.text
+msgid "Can't find the card for the requested row."
+msgstr "No es posible encontrar la tarjeta de la fila solicitada."
+
+#: conn_shared_res.src#STR_QUERY_AT_LEAST_ONE_TABLES.string.text
+msgid "The query can not be executed. It needs at least one table."
+msgstr "La consulta no puede ser ejecutada. Se requiere al menos una tabla."
+
+#: conn_shared_res.src#STR_NO_COUNT_SUPPORT.string.text
+msgid "The driver does not support the 'COUNT' function."
+msgstr "El controlador no soporta la funcion 'COUNT'."
+
+#: conn_shared_res.src#STR_STMT_TYPE_NOT_SUPPORTED.string.text
+msgid "This statement type not supported by this database driver."
+msgstr "El tipo de declaración no es soportado por este controlador de base de datos."
+
+#: conn_shared_res.src#STR_UNSPECIFIED_ERROR.string.text
+msgid "An unknown error occurred."
+msgstr "Ha ocurrido un error desconocido."
+
+#: conn_shared_res.src#STR_COULD_NOT_CREATE_ADDRESSBOOK.string.text
+msgid "Could not create a new address book. Mozilla error code is $1$."
+msgstr "No es posible crear una nueva libreta de direcciones. El código de error de Mozilla es $1$."
+
+#: conn_shared_res.src#STR_COULD_NOT_LOAD_LIB.string.text
+msgid "The library '$libname$' could not be loaded."
+msgstr "La biblioteca '$libname$' no pudo ser cargada."
+
+#: conn_shared_res.src#STR_ERROR_REFRESH_ROW.string.text
+msgid "An error occurred while refreshing the current row."
+msgstr "Ha ocurrido un error mientras se actualizaba la fila actual."
+
+#: conn_shared_res.src#STR_ERROR_GET_ROW.string.text
+msgid "An error occurred while getting the current row."
+msgstr "Ha ocurrido un error mientras se obtenía la fila actual."
+
+#: conn_shared_res.src#STR_CAN_NOT_CANCEL_ROW_UPDATE.string.text
+msgid "The row update can not be canceled."
+msgstr "La actualización de la fila no puede ser cancelada."
+
+#: conn_shared_res.src#STR_CAN_NOT_CREATE_ROW.string.text
+msgid "A new row can not be created."
+msgstr "No se puede crear una nueva fila."
+
+#: conn_shared_res.src#STR_QUERY_INVALID_IS_NULL_COLUMN.string.text
+msgid "The query can not be executed. The 'IS NULL' can only be used with a column name."
+msgstr "La consulta no se puede ejecutar. 'IS NULL' solo puede ser usado con un nombre de columna."
+
+#: conn_shared_res.src#STR_ILLEGAL_MOVEMENT.string.text
+msgid "Illegal cursor movement occurred."
+msgstr "Ha ocurrido un movimiento ilegal del cursor."
+
+#: conn_shared_res.src#STR_COMMIT_ROW.string.text
+msgid "Please commit row '$position$' before update rows or insert new rows."
+msgstr "Por favor, confirmar la '$position$' de la fila, antes de actualizar filas o insertar nuevas."
+
+#: conn_shared_res.src#STR_INVALID_ROW_UPDATE.string.text
+msgid "The update call can not be executed. The row is invalid."
+msgstr "La llamada a actualizar no puede ser ejecutada. La fila es invalida."
+
+#: conn_shared_res.src#STR_ROW_CAN_NOT_SAVE.string.text
+msgid "The current row can not be saved."
+msgstr "La fila actual no puede ser guardada."
+
+#: conn_shared_res.src#STR_NO_HOSTNAME.string.text
+msgid "No hostname was provided."
+msgstr "No se ha proporcionado nombre de host."
+
+#: conn_shared_res.src#STR_NO_BASEDN.string.text
+msgid "No Base DN was provided."
+msgstr "No se ha proporcionado Base DN."
+
+#: conn_shared_res.src#STR_COULD_NOT_CONNECT_LDAP.string.text
+msgid "The connection to the LDAP server could not be established."
+msgstr "No se ha podido establecer la conexión con el servidor LDAP."
+
+#: conn_shared_res.src#STR_NO_CONNECTION_GIVEN.string.text
+msgid "It doesn't exist a connection to the database."
+msgstr "No existe una conexión a la base de datos"
+
+#: conn_shared_res.src#STR_WRONG_PARAM_INDEX.string.text
+msgid "You tried to set a parameter at position '$pos$' but there is/are only '$count$' parameter(s) allowed. One reason may be that the property \"ParameterNameSubstitution\" is not set to TRUE in the data source."
+msgstr "Has intentado configurar un parametro en la posición '$pos$' pero solamente se permite '$count$' parametro(s). Una de las posibles razones sea que la propiedad \"ParameterNameSubstitution\" no este configurada como TRUE en la fuente de datos."
+
+#: conn_shared_res.src#STR_INPUTSTREAM_WRONG_LEN.string.text
+msgid "End of InputStream reached before satisfying length specified when InputStream was set."
+msgstr "El final de InputStream ha sido alcanzado antes de satisfacer la longitud especificada en el momento de su configuración."
+
+#: conn_shared_res.src#STR_NO_INPUTSTREAM.string.text
+msgid "The input stream was not set."
+msgstr "El ingreso de cadena no fue definida."
+
+#: conn_shared_res.src#STR_NO_ELEMENT_NAME.string.text
+msgid "There is no element named '$name$'."
+msgstr "No hay un elmento llamado '$name$'."
+
+#: conn_shared_res.src#STR_INVALID_BOOKMARK.string.text
+msgid "Invalid bookmark value"
+msgstr "Valor de marcador invalido."
+
+#: conn_shared_res.src#STR_PRIVILEGE_NOT_GRANTED.string.text
+msgid "Privilege not granted: Only table privileges can be granted."
+msgstr "Privilegio no otorgado: Solo las tablas privilegiadas son permitidas."
+
+#: conn_shared_res.src#STR_PRIVILEGE_NOT_REVOKED.string.text
+msgid "Privilege not revoked: Only table privileges can be revoked."
+msgstr "Privilegio no revocado: Solo las tablas de privilegios pueden ser revocadas."
+
+#: conn_shared_res.src#STR_UNKNOWN_COLUMN_NAME.string.text
+msgid "The column name '$columnname$' is unknown."
+msgstr "El nombre de la columna '$columnname$' es desconocida."
+
+#: conn_shared_res.src#STR_ERRORMSG_SEQUENCE.string.text
+msgid "Function sequence error."
+msgstr "Error en función de secuencia."
+
+#: conn_shared_res.src#STR_INVALID_INDEX.string.text
+msgid "Invalid descriptor index."
+msgstr "Descriptor de indice invalido."
+
+#: conn_shared_res.src#STR_UNSUPPORTED_FUNCTION.string.text
+msgid "The driver does not support the function '$functionname$'."
+msgstr "El driver no soporta esta función '$functionname$'."
+
+#: conn_shared_res.src#STR_UNSUPPORTED_FEATURE.string.text
+msgid "The driver does not support the functionality for '$featurename$'. It is not implemented."
+msgstr "El driver no soporta la funcionalidad para '$functionname$'. No esta implementado."
+
+#: conn_shared_res.src#STR_FORMULA_WRONG.string.text
+msgid "The formula for TypeInfoSettings is wrong!"
+msgstr "La formula para TypeInfoSetting esta erronea!"
+
+#: conn_shared_res.src#STR_STRING_LENGTH_EXCEEDED.string.text
+msgid "The string '$string$' exceeds the maximum length of $maxlen$ characters when converted to the target character set '$charset$'."
+msgstr "La cadena '$string$' supera la longitud máxima de $maxlen$ caracteres al convertirse en el juego de caracteres '$charset$'."
+
+#: conn_shared_res.src#STR_CANNOT_CONVERT_STRING.string.text
+msgid "The string '$string$' cannot be converted using the encoding '$charset$'."
+msgstr "La cadena de texto '$string$' no se puede convertir cuando se usa la codificación '$charset'."
+
+#: conn_shared_res.src#STR_URI_SYNTAX_ERROR.string.text
+msgid "The connection URL is invalid."
+msgstr "URL de conexión no válido."
+
+#: conn_shared_res.src#STR_QUERY_TOO_COMPLEX.string.text
+msgid "The query can not be executed. It is too complex."
+msgstr "La consulta no puede ser ejecutado. Es muy compleja."
+
+#: conn_shared_res.src#STR_OPERATOR_TOO_COMPLEX.string.text
+msgid "The query can not be executed. The operator is too complex."
+msgstr "La consulta no puede ser ejecutada. El operador es muy complejo."
+
+#: conn_shared_res.src#STR_QUERY_INVALID_LIKE_COLUMN.string.text
+msgid "The query can not be executed. You cannot use 'LIKE' with columns of this type."
+msgstr "La consulta no se pudo ejecutar. No puede usar 'LIKE' con columnas de este tipo."
+
+#: conn_shared_res.src#STR_QUERY_INVALID_LIKE_STRING.string.text
+msgid "The query can not be executed. 'LIKE' can be used with a string argument only."
+msgstr "La consulta no puede ser ejecutada. 'LIKE' solo puede ser usado con un argumento de cadena."
+
+#: conn_shared_res.src#STR_QUERY_NOT_LIKE_TOO_COMPLEX.string.text
+msgid "The query can not be executed. The 'NOT LIKE' condition is too complex."
+msgstr "La consulta no puede ser ejecutada. 'NOT LIKE' es muy complejo."
+
+#: conn_shared_res.src#STR_QUERY_LIKE_WILDCARD.string.text
+msgid "The query can not be executed. The 'LIKE' condition contains wildcard in the middle."
+msgstr "La consulta no puede ser ejecutada. 'LIKE' contiene un caracter comodín en el medio."
+
+#: conn_shared_res.src#STR_QUERY_LIKE_WILDCARD_MANY.string.text
+msgid "The query can not be executed. The 'LIKE' condition contains too many wildcards."
+msgstr "La consulta no puede ser ejecutada. 'LIKE' contiene muchos caracteres comodines."
+
+#: conn_shared_res.src#STR_INVALID_COLUMNNAME.string.text
+msgid "The column name '$columnname$' is not valid."
+msgstr "El nombre de la columna '$columnname$' no es valido."
+
+#: conn_shared_res.src#STR_INVALID_COLUMN_SELECTION.string.text
+msgid "The statement contains an invalid selection of columns."
+msgstr "La declaración contiene una sección invalida de columnas."
+
+#: conn_shared_res.src#STR_COLUMN_NOT_UPDATEABLE.string.text
+msgid "The column at position '$position$' could not be updated."
+msgstr "La columna en la posición '$position$' no puede ser actualizada."
+
+#: conn_shared_res.src#STR_COULD_NOT_LOAD_FILE.string.text
+msgid "The file $filename$ could not be loaded."
+msgstr "El archivo $filename$ no se pudo cargar."
+
+#: conn_shared_res.src#STR_LOAD_FILE_ERROR_MESSAGE.string.text
+msgid ""
+"The attempt to load the file resulted in the following error message ($exception_type$):\n"
+"\n"
+"$error_message$"
+msgstr ""
+"El intento de cargar el archivo dio lugar al siguiente mensaje de error ($exception_type$):\n"
+"\n"
+"$error_message$"
+
+#: conn_shared_res.src#STR_TYPE_NOT_CONVERT.string.text
+msgid "The type could not be converted."
+msgstr "El tipo no puede ser convertido."
+
+#: conn_shared_res.src#STR_INVALID_COLUMN_DESCRIPTOR_ERROR.string.text
+msgid "Could not append column: invalid column descriptor."
+msgstr "No se puede anexar la columna: descriptor de columna no válido."
+
+#: conn_shared_res.src#STR_INVALID_GROUP_DESCRIPTOR_ERROR.string.text
+msgid "Could not create group: invalid object descriptor."
+msgstr "No se puede crear el grupo: descriptor de objeto no válido."
+
+#: conn_shared_res.src#STR_INVALID_INDEX_DESCRIPTOR_ERROR.string.text
+msgid "Could not create index: invalid object descriptor."
+msgstr "No se puede crear el índice: descriptor de objeto no válido."
+
+#: conn_shared_res.src#STR_INVALID_KEY_DESCRIPTOR_ERROR.string.text
+msgid "Could not create key: invalid object descriptor."
+msgstr "No se puede crear llave: descriptor de objeto no válido."
+
+#: conn_shared_res.src#STR_INVALID_TABLE_DESCRIPTOR_ERROR.string.text
+msgid "Could not create table: invalid object descriptor."
+msgstr "No se puede crear tabla: descriptor de objeto no válido."
+
+#: conn_shared_res.src#STR_INVALID_USER_DESCRIPTOR_ERROR.string.text
+msgid "Could not create user: invalid object descriptor."
+msgstr "No se puede crear usuario: descriptor de objeto no válido."
+
+#: conn_shared_res.src#STR_INVALID_VIEW_DESCRIPTOR_ERROR.string.text
+msgid "Could not create view: invalid object descriptor."
+msgstr "No se puede crear vista: descriptor de objeto no válido."
+
+#: conn_shared_res.src#STR_VIEW_NO_COMMAND_ERROR.string.text
+msgid "Could not create view: no command object."
+msgstr "No se puede crear la vista: no hay objeto de comando."
+
+#: conn_shared_res.src#STR_NO_CONNECTION.string.text
+msgid "The connection could not be created. May be the necessary data provider is not installed."
+msgstr "No se pudo crear la conexión. Quizá el proveedor de datos necesario no está instalado."
+
+#: conn_shared_res.src#STR_COULD_NOT_DELETE_INDEX.string.text
+msgid "The index could not be deleted. An unknown error while accessing the file system occurred."
+msgstr "No se pudo eliminar el índice. Se produjo un error desconocido al acceder al sistema de archivos."
+
+#: conn_shared_res.src#STR_ONL_ONE_COLUMN_PER_INDEX.string.text
+msgid "The index could not be created. Only one column per index is allowed."
+msgstr "No se pudo crear el índice. Solo se permite una columna por índice."
+
+#: conn_shared_res.src#STR_COULD_NOT_CREATE_INDEX_NOT_UNIQUE.string.text
+msgid "The index could not be created. The values are not unique."
+msgstr "No se pudo crear el índice. Los valores no son únicos."
+
+#: conn_shared_res.src#STR_COULD_NOT_CREATE_INDEX.string.text
+msgid "The index could not be created. An unknown error appeared."
+msgstr "No se pudo crear el índice. Apareció un error inesperado."
+
+#: conn_shared_res.src#STR_COULD_NOT_CREATE_INDEX_NAME.string.text
+msgid "The index could not be created. The file '$filename$' is used by an other index."
+msgstr "No se pudo crear el índice. El archivo '$filename$' es usado por otro índice."
+
+#: conn_shared_res.src#STR_COULD_NOT_CREATE_INDEX_KEYSIZE.string.text
+msgid "The index could not be created. The size of the chosen column is to big."
+msgstr "No se pudo crear el índice. El tamaño de la columna elegida es demasiado grande."
+
+#: conn_shared_res.src#STR_SQL_NAME_ERROR.string.text
+msgid "The name '$name$' doesn't match SQL naming constraints."
+msgstr "El nombre '$name$' no coincide con las limitaciones de nombres de SQL."
+
+#: conn_shared_res.src#STR_COULD_NOT_DELETE_FILE.string.text
+msgid "The file $filename$ could not be deleted."
+msgstr "El archivo $filename$ no se pudo cargar."
+
+#: conn_shared_res.src#STR_INVALID_COLUMN_TYPE.string.text
+msgid "Invalid column type for column '$columnname$'."
+msgstr "Tipo de columna no válido para la columna «$columnname$»."
+
+#: conn_shared_res.src#STR_INVALID_COLUMN_PRECISION.string.text
+msgid "Invalid precision for column '$columnname$'."
+msgstr "Precisión inválida por columna '$columnname$'."
+
+#: conn_shared_res.src#STR_INVALID_PRECISION_SCALE.string.text
+msgid "Precision is less than scale for column '$columnname$'."
+msgstr "La precisión es inferior a la escala de la columna '$columnname$'."
+
+#: conn_shared_res.src#STR_INVALID_COLUMN_NAME_LENGTH.string.text
+msgid "Invalid column name length for column '$columnname$'."
+msgstr "La longitud del nombre de columna es inválida por la columna '$columnname$'."
+
+#: conn_shared_res.src#STR_DUPLICATE_VALUE_IN_COLUMN.string.text
+msgid "Duplicate value found in column '$columnname$'."
+msgstr "Encontrado valor duplicado en la columna '$columnname$'."
+
+#: conn_shared_res.src#STR_INVALID_COLUMN_DECIMAL_VALUE.string.text
+msgid ""
+"The '$columnname$' column has been defined as a \"Decimal\" type, the max. length is $precision$ characters (with $scale$ decimal places).\n"
+"\n"
+"The specified value \"$value$ is longer than the number of digits allowed."
+msgstr "La columna '$columnname$' ha sido definida como un tipo \"Decimal\", el máximo. La longitud es de $precision$ caracteres. (con $scale$ decimal).El valor especificado es mayor que el número de dígitos permitido."
+
+#: conn_shared_res.src#STR_COLUMN_NOT_ALTERABLE.string.text
+msgid "The column '$columnname$' could not be altered. May be the file system is write protected."
+msgstr "La columna '$columnname$' no puede ser alterada. Puede ser que el sistema de archivos está protegido contra escritura."
+
+#: conn_shared_res.src#STR_INVALID_COLUMN_VALUE.string.text
+msgid "The column '$columnname$' could not be updated. The value is invalid for that column."
+msgstr "La columna '$columnname$' no puede ser actualizada. El valor es inválido para esta columna."
+
+#: conn_shared_res.src#STR_COLUMN_NOT_ADDABLE.string.text
+msgid "The column '$columnname$' could not be added. May be the file system is write protected."
+msgstr "La columna '$columnname$' no puede ser agregada. Puede ser que el sistema de archivos está protegido contra escritura."
+
+#: conn_shared_res.src#STR_COLUMN_NOT_DROP.string.text
+msgid "The column at position '$position$' could not be dropped. May be the file system is write protected."
+msgstr "La columna en la posición '$position$' no puede ser reducida. Puede ser el sistema de archivos está protegido contra escritura."
+
+#: conn_shared_res.src#STR_TABLE_NOT_DROP.string.text
+msgid "The table '$tablename$' could not be dropped. May be the file system is write protected."
+msgstr "La tabla '$tablename$' no puede ser reducida. Puede ser el sistema de archivos está protegido contra escritura."
+
+#: conn_shared_res.src#STR_COULD_NOT_ALTER_TABLE.string.text
+msgid "The table could not be altered."
+msgstr "La tabla no puede ser alterada."
+
+#: conn_shared_res.src#STR_INVALID_DBASE_FILE.string.text
+msgid "The file '$filename$' is an invalid (or unrecognized) dBase file."
+msgstr "El archivo '$filename$' es un archivo dBase inválido (o no reconocido)."
+
+#: conn_shared_res.src#STR_CANNOT_OPEN_BOOK.string.text
+msgid "Cannot open Evolution address book."
+msgstr "No se puede abrir la libreta de direcciones de Evolution."
+
+#: conn_shared_res.src#STR_SORT_BY_COL_ONLY.string.text
+msgid "Can only sort by table columns."
+msgstr "Solo se puede ordenar por columnas de tabla."
+
+#: conn_shared_res.src#STR_QUERY_COMPLEX_COUNT.string.text
+msgid "The query can not be executed. It is too complex. Only \"COUNT(*)\" is supported."
+msgstr "No se puede ejecutar la consulta. Es demasiado complicada. Solo se soporta \"CONTAR(*)\"."
+
+#: conn_shared_res.src#STR_QUERY_INVALID_BETWEEN.string.text
+msgid "The query can not be executed. The 'BETWEEN' arguments are not correct."
+msgstr "La consulta no puede ser ejecutada. Los argumentos 'BETWEEN' no son correctos."
+
+#: conn_shared_res.src#STR_QUERY_FUNCTION_NOT_SUPPORTED.string.text
+msgid "The query can not be executed. The function is not supported."
+msgstr "La consulta no puede ser ejecutada. La función no es soportada."
+
+#: conn_shared_res.src#STR_TABLE_READONLY.string.text
+msgid "The table can not be changed. It is read only."
+msgstr "La tabla no puede ser cambiada. Solamente es de lectura."
+
+#: conn_shared_res.src#STR_DELETE_ROW.string.text
+msgid "The row could not be deleted. The option \"Display inactive records\" is set."
+msgstr "La fila no puede ser borrada. La opción \"Mostrar archivos inactivos\" está configurada."
+
+#: conn_shared_res.src#STR_ROW_ALREADY_DELETED.string.text
+msgid "The row could not be deleted. It is already deleted."
+msgstr "La fila no puede ser borrada. Ya está eliminada."
+
+#: conn_shared_res.src#STR_QUERY_MORE_TABLES.string.text
+msgid "The query can not be executed. It contains more than one table."
+msgstr "La consulta no puede ser ejecutada. Esta contenido en más de un tabla."
+
+#: conn_shared_res.src#STR_QUERY_NO_TABLE.string.text
+msgid "The query can not be executed. It contains no valid table."
+msgstr "La consulta no puede ser ejecutada. No contiene una tabla válida."
+
+#: conn_shared_res.src#STR_QUERY_NO_COLUMN.string.text
+msgid "The query can not be executed. It contains no valid columns."
+msgstr "La consulta no puede ser ejecutada. No contiene columnas válidas."
+
+#: conn_shared_res.src#STR_INVALID_PARA_COUNT.string.text
+msgid "The count of the given parameter values doesn't match the parameters."
+msgstr "La cuenta de los valores de los parámetros dados no coinciden con los parámetros."
+
+#: conn_shared_res.src#STR_NO_VALID_FILE_URL.string.text
+msgid "The URL '$URL$' is not valid. A connection can not be created."
+msgstr "La URL '$URL$' no es válida. Una conexión no pudo ser creada."
+
+#: conn_shared_res.src#STR_NO_CLASSNAME.string.text
+msgid "The driver class '$classname$' could not be loaded."
+msgstr "El conductor de la clase '$classname$' no puede ser cargado."
+
+#: conn_shared_res.src#STR_NO_JAVA.string.text
+msgid "No Java installation could be found. Please check your installation."
+msgstr "La instalación de Java no puede ser encontrada. Por favor, verifique su instalación."
+
+#: conn_shared_res.src#STR_NO_RESULTSET.string.text
+msgid "The execution of the query doesn't return a valid result set."
+msgstr "La ejecución de la consulta no regresa un resultado válido."
+
+#: conn_shared_res.src#STR_NO_ROWCOUNT.string.text
+msgid "The execution of the update statement doesn't effect any rows."
+msgstr "La ejecución de la actualización no afecta ninguna fila."
+
+#: conn_shared_res.src#STR_NO_CLASSNAME_PATH.string.text
+msgid "The additional driver class path is '$classpath$'."
+msgstr "La ruta del manejador de clase adicional es «$classpath$»."
+
+#: conn_shared_res.src#STR_UNKNOWN_PARA_TYPE.string.text
+msgid "The type of parameter at position '$position$' is unknown."
+msgstr "La tipo de parámetro en la posición '$position$' es desconocido."
+
+#: conn_shared_res.src#STR_UNKNOWN_COLUMN_TYPE.string.text
+msgid "The type of column at position '$position$' is unknown."
+msgstr "El tipo de columna en la posición '$position$' es desconocido."
+
+#: conn_shared_res.src#STR_NO_KDE_INST.string.text
+msgid "No suitable KDE installation was found."
+msgstr "No se encontró una adecuada instalación de KDE."
+
+#: conn_shared_res.src#STR_KDE_VERSION_TOO_OLD.string.text
+msgid "KDE version $major$.$minor$ or higher is required to access the KDE Address Book."
+msgstr "La versión $major$.$minor$ de KDE o superior es requerida para acceder a la libreta de direcciones de KDE."
+
+#: conn_shared_res.src#STR_KDE_VERSION_TOO_NEW.string.text
+msgid "The found KDE version is too new. Only KDE up to version $major$.$minor$ is known to work with this product.\n"
+msgstr "La versión de KDE encontrada es muy reciente. Solamente se sabe de KDE versión $major$.$minor$ funcionando con este producto.\n"
+
+#: conn_shared_res.src#STR_KDE_VERSION_TOO_NEW_WORK_AROUND.string.text
+msgid ""
+"If you are sure that your KDE version works, you might execute the following Basic macro to disable this version check:\n"
+"\n"
+msgstr ""
+"Si está seguro de que su versión de KDE funciona, puede ejecutar la siguiente macro de BAsic para desactivar esta comprobación de versión:\n"
+"\n"
+" "
+
+#: conn_shared_res.src#STR_PARA_ONLY_PREPARED.string.text
+msgid "Parameters can appear only in prepared statements."
+msgstr "Los parametros solo pueden aparecer en las declaraciones preparadas."
+
+#: conn_shared_res.src#STR_NO_TABLE.string.text
+msgid "No such table!"
+msgstr "¡No existe esta tabla!"
+
+#: conn_shared_res.src#STR_NO_MAC_OS_FOUND.string.text
+msgid "No suitable Mac OS installation was found."
+msgstr "No se encontró una instalación adecuada de Mac OS"
+
+#: conn_shared_res.src#STR_NO_STROAGE.string.text
+msgid "The connection can not be established. No storage or URL was given."
+msgstr "La conexión no pudo ser establecida. No fue proporcionado algún almacenamiento o URL."
+
+#: conn_shared_res.src#STR_INVALID_FILE_URL.string.text
+msgid "The given URL contains no valid local file system path. Please check the location of your database file."
+msgstr "La URL proporcionada contiene una ruta de archivo local no valida. Por favor revisar la ubicación del archivo de la base de datos."
+
+#: conn_shared_res.src#STR_NO_TABLE_CONTAINER.string.text
+msgid "An error occurred while obtaining the connection's table container."
+msgstr "Ha ocurrido un error al obtener el contenedor de tabla de esta conexión."
+
+#: conn_shared_res.src#STR_NO_TABLE_EDITOR_DIALOG.string.text
+msgid "An error occurred while creating the table editor dialog."
+msgstr "Ha ocurrido un error al crear el cuadro de diálogo del editor de la tabla."
+
+#: conn_shared_res.src#STR_NO_TABLENAME.string.text
+msgid "There is no table named '$tablename$'."
+msgstr "No existe una tabla llamada '$tablename$'."
+
+#: conn_shared_res.src#STR_NO_DOCUMENTUI.string.text
+msgid "The provided DocumentUI is not allowed to be NULL."
+msgstr "El DocumentUI provisto no puede ser NULL."
diff --git a/source/es/cui/source/customize.po b/source/es/cui/source/customize.po
new file mode 100644
index 00000000000..213c3c6749b
--- /dev/null
+++ b/source/es/cui/source/customize.po
@@ -0,0 +1,822 @@
+#. extracted from cui/source/customize.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+cui%2Fsource%2Fcustomize.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-08-14 05:16+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: macropg.src#RID_SVXPAGE_MACROASSIGN.STR_EVENT.string.text
+msgctxt "macropg.src#RID_SVXPAGE_MACROASSIGN.STR_EVENT.string.text"
+msgid "Event"
+msgstr "Evento"
+
+#: macropg.src#RID_SVXPAGE_MACROASSIGN.STR_ASSMACRO.string.text
+msgctxt "macropg.src#RID_SVXPAGE_MACROASSIGN.STR_ASSMACRO.string.text"
+msgid "Assigned Action"
+msgstr "Acción asignada"
+
+#: macropg.src#RID_SVXPAGE_MACROASSIGN.FT_ASSIGN.fixedtext.text
+msgctxt "macropg.src#RID_SVXPAGE_MACROASSIGN.FT_ASSIGN.fixedtext.text"
+msgid "Assign:"
+msgstr "Asignar:"
+
+#: macropg.src#RID_SVXPAGE_MACROASSIGN.PB_ASSIGN.pushbutton.text
+msgctxt "macropg.src#RID_SVXPAGE_MACROASSIGN.PB_ASSIGN.pushbutton.text"
+msgid "M~acro..."
+msgstr "M~acro..."
+
+#: macropg.src#RID_SVXPAGE_MACROASSIGN.PB_ASSIGN_COMPONENT.pushbutton.text
+msgid "Com~ponent..."
+msgstr "Com~ponente..."
+
+#: macropg.src#RID_SVXPAGE_MACROASSIGN.PB_DELETE.pushbutton.text
+msgctxt "macropg.src#RID_SVXPAGE_MACROASSIGN.PB_DELETE.pushbutton.text"
+msgid "~Remove"
+msgstr "~Quitar"
+
+#: macropg.src#RID_SVXPAGE_MACROASSIGN.tabpage.text
+msgid "Assign action"
+msgstr "Asignar acción"
+
+#: macropg.src#RID_SVXDLG_ASSIGNCOMPONENT.FT_METHOD.fixedtext.text
+msgid "Component method name"
+msgstr "Nombre del método del componente"
+
+#: macropg.src#RID_SVXDLG_ASSIGNCOMPONENT.modaldialog.text
+msgid "Assign Component"
+msgstr "Asignar componente"
+
+#: macropg.src#RID_SVXSTR_EVENT_STARTAPP.string.text
+msgid "Start Application"
+msgstr "Iniciar aplicación"
+
+#: macropg.src#RID_SVXSTR_EVENT_CLOSEAPP.string.text
+msgid "Close Application"
+msgstr "Cerrar aplicación"
+
+#: macropg.src#RID_SVXSTR_EVENT_NEWDOC.string.text
+msgid "New Document"
+msgstr "Documento nuevo"
+
+#: macropg.src#RID_SVXSTR_EVENT_CLOSEDOC.string.text
+msgid "Document closed"
+msgstr "Documento cerrado"
+
+#: macropg.src#RID_SVXSTR_EVENT_PREPARECLOSEDOC.string.text
+msgid "Document is going to be closed"
+msgstr "El documento será cerrado"
+
+#: macropg.src#RID_SVXSTR_EVENT_OPENDOC.string.text
+msgid "Open Document"
+msgstr "Abrir documento"
+
+#: macropg.src#RID_SVXSTR_EVENT_SAVEDOC.string.text
+msgid "Save Document"
+msgstr "Guardar documento"
+
+#: macropg.src#RID_SVXSTR_EVENT_SAVEASDOC.string.text
+msgid "Save Document As"
+msgstr "Guardar documento como"
+
+#: macropg.src#RID_SVXSTR_EVENT_SAVEDOCDONE.string.text
+msgid "Document has been saved"
+msgstr "El documento se ha guardado"
+
+#: macropg.src#RID_SVXSTR_EVENT_SAVEASDOCDONE.string.text
+msgid "Document has been saved as"
+msgstr "El documento se ha guardado como"
+
+#: macropg.src#RID_SVXSTR_EVENT_ACTIVATEDOC.string.text
+msgid "Activate Document"
+msgstr "Activar documento"
+
+#: macropg.src#RID_SVXSTR_EVENT_DEACTIVATEDOC.string.text
+msgid "Deactivate Document"
+msgstr "Desactivar documento"
+
+#: macropg.src#RID_SVXSTR_EVENT_PRINTDOC.string.text
+msgid "Print Document"
+msgstr "Impresión de documento"
+
+#: macropg.src#RID_SVXSTR_EVENT_MODIFYCHANGED.string.text
+msgid "'Modified' status was changed"
+msgstr "Se ha cambiado el estado «modificado»"
+
+#: macropg.src#RID_SVXSTR_EVENT_MAILMERGE.string.text
+msgid "Printing of form letters started"
+msgstr "Inició la impresión de las cartas modelo"
+
+#: macropg.src#RID_SVXSTR_EVENT_MAILMERGE_END.string.text
+msgid "Printing of form letters finished"
+msgstr "Finalizó la impresión de las cartas modelo"
+
+#: macropg.src#RID_SVXSTR_EVENT_FIELDMERGE.string.text
+msgid "Merging of form fields started"
+msgstr "Inició la fusión de campos en el formulario"
+
+#: macropg.src#RID_SVXSTR_EVENT_FIELDMERGE_FINISHED.string.text
+msgid "Merging of form fields finished"
+msgstr "Finalizó la fusión de campos en el formulario"
+
+#: macropg.src#RID_SVXSTR_EVENT_PAGECOUNTCHANGE.string.text
+msgid "Changing the page count"
+msgstr "Modificación del contador de páginas"
+
+#: macropg.src#RID_SVXSTR_EVENT_SUBCOMPONENT_OPENED.string.text
+msgid "Loaded a sub component"
+msgstr "Se cargó un subcomponente"
+
+#: macropg.src#RID_SVXSTR_EVENT_SUBCOMPONENT_CLOSED.string.text
+msgid "Closed a sub component"
+msgstr "Se cerró un subcomponente"
+
+#: macropg.src#RID_SVXSTR_EVENT_APPROVEPARAMETER.string.text
+msgid "Fill parameters"
+msgstr "Rellenar parámetros"
+
+#: macropg.src#RID_SVXSTR_EVENT_ACTIONPERFORMED.string.text
+msgid "Execute action"
+msgstr "Ejecutar una acción"
+
+#: macropg.src#RID_SVXSTR_EVENT_AFTERUPDATE.string.text
+msgid "After updating"
+msgstr "Después de actualizar"
+
+#: macropg.src#RID_SVXSTR_EVENT_BEFOREUPDATE.string.text
+msgid "Before updating"
+msgstr "Antes de actualizar"
+
+#: macropg.src#RID_SVXSTR_EVENT_APPROVEROWCHANGE.string.text
+msgid "Before record action"
+msgstr "Antes de la acción en el registro de datos"
+
+#: macropg.src#RID_SVXSTR_EVENT_ROWCHANGE.string.text
+msgid "After record action"
+msgstr "Después de la acción en el registro de datos"
+
+#: macropg.src#RID_SVXSTR_EVENT_CONFIRMDELETE.string.text
+msgid "Confirm deletion"
+msgstr "Confirmar eliminación"
+
+#: macropg.src#RID_SVXSTR_EVENT_ERROROCCURRED.string.text
+msgid "Error occurred"
+msgstr "Ocurrió un error"
+
+#: macropg.src#RID_SVXSTR_EVENT_ADJUSTMENTVALUECHANGED.string.text
+msgid "While adjusting"
+msgstr "Al ajustar"
+
+#: macropg.src#RID_SVXSTR_EVENT_FOCUSGAINED.string.text
+msgid "When receiving focus"
+msgstr "Recepción de foco"
+
+#: macropg.src#RID_SVXSTR_EVENT_FOCUSLOST.string.text
+msgid "When losing focus"
+msgstr "Al perder el foco"
+
+#: macropg.src#RID_SVXSTR_EVENT_ITEMSTATECHANGED.string.text
+msgid "Item status changed"
+msgstr "Estado modificado"
+
+#: macropg.src#RID_SVXSTR_EVENT_KEYTYPED.string.text
+msgid "Key pressed"
+msgstr "Tecla pulsada"
+
+#: macropg.src#RID_SVXSTR_EVENT_KEYUP.string.text
+msgid "Key released"
+msgstr "Tecla después de pulsada"
+
+#: macropg.src#RID_SVXSTR_EVENT_LOADED.string.text
+msgid "When loading"
+msgstr "Al cargar"
+
+#: macropg.src#RID_SVXSTR_EVENT_RELOADING.string.text
+msgid "Before reloading"
+msgstr "Antes de recargar"
+
+#: macropg.src#RID_SVXSTR_EVENT_RELOADED.string.text
+msgid "When reloading"
+msgstr "Al recargar"
+
+#: macropg.src#RID_SVXSTR_EVENT_MOUSEDRAGGED.string.text
+msgid "Mouse moved while key pressed"
+msgstr "Mover ratón por medio del teclado"
+
+#: macropg.src#RID_SVXSTR_EVENT_MOUSEENTERED.string.text
+msgid "Mouse inside"
+msgstr "Ratón dentro"
+
+#: macropg.src#RID_SVXSTR_EVENT_MOUSEEXITED.string.text
+msgid "Mouse outside"
+msgstr "Ratón fuera"
+
+#: macropg.src#RID_SVXSTR_EVENT_MOUSEMOVED.string.text
+msgid "Mouse moved"
+msgstr "Movimiento de ratón"
+
+#: macropg.src#RID_SVXSTR_EVENT_MOUSEPRESSED.string.text
+msgid "Mouse button pressed"
+msgstr "Botón del ratón presionado"
+
+#: macropg.src#RID_SVXSTR_EVENT_MOUSERELEASED.string.text
+msgid "Mouse button released"
+msgstr "Botón del ratón soltado"
+
+#: macropg.src#RID_SVXSTR_EVENT_POSITIONING.string.text
+msgid "Before record change"
+msgstr "Antes del cambio de registro"
+
+#: macropg.src#RID_SVXSTR_EVENT_POSITIONED.string.text
+msgid "After record change"
+msgstr "Después del cambio de registro"
+
+#: macropg.src#RID_SVXSTR_EVENT_RESETTED.string.text
+msgid "After resetting"
+msgstr "Después de restablecer"
+
+#: macropg.src#RID_SVXSTR_EVENT_APPROVERESETTED.string.text
+msgid "Prior to reset"
+msgstr "Antes de restablecer"
+
+#: macropg.src#RID_SVXSTR_EVENT_APPROVEACTIONPERFORMED.string.text
+msgid "Approve action"
+msgstr "Aprobar acción"
+
+#: macropg.src#RID_SVXSTR_EVENT_SUBMITTED.string.text
+msgid "Before submitting"
+msgstr "Antes del envío"
+
+#: macropg.src#RID_SVXSTR_EVENT_TEXTCHANGED.string.text
+msgid "Text modified"
+msgstr "Texto modificado"
+
+#: macropg.src#RID_SVXSTR_EVENT_UNLOADING.string.text
+msgid "Before unloading"
+msgstr "Antes de descargar"
+
+#: macropg.src#RID_SVXSTR_EVENT_UNLOADED.string.text
+msgid "When unloading"
+msgstr "Al descargar"
+
+#: macropg.src#RID_SVXSTR_EVENT_CHANGED.string.text
+msgid "Changed"
+msgstr "Modificado"
+
+#: macropg.src#RID_SVXSTR_EVENT_CREATEDOC.string.text
+msgid "Document created"
+msgstr "Documento creado"
+
+#: macropg.src#RID_SVXSTR_EVENT_LOADDOCFINISHED.string.text
+msgid "Document loading finished"
+msgstr "La carga del documento ha finalizado"
+
+#: macropg.src#RID_SVXSTR_EVENT_SAVEDOCFAILED.string.text
+msgid "Saving of document failed"
+msgstr "Falló el guardado del documento"
+
+#: macropg.src#RID_SVXSTR_EVENT_SAVEASDOCFAILED.string.text
+msgid "'Save as' has failed"
+msgstr "Falló «Guardar como»"
+
+#: macropg.src#RID_SVXSTR_EVENT_COPYTODOC.string.text
+msgid "Storing or exporting copy of document"
+msgstr "Almacenar o exportar copia del documento"
+
+#: macropg.src#RID_SVXSTR_EVENT_COPYTODOCDONE.string.text
+msgid "Document copy has been created"
+msgstr "Se creó una copia del documento"
+
+#: macropg.src#RID_SVXSTR_EVENT_COPYTODOCFAILED.string.text
+msgid "Creating of document copy failed"
+msgstr "Falló la creación de una copia del documento"
+
+#: macropg.src#RID_SVXSTR_EVENT_VIEWCREATED.string.text
+msgid "View created"
+msgstr "Vista creada"
+
+#: macropg.src#RID_SVXSTR_EVENT_PREPARECLOSEVIEW.string.text
+msgid "View is going to be closed"
+msgstr "La vista se cerrará"
+
+#: macropg.src#RID_SVXSTR_EVENT_CLOSEVIEW.string.text
+msgid "View closed"
+msgstr "Vista cerrada"
+
+#: macropg.src#RID_SVXSTR_EVENT_TITLECHANGED.string.text
+msgid "Document title changed"
+msgstr "Título del documento cambiado"
+
+#: macropg.src#RID_SVXSTR_EVENT_MODECHANGED.string.text
+msgid "Document mode changed"
+msgstr "Modo de documento cambiado"
+
+#: macropg.src#RID_SVXSTR_EVENT_VISAREACHANGED.string.text
+msgid "Visible area changed"
+msgstr "Área visible modificada"
+
+#: macropg.src#RID_SVXSTR_EVENT_STORAGECHANGED.string.text
+msgid "Document has got a new storage"
+msgstr "Documento tiene un nuevo almacenamiento"
+
+#: macropg.src#RID_SVXSTR_EVENT_LAYOUT_FINISHED.string.text
+msgid "Document layout finished"
+msgstr "El diseño del documento ha finalizado"
+
+#: macropg.src#RID_SVXSTR_EVENT_SELECTIONCHANGED.string.text
+msgid "Selection changed"
+msgstr "Selección cambiada"
+
+#: macropg.src#RID_SVXSTR_EVENT_DOUBLECLICK.string.text
+msgid "Double click"
+msgstr "Doble clic"
+
+#: macropg.src#RID_SVXSTR_EVENT_RIGHTCLICK.string.text
+msgid "Right click"
+msgstr "Clic derecho"
+
+#: macropg.src#RID_SVXSTR_EVENT_CALCULATE.string.text
+msgid "Formulas calculated"
+msgstr "Fórmulas calculadas"
+
+#: macropg.src#RID_SVXSTR_EVENT_CONTENTCHANGED.string.text
+msgid "Content changed"
+msgstr "Contenido cambiado"
+
+#: selector.src#FIXEDTEXT_DIALOG_DESCRIPTION.#define.text
+msgid "Select the library that contains the macro you want. Then select the macro under 'Macro name'."
+msgstr "Seleccione la biblioteca que contenga la macro que desea. A continuación, seleccione la macro dentro de 'Nombre de macro'."
+
+#: selector.src#STR_SELECTOR_ADD_COMMANDS.string.text
+msgid "Add Commands"
+msgstr "Añadir comandos"
+
+#: selector.src#STR_SELECTOR_MACROS.string.text
+msgctxt "selector.src#STR_SELECTOR_MACROS.string.text"
+msgid "%PRODUCTNAME Macros"
+msgstr "Macros de %PRODUCTNAME"
+
+#: selector.src#STR_SELECTOR_CATEGORIES.string.text
+msgctxt "selector.src#STR_SELECTOR_CATEGORIES.string.text"
+msgid "~Category"
+msgstr "~Categoría"
+
+#: selector.src#STR_SELECTOR_COMMANDS.string.text
+msgctxt "selector.src#STR_SELECTOR_COMMANDS.string.text"
+msgid "Commands"
+msgstr "Comandos"
+
+#: selector.src#STR_SELECTOR_ADD.string.text
+msgid "Add"
+msgstr "Añadir"
+
+#: selector.src#STR_SELECTOR_RUN.string.text
+msgid "Run"
+msgstr "Ejecutar"
+
+#: selector.src#STR_SELECTOR_CLOSE.string.text
+msgid "Close"
+msgstr "Cerrar"
+
+#: selector.src#STR_SELECTOR_ADD_COMMANDS_DESCRIPTION.string.text
+msgid "To add a command to a toolbar, select the category and then the command. Then drag the command to the Commands list of the Toolbars tab page in the Customize dialog."
+msgstr "Para añadir un comando a una barra de herramientas, seleccione la categoría y luego el comando. Después, arrastre el comando a la lista Comandos de la pestaña Barras de herramientas en el diálogo Personalizar."
+
+#: selector.src#STR_BASICMACROS.string.text
+msgctxt "selector.src#STR_BASICMACROS.string.text"
+msgid "BASIC Macros"
+msgstr "Macros BASIC"
+
+#: selector.src#RID_DLG_SCRIPTSELECTOR.TXT_SELECTOR_CATEGORIES.fixedtext.text
+msgid "Library"
+msgstr "Biblioteca"
+
+#: selector.src#RID_DLG_SCRIPTSELECTOR.BOX_SELECTOR_CATEGORIES.STR_MYMACROS.string.text
+msgctxt "selector.src#RID_DLG_SCRIPTSELECTOR.BOX_SELECTOR_CATEGORIES.STR_MYMACROS.string.text"
+msgid "My Macros"
+msgstr "Mis macros"
+
+#: selector.src#RID_DLG_SCRIPTSELECTOR.BOX_SELECTOR_CATEGORIES.STR_PRODMACROS.string.text
+msgctxt "selector.src#RID_DLG_SCRIPTSELECTOR.BOX_SELECTOR_CATEGORIES.STR_PRODMACROS.string.text"
+msgid "%PRODUCTNAME Macros"
+msgstr "Macros de %PRODUCTNAME"
+
+#: selector.src#RID_DLG_SCRIPTSELECTOR.TXT_SELECTOR_COMMANDS.fixedtext.text
+msgid "Macro name"
+msgstr "Nombre de macro"
+
+#: selector.src#RID_DLG_SCRIPTSELECTOR.GRP_SELECTOR_DESCRIPTION.fixedline.text
+msgctxt "selector.src#RID_DLG_SCRIPTSELECTOR.GRP_SELECTOR_DESCRIPTION.fixedline.text"
+msgid "Description"
+msgstr "Descripción"
+
+#: selector.src#RID_DLG_SCRIPTSELECTOR.modelessdialog.text
+msgid "Macro Selector"
+msgstr "Selector de macro"
+
+#: cfg.src#RID_SVXDLG_CUSTOMIZE.1.RID_SVXPAGE_MENUS.pageitem.text
+msgid "Menus"
+msgstr "Menús"
+
+#: cfg.src#RID_SVXDLG_CUSTOMIZE.1.RID_SVXPAGE_KEYBOARD.pageitem.text
+msgid "Keyboard"
+msgstr "Teclado"
+
+#: cfg.src#RID_SVXDLG_CUSTOMIZE.1.RID_SVXPAGE_TOOLBARS.pageitem.text
+msgid "Toolbars"
+msgstr "Barras de herramientas"
+
+#: cfg.src#RID_SVXDLG_CUSTOMIZE.1.RID_SVXPAGE_EVENTS.pageitem.text
+msgid "Events"
+msgstr "Eventos"
+
+#: cfg.src#RID_SVXDLG_CUSTOMIZE.tabdialog.text
+msgid "Customize"
+msgstr "Personalizar"
+
+#: cfg.src#TEXT_MENU.#define.text
+msgid "Menu"
+msgstr "Menú"
+
+#: cfg.src#TEXT_BEGIN_GROUP.#define.text
+msgid "Begin a Group"
+msgstr "Empezar un grupo"
+
+#: cfg.src#TEXT_RENAME.#define.text
+msgid "Rename..."
+msgstr "Renombrar..."
+
+#: cfg.src#TEXT_DELETE.#define.text
+msgctxt "cfg.src#TEXT_DELETE.#define.text"
+msgid "Delete..."
+msgstr "Eliminar..."
+
+#: cfg.src#TEXT_DELETE_NODOTS.#define.text
+msgid "Delete"
+msgstr "Eliminar"
+
+#: cfg.src#TEXT_MOVE.#define.text
+msgid "Move..."
+msgstr "Mover..."
+
+#: cfg.src#TEXT_DEFAULT_STYLE.#define.text
+msgid "Restore Default Settings"
+msgstr "Restaurar configuración predeterminada"
+
+#: cfg.src#TEXT_DEFAULT_COMMAND.#define.text
+msgid "Restore Default Command"
+msgstr "Restaurar comando predeterminado"
+
+#: cfg.src#TEXT_TEXT_ONLY.#define.text
+msgid "Text only"
+msgstr "Solo texto"
+
+#: cfg.src#TEXT_TOOLBAR_NAME.#define.text
+msgid "Toolbar Name"
+msgstr "Nombre de la barra de herramientas"
+
+#: cfg.src#TEXT_SAVE_IN.#define.text
+msgctxt "cfg.src#TEXT_SAVE_IN.#define.text"
+msgid "Save In"
+msgstr "Guardar en"
+
+#: cfg.src#RID_SVXPAGE_MENUS.GRP_MENUS.fixedline.text
+msgid "%PRODUCTNAME %MODULENAME Menus"
+msgstr "Menús de %PRODUCTNAME %MODULENAME"
+
+#: cfg.src#RID_SVXPAGE_MENUS.BTN_NEW.pushbutton.text
+msgid "New..."
+msgstr "Nuevo..."
+
+#: cfg.src#RID_SVXPAGE_MENUS.GRP_MENU_SEPARATOR.fixedline.text
+msgid "Menu Content"
+msgstr "Contenido del menú"
+
+#: cfg.src#RID_SVXPAGE_MENUS.GRP_MENU_ENTRIES.fixedtext.text
+msgid "Entries"
+msgstr "Entradas"
+
+#: cfg.src#RID_SVXPAGE_MENUS.BTN_ADD_COMMANDS.pushbutton.text
+msgid "Add..."
+msgstr "Añadir..."
+
+#: cfg.src#RID_SVXPAGE_MENUS.BTN_CHANGE_ENTRY.menubutton.text
+msgid "Modify"
+msgstr "Modificar"
+
+#: cfg.src#RID_SVXPAGE_MENUS.FT_DESCRIPTION.fixedtext.text
+msgctxt "cfg.src#RID_SVXPAGE_MENUS.FT_DESCRIPTION.fixedtext.text"
+msgid "Description"
+msgstr "Descripción"
+
+#: cfg.src#MODIFY_ENTRY.ID_ADD_SUBMENU.menuitem.text
+msgid "Add Submenu..."
+msgstr "Añadir submenú..."
+
+#: cfg.src#MODIFY_TOOLBAR.ID_ICONS_ONLY.menuitem.text
+msgid "Icons Only"
+msgstr "Solo iconos"
+
+#: cfg.src#MODIFY_TOOLBAR.ID_ICONS_AND_TEXT.menuitem.text
+msgid "Icons & Text"
+msgstr "Iconos y texto"
+
+#: cfg.src#MODIFY_TOOLBAR_CONTENT.ID_CHANGE_SYMBOL.menuitem.text
+msgid "Change Icon..."
+msgstr "Cambiar icono..."
+
+#: cfg.src#MODIFY_TOOLBAR_CONTENT.ID_RESET_SYMBOL.menuitem.text
+msgid "Reset Icon"
+msgstr "Restablecer icono"
+
+#: cfg.src#RID_SVXSTR_NEW_MENU.string.text
+msgid "New Menu %n"
+msgstr "Menú nuevo %n"
+
+#: cfg.src#RID_SVXSTR_NEW_TOOLBAR.string.text
+msgid "New Toolbar %n"
+msgstr "Barra de herramientas nueva %n"
+
+#: cfg.src#RID_SVXSTR_MOVE_MENU.string.text
+msgid "Move Menu"
+msgstr "Mover menú"
+
+#: cfg.src#RID_SVXSTR_ADD_SUBMENU.string.text
+msgid "Add Submenu"
+msgstr "Añadir submenú"
+
+#: cfg.src#RID_SVXSTR_SUBMENU_NAME.string.text
+msgid "Submenu name"
+msgstr "Nombre del submenú"
+
+#: cfg.src#RID_SVXSTR_MENU_ADDCOMMANDS_DESCRIPTION.string.text
+msgid "To add a command to a menu, select the category and then the command. You can also drag the command to the Commands list of the Menus tab page in the Customize dialog."
+msgstr "Para añadir un comando a un menú, seleccione la categoría y luego el comando. También puede arrastrar el comando a la lista Comandos de la pestaña Menús en el diálogo Personalizar."
+
+#: cfg.src#MD_MENU_ORGANISER.TXT_MENU_NAME.fixedtext.text
+msgid "Menu name"
+msgstr "Nombre del menú"
+
+#: cfg.src#MD_MENU_ORGANISER.TXT_MENU.fixedtext.text
+msgid "Menu position"
+msgstr "Posición del menú"
+
+#: cfg.src#MD_MENU_ORGANISER.modaldialog.text
+msgid "New Menu"
+msgstr "Menú nuevo"
+
+#: cfg.src#MD_NEW_TOOLBAR.modaldialog.text
+msgid "Name"
+msgstr "Nombre"
+
+#: cfg.src#MD_ICONSELECTOR.FT_SYMBOLS.fixedtext.text
+msgid "Icons"
+msgstr "Iconos"
+
+#: cfg.src#MD_ICONSELECTOR.BTN_IMPORT.pushbutton.text
+msgid "Import..."
+msgstr "Importar..."
+
+#: cfg.src#MD_ICONSELECTOR.BTN_DELETE.pushbutton.text
+msgctxt "cfg.src#MD_ICONSELECTOR.BTN_DELETE.pushbutton.text"
+msgid "Delete..."
+msgstr "Eliminar..."
+
+#: cfg.src#MD_ICONSELECTOR.FT_NOTE.fixedtext.text
+msgid ""
+"Note:\n"
+"The size of an icon should be 16x16 pixel to achieve best quality. Different sized icons will be scaled automatically."
+msgstr ""
+"Nota:\n"
+"El tamaño de un icono debería ser de 16×16 píxeles para lograr la mejor calidad. Los iconos con tamaños distintos se redimensionrán automáticamente."
+
+#: cfg.src#MD_ICONSELECTOR.modaldialog.text
+msgid "Change Icon"
+msgstr "Cambiar icono"
+
+#: cfg.src#MD_ICONCHANGE.FTCHGE_DESCRIPTION.fixedtext.text
+msgid ""
+"The files listed below could not be imported.\n"
+"The file format could not be interpreted."
+msgstr ""
+"No se pudieron importar los archivos listados a continuación.\n"
+"No se pudo interpretar el formato de archivo."
+
+#: cfg.src#MD_ICONCHANGE.modaldialog.text
+msgid "%PRODUCTNAME %PRODUCTVERSION"
+msgstr "%PRODUCTNAME %PRODUCTVERSION"
+
+#: cfg.src#RID_SVXSTR_IMPORT_ICON_ERROR.string.text
+msgid "The files listed below could not be imported. The file format could not be interpreted."
+msgstr "No se pudieron importar los archivos listados a continuación. No se pudo interpretar el formato de archivo."
+
+#: cfg.src#RID_SVXSTR_DELETE_ICON_CONFIRM.string.text
+msgid "Are you sure to delete the image?"
+msgstr "¿Está seguro de que quiere eliminar la imagen?"
+
+#: cfg.src#RID_SVXSTR_REPLACE_ICON_WARNING.string.text
+msgid ""
+"The icon %ICONNAME is already contained in the image list.\n"
+"Would you like to replace the existing icon?"
+msgstr ""
+"El icono %ICONNAME ya está en la lista de imágenes.\n"
+"¿Le gustaría reemplazar el icono existente?"
+
+#: cfg.src#RID_SVXSTR_REPLACE_ICON_CONFIRM.string.text
+msgid "Confirm Icon Replacement"
+msgstr "Confirmar el reemplazo del icono"
+
+#: cfg.src#RID_SVXSTR_YESTOALL.string.text
+msgid "Yes to All"
+msgstr "Sí a todo"
+
+#: cfg.src#RID_SVXSTR_PRODUCTNAME_TOOLBARS.string.text
+msgid "%PRODUCTNAME %MODULENAME Toolbars"
+msgstr "Barras de herramientas de %PRODUCTNAME %MODULENAME"
+
+#: cfg.src#RID_SVXSTR_TOOLBAR.string.text
+msgid "Toolbar"
+msgstr "Barra de herramientas"
+
+#: cfg.src#RID_SVXSTR_TOOLBAR_CONTENT.string.text
+msgid "Toolbar Content"
+msgstr "Contenido de la barra de herramientas"
+
+#: cfg.src#RID_SVXSTR_COMMANDS.string.text
+msgctxt "cfg.src#RID_SVXSTR_COMMANDS.string.text"
+msgid "Commands"
+msgstr "Comandos"
+
+#: cfg.src#RID_SVXSTR_COMMAND.string.text
+msgid "Command"
+msgstr "Comando"
+
+#: cfg.src#QBX_CONFIRM_DELETE_MENU.querybox.text
+msgid "Are you sure you want to delete the '%MENUNAME' menu?"
+msgstr "¿Está seguro de que quiere eliminar el menú «%MENUNAME»?"
+
+#: cfg.src#QBX_CONFIRM_DELETE_TOOLBAR.querybox.text
+msgid "There are no more commands on the toolbar. Do you want to delete the toolbar?"
+msgstr "No hay más comandos en la barra de herramientas. ¿Desea eliminar la barra de herramientas?"
+
+#: cfg.src#QBX_CONFIRM_RESET.querybox.text
+msgctxt "cfg.src#QBX_CONFIRM_RESET.querybox.text"
+msgid "The menu configuration for %SAVE IN SELECTION% will be reset to the factory settings. Do you want to continue?"
+msgstr "La configuración de menú de %SAVE IN SELECTION% se restaurará a su estado original. ¿Quiere continuar?"
+
+#: cfg.src#RID_SVXSTR_CONFIRM_MENU_RESET.string.text
+msgctxt "cfg.src#RID_SVXSTR_CONFIRM_MENU_RESET.string.text"
+msgid "The menu configuration for %SAVE IN SELECTION% will be reset to the factory settings. Do you want to continue?"
+msgstr "La configuración de menú de %SAVE IN SELECTION% se restaurará a su estado original. ¿Quiere continuar?"
+
+#: cfg.src#RID_SVXSTR_CONFIRM_TOOLBAR_RESET.string.text
+msgid "The toolbar configuration for %SAVE IN SELECTION% will be reset to the factory settings. Do you want to continue?"
+msgstr "La configuración de la barra de herramientas de %SAVE IN SELECTION% se restaurará a su estado original. ¿Quiere continuar?"
+
+#: cfg.src#QBX_CONFIRM_RESTORE_DEFAULT.querybox.text
+msgid "This will delete all changes previously made to this toolbar. Do you really want to reset the toolbar?"
+msgstr "Esta acción eliminará todos los cambios realizados en esta barra de herramientas. ¿Realmente desea restablecer la barra de herramientas?"
+
+#: cfg.src#IBX_MNUCFG_ALREADY_INCLUDED.infobox.text
+msgid "Function is already included in this popup."
+msgstr "La función ya está incluida en este emergente."
+
+#: cfg.src#RID_SVXSTR_LABEL_NEW_NAME.string.text
+msgid "~New name"
+msgstr "~Nuevo nombre"
+
+#: cfg.src#RID_SVXSTR_RENAME_MENU.string.text
+msgid "Rename Menu"
+msgstr "Renombrar menú"
+
+#: cfg.src#RID_SVXSTR_RENAME_TOOLBAR.string.text
+msgid "Rename Toolbar"
+msgstr "Renombrar barra de herramientas"
+
+#: cfg.src#BUTTON_STR_UP.string.text
+msgid "Up"
+msgstr "Arriba"
+
+#: cfg.src#BUTTON_STR_DOWN.string.text
+msgid "Down"
+msgstr "Abajo"
+
+#: acccfg.src#PUSHBUTTON_TEXT_SAVE.#define.text
+msgid "~Save..."
+msgstr "~Guardar..."
+
+#: acccfg.src#PUSHBUTTON_TEXT_RESET.#define.text
+msgid "R~eset"
+msgstr "R~establecer"
+
+#: acccfg.src#PUSHBUTTON_TEXT_LOAD.#define.text
+msgid "~Load..."
+msgstr "~Cargar..."
+
+#: acccfg.src#PUSHBUTTON_TEXT_REMOVE.#define.text
+msgid "~Delete"
+msgstr "~Eliminar"
+
+#: acccfg.src#PUSHBUTTON_TEXT_CHANGE.#define.text
+msgid "~Modify"
+msgstr "~Modificar"
+
+#: acccfg.src#PUSHBUTTON_TEXT_NEW.#define.text
+msgid "~New"
+msgstr "~Nuevo"
+
+#: acccfg.src#FIXEDTEXT_TEXT_GROUP.#define.text
+msgctxt "acccfg.src#FIXEDTEXT_TEXT_GROUP.#define.text"
+msgid "~Category"
+msgstr "~Categoría"
+
+#: acccfg.src#FIXEDTEXT_TEXT_FUNCTION.#define.text
+msgid "Function"
+msgstr "Funcion"
+
+#: acccfg.src#GROUPBOX_TEXT_FUNCTIONS.#define.text
+msgid "Functions"
+msgstr "Funciones"
+
+#: acccfg.src#RID_SVXPAGE_KEYBOARD.GRP_ACC_KEYBOARD.fixedline.text
+msgid "Shortcut keys"
+msgstr "Teclas rápidas"
+
+#: acccfg.src#RID_SVXPAGE_KEYBOARD.TXT_ACC_KEY.fixedtext.text
+msgid "~Keys"
+msgstr "~Teclas"
+
+#: acccfg.src#RID_SVXPAGE_KEYBOARD.STR_LOADACCELCONFIG.string.text
+msgid "Load Keyboard Configuration"
+msgstr "Cargar la configuración del teclado"
+
+#: acccfg.src#RID_SVXPAGE_KEYBOARD.STR_SAVEACCELCONFIG.string.text
+msgid "Save Keyboard Configuration"
+msgstr "Guardar la configuración de teclado"
+
+#: acccfg.src#RID_SVXPAGE_KEYBOARD.STR_FILTERNAME_CFG.string.text
+msgid "Configuration"
+msgstr "Configuración"
+
+#: acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_MYMACROS.string.text
+msgctxt "acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_MYMACROS.string.text"
+msgid "My Macros"
+msgstr "Mis macros"
+
+#: acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_PRODMACROS.string.text
+msgctxt "acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_PRODMACROS.string.text"
+msgid "%PRODUCTNAME Macros"
+msgstr "Macros de %PRODUCTNAME"
+
+#: acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_BASICMACROS.string.text
+msgctxt "acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_BASICMACROS.string.text"
+msgid "BASIC Macros"
+msgstr "Macros BASIC"
+
+#: acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_DLG_MACROS.string.text
+msgctxt "acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_DLG_MACROS.string.text"
+msgid "%PRODUCTNAME Macros"
+msgstr "Macros de %PRODUCTNAME"
+
+#: acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_GROUP_STYLES.string.text
+msgid "Styles"
+msgstr "Estilos"
+
+#: eventdlg.src#RID_SVXPAGE_EVENTS.STR_EVENT.string.text
+msgctxt "eventdlg.src#RID_SVXPAGE_EVENTS.STR_EVENT.string.text"
+msgid "Event"
+msgstr "Evento"
+
+#: eventdlg.src#RID_SVXPAGE_EVENTS.STR_ASSMACRO.string.text
+msgctxt "eventdlg.src#RID_SVXPAGE_EVENTS.STR_ASSMACRO.string.text"
+msgid "Assigned Action"
+msgstr "Acción asignada"
+
+#: eventdlg.src#RID_SVXPAGE_EVENTS.TXT_SAVEIN.fixedtext.text
+msgctxt "eventdlg.src#RID_SVXPAGE_EVENTS.TXT_SAVEIN.fixedtext.text"
+msgid "Save In"
+msgstr "Guardar en"
+
+#: eventdlg.src#RID_SVXPAGE_EVENTS.FT_ASSIGN.fixedtext.text
+msgctxt "eventdlg.src#RID_SVXPAGE_EVENTS.FT_ASSIGN.fixedtext.text"
+msgid "Assign:"
+msgstr "Asignar:"
+
+#: eventdlg.src#RID_SVXPAGE_EVENTS.PB_ASSIGN.pushbutton.text
+msgctxt "eventdlg.src#RID_SVXPAGE_EVENTS.PB_ASSIGN.pushbutton.text"
+msgid "M~acro..."
+msgstr "M~acro..."
+
+#: eventdlg.src#RID_SVXPAGE_EVENTS.PB_DELETE.pushbutton.text
+msgctxt "eventdlg.src#RID_SVXPAGE_EVENTS.PB_DELETE.pushbutton.text"
+msgid "~Remove"
+msgstr "~Eliminar"
diff --git a/source/es/cui/source/dialogs.po b/source/es/cui/source/dialogs.po
new file mode 100644
index 00000000000..a1e3ea708b0
--- /dev/null
+++ b/source/es/cui/source/dialogs.po
@@ -0,0 +1,2223 @@
+#. extracted from cui/source/dialogs.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+cui%2Fsource%2Fdialogs.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-13 20:42+0200\n"
+"PO-Revision-Date: 2012-08-17 07:54+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: thesdlg.src#RID_SVXDLG_THESAURUS.FT_WORD.fixedtext.text
+msgid "~Current word"
+msgstr "La palabra ~actual"
+
+#: thesdlg.src#RID_SVXDLG_THESAURUS.MB_LANGUAGE.menubutton.text
+msgid "~Language"
+msgstr "~Idioma"
+
+#: thesdlg.src#RID_SVXDLG_THESAURUS.FT_THES_ALTERNATIVES.fixedtext.text
+msgid "~Alternatives"
+msgstr "~Alternativas"
+
+#: thesdlg.src#RID_SVXDLG_THESAURUS.FT_REPL.fixedtext.text
+msgid "~Replace with"
+msgstr "~Reemplazar por"
+
+#: thesdlg.src#RID_SVXDLG_THESAURUS.BTN_THES_OK.okbutton.text
+msgid "Replace"
+msgstr "Reemplazar"
+
+#: thesdlg.src#RID_SVXDLG_THESAURUS.STR_ERR_TEXTNOTFOUND.string.text
+msgid "No alternatives found."
+msgstr "No se encontraron alternativas."
+
+#: thesdlg.src#RID_SVXDLG_THESAURUS.modaldialog.text
+msgid "Thesaurus"
+msgstr "Diccionario de sinónimos"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.GRP_LINKTYPE.fixedline.text
+msgid "Hyperlink type"
+msgstr "Tipo de hiperenlace"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.RB_LINKTYP_INTERNET.radiobutton.text
+msgid "~Web"
+msgstr "~Web"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.RB_LINKTYP_FTP.radiobutton.text
+msgid "~FTP"
+msgstr "~FTP"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_TARGET_HTML.fixedtext.text
+msgid "Tar~get"
+msgstr "~Destino"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_LOGIN.fixedtext.text
+msgid "~Login name"
+msgstr "~Nombre de inicio de sesión"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_PASSWD.fixedtext.text
+msgid "~Password"
+msgstr "~Contraseña"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.CBX_ANONYMOUS.checkbox.text
+msgid "Anonymous ~user"
+msgstr "Usuario ~anónimo"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.BTN_BROWSE.imagebutton.text
+msgid "WWW Browser"
+msgstr "Navegador web"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.BTN_BROWSE.imagebutton.quickhelptext
+msgid "Open web browser, copy an URL, and paste it to Target field"
+msgstr "Abra el navegador web, copie una URL y péguela en el campo Destino"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.GRP_MORE.fixedline.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.GRP_MORE.fixedline.text"
+msgid "Further settings"
+msgstr "Otras opciones"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_FRAME.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_FRAME.fixedtext.text"
+msgid "F~rame"
+msgstr "Ma~rco"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_FORM.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_FORM.fixedtext.text"
+msgid "F~orm"
+msgstr "F~ormulario"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.LB_FORM.1.stringlist.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.LB_FORM.1.stringlist.text"
+msgid "Text"
+msgstr "Texto"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.LB_FORM.2.stringlist.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.LB_FORM.2.stringlist.text"
+msgid "Button"
+msgstr "Botón"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_INDICATION.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_INDICATION.fixedtext.text"
+msgid "Te~xt"
+msgstr "Te~xto"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_TEXT.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_TEXT.fixedtext.text"
+msgid "N~ame"
+msgstr "N~ombre"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.BTN_SCRIPT.imagebutton.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.BTN_SCRIPT.imagebutton.text"
+msgid "Events"
+msgstr "Eventos"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.BTN_SCRIPT.imagebutton.quickhelptext
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.BTN_SCRIPT.imagebutton.quickhelptext"
+msgid "Events"
+msgstr "Eventos"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.tabpage.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.tabpage.text"
+msgid "Hyperlink"
+msgstr "Hiperenlace"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.GRP_MAILNEWS.fixedline.text
+msgid "Mail & news"
+msgstr "Correo y noticias"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.RB_LINKTYP_MAIL.radiobutton.text
+msgid "~E-mail"
+msgstr "Correo ~electrónico"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.RB_LINKTYP_NEWS.radiobutton.text
+msgid "~News"
+msgstr "~Noticias"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_RECEIVER.fixedtext.text
+msgid "Re~cipient"
+msgstr "~Destinatario"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_SUBJECT.fixedtext.text
+msgid "~Subject"
+msgstr "A~sunto"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_ADRESSBOOK.imagebutton.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_ADRESSBOOK.imagebutton.text"
+msgid "Data Sources..."
+msgstr "Orígenes de datos..."
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_ADRESSBOOK.imagebutton.quickhelptext
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_ADRESSBOOK.imagebutton.quickhelptext"
+msgid "Data Sources..."
+msgstr "Orígenes de datos..."
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.GRP_MORE.fixedline.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.GRP_MORE.fixedline.text"
+msgid "Further settings"
+msgstr "Otras opciones"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_FRAME.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_FRAME.fixedtext.text"
+msgid "F~rame"
+msgstr "Ma~rco"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_FORM.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_FORM.fixedtext.text"
+msgid "F~orm"
+msgstr "F~ormulario"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.LB_FORM.1.stringlist.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.LB_FORM.1.stringlist.text"
+msgid "Text"
+msgstr "Texto"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.LB_FORM.2.stringlist.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.LB_FORM.2.stringlist.text"
+msgid "Button"
+msgstr "Botón"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_INDICATION.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_INDICATION.fixedtext.text"
+msgid "Te~xt"
+msgstr "Te~xto"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_TEXT.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_TEXT.fixedtext.text"
+msgid "N~ame"
+msgstr "N~ombre"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_SCRIPT.imagebutton.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_SCRIPT.imagebutton.text"
+msgid "Events"
+msgstr "Eventos"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_SCRIPT.imagebutton.quickhelptext
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_SCRIPT.imagebutton.quickhelptext"
+msgid "Events"
+msgstr "Eventos"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.tabpage.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.tabpage.text"
+msgid "Hyperlink"
+msgstr "Hiperenlace"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.GRP_DOCUMENT.fixedline.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.GRP_DOCUMENT.fixedline.text"
+msgid "Document"
+msgstr "Documento"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_PATH_DOC.fixedtext.text
+msgid "~Path"
+msgstr "~Ruta"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_FILEOPEN.imagebutton.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_FILEOPEN.imagebutton.text"
+msgid "Open File"
+msgstr "Abrir archivo"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_FILEOPEN.imagebutton.quickhelptext
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_FILEOPEN.imagebutton.quickhelptext"
+msgid "Open File"
+msgstr "Abrir archivo"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.GRP_TARGET.fixedline.text
+msgid "Target in document"
+msgstr "Destino en el documento"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_TARGET_DOC.fixedtext.text
+msgid "Targ~et"
+msgstr "~Destino"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_URL.fixedtext.text
+msgid "URL"
+msgstr "URL"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_FULL_URL.fixedtext.text
+msgid "Test text"
+msgstr "Texto de prueba"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_BROWSE.imagebutton.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_BROWSE.imagebutton.text"
+msgid "Target in Document"
+msgstr "Destino en documento"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_BROWSE.imagebutton.quickhelptext
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_BROWSE.imagebutton.quickhelptext"
+msgid "Target in Document"
+msgstr "Destino en documento"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.GRP_MORE.fixedline.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.GRP_MORE.fixedline.text"
+msgid "Further settings"
+msgstr "Otras opciones"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_FRAME.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_FRAME.fixedtext.text"
+msgid "F~rame"
+msgstr "F~rame"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_FORM.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_FORM.fixedtext.text"
+msgid "F~orm"
+msgstr "F~ormulario"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.LB_FORM.1.stringlist.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.LB_FORM.1.stringlist.text"
+msgid "Text"
+msgstr "Texto"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.LB_FORM.2.stringlist.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.LB_FORM.2.stringlist.text"
+msgid "Button"
+msgstr "Botón"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_INDICATION.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_INDICATION.fixedtext.text"
+msgid "Te~xt"
+msgstr "Te~xto"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_TEXT.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_TEXT.fixedtext.text"
+msgid "N~ame"
+msgstr "N~ombre"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_SCRIPT.imagebutton.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_SCRIPT.imagebutton.text"
+msgid "Events"
+msgstr "Eventos"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_SCRIPT.imagebutton.quickhelptext
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_SCRIPT.imagebutton.quickhelptext"
+msgid "Events"
+msgstr "Eventos"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.tabpage.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.tabpage.text"
+msgid "Hyperlink"
+msgstr "Hiperenlace"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.GRP_NEWDOCUMENT.fixedline.text
+msgid "New document"
+msgstr "Nuevo documento"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.RB_EDITNOW.radiobutton.text
+msgid "Edit ~now"
+msgstr "Editar a~hora"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.RB_EDITLATER.radiobutton.text
+msgid "Edit ~later"
+msgstr "Editar ~después"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.FT_PATH_NEWDOC.fixedtext.text
+msgid "~File"
+msgstr "~Archivo"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.FT_DOCUMENT_TYPES.fixedtext.text
+msgid "File ~type"
+msgstr "~Tipo de archivo"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.BTN_CREATE.imagebutton.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.BTN_CREATE.imagebutton.text"
+msgid "Select Path"
+msgstr "Seleccionar ruta"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.BTN_CREATE.imagebutton.quickhelptext
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.BTN_CREATE.imagebutton.quickhelptext"
+msgid "Select Path"
+msgstr "Seleccionar ruta"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.GRP_MORE.fixedline.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.GRP_MORE.fixedline.text"
+msgid "Further settings"
+msgstr "Otras opciones"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.FT_FRAME.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.FT_FRAME.fixedtext.text"
+msgid "F~rame"
+msgstr "Ma~rco"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.FT_FORM.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.FT_FORM.fixedtext.text"
+msgid "F~orm"
+msgstr "F~ormulario"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.LB_FORM.1.stringlist.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.LB_FORM.1.stringlist.text"
+msgid "Text"
+msgstr "Texto"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.LB_FORM.2.stringlist.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.LB_FORM.2.stringlist.text"
+msgid "Button"
+msgstr "Botón"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.FT_INDICATION.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.FT_INDICATION.fixedtext.text"
+msgid "Te~xt"
+msgstr "Te~xto"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.FT_TEXT.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.FT_TEXT.fixedtext.text"
+msgid "N~ame"
+msgstr "N~ombre"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.BTN_SCRIPT.imagebutton.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.BTN_SCRIPT.imagebutton.text"
+msgid "Events"
+msgstr "Eventos"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.BTN_SCRIPT.imagebutton.quickhelptext
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.BTN_SCRIPT.imagebutton.quickhelptext"
+msgid "Events"
+msgstr "Eventos"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.tabpage.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.tabpage.text"
+msgid "Hyperlink"
+msgstr "Hiperenlace"
+
+#: hyperdlg.src#RID_SVXDLG_NEWHYPERLINK.modaldialog.text
+msgctxt "hyperdlg.src#RID_SVXDLG_NEWHYPERLINK.modaldialog.text"
+msgid "Hyperlink"
+msgstr "Hiperenlace"
+
+#: hyperdlg.src#RID_SVXSTR_HYPDLG_APPLYBUT.string.text
+msgctxt "hyperdlg.src#RID_SVXSTR_HYPDLG_APPLYBUT.string.text"
+msgid "Apply"
+msgstr "Aplicar"
+
+#: hyperdlg.src#RID_SVXSTR_HYPDLG_CLOSEBUT.string.text
+msgctxt "hyperdlg.src#RID_SVXSTR_HYPDLG_CLOSEBUT.string.text"
+msgid "Close"
+msgstr "Cerrar"
+
+#: hyperdlg.src#RID_SVXSTR_HYPDLG_MACROACT1.string.text
+msgid "Mouse over object"
+msgstr "El ratón está sobre el objeto"
+
+#: hyperdlg.src#RID_SVXSTR_HYPDLG_MACROACT2.string.text
+msgid "Trigger hyperlink"
+msgstr "Ejecutar hiperenlace"
+
+#: hyperdlg.src#RID_SVXSTR_HYPDLG_MACROACT3.string.text
+msgid "Mouse leaves object"
+msgstr "El ratón abandona el objeto"
+
+#: hyperdlg.src#RID_SVXSTR_HYPDLG_NOVALIDFILENAME.string.text
+msgid "Please type in a valid file name."
+msgstr "Introduzca un nombre de archivo válido."
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_HLINETTP.string.text
+msgid "Internet"
+msgstr "Internet"
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_HLINETTP_HELP.string.text
+msgid "This is where you create a hyperlink to a Web page or FTP server connection."
+msgstr "Aquí es donde puede crear un hiperenlace a una página web o una conexión a servidor FTP."
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_HLMAILTP.string.text
+msgid "Mail & News"
+msgstr "Correo y noticias"
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_HLMAILTP_HELP.string.text
+msgid "This is where you create a hyperlink to an e-mail address or newsgroup."
+msgstr "Crea un hiperenlace a una dirección de correo electrónico o a un grupo de noticias."
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_HLDOCTP.string.text
+msgctxt "hyperdlg.src#RID_SVXSTR_HYPERDLG_HLDOCTP.string.text"
+msgid "Document"
+msgstr "Documento"
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_HLDOCTP_HELP.string.text
+msgid "This is where you create a hyperlink to an existing document or a target within a document."
+msgstr "Crea un hiperenlace a un documento existente o a un destino dentro de un documento."
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_HLDOCNTP.string.text
+msgid "New Document"
+msgstr "Documento nuevo"
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_HLDOCNTP_HELP.string.text
+msgid "This is where you create a new document to which the new link points."
+msgstr "Crea un documento nuevo al que refiere el hiperenlace."
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_FORM_BUTTON.string.text
+msgctxt "hyperdlg.src#RID_SVXSTR_HYPERDLG_FORM_BUTTON.string.text"
+msgid "Button"
+msgstr "Botón"
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_FROM_TEXT.string.text
+msgctxt "hyperdlg.src#RID_SVXSTR_HYPERDLG_FROM_TEXT.string.text"
+msgid "Text"
+msgstr "Texto"
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_QUERYOVERWRITE.string.text
+msgid "The file already exists. Overwrite?"
+msgstr "El archivo ya existe. ¿Sobreescribirlo?"
+
+#: charmap.src#RID_SVXDLG_CHARMAP.FT_FONT.fixedtext.text
+msgid "~Font"
+msgstr "~Fuente"
+
+#: charmap.src#RID_SVXDLG_CHARMAP.FT_SUBSET.fixedtext.text
+msgid "~Subset"
+msgstr "~Subconjunto"
+
+#: charmap.src#RID_SVXDLG_CHARMAP.FT_SYMBOLE.fixedtext.text
+msgid "Characters:"
+msgstr "Caracteres:"
+
+#: charmap.src#RID_SVXDLG_CHARMAP.BTN_DELETE.pushbutton.text
+msgctxt "charmap.src#RID_SVXDLG_CHARMAP.BTN_DELETE.pushbutton.text"
+msgid "~Delete"
+msgstr "~Eliminar"
+
+#: charmap.src#RID_SVXDLG_CHARMAP.modaldialog.text
+msgid "Special Characters"
+msgstr "Caracteres especiales"
+
+#: hlmarkwn.src#RID_SVXFLOAT_HYPERLINK_MARKWND.BT_APPLY.pushbutton.text
+msgctxt "hlmarkwn.src#RID_SVXFLOAT_HYPERLINK_MARKWND.BT_APPLY.pushbutton.text"
+msgid "Apply"
+msgstr "Aplicar"
+
+#: hlmarkwn.src#RID_SVXFLOAT_HYPERLINK_MARKWND.BT_CLOSE.pushbutton.text
+msgctxt "hlmarkwn.src#RID_SVXFLOAT_HYPERLINK_MARKWND.BT_CLOSE.pushbutton.text"
+msgid "Close"
+msgstr "Cerrar"
+
+#: hlmarkwn.src#RID_SVXFLOAT_HYPERLINK_MARKWND.modaldialog.text
+msgctxt "hlmarkwn.src#RID_SVXFLOAT_HYPERLINK_MARKWND.modaldialog.text"
+msgid "Target in Document"
+msgstr "Destino en documento"
+
+#: hlmarkwn.src#RID_SVXSTR_HYPDLG_ERR_LERR_NOENTRIES.string.text
+msgid "Targets do not exist in the document."
+msgstr "Los destinos no existen en el documento."
+
+#: hlmarkwn.src#RID_SVXSTR_HYPDLG_ERR_LERR_DOCNOTOPEN.string.text
+msgid "Couldn't open the document."
+msgstr "No se pudo abrir el documento."
+
+#: hlmarkwn.src#STR_MARK_TREE.string.text
+msgid "Mark Tree"
+msgstr "Árbol de marcas"
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_TXT_SCRIPTS.fixedtext.text
+msgid "~Macros"
+msgstr "~Macros"
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_CTRL_SCRIPTSBOX.STR_MYMACROS.string.text
+msgid "My Macros"
+msgstr "Mis macros"
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_CTRL_SCRIPTSBOX.STR_PRODMACROS.string.text
+msgid "%PRODUCTNAME Macros"
+msgstr "Macros de %PRODUCTNAME"
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_RUN.pushbutton.text
+msgid "R~un"
+msgstr "Eje~cutar"
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_CLOSE.cancelbutton.text
+msgctxt "scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_CLOSE.cancelbutton.text"
+msgid "Close"
+msgstr "Cerrar"
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_CREATE.pushbutton.text
+msgid "~Create..."
+msgstr "~Crear..."
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_EDIT.pushbutton.text
+msgid "~Edit"
+msgstr "~Editar"
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_RENAME.pushbutton.text
+msgid "Rename..."
+msgstr "Renombrar..."
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_DEL.pushbutton.text
+msgid "~Delete..."
+msgstr "~Eliminar..."
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.modaldialog.text
+msgid "%MACROLANG Macros"
+msgstr "Macros de %MACROLANG"
+
+#: scriptdlg.src#RID_DLG_NEWLIB.FT_NEWLIB.fixedtext.text
+msgid "Enter the name for the new library."
+msgstr "Introduzca el nombre para la biblioteca nueva."
+
+#: scriptdlg.src#RID_DLG_NEWLIB.STR_NEWLIB.string.text
+msgctxt "scriptdlg.src#RID_DLG_NEWLIB.STR_NEWLIB.string.text"
+msgid "Create Library"
+msgstr "Crear biblioteca"
+
+#: scriptdlg.src#RID_DLG_NEWLIB.STR_NEWMACRO.string.text
+msgid "Create Macro"
+msgstr "Crear macro"
+
+#: scriptdlg.src#RID_DLG_NEWLIB.STR_FT_NEWMACRO.string.text
+msgid "Enter the name for the new macro."
+msgstr "Introduzca el nombre para la macro nueva."
+
+#: scriptdlg.src#RID_DLG_NEWLIB.STR_RENAME.string.text
+msgid "Rename"
+msgstr "Renombrar"
+
+#: scriptdlg.src#RID_DLG_NEWLIB.STR_FT_RENAME.string.text
+msgid "Enter the new name for the selected object."
+msgstr "Introduzca el nombre nuevo para el objeto seleccionado."
+
+#: scriptdlg.src#RID_DLG_NEWLIB.modaldialog.text
+msgctxt "scriptdlg.src#RID_DLG_NEWLIB.modaldialog.text"
+msgid "Create Library"
+msgstr "Crear biblioteca"
+
+#: scriptdlg.src#RID_SVXSTR_DELQUERY.string.text
+msgid "Do you want to delete the following object?"
+msgstr "¿Quiere eliminar el siguiente objeto?"
+
+#: scriptdlg.src#RID_SVXSTR_DELQUERY_TITLE.string.text
+msgid "Confirm Deletion"
+msgstr "Confirmar eliminación"
+
+#: scriptdlg.src#RID_SVXSTR_DELFAILED.string.text
+msgid "The selected object could not be deleted."
+msgstr "No se pudo eliminar el objeto seleccionado."
+
+#: scriptdlg.src#RID_SVXSTR_DELFAILEDPERM.string.text
+msgid " You do not have permission to delete this object."
+msgstr " No tiene permiso para eliminar este objeto."
+
+#: scriptdlg.src#RID_SVXSTR_DELFAILED_TITLE.string.text
+msgid "Error Deleting Object"
+msgstr "Error al eliminar el objeto"
+
+#: scriptdlg.src#RID_SVXSTR_CREATEFAILED.string.text
+msgid "The object could not be created."
+msgstr "No se pudo crear el objeto."
+
+#: scriptdlg.src#RID_SVXSTR_CREATEFAILEDDUP.string.text
+msgid " Object with the same name already exists."
+msgstr " Ya existe un objeto con el mismo nombre."
+
+#: scriptdlg.src#RID_SVXSTR_CREATEFAILEDPERM.string.text
+msgid " You do not have permission to create this object."
+msgstr " No tiene permiso para crear este objeto."
+
+#: scriptdlg.src#RID_SVXSTR_CREATEFAILED_TITLE.string.text
+msgid "Error Creating Object"
+msgstr "Error al crear el objeto"
+
+#: scriptdlg.src#RID_SVXSTR_RENAMEFAILED.string.text
+msgid "The object could not be renamed."
+msgstr "No se pudo renombrar el objeto."
+
+#: scriptdlg.src#RID_SVXSTR_RENAMEFAILEDPERM.string.text
+msgid " You do not have permission to rename this object."
+msgstr " No tiene permiso para renombrar este objeto."
+
+#: scriptdlg.src#RID_SVXSTR_RENAMEFAILED_TITLE.string.text
+msgid "Error Renaming Object"
+msgstr "Error al renombrar el objeto"
+
+#: scriptdlg.src#RID_SVXSTR_ERROR_TITLE.string.text
+msgid "%PRODUCTNAME Error"
+msgstr "Error de %PRODUCTNAME"
+
+#: scriptdlg.src#RID_SVXSTR_ERROR_LANG_NOT_SUPPORTED.string.text
+msgid "The scripting language %LANGUAGENAME is not supported."
+msgstr "El lenguaje de comandos %LANGUAGENAME no es compatible con este programa."
+
+#: scriptdlg.src#RID_SVXSTR_ERROR_RUNNING.string.text
+msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
+msgstr "Se ha producido un error al ejecutar el comando %SCRIPTNAME escrito en %LANGUAGENAME."
+
+#: scriptdlg.src#RID_SVXSTR_EXCEPTION_RUNNING.string.text
+msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
+msgstr "Se ha producido una excepción al ejecutar el comando %SCRIPTNAME escrito en %LANGUAGENAME."
+
+#: scriptdlg.src#RID_SVXSTR_ERROR_AT_LINE.string.text
+msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
+msgstr "Se ha producido un error al ejecutar el comando %SCRIPTNAME escrito en %LANGUAGENAME en la línea: %LINENUMBER."
+
+#: scriptdlg.src#RID_SVXSTR_EXCEPTION_AT_LINE.string.text
+msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
+msgstr "Se ha producido una excepción al ejecutar el comando %SCRIPTNAME escrito en %LANGUAGENAME en la línea: %LINENUMBER."
+
+#: scriptdlg.src#RID_SVXSTR_FRAMEWORK_ERROR_RUNNING.string.text
+msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
+msgstr "Se ha producido un error de marco de programación al ejecutar el comando %SCRIPTNAME escrito en %LANGUAGENAME."
+
+#: scriptdlg.src#RID_SVXSTR_FRAMEWORK_ERROR_AT_LINE.string.text
+msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
+msgstr "Se ha producido un error de marco de programación al ejecutar el comando %SCRIPTNAME escrito en %LANGUAGENAME en la línea: %LINENUMBER."
+
+#: scriptdlg.src#RID_SVXSTR_ERROR_TYPE_LABEL.string.text
+msgctxt "scriptdlg.src#RID_SVXSTR_ERROR_TYPE_LABEL.string.text"
+msgid "Type:"
+msgstr "Tipo:"
+
+#: scriptdlg.src#RID_SVXSTR_ERROR_MESSAGE_LABEL.string.text
+msgid "Message:"
+msgstr "Mensaje:"
+
+#: newtabledlg.src#RID_SVX_NEWTABLE_DLG.FT_COLUMNS.fixedtext.text
+msgid "Number of columns:"
+msgstr "Número de columnas:"
+
+#: newtabledlg.src#RID_SVX_NEWTABLE_DLG.FT_ROWS.fixedtext.text
+msgid "Number of rows:"
+msgstr "Número de filas:"
+
+#: newtabledlg.src#RID_SVX_NEWTABLE_DLG.modaldialog.text
+msgid "Insert Table"
+msgstr "Insertar tabla"
+
+#: gallery.src#RID_SVXTABDLG_GALLERY.1.RID_SVXTABPAGE_GALLERY_GENERAL.pageitem.text
+msgctxt "gallery.src#RID_SVXTABDLG_GALLERY.1.RID_SVXTABPAGE_GALLERY_GENERAL.pageitem.text"
+msgid "General"
+msgstr "General"
+
+#: gallery.src#RID_SVXTABDLG_GALLERY.tabdialog.text
+msgctxt "gallery.src#RID_SVXTABDLG_GALLERY.tabdialog.text"
+msgid "Properties of "
+msgstr "Propiedades de "
+
+#: gallery.src#RID_SVXTABDLG_GALLERYTHEME.1.RID_SVXTABPAGE_GALLERY_GENERAL.pageitem.text
+msgctxt "gallery.src#RID_SVXTABDLG_GALLERYTHEME.1.RID_SVXTABPAGE_GALLERY_GENERAL.pageitem.text"
+msgid "General"
+msgstr "General"
+
+#: gallery.src#RID_SVXTABDLG_GALLERYTHEME.1.RID_SVXTABPAGE_GALLERYTHEME_FILES.pageitem.text
+msgctxt "gallery.src#RID_SVXTABDLG_GALLERYTHEME.1.RID_SVXTABPAGE_GALLERYTHEME_FILES.pageitem.text"
+msgid "Files"
+msgstr "Archivos"
+
+#: gallery.src#RID_SVXTABDLG_GALLERYTHEME.tabdialog.text
+msgctxt "gallery.src#RID_SVXTABDLG_GALLERYTHEME.tabdialog.text"
+msgid "Properties of "
+msgstr "Propiedades de "
+
+#: gallery.src#RID_SVXTABPAGE_GALLERY_GENERAL.FT_MS_TYPE.fixedtext.text
+msgctxt "gallery.src#RID_SVXTABPAGE_GALLERY_GENERAL.FT_MS_TYPE.fixedtext.text"
+msgid "Type:"
+msgstr "Tipo:"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERY_GENERAL.FT_MS_PATH.fixedtext.text
+msgid "Location:"
+msgstr "Ubicación:"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERY_GENERAL.FT_MS_CONTENT.fixedtext.text
+msgid "Contents:"
+msgstr "Contenido:"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERY_GENERAL.FT_MS_CHANGEDATE.fixedtext.text
+msgid "Modified:"
+msgstr "Modificado el:"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.FT_FILETYPE.fixedtext.text
+msgid "~File type"
+msgstr "~Tipo de archivo"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.BTN_SEARCH.pushbutton.text
+msgid "~Find Files..."
+msgstr "Bus~car archivos..."
+
+#: gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.BTN_TAKE.pushbutton.text
+msgctxt "gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.BTN_TAKE.pushbutton.text"
+msgid "~Add"
+msgstr "~Añadir"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.BTN_TAKEALL.pushbutton.text
+msgid "A~dd All"
+msgstr "Añadir ~todos"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.CBX_PREVIEW.checkbox.text
+msgid "Pr~eview"
+msgstr "Pr~evisualización"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.BTN_MADDIN1.pushbutton.text
+msgid "Maddin1"
+msgstr "Maddin1"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.BTN_MADDIN2.pushbutton.text
+msgid "Maddin2"
+msgstr "Maddin2"
+
+#: gallery.src#RID_SVXDLG_GALLERY_TITLE.FL_TITLE.fixedline.text
+msgid "Title"
+msgstr "Título"
+
+#: gallery.src#RID_SVXDLG_GALLERY_TITLE.modaldialog.text
+msgid "Enter Title"
+msgstr "Introducir título"
+
+#: gallery.src#RID_SVXDLG_GALLERY_SEARCH_PROGRESS.FL_SEARCH_DIR.fixedline.text
+msgid "Directory"
+msgstr "Directorio"
+
+#: gallery.src#RID_SVXDLG_GALLERY_SEARCH_PROGRESS.FL_SEARCH_TYPE.fixedline.text
+msgid "File type"
+msgstr "Tipo de archivo"
+
+#: gallery.src#RID_SVXDLG_GALLERY_SEARCH_PROGRESS.modaldialog.text
+msgid "Find"
+msgstr "Buscar"
+
+#: gallery.src#RID_SVXDLG_GALLERY_TAKE_PROGRESS.FL_TAKE_PROGRESS.fixedline.text
+msgctxt "gallery.src#RID_SVXDLG_GALLERY_TAKE_PROGRESS.FL_TAKE_PROGRESS.fixedline.text"
+msgid "File"
+msgstr "Archivo"
+
+#: gallery.src#RID_SVXDLG_GALLERY_TAKE_PROGRESS.modaldialog.text
+msgctxt "gallery.src#RID_SVXDLG_GALLERY_TAKE_PROGRESS.modaldialog.text"
+msgid "Apply"
+msgstr "Aplicar"
+
+#: gallery.src#RID_SVXDLG_GALLERY_ACTUALIZE_PROGRESS.FL_ACTUALIZE_PROGRESS.fixedline.text
+msgctxt "gallery.src#RID_SVXDLG_GALLERY_ACTUALIZE_PROGRESS.FL_ACTUALIZE_PROGRESS.fixedline.text"
+msgid "File"
+msgstr "Archivo"
+
+#: gallery.src#RID_SVXDLG_GALLERY_ACTUALIZE_PROGRESS.modaldialog.text
+msgid "Update"
+msgstr "Actualizar"
+
+#: gallery.src#RID_SVXDLG_GALLERY_THEMEID.FL_ID.fixedline.text
+msgid "ID"
+msgstr "ID"
+
+#: gallery.src#RID_SVXDLG_GALLERY_THEMEID.modaldialog.text
+msgid "Theme ID"
+msgstr "Temas ID"
+
+#: gallery.src#RID_SVXSTR_GALLERY_NOFILES.string.text
+msgid "<No Files>"
+msgstr "<Ningún archivo>"
+
+#: gallery.src#RID_SVXSTR_GALLERY_SEARCH.string.text
+msgid "Do you want to update the file list?"
+msgstr "¿Desea actualizar la lista de archivos?"
+
+#: gallery.src#RID_SVXSTR_GALLERYPROPS_OBJECT.string.text
+msgid "Object;Objects"
+msgstr "Objeto;Objetos"
+
+#: gallery.src#RID_SVXSTR_GALLERY_READONLY.string.text
+msgid "(read-only)"
+msgstr "(solo lectura)"
+
+#: gallery.src#RID_SVXSTR_GALLERY_ALLFILES.string.text
+msgid "<All Files>"
+msgstr "<Todos los archivos>"
+
+#: gallery.src#RID_SVXSTR_GALLERY_ID_EXISTS.string.text
+msgid "This ID already exists..."
+msgstr "Esta ID ya existe..."
+
+#: tbxform.src#RID_SVX_DLG_INPUTRECORDNO.1.fixedtext.text
+msgid "go to record"
+msgstr "ir a registro"
+
+#: tbxform.src#RID_SVX_DLG_INPUTRECORDNO.modaldialog.text
+msgid "Record Number"
+msgstr "Número de registro"
+
+#: showcols.src#RID_SVX_DLG_SHOWGRIDCOLUMNS.1.fixedtext.text
+msgid "The following columns are currently hidden. Please mark the fields you want to show and choose OK."
+msgstr "Las siguientes columnas están por ahora ocultas. Seleccione las que deban mostrarse y pulse sobre Aceptar."
+
+#: showcols.src#RID_SVX_DLG_SHOWGRIDCOLUMNS.modaldialog.text
+msgid "Show columns"
+msgstr "Mostrar columnas"
+
+#: multipat.src#RID_SVXDLG_MULTIPATH.FL_MULTIPATH.fixedline.text
+msgid "Paths"
+msgstr "Rutas"
+
+#: multipat.src#RID_SVXDLG_MULTIPATH.FT_RADIOBUTTON.fixedtext.text
+msgid "Mark the default path for new files."
+msgstr "Indique la ruta predeterminada de los archivos nuevos."
+
+#: multipat.src#RID_SVXDLG_MULTIPATH.BTN_ADD_MULTIPATH.pushbutton.text
+msgid "~Add..."
+msgstr "~Añadir..."
+
+#: multipat.src#RID_SVXDLG_MULTIPATH.BTN_DEL_MULTIPATH.pushbutton.text
+msgctxt "multipat.src#RID_SVXDLG_MULTIPATH.BTN_DEL_MULTIPATH.pushbutton.text"
+msgid "~Delete"
+msgstr "~Eliminar"
+
+#: multipat.src#RID_SVXDLG_MULTIPATH.STR_HEADER_PATHS.string.text
+msgid "Path list"
+msgstr "Lista de rutas"
+
+#: multipat.src#RID_SVXDLG_MULTIPATH.modaldialog.text
+msgid "Select Paths"
+msgstr "Seleccionar rutas"
+
+#: multipat.src#RID_MULTIPATH_DBL_ERR.string.text
+msgid "The path %1 already exists."
+msgstr "La ruta %1 ya existe."
+
+#: multipat.src#RID_SVXSTR_FILE_TITLE.string.text
+msgid "Select files"
+msgstr "Seleccionar archivos"
+
+#: multipat.src#RID_SVXSTR_FILE_HEADLINE.string.text
+msgctxt "multipat.src#RID_SVXSTR_FILE_HEADLINE.string.text"
+msgid "Files"
+msgstr "Archivos"
+
+#: multipat.src#RID_SVXSTR_ARCHIVE_TITLE.string.text
+msgid "Select Archives"
+msgstr "Seleccionar archivos"
+
+#: multipat.src#RID_SVXSTR_ARCHIVE_HEADLINE.string.text
+msgid "Archives"
+msgstr "Archivos"
+
+#: multipat.src#RID_SVXSTR_MULTIFILE_DBL_ERR.string.text
+msgid "The file %1 already exists."
+msgstr "El archivo %1 ya existe."
+
+#: svuidlg.src#MD_PASTE_OBJECT.FT_SOURCE.fixedtext.text
+msgid "Source:"
+msgstr "Fuente:"
+
+#: svuidlg.src#MD_PASTE_OBJECT.RB_PASTE.radiobutton.text
+msgid "~Insert as"
+msgstr "~Insertar como"
+
+#: svuidlg.src#MD_PASTE_OBJECT.RB_PASTE_LINK.radiobutton.text
+msgid "Link to"
+msgstr "Vínculo a"
+
+#: svuidlg.src#MD_PASTE_OBJECT.CB_DISPLAY_AS_ICON.checkbox.text
+msgid "~As icon"
+msgstr "Co~mo icono"
+
+#: svuidlg.src#MD_PASTE_OBJECT.PB_CHANGE_ICON.pushbutton.text
+msgid "~Other Icon..."
+msgstr "~Otro icono..."
+
+#: svuidlg.src#MD_PASTE_OBJECT.FL_CHOICE.fixedline.text
+msgid "Selection"
+msgstr "Selección"
+
+#: svuidlg.src#MD_PASTE_OBJECT.S_OBJECT.string.text
+msgid "Object"
+msgstr "Objeto"
+
+#: svuidlg.src#MD_PASTE_OBJECT.modaldialog.text
+msgid "Paste Special"
+msgstr "Pegado especial"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_FILES.fixedtext.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.FT_FILES.fixedtext.text"
+msgid "Source file"
+msgstr "Archivo fuente"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_LINKS.fixedtext.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.FT_LINKS.fixedtext.text"
+msgid "Element:"
+msgstr "Elemento:"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_TYPE.fixedtext.text
+msgid "Type"
+msgstr "Tipo"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_STATUS.fixedtext.text
+msgid "Status"
+msgstr "Estado"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.1.cancelbutton.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.1.cancelbutton.text"
+msgid "~Close"
+msgstr "~Cerrar"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.PB_UPDATE_NOW.pushbutton.text
+msgid "~Update"
+msgstr "Act~ualizar"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.PB_OPEN_SOURCE.pushbutton.text
+msgid "~Open"
+msgstr "~Abrir"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.PB_CHANGE_SOURCE.pushbutton.text
+msgid "~Modify..."
+msgstr "~Modificar..."
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.PB_BREAK_LINK.pushbutton.text
+msgid "~Break Link"
+msgstr "~Desvincular"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_FILES2.fixedtext.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.FT_FILES2.fixedtext.text"
+msgid "Source file"
+msgstr "Archivo fuente"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_SOURCE2.fixedtext.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.FT_SOURCE2.fixedtext.text"
+msgid "Element:"
+msgstr "Elemento:"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_TYPE2.fixedtext.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.FT_TYPE2.fixedtext.text"
+msgid "Type:"
+msgstr "Tipo:"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_UPDATE.fixedtext.text
+msgid "Update:"
+msgstr "Actualización:"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.RB_AUTOMATIC.radiobutton.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.RB_AUTOMATIC.radiobutton.text"
+msgid "~Automatic"
+msgstr "~Automático"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.RB_MANUAL.radiobutton.text
+msgid "Ma~nual"
+msgstr "Ma~nual"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_AUTOLINK.string.text
+msgid "Automatic"
+msgstr "Automático"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_MANUALLINK.string.text
+msgid "Manual"
+msgstr "Manual"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_BROKENLINK.string.text
+msgid "Not available"
+msgstr "No disponible"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_GRAPHICLINK.string.text
+msgid "Graphic"
+msgstr "Gráfica"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_BUTTONCLOSE.string.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.STR_BUTTONCLOSE.string.text"
+msgid "~Close"
+msgstr "~Cerrar"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_CLOSELINKMSG.string.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.STR_CLOSELINKMSG.string.text"
+msgid "Are you sure you want to remove the selected link?"
+msgstr "¿Está seguro de que quiere eliminar el vínculo seleccionado?"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_CLOSELINKMSG_MULTI.string.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.STR_CLOSELINKMSG_MULTI.string.text"
+msgid "Are you sure you want to remove the selected link?"
+msgstr "¿Está seguro de que quiere eliminar el vínculo seleccionado?"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_WAITINGLINK.string.text
+msgid "Waiting"
+msgstr "En espera"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.modaldialog.text
+msgid "Edit Links"
+msgstr "Editar vínculo"
+
+#: svuidlg.src#MD_LINKEDIT.2.fixedtext.text
+msgid "Exchange source:"
+msgstr "Intercambiar fuentes:"
+
+#: svuidlg.src#MD_LINKEDIT.ED_FULL_SOURCE_NAME.edit.text
+msgid "Edit"
+msgstr "Editar"
+
+#: svuidlg.src#MD_LINKEDIT.modaldialog.text
+msgid "Modify Link"
+msgstr "Modificar vínculo"
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.RB_NEW_OBJECT.radiobutton.text
+msgid "~Create new"
+msgstr "~Crear nuevo"
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.RB_OBJECT_FROMFILE.radiobutton.text
+msgid "Create from ~file"
+msgstr "Crear desde ~archivo"
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.BTN_FILEPATH.pushbutton.text
+msgctxt "svuidlg.src#MD_INSERT_OLEOBJECT.BTN_FILEPATH.pushbutton.text"
+msgid "~Search..."
+msgstr "~Busqueda"
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.CB_FILELINK.checkbox.text
+msgid "~Link to file"
+msgstr "~Vinculo a archivo"
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.GB_OBJECT.fixedline.text
+msgid "Object type"
+msgstr "Tipo de objeto"
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.STR_FILE.string.text
+msgctxt "svuidlg.src#MD_INSERT_OLEOBJECT.STR_FILE.string.text"
+msgid "File"
+msgstr "Archivo"
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.modaldialog.text
+msgid "Insert OLE Object"
+msgstr "Insertar objetos OLE"
+
+#: svuidlg.src#MD_INSERT_OBJECT_PLUGIN.BTN_FILEURL.pushbutton.text
+msgid "~Browse..."
+msgstr "E~xaminar..."
+
+#: svuidlg.src#MD_INSERT_OBJECT_PLUGIN.GB_FILEURL.fixedline.text
+msgid "File / URL"
+msgstr "Archivo / URL"
+
+#: svuidlg.src#MD_INSERT_OBJECT_PLUGIN.GB_PLUGINS_OPTIONS.fixedline.text
+msgctxt "svuidlg.src#MD_INSERT_OBJECT_PLUGIN.GB_PLUGINS_OPTIONS.fixedline.text"
+msgid "Options"
+msgstr "Opciones"
+
+#: svuidlg.src#MD_INSERT_OBJECT_PLUGIN.modaldialog.text
+msgid "Insert Plug-in"
+msgstr "Insertar plug-in"
+
+#: svuidlg.src#MD_INSERT_OBJECT_APPLET.FT_CLASSFILE.fixedtext.text
+msgid "~Class"
+msgstr "~Clase"
+
+#: svuidlg.src#MD_INSERT_OBJECT_APPLET.FT_CLASSLOCATION.fixedtext.text
+msgid "Class ~Location"
+msgstr "~Ubicación de clase"
+
+#: svuidlg.src#MD_INSERT_OBJECT_APPLET.BTN_CLASS.pushbutton.text
+msgctxt "svuidlg.src#MD_INSERT_OBJECT_APPLET.BTN_CLASS.pushbutton.text"
+msgid "~Search..."
+msgstr "~Busqueda..."
+
+#: svuidlg.src#MD_INSERT_OBJECT_APPLET.GB_CLASS.fixedline.text
+msgctxt "svuidlg.src#MD_INSERT_OBJECT_APPLET.GB_CLASS.fixedline.text"
+msgid "File"
+msgstr "Archivo"
+
+#: svuidlg.src#MD_INSERT_OBJECT_APPLET.GB_APPLET_OPTIONS.fixedline.text
+msgctxt "svuidlg.src#MD_INSERT_OBJECT_APPLET.GB_APPLET_OPTIONS.fixedline.text"
+msgid "Options"
+msgstr "Opciones"
+
+#: svuidlg.src#MD_INSERT_OBJECT_APPLET.modaldialog.text
+msgid "Insert Applet"
+msgstr "Insertar applet:"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.FT_FRAMENAME.fixedtext.text
+msgctxt "svuidlg.src#MD_INSERT_OBJECT_IFRAME.FT_FRAMENAME.fixedtext.text"
+msgid "~Name"
+msgstr "~Nombre"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.FT_URL.fixedtext.text
+msgid "~Contents"
+msgstr "~Contenido"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.RB_SCROLLINGON.radiobutton.text
+msgid "~On"
+msgstr "Pren~dido"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.RB_SCROLLINGOFF.radiobutton.text
+msgid "O~ff"
+msgstr "A~pagado"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.RB_SCROLLINGAUTO.radiobutton.text
+msgid "Au~tomatic"
+msgstr "~Automático"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.GB_SCROLLING.fixedline.text
+msgid "Scroll bar"
+msgstr "Barra de desplazamiento"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.RB_FRMBORDER_ON.radiobutton.text
+msgid "On"
+msgstr "Activado"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.RB_FRMBORDER_OFF.radiobutton.text
+msgid "Off"
+msgstr "Desactivado"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.GB_BORDER.fixedline.text
+msgid "Border"
+msgstr "Borde"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.FT_MARGINWIDTH.fixedtext.text
+msgctxt "svuidlg.src#MD_INSERT_OBJECT_IFRAME.FT_MARGINWIDTH.fixedtext.text"
+msgid "~Width"
+msgstr "~Ancho"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.CB_MARGINWIDTHDEFAULT.checkbox.text
+msgid "~Default"
+msgstr "~Predeterminado"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.FT_MARGINHEIGHT.fixedtext.text
+msgctxt "svuidlg.src#MD_INSERT_OBJECT_IFRAME.FT_MARGINHEIGHT.fixedtext.text"
+msgid "H~eight"
+msgstr "A~ltura"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.CB_MARGINHEIGHTDEFAULT.checkbox.text
+msgid "Defa~ult"
+msgstr "~Predeterminado"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.GB_MARGIN.fixedline.text
+msgid "Spacing to contents"
+msgstr "Espacio al contenido"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.modaldialog.text
+msgid "Floating Frame Properties"
+msgstr "Propiedades de marcos flotantes"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.string.text
+msgid "Select File for Floating Frame"
+msgstr "Seleccionar archivo para un marco flotante"
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_STR_VERSION.string.text
+msgid "Version %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX %PRODUCTEXTENSION"
+msgstr "Versión %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX %PRODUCTEXTENSION"
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_STR_DESCRIPTION.string.text
+msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
+msgstr "%PRODUCTNAME es una suite de productividad moderna, fácil de usar y de código abierto, para procesar texto, hojas de cálculo, presentaciones y más."
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_STR_VENDOR.string.text
+msgid "This release was supplied by %OOOVENDOR"
+msgstr "Este producto fue suministrado por %OOOVENDOR"
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_STR_COPYRIGHT.string.text
+msgid "Copyright © 2000 - 2012 LibreOffice contributors and/or their affiliates"
+msgstr "Copyright © 2000–2012 Colaboradores de LibreOffice y/o sus afiliados"
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_STR_BASED.string.text
+msgid "LibreOffice was based on OpenOffice.org"
+msgstr "LibreOffice se basó en OpenOffice.org"
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_STR_BASED_DERIVED.string.text
+msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
+msgstr "%PRODUCTNAME deriva de LibreOffice que se basó en OpenOffice.org"
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_STR_BUILD.string.text
+msgid "(Build ID: $BUILDID)"
+msgstr "(ID de compilación: $BUILDID)"
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_STR_LINK_CREDITS.string.text
+msgid "http://www.libreoffice.org/about-us/credits/"
+msgstr "http://www.libreoffice.org/about-us/credits/"
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_CREDITS.pushbutton.text
+msgid "Credits"
+msgstr "Créditos"
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_WEBSITE.pushbutton.text
+msgid "Website"
+msgstr "Sitio web"
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_CANCEL.cancelbutton.text
+msgctxt "about.src#RID_DEFAULTABOUT.ABOUT_BTN_CANCEL.cancelbutton.text"
+msgid "~Close"
+msgstr "~Cerrar"
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.modaldialog.text
+msgid "Color Picker"
+msgstr "Selector de color"
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.PB_PICKER.imagebutton.text
+msgid "-"
+msgstr "-"
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.PB_PICKER.imagebutton.quickhelptext
+msgid "Pick a color from the document"
+msgstr "Elija un color del documento"
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.FL_RGB.fixedline.text
+msgid "RGB"
+msgstr "RGB"
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_RED.fixedtext.text
+msgid "~Red"
+msgstr "~Rojo"
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_GREEN.fixedtext.text
+msgid "~Green"
+msgstr "~Verde"
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_BLUE.fixedtext.text
+msgid "~Blue"
+msgstr "~Azul"
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_HEX.fixedtext.text
+msgid "Hex ~#"
+msgstr "~# hex"
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.FL_HSB.fixedline.text
+msgid "HSB"
+msgstr "HSB"
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_HUE.fixedtext.text
+msgid "H~ue"
+msgstr "~Tono"
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_SATURATION.fixedtext.text
+msgid "~Saturation"
+msgstr "~Saturación"
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_BRIGHTNESS.fixedtext.text
+msgid "Bright~ness"
+msgstr "~Brillo"
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.FL_CMYK.fixedline.text
+msgid "CMYK"
+msgstr "CMYK"
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_CYAN.fixedtext.text
+msgid "~Cyan"
+msgstr "~Cian"
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_MAGENTA.fixedtext.text
+msgid "~Magenta"
+msgstr "~Magenta"
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_YELLOW.fixedtext.text
+msgid "~Yellow"
+msgstr "Amari~llo"
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_KEY.fixedtext.text
+msgid "~Key"
+msgstr "Lla~ve"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.FT_LANGUAGE.fixedtext.text
+msgid "Text languag~e"
+msgstr "Idioma del t~exto"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.LINK_EXPLAIN.fixedtext.text
+msgid "More..."
+msgstr "Más..."
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.FT_NOTINDICT.fixedtext.text
+msgid "~Not in dictionary"
+msgstr "~No está en el diccionario"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.FT_SUGGESTION.fixedtext.text
+msgctxt "SpellDialog.src#RID_SVXDLG_SPELLCHECK.FT_SUGGESTION.fixedtext.text"
+msgid "~Suggestions"
+msgstr "S~ugerencias"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.CB_CHECK_GRAMMAR.checkbox.text
+msgid "Check ~grammar"
+msgstr "Comprobar ~gramática"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_IGNORE.pushbutton.text
+msgid "~Ignore Once"
+msgstr "~Ignorar una vez"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_IGNOREALL.pushbutton.text
+msgid "I~gnore All"
+msgstr "I~gnorar todo"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_IGNORERULE.pushbutton.text
+msgid "I~gnore Rule"
+msgstr "I~gnorar regla"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.MB_ADDTODICT.menubutton.text
+msgctxt "SpellDialog.src#RID_SVXDLG_SPELLCHECK.MB_ADDTODICT.menubutton.text"
+msgid "~Add"
+msgstr "~Añadir"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_ADDTODICT.pushbutton.text
+msgctxt "SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_ADDTODICT.pushbutton.text"
+msgid "~Add"
+msgstr "~Añadir"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_CHANGE.pushbutton.text
+msgid "~Change"
+msgstr "~Cambiar"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_CHANGEALL.pushbutton.text
+msgid "Change A~ll"
+msgstr "Cambiar to~do"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_AUTOCORR.pushbutton.text
+msgid "AutoCor~rect"
+msgstr "Autocor~rección"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_OPTIONS.pushbutton.text
+msgid "O~ptions..."
+msgstr "O~pciones..."
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_UNDO.pushbutton.text
+msgid "~Undo"
+msgstr "~Deshacer"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_CLOSE.pushbutton.text
+msgid "Cl~ose"
+msgstr "C~errar"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.ST_RESUME.string.text
+msgid "Resu~me"
+msgstr "Reanu~dar"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.ST_NOSUGGESTIONS.string.text
+msgid "(no suggestions)"
+msgstr "(no hay sugerencias)"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.ST_SPELLING.string.text
+msgid "Spelling: $LANGUAGE ($LOCATION)"
+msgstr "Ortografía: $LANGUAGE ($LOCATION)"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.ST_SPELLING_AND_GRAMMAR.string.text
+msgid "Spelling and Grammar: $LANGUAGE ($LOCATION)"
+msgstr "Ortografía y Gramática: $LANGUAGE ($LOCATION)"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.ST_SPELLING_AND_GRAMMAR_VENDORNAME.string.text
+msgid "Spelling and Grammar: $LANGUAGE ($LOCATION) [$VendorName]"
+msgstr "Ortografía y Gramática: $LANGUAGE ($LOCATION) [$VendorName]"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.modelessdialog.text
+msgid "Spellcheck: "
+msgstr "Revisión ortográfica: "
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.FL_PARAMETER.fixedline.text
+msgctxt "grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.FL_PARAMETER.fixedline.text"
+msgid "Parameters"
+msgstr "Parámetros"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.DLG_FILTERMOSAIC_FT_WIDTH.fixedtext.text
+msgctxt "grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.DLG_FILTERMOSAIC_FT_WIDTH.fixedtext.text"
+msgid "~Width"
+msgstr "~Anchura"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.DLG_FILTERMOSAIC_MTR_WIDTH.metricfield.text
+msgctxt "grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.DLG_FILTERMOSAIC_MTR_WIDTH.metricfield.text"
+msgid " Pixel"
+msgstr " Píxel"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.DLG_FILTERMOSAIC_FT_HEIGHT.fixedtext.text
+msgctxt "grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.DLG_FILTERMOSAIC_FT_HEIGHT.fixedtext.text"
+msgid "H~eight"
+msgstr "A~ltura"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.DLG_FILTERMOSAIC_MTR_HEIGHT.metricfield.text
+msgctxt "grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.DLG_FILTERMOSAIC_MTR_HEIGHT.metricfield.text"
+msgid " Pixel"
+msgstr " Píxel"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.DLG_FILTERMOSAIC_CBX_EDGES.checkbox.text
+msgid "E~nhance edges"
+msgstr "~Resaltar aristas"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.modaldialog.text
+msgid "Mosaic"
+msgstr "Mosaico"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_SOLARIZE.FL_PARAMETER.fixedline.text
+msgctxt "grfflt.src#RID_SVX_GRFFILTER_DLG_SOLARIZE.FL_PARAMETER.fixedline.text"
+msgid "Parameters"
+msgstr "Parámetros"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_SOLARIZE.DLG_FILTERSOLARIZE_FT_THRESHOLD.fixedtext.text
+msgid "Threshold ~value"
+msgstr "Valor ~umbral"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_SOLARIZE.DLG_FILTERSOLARIZE_CBX_INVERT.checkbox.text
+msgid "~Invert"
+msgstr "I~nvertir"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_SOLARIZE.modaldialog.text
+msgid "Solarization"
+msgstr "Solarización"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_SEPIA.FL_PARAMETER.fixedline.text
+msgctxt "grfflt.src#RID_SVX_GRFFILTER_DLG_SEPIA.FL_PARAMETER.fixedline.text"
+msgid "Parameters"
+msgstr "Parámetros"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_SEPIA.DLG_FILTERSEPIA_FT_SEPIA.fixedtext.text
+msgid "Aging degree"
+msgstr "Grado de envejecim."
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_SEPIA.modaldialog.text
+msgid "Aging"
+msgstr "Envejecimiento"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_POSTER.FL_PARAMETER.fixedline.text
+msgctxt "grfflt.src#RID_SVX_GRFFILTER_DLG_POSTER.FL_PARAMETER.fixedline.text"
+msgid "Parameters"
+msgstr "Parámetros"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_POSTER.DLG_FILTERPOSTER_FT_POSTER.fixedtext.text
+msgid "Poster colors"
+msgstr "Colores del póster"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_POSTER.modaldialog.text
+msgid "Posterize"
+msgstr "Póster"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_EMBOSS.FL_PARAMETER.fixedline.text
+msgctxt "grfflt.src#RID_SVX_GRFFILTER_DLG_EMBOSS.FL_PARAMETER.fixedline.text"
+msgid "Parameters"
+msgstr "Parámetros"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_EMBOSS.DLG_FILTEREMBOSS_FT_LIGHT.fixedtext.text
+msgid "Light source"
+msgstr "Fuente de luz"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_EMBOSS.modaldialog.text
+msgid "Relief"
+msgstr "Relieve"
+
+#: dlgname.src#RID_SVXDLG_NAME.modaldialog.text
+msgctxt "dlgname.src#RID_SVXDLG_NAME.modaldialog.text"
+msgid "Name"
+msgstr "Nombre"
+
+#: dlgname.src#RID_SVXDLG_OBJECT_NAME.NTD_FT_NAME.fixedtext.text
+msgctxt "dlgname.src#RID_SVXDLG_OBJECT_NAME.NTD_FT_NAME.fixedtext.text"
+msgid "~Name"
+msgstr "~Nombre"
+
+#: dlgname.src#RID_SVXDLG_OBJECT_NAME.modaldialog.text
+msgctxt "dlgname.src#RID_SVXDLG_OBJECT_NAME.modaldialog.text"
+msgid "Name"
+msgstr "Nombre"
+
+#: dlgname.src#RID_SVXDLG_OBJECT_TITLE_DESC.NTD_FT_TITLE.fixedtext.text
+msgid "~Title"
+msgstr "~Título"
+
+#: dlgname.src#RID_SVXDLG_OBJECT_TITLE_DESC.NTD_FT_DESC.fixedtext.text
+msgctxt "dlgname.src#RID_SVXDLG_OBJECT_TITLE_DESC.NTD_FT_DESC.fixedtext.text"
+msgid "~Description"
+msgstr "~Descripción"
+
+#: dlgname.src#RID_SVXDLG_OBJECT_TITLE_DESC.modaldialog.text
+msgid "Description"
+msgstr "Descripción"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_CHAR_NAME.pageitem.text
+msgctxt "srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_CHAR_NAME.pageitem.text"
+msgid "Font"
+msgstr "Fuente"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_CHAR_EFFECTS.pageitem.text
+msgctxt "srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_CHAR_EFFECTS.pageitem.text"
+msgid "Font Effects"
+msgstr "Efectos de fuente"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_CHAR_POSITION.pageitem.text
+msgctxt "srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_CHAR_POSITION.pageitem.text"
+msgid "Position"
+msgstr "Posición"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_CHAR_TWOLINES.pageitem.text
+msgid "Asian Layout"
+msgstr "Diseño asiático"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_STD_PARAGRAPH.pageitem.text
+msgid "Indents & Spacing"
+msgstr "Sangría y espaciado"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_ALIGN_PARAGRAPH.pageitem.text
+msgid "Alignment"
+msgstr "Alineación"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_EXT_PARAGRAPH.pageitem.text
+msgid "Text Flow"
+msgstr "Flujo del texto"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_PARA_ASIAN.pageitem.text
+msgid "Asian Typography"
+msgstr "Tipografía asiática"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_BACKGROUND.pageitem.text
+msgctxt "srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_BACKGROUND.pageitem.text"
+msgid "Background"
+msgstr "Fondo"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.tabdialog.text
+msgid "Text Format"
+msgstr "Formato de texto"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHATTR.FL_ATTR.fixedtext.text
+msgid "~Options"
+msgstr "~Opciones"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHATTR.modaldialog.text
+msgid "Attributes"
+msgstr "Atributos"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.FT_OTHER.fixedtext.text
+msgid "~Exchange characters"
+msgstr "~Intercambiar caracteres"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.FT_LONGER.fixedtext.text
+msgid "~Add characters"
+msgstr "~Añadir caracteres"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.FT_SHORTER.fixedtext.text
+msgid "~Remove characters"
+msgstr "~Eliminar caracteres"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.CB_RELAX.checkbox.text
+msgid "~Combine"
+msgstr "~Combinar"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.FL_SIMILARITY.fixedline.text
+msgctxt "srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.FL_SIMILARITY.fixedline.text"
+msgid "Settings"
+msgstr "Configuración"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.modaldialog.text
+msgctxt "srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.modaldialog.text"
+msgid "Similarity Search"
+msgstr "Búsqueda por semejanza"
+
+#: sdrcelldlg.src#RID_SVX_FORMAT_CELLS_DLG.1.RID_SVXPAGE_CHAR_NAME.pageitem.text
+msgctxt "sdrcelldlg.src#RID_SVX_FORMAT_CELLS_DLG.1.RID_SVXPAGE_CHAR_NAME.pageitem.text"
+msgid "Font"
+msgstr "Fuente"
+
+#: sdrcelldlg.src#RID_SVX_FORMAT_CELLS_DLG.1.RID_SVXPAGE_CHAR_EFFECTS.pageitem.text
+msgctxt "sdrcelldlg.src#RID_SVX_FORMAT_CELLS_DLG.1.RID_SVXPAGE_CHAR_EFFECTS.pageitem.text"
+msgid "Font Effects"
+msgstr "Efectos de fuente"
+
+#: sdrcelldlg.src#RID_SVX_FORMAT_CELLS_DLG.1.RID_SVXPAGE_BORDER.pageitem.text
+msgid "Borders"
+msgstr "Borde"
+
+#: sdrcelldlg.src#RID_SVX_FORMAT_CELLS_DLG.1.RID_SVXPAGE_AREA.pageitem.text
+msgctxt "sdrcelldlg.src#RID_SVX_FORMAT_CELLS_DLG.1.RID_SVXPAGE_AREA.pageitem.text"
+msgid "Background"
+msgstr "Fondo"
+
+#: sdrcelldlg.src#RID_SVX_FORMAT_CELLS_DLG.1.pushbutton.text
+msgid "Return"
+msgstr "Regresar"
+
+#: sdrcelldlg.src#RID_SVX_FORMAT_CELLS_DLG.tabdialog.text
+msgid "Format Cells"
+msgstr "Formato de celdas"
+
+#: cuiimapdlg.src#RID_SVXDLG_IMAPURL.FT_URL1.fixedtext.text
+msgid "~URL"
+msgstr "~URL"
+
+#: cuiimapdlg.src#RID_SVXDLG_IMAPURL.FT_TARGET.fixedtext.text
+msgctxt "cuiimapdlg.src#RID_SVXDLG_IMAPURL.FT_TARGET.fixedtext.text"
+msgid "F~rame"
+msgstr "Ma~rco"
+
+#: cuiimapdlg.src#RID_SVXDLG_IMAPURL.FT_NAME.fixedtext.text
+msgctxt "cuiimapdlg.src#RID_SVXDLG_IMAPURL.FT_NAME.fixedtext.text"
+msgid "~Name"
+msgstr "~Nombre"
+
+#: cuiimapdlg.src#RID_SVXDLG_IMAPURL.FT_URLDESCRIPTION.fixedtext.text
+msgid "Alternative ~text"
+msgstr "~Texto Alternativo"
+
+#: cuiimapdlg.src#RID_SVXDLG_IMAPURL.FT_DESCRIPTION.fixedtext.text
+msgctxt "cuiimapdlg.src#RID_SVXDLG_IMAPURL.FT_DESCRIPTION.fixedtext.text"
+msgid "~Description"
+msgstr "~Descripción"
+
+#: cuiimapdlg.src#RID_SVXDLG_IMAPURL.modaldialog.text
+msgid "Properties"
+msgstr "Propiedades"
+
+#: insrc.src#DLG_INS_ROW_COL.CB_POS_BEFORE.radiobutton.text
+msgid "~Before"
+msgstr "~Antes"
+
+#: insrc.src#DLG_INS_ROW_COL.CB_POS_AFTER.radiobutton.text
+msgid "A~fter"
+msgstr "De~spués"
+
+#: insrc.src#DLG_INS_ROW_COL.FL_INS.fixedline.text
+msgid "Insert"
+msgstr "Insertar"
+
+#: insrc.src#DLG_INS_ROW_COL.FL_POS.fixedline.text
+msgctxt "insrc.src#DLG_INS_ROW_COL.FL_POS.fixedline.text"
+msgid "Position"
+msgstr "Posición"
+
+#: insrc.src#DLG_INS_ROW_COL.FT_COUNT.fixedtext.text
+msgid "~Number"
+msgstr "~Número"
+
+#: insrc.src#DLG_INS_ROW_COL.STR_ROW.string.text
+msgid "Insert Rows"
+msgstr "Insertar filas"
+
+#: insrc.src#DLG_INS_ROW_COL.STR_COL.string.text
+msgid "Insert Columns"
+msgstr "Insertar columnas"
+
+#: hyphen.src#RID_SVXSTR_HMERR_CHECKINSTALL.string.text
+msgid ""
+"is not available for spellchecking\n"
+"Please check your installation and install the desired language\n"
+msgstr ""
+"no está disponible para la revisión ortográfica.\n"
+"Revise su instalación e instale el idioma deseado\n"
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.FT_WORD.fixedtext.text
+msgctxt "hyphen.src#RID_SVXDLG_HYPHENATE.FT_WORD.fixedtext.text"
+msgid "~Word"
+msgstr "~Palabra"
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.BTN_HYPH_CUT.okbutton.text
+msgid "H~yphenate"
+msgstr "~Separar en sílabas"
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.BTN_HYPH_CONTINUE.pushbutton.text
+msgid "~Skip"
+msgstr "~Saltear"
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.BTN_HYPH_DELETE.pushbutton.text
+msgid "~Remove"
+msgstr "~Eliminar"
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.BTN_HYPH_ALL.pushbutton.text
+msgid "Hyphenate ~All"
+msgstr "Separar en sílabas ~todo"
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.BTN_HYPH_CANCEL.cancelbutton.text
+msgctxt "hyphen.src#RID_SVXDLG_HYPHENATE.BTN_HYPH_CANCEL.cancelbutton.text"
+msgid "~Close"
+msgstr "~Cerrar"
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.modaldialog.text
+msgid "Hyphenation"
+msgstr "Separación silábica"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.FL_SEARCHFOR.fixedline.text
+msgid "Search for"
+msgstr "Buscar por"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.RB_SEARCHFORTEXT.radiobutton.text
+msgctxt "fmsearch.src#RID_SVXDLG_SEARCHFORM.RB_SEARCHFORTEXT.radiobutton.text"
+msgid "~Text"
+msgstr "~Texto"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.RB_SEARCHFORNULL.radiobutton.text
+msgid "Field content is ~NULL"
+msgstr "Contenido del campo es ~NULL"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.RB_SEARCHFORNOTNULL.radiobutton.text
+msgid "Field content is not NU~LL"
+msgstr "Contenido del campo no es N~ULL"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.FL_WHERE.fixedline.text
+msgid "Where to search"
+msgstr "Área"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.FT_FORM.fixedtext.text
+msgid "Form"
+msgstr "Formulario"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.RB_ALLFIELDS.radiobutton.text
+msgid "All Fields"
+msgstr "Todos los campos"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.RB_SINGLEFIELD.radiobutton.text
+msgid "Single field"
+msgstr "Campo individual"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.FL_OPTIONS.fixedline.text
+msgctxt "fmsearch.src#RID_SVXDLG_SEARCHFORM.FL_OPTIONS.fixedline.text"
+msgid "Settings"
+msgstr "Configuración"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.FT_POSITION.fixedtext.text
+msgctxt "fmsearch.src#RID_SVXDLG_SEARCHFORM.FT_POSITION.fixedtext.text"
+msgid "Position"
+msgstr "Posición"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_USEFORMATTER.checkbox.text
+msgid "Apply field format"
+msgstr "Usar formato de campo"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_CASE.checkbox.text
+msgid "Match case"
+msgstr "Hacer coincidir mayúsculas y minúsculas"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_BACKWARD.checkbox.text
+msgid "Search backwards"
+msgstr "Buscar hacia atrás"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_STARTOVER.checkbox.text
+msgid "From Beginning"
+msgstr "Desde el principio"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_WILDCARD.checkbox.text
+msgid "Wildcard expression"
+msgstr "Expresión con comodines"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_REGULAR.checkbox.text
+msgid "Regular expression"
+msgstr "Expresión regular"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_APPROX.checkbox.text
+msgctxt "fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_APPROX.checkbox.text"
+msgid "Similarity Search"
+msgstr "Búsqueda por semejanza"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.PB_APPROXSETTINGS.pushbutton.text
+msgctxt "fmsearch.src#RID_SVXDLG_SEARCHFORM.PB_APPROXSETTINGS.pushbutton.text"
+msgid "..."
+msgstr "..."
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_HALFFULLFORMS.checkbox.text
+msgid "Match character width"
+msgstr "Hacer coincidir el ancho del carácter"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_SOUNDSLIKECJK.checkbox.text
+msgid "Sounds like (Japanese)"
+msgstr "Se parece a (Japonés)"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.PB_SOUNDSLIKESETTINGS.pushbutton.text
+msgctxt "fmsearch.src#RID_SVXDLG_SEARCHFORM.PB_SOUNDSLIKESETTINGS.pushbutton.text"
+msgid "..."
+msgstr "..."
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.FL_STATE.fixedline.text
+msgid "State"
+msgstr "Estado"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.FT_RECORDLABEL.fixedtext.text
+msgid "Record :"
+msgstr "Registro :"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.PB_SEARCH.pushbutton.text
+msgid "Search"
+msgstr "Buscar"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.1.cancelbutton.text
+msgctxt "fmsearch.src#RID_SVXDLG_SEARCHFORM.1.cancelbutton.text"
+msgid "~Close"
+msgstr "~Cerrar"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.1.helpbutton.text
+msgid "~Help"
+msgstr "Ay~uda"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.modaldialog.text
+msgid "Record Search"
+msgstr "Búsqueda de registro de datos"
+
+#: fmsearch.src#RID_STR_SEARCH_ANYWHERE.string.text
+msgid "anywhere in the field"
+msgstr "en cualquier parte del campo"
+
+#: fmsearch.src#RID_STR_SEARCH_BEGINNING.string.text
+msgid "beginning of field"
+msgstr "al comienzo del campo"
+
+#: fmsearch.src#RID_STR_SEARCH_END.string.text
+msgid "end of field"
+msgstr "al final del campo"
+
+#: fmsearch.src#RID_STR_SEARCH_WHOLE.string.text
+msgid "entire field"
+msgstr "todo el campo"
+
+#: fmsearch.src#RID_STR_FROM_TOP.string.text
+msgid "From top"
+msgstr "Desde arriba"
+
+#: fmsearch.src#RID_STR_FROM_BOTTOM.string.text
+msgid "From bottom"
+msgstr "Desde abajo"
+
+#: fmsearch.src#RID_SVXERR_SEARCH_NORECORD.errorbox.text
+msgid "No records corresponding to your data found."
+msgstr "No se han encontrado registros correspondientes a los datos."
+
+#: fmsearch.src#RID_SVXERR_SEARCH_GENERAL_ERROR.errorbox.text
+msgid "An unknown error occurred. The search could not be finished."
+msgstr "Error desconocido. No se ha podido finalizar la búsqueda."
+
+#: fmsearch.src#RID_STR_OVERFLOW_FORWARD.string.text
+msgid "Overflow, search continued at the beginning"
+msgstr "Desborde, la búsqueda continuó en el comienzo"
+
+#: fmsearch.src#RID_STR_OVERFLOW_BACKWARD.string.text
+msgid "Overflow, search continued at the end"
+msgstr "Desborde, la búsqueda continuó en el final"
+
+#: fmsearch.src#RID_STR_SEARCH_COUNTING.string.text
+msgid "counting records"
+msgstr "contando registros de datos"
+
+#: zoom.src#RID_SVXDLG_ZOOM.FL_ZOOM.fixedline.text
+msgid "Zoom factor"
+msgstr "Factor de escala"
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_OPTIMAL.radiobutton.text
+msgid "~Optimal"
+msgstr "Óptim~o"
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_WHOLE_PAGE.radiobutton.text
+msgid "~Fit width and height"
+msgstr "A~justa de ancho y alto"
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_PAGE_WIDTH.radiobutton.text
+msgid "Fit ~width"
+msgstr "Ajustar a a~ncho"
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_USER.radiobutton.text
+msgid "~Variable"
+msgstr "~Variable"
+
+#: zoom.src#RID_SVXDLG_ZOOM.FL_VIEWLAYOUT.fixedline.text
+msgid "View layout"
+msgstr "Vista de diseño"
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_AUTOMATIC.radiobutton.text
+msgctxt "zoom.src#RID_SVXDLG_ZOOM.BTN_AUTOMATIC.radiobutton.text"
+msgid "~Automatic"
+msgstr "~Automático"
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_SINGLE.radiobutton.text
+msgid "~Single page"
+msgstr "~Toda la página"
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_COLUMNS.radiobutton.text
+msgid "~Columns"
+msgstr "~Columnas"
+
+#: zoom.src#RID_SVXDLG_ZOOM.CHK_BOOK.checkbox.text
+msgid "~Book mode"
+msgstr "~Modo libro"
+
+#: zoom.src#RID_SVXDLG_ZOOM.modaldialog.text
+msgid "Zoom & View Layout"
+msgstr "Diseño de vista y escala"
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.FL_FILE_ENCRYPTION.fixedline.text
+msgid "File encryption password"
+msgstr "Contraseña de cifrado del archivo"
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.FT_PASSWD_TO_OPEN.fixedtext.text
+msgid "~Enter password to open"
+msgstr "~Introduzca la contraseña para abrir"
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.FT_REENTER_PASSWD_TO_OPEN.fixedtext.text
+msgctxt "passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.FT_REENTER_PASSWD_TO_OPEN.fixedtext.text"
+msgid "Confirm password"
+msgstr "Confirme la contraseña"
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.FT_PASSWD_NOTE.fixedtext.text
+msgid "Note: After a password has been set, the document will only open with "
+msgstr "Nota: Luego de establecer una contraseña, el documento solo se abrirá con "
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.FL_FILE_SHARING_OPTIONS.fixedline.text
+msgid "File sharing password"
+msgstr "Contraseña para compartir el archivo"
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.CB_OPEN_READONLY.checkbox.text
+msgid "Open file read-only"
+msgstr "Abrir documento como solo lectura"
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.FT_PASSWD_TO_MODIFY.fixedtext.text
+msgid "Enter password to allow editing"
+msgstr "Ingrese la contraseña para permitir la edición"
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.FT_REENTER_PASSWD_TO_MODIFY.fixedtext.text
+msgctxt "passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.FT_REENTER_PASSWD_TO_MODIFY.fixedtext.text"
+msgid "Confirm password"
+msgstr "Confirmar la contraseña"
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.STR_PASSWD_MUST_BE_CONFIRMED.string.text
+msgid "Password must be confirmed"
+msgstr "La contraseña debe confirmarse"
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.STR_MORE_OPTIONS.string.text
+msgid "More ~Options"
+msgstr "Más ~opciones"
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.STR_FEWER_OPTIONS.string.text
+msgid "Fewer ~Options"
+msgstr "Menos ~opciones"
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.STR_ONE_PASSWORD_MISMATCH.string.text
+msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
+msgstr "La contraseña de confirmación no es igual a la otra contraseña. Para establecer la contraseña, ingrese la misma contraseña en ambas cajas."
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.STR_TWO_PASSWORDS_MISMATCH.string.text
+msgid "The confirmation passwords did not match the original passwords. Set the passwords again."
+msgstr "Las contraseñas de confirmación no son iguales a las contraseñas originales. Ingrese nuevamente las contraseñas."
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.STR_INVALID_STATE_FOR_OK_BUTTON.string.text
+msgid "Please enter a password to open or to modify, or check the open read-only option to continue."
+msgstr "Ingrese una contraseña para abrir o modificar, o marque la opción de abrir sólo para lectura para continuar."
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.modaldialog.text
+msgid "Set Password"
+msgstr "Establecer contraseña"
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.FT_COUNT.fixedtext.text
+msgid "~Split cell into"
+msgstr "~Dividir la celda en"
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.FL_COUNT.fixedline.text
+msgid "Split"
+msgstr "Dividir"
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.RB_HORZ.imageradiobutton.text
+msgid "H~orizontally"
+msgstr "H~orizontalmente"
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.CB_PROP.checkbox.text
+msgid "~Into equal proportions"
+msgstr "~A proporciones iguales"
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.RB_VERT.imageradiobutton.text
+msgid "~Vertically"
+msgstr "~Verticalmente"
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.FL_DIR.fixedline.text
+msgid "Direction"
+msgstr "Dirección"
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.modaldialog.text
+msgid "Split Cells"
+msgstr "Dividir celdas"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.PB_FIND.pushbutton.text
+msgid "~Find"
+msgstr "~Buscar"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.FT_FORMAT.fixedtext.text
+msgid "Format"
+msgstr "Formato"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_SIMPLE_CONVERSION.radiobutton.text
+msgid "~Hangul/Hanja"
+msgstr "~Hangul/Hanja"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_HANJA_HANGUL_BRACKETED.radiobutton.text
+msgid "Hanja (Han~gul)"
+msgstr "Hanja (Han~gul)"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_HANGUL_HANJA_BRACKETED.radiobutton.text
+msgid "Hang~ul (Hanja)"
+msgstr "Hang~ul (Hanja)"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_HANGUL_HANJA_ABOVE.radiobutton.text
+msgid "Hangu~l"
+msgstr "Hangu~l"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_HANGUL_HANJA_BELOW.radiobutton.text
+msgid "Hang~ul"
+msgstr "Hang~ul"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_HANJA_HANGUL_ABOVE.radiobutton.text
+msgid "Han~ja"
+msgstr "Han~ja"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_HANJA_HANGUL_BELOW.radiobutton.text
+msgid "Ha~nja"
+msgstr "Ha~nja"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.FT_CONVERSION.fixedtext.text
+msgid "Conversion"
+msgstr "Conversión"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.CB_HANGUL_ONLY.checkbox.text
+msgid "Hangul ~only"
+msgstr "~Sólo Hangul"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.CB_HANJA_ONLY.checkbox.text
+msgid "Hanja onl~y"
+msgstr "~Sólo Hanja"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.CB_REPLACE_BY_CHARACTER.checkbox.text
+msgid "Replace b~y character"
+msgstr "~Sustituir caracteres uno por uno"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.STR_HANGUL.string.text
+msgid "Hangul"
+msgstr "Hangul"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.STR_HANJA.string.text
+msgid "Hanja"
+msgstr "Hanja"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.modaldialog.text
+msgid "Hangul/Hanja Conversion"
+msgstr "Conversión de Hangul/Hanja"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.FT_USERDEFDICT.fixedtext.text
+msgid "User-defined dictionaries"
+msgstr "Diccionarios definidos por el usuario"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.FL_OPTIONS.fixedline.text
+msgctxt "hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.FL_OPTIONS.fixedline.text"
+msgid "Options"
+msgstr "Opciones"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.CB_IGNOREPOST.checkbox.text
+msgid "Ignore post-positional word"
+msgstr "Ignorar palabra de posición posterior"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.CB_SHOWRECENTLYFIRST.checkbox.text
+msgid "Show recently used entries first"
+msgstr "Muestra las entradas usadas recientemente en primer lugar"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.CB_AUTOREPLACEUNIQUE.checkbox.text
+msgid "Replace all unique entries automatically"
+msgstr "Reemplazar todas las entradas únicas automáticamente"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.PB_HHO_NEW.pushbutton.text
+msgid "New..."
+msgstr "Nuevo"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.PB_HHO_EDIT.pushbutton.text
+msgid "Edit..."
+msgstr "Editar..."
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.PB_HHO_DELETE.pushbutton.text
+msgctxt "hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.PB_HHO_DELETE.pushbutton.text"
+msgid "Delete"
+msgstr "Eliminar"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.modaldialog.text
+msgid "Hangul/Hanja Options"
+msgstr "Opciones de Hangul/Hanja"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_NEWDICT.FL_NEWDICT.fixedline.text
+msgid "Dictionary"
+msgstr "Diccionario"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_NEWDICT.FT_DICTNAME.fixedtext.text
+msgctxt "hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_NEWDICT.FT_DICTNAME.fixedtext.text"
+msgid "~Name"
+msgstr "~Nombre"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_NEWDICT.modaldialog.text
+msgid "New Dictionary"
+msgstr "Nuevo diccionario"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.STR_EDITHINT.string.text
+msgid "[Enter text here]"
+msgstr "[Introduzca el texto aquí]"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.FT_BOOK.fixedtext.text
+msgid "Book"
+msgstr "Libro"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.FT_ORIGINAL.fixedtext.text
+msgid "Original"
+msgstr "Original"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.FT_SUGGESTIONS.fixedtext.text
+msgid "Suggestions (max. 8)"
+msgstr "Sugerencias (máx. 8)"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.PB_HHE_NEW.pushbutton.text
+msgid "New"
+msgstr "Nuevo"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.PB_HHE_DELETE.pushbutton.text
+msgctxt "hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.PB_HHE_DELETE.pushbutton.text"
+msgid "Delete"
+msgstr "Eliminar"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.PB_HHE_CLOSE.cancelbutton.text
+msgctxt "hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.PB_HHE_CLOSE.cancelbutton.text"
+msgid "Close"
+msgstr "Cerrar"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.modaldialog.text
+msgid "Edit Custom Dictionary"
+msgstr "Editar diccionario personalizado"
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.FT_WORD.fixedtext.text
+msgid "Origi~nal"
+msgstr "~Original"
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.FT_NEWWORD.fixedtext.text
+msgctxt "commonlingui.src#RID_SVX_WND_COMMON_LINGU.FT_NEWWORD.fixedtext.text"
+msgid "~Word"
+msgstr "~Palabra"
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.FT_SUGGESTION.fixedtext.text
+msgctxt "commonlingui.src#RID_SVX_WND_COMMON_LINGU.FT_SUGGESTION.fixedtext.text"
+msgid "~Suggestions"
+msgstr "S~ugerencias"
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.BTN_IGNORE.pushbutton.text
+msgid "~Ignore"
+msgstr "~Ignorar"
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.BTN_IGNOREALL.pushbutton.text
+msgid "Always I~gnore"
+msgstr "Ig~norar siempre"
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.BTN_CHANGE.pushbutton.text
+msgid "~Replace"
+msgstr "~Reemplazar"
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.BTN_CHANGEALL.pushbutton.text
+msgid "Always R~eplace"
+msgstr "~Reemplazar siempre"
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.BTN_OPTIONS.pushbutton.text
+msgid "Options..."
+msgstr "Opciones..."
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.BTN_SPL_CANCEL.cancelbutton.text
+msgctxt "commonlingui.src#RID_SVX_WND_COMMON_LINGU.BTN_SPL_CANCEL.cancelbutton.text"
+msgid "~Close"
+msgstr "~Cerrar"
+
+#: postdlg.src#RID_SVXDLG_POSTIT.FT_LASTEDITLABEL.fixedtext.text
+msgctxt "postdlg.src#RID_SVXDLG_POSTIT.FT_LASTEDITLABEL.fixedtext.text"
+msgid "Author"
+msgstr "Autor"
+
+#: postdlg.src#RID_SVXDLG_POSTIT.FT_EDIT.fixedtext.text
+msgctxt "postdlg.src#RID_SVXDLG_POSTIT.FT_EDIT.fixedtext.text"
+msgid "~Text"
+msgstr "~Texto"
+
+#: postdlg.src#RID_SVXDLG_POSTIT.FL_POSTIT.fixedline.text
+msgid "Contents"
+msgstr "Contenido"
+
+#: postdlg.src#RID_SVXDLG_POSTIT.FT_AUTHOR.fixedtext.text
+msgid "~Insert"
+msgstr "~Insertar"
+
+#: postdlg.src#RID_SVXDLG_POSTIT.BTN_AUTHOR.pushbutton.text
+msgctxt "postdlg.src#RID_SVXDLG_POSTIT.BTN_AUTHOR.pushbutton.text"
+msgid "Author"
+msgstr "Autor"
+
+#: postdlg.src#RID_SVXDLG_POSTIT.STR_NOTIZ_EDIT.string.text
+msgid "Edit Comment"
+msgstr "Editar comentario"
+
+#: postdlg.src#RID_SVXDLG_POSTIT.STR_NOTIZ_INSERT.string.text
+msgid "Insert Comment"
+msgstr "Insertar comentario"
+
+#: postdlg.src#RID_SVXDLG_POSTIT.modaldialog.text
+msgid "Comment"
+msgstr "Comentario"
+
+#: iconcdlg.src#RID_SVXSTR_ICONCHOICEDLG_RESETBUT.string.text
+msgid "~Back"
+msgstr "~Anterior"
diff --git a/source/es/cui/source/options.po b/source/es/cui/source/options.po
new file mode 100644
index 00000000000..7310d0e5a13
--- /dev/null
+++ b/source/es/cui/source/options.po
@@ -0,0 +1,2835 @@
+#. extracted from cui/source/options.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+cui%2Fsource%2Foptions.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-08-17 07:51+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_COMPANY.fixedtext.text
+msgid "~Company"
+msgstr "~Empresa"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_NAME.fixedtext.text
+msgid "First/Last ~name/Initials"
+msgstr "~Nombre/Apellidos/Iniciales"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_NAME_RUSS.fixedtext.text
+msgid "Last Name/First name/Father's name/Initials"
+msgstr "Apellido/Nombre/Nombre del padre/Iniciales"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_NAME_EASTERN.fixedtext.text
+msgid "Last/First ~name/Initials"
+msgstr "~Apellido/Nombre/Iniciales"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_STREET.fixedtext.text
+msgid "~Street"
+msgstr "~Calle"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_STREET_RUSS.fixedtext.text
+msgid "Street/Apartment number"
+msgstr "Calle/Número de departamento"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_CITY.fixedtext.text
+msgid "Zip/City"
+msgstr "C.P./Ciudad"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_COUNTRY.fixedtext.text
+msgid "Country/Region"
+msgstr "País/Región"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_TITLEPOS.fixedtext.text
+msgid "~Title/Position"
+msgstr "~Título/Puesto"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_PHONE.fixedtext.text
+msgid "Tel. (Home/Work)"
+msgstr "Teléfono (Casa/Trabajo)"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_FAXMAIL.fixedtext.text
+msgid "Fa~x / E-mail"
+msgstr "Fa~x / E-mail"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.GB_ADDRESS.fixedline.text
+msgid "Address "
+msgstr "Dirección "
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.CB_USEDATA.checkbox.text
+msgid "Use data for document properties"
+msgstr "Usar los datos de las propiedades del documento"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.STR_US_STATE.string.text
+msgid "City/State/Zip"
+msgstr "Ciudad/País/CP"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.STR_QUERY_REG.string.text
+msgid "Note that street, Zip code and city are used to generate the registration key. You will not be able to change the user data again until the registration has been carried out. Do you want to modify the user data now?"
+msgstr "Tenga en cuenta que la calle, el código postal y la ciudad se tendrán en cuenta para determinar la clave de registro. Estos datos no podrán ser modificados hasta que se registre. ¿Desea modificar estos datos de usuario?"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.tabpage.text
+msgctxt "optgenrl.src#RID_SFXPAGE_GENERAL.tabpage.text"
+msgid "User Data"
+msgstr "Datos del usuario"
+
+#: optgenrl.src#RID_SVXQB_CHANGEDATA.querybox.text
+msgid ""
+"The User Data have been changed.\n"
+"Note that, if you continue, the registration key will become invalid.\n"
+"Therefore, a new registration key is needed within 30 days.\n"
+"You can find the registration form in the menu Help - Registration...\n"
+"Do you really want to change your User Data?"
+msgstr ""
+"Los datos de usuario han cambiado.\n"
+"Note que, si continúa, la clave de registro se invalidará.\n"
+"Por ello, necesitará una clave de registro nueva antes de los próximos 30 días.\n"
+"Puede encontrar el formulario de registro en el menú Ayuda - Registro...\n"
+"¿Realmente quiere cambiar sus datos de usuario?"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.FL_WARNINGS.fixedline.text
+msgid "Security warnings"
+msgstr "Advertencias de seguridad"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.FI_WARNINGS.fixedtext.text
+msgid "Warn if document contains recorded changes, versions, hidden information or notes:"
+msgstr "Advertir si el documento contiene cambios grabados, versiones, información oculta o notas:"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_SAVESENDDOCS.checkbox.text
+msgid "When saving or sending"
+msgstr "Al guardar o enviar"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_SIGNDOCS.checkbox.text
+msgid "When signing"
+msgstr "Al firmar"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_PRINTDOCS.checkbox.text
+msgid "When printing"
+msgstr "Al imprimir"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_CREATEPDF.checkbox.text
+msgid "When creating PDF files"
+msgstr "Al crear archivos PDF"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.FL_OPTIONS.fixedline.text
+msgid "Security options"
+msgstr "Opciones de seguridad"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_REMOVEINFO.checkbox.text
+msgid "Remove personal information on saving"
+msgstr "Eliminar la información personal al guardar"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_RECOMMENDPWD.checkbox.text
+msgid "Recommend password protection on saving"
+msgstr "Recomiendar protección con contraseña al guardar"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_CTRLHYPERLINK.checkbox.text
+msgid "Ctrl-click required to follow hyperlinks"
+msgstr "Requerir Ctrl-clic para visitar hiperenlaces"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.modaldialog.text
+msgctxt "securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.modaldialog.text"
+msgid "Security options and warnings"
+msgstr "Opciones de seguridad y alertas"
+
+#: optsave.src#TEXT_SAVEPAGE.#define.text
+msgctxt "optsave.src#TEXT_SAVEPAGE.#define.text"
+msgid "Save"
+msgstr "Guardar"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_LOAD.fixedline.text
+msgid "Load"
+msgstr "Cargar"
+
+#: optsave.src#RID_SFXPAGE_SAVE.CB_LOAD_SETTINGS.checkbox.text
+msgid "Load user-specific settings with the document"
+msgstr "Cargar las configuraciones específicas del usuario junto con el documento"
+
+#: optsave.src#RID_SFXPAGE_SAVE.CB_LOAD_DOCPRINTER.checkbox.text
+msgid "Load printer settings with the document"
+msgstr "Cargar las configuraciones de la impresora junto con el documento"
+
+#: optsave.src#RID_SFXPAGE_SAVE.GB_SAVE.fixedline.text
+msgctxt "optsave.src#RID_SFXPAGE_SAVE.GB_SAVE.fixedline.text"
+msgid "Save"
+msgstr "Guardar"
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_DOCINFO.checkbox.text
+msgid "~Edit document properties before saving"
+msgstr "~Editar las propiedades del documento antes de guardar"
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_BACKUP.checkbox.text
+msgid "Al~ways create backup copy"
+msgstr "~Siempre crear una copia de seguridad"
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_AUTOSAVE.checkbox.text
+msgid "Save ~AutoRecovery information every"
+msgstr "Guardar datos de ~recuperación automática cada"
+
+#: optsave.src#RID_SFXPAGE_SAVE.FT_MINUTE.fixedtext.text
+msgid "Minutes"
+msgstr "Minutos"
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_RELATIVE_FSYS.checkbox.text
+msgid "Save URLs relative to file system"
+msgstr "Guardar los URL en forma relativa al sistema de archivos"
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_RELATIVE_INET.checkbox.text
+msgid "Save URLs relative to internet"
+msgstr "Guardar los URL en forma relativa a Internet"
+
+#: optsave.src#RID_SFXPAGE_SAVE.FL_FILTER.fixedline.text
+msgid "Default file format and ODF settings"
+msgstr "Formato predeterminado de archivo y opciones ODF"
+
+#: optsave.src#RID_SFXPAGE_SAVE.FT_ODF_VERSION.fixedtext.text
+msgid "ODF format version"
+msgstr "Versión del formato ODF"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_ODF_VERSION.1.stringlist.text
+msgid "1.0/1.1"
+msgstr "1.0/1.1"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_ODF_VERSION.2.stringlist.text
+msgid "1.2"
+msgstr "1.2"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_ODF_VERSION.3.stringlist.text
+msgid "1.2 Extended (compat mode)"
+msgstr "1.2 extendido (modo de compatibilidad)"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_ODF_VERSION.4.stringlist.text
+msgid "1.2 Extended (recommended)"
+msgstr "1.2 extendido (recomendado)"
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_NOPRETTYPRINTING.checkbox.text
+msgid "Size optimization for ODF format"
+msgstr "Optimización del tamaño para el formato ODF"
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_WARNALIENFORMAT.checkbox.text
+msgid "Warn when not saving in ODF or default format"
+msgstr "Advertir cuando no se guarde en ODF ni en el formato predeterminado"
+
+#: optsave.src#RID_SFXPAGE_SAVE.FT_APP.fixedtext.text
+msgid "D~ocument type"
+msgstr "Tipo de d~ocumento"
+
+#: optsave.src#RID_SFXPAGE_SAVE.FT_FILTER.fixedtext.text
+msgid "Always sa~ve as"
+msgstr "Siempre guar~dar como"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.1.stringlist.text
+msgid "Text document"
+msgstr "Documento de texto"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.2.stringlist.text
+msgid "HTML document"
+msgstr "Documento HTML"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.3.stringlist.text
+msgid "Master document"
+msgstr "Documento maestro"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.4.stringlist.text
+msgctxt "optsave.src#RID_SFXPAGE_SAVE.LB_APP.4.stringlist.text"
+msgid "Spreadsheet"
+msgstr "Hoja de cálculo"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.5.stringlist.text
+msgid "Presentation"
+msgstr "Presentación"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.6.stringlist.text
+msgid "Drawing"
+msgstr "Dibujo"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.7.stringlist.text
+msgctxt "optsave.src#RID_SFXPAGE_SAVE.LB_APP.7.stringlist.text"
+msgid "Formula"
+msgstr "Fórmula"
+
+#. EN-US, the term 'extended' must not be translated.
+#: optsave.src#RID_SFXPAGE_SAVE.FT_WARN.fixedtext.text
+msgid "Not using ODF 1.2 Extended may cause information to be lost."
+msgstr "Puede perderse información al no utilizar ODF 1.2 Extendido."
+
+#: optsave.src#RID_SVXDLG_FILTER_WARNING.FT_FILTER_WARNING.fixedtext.text
+msgid "Using \"%1\" as default file format may cause information loss.\n"
+msgstr "La utilización de \"%1\" como formato de archivo predeterminado puede causar pérdidas de información.\n"
+
+#: readonlyimage.src#RID_SVXSTR_READONLY_CONFIG_TIP.string.text
+msgid "This setting is protected by the Administrator"
+msgstr "Esta opción está protegida por el administrador"
+
+#: optinet2.src#RID_SVXPAGE_INET_MOZPLUGIN.GB_MOZPLUGIN.fixedline.text
+msgctxt "optinet2.src#RID_SVXPAGE_INET_MOZPLUGIN.GB_MOZPLUGIN.fixedline.text"
+msgid "Browser Plug-in"
+msgstr "Complemento del navegador"
+
+#: optinet2.src#RID_SVXPAGE_INET_MOZPLUGIN.CB_MOZPLUGIN_CODE.checkbox.text
+msgid "~Display documents in browser"
+msgstr "Mostrar ~documentos en el navegador"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.GB_SETTINGS.fixedline.text
+msgctxt "optinet2.src#RID_SVXPAGE_INET_PROXY.GB_SETTINGS.fixedline.text"
+msgid "Settings"
+msgstr "Configuraciones"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_PROXYMODE.fixedtext.text
+msgid "Proxy s~erver"
+msgstr "Servidor pro~xy"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.LB_PROXYMODE.1.stringlist.text
+msgid "None"
+msgstr "Ninguno"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.LB_PROXYMODE.2.stringlist.text
+msgctxt "optinet2.src#RID_SVXPAGE_INET_PROXY.LB_PROXYMODE.2.stringlist.text"
+msgid "System"
+msgstr "Sistema"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.LB_PROXYMODE.3.stringlist.text
+msgid "Manual"
+msgstr "Manual"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.ST_PROXY_FROM_BROWSER.string.text
+msgid "Use browser settings"
+msgstr "Usar la configuración del navegador"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_HTTP_PROXY.fixedtext.text
+msgid "HT~TP proxy"
+msgstr "Proxy HT~TP"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_HTTP_PORT.fixedtext.text
+msgid "~Port"
+msgstr "~Puerto"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_HTTPS_PROXY.fixedtext.text
+msgid "HTTP~S proxy"
+msgstr "Proxy HTTP~S"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_HTTPS_PORT.fixedtext.text
+msgctxt "optinet2.src#RID_SVXPAGE_INET_PROXY.FT_HTTPS_PORT.fixedtext.text"
+msgid "P~ort"
+msgstr "P~uerto"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_FTP_PROXY.fixedtext.text
+msgid "~FTP proxy"
+msgstr "Proxy ~FTP"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_FTP_PORT.fixedtext.text
+msgctxt "optinet2.src#RID_SVXPAGE_INET_PROXY.FT_FTP_PORT.fixedtext.text"
+msgid "P~ort"
+msgstr "P~uerto"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_SOCKS_PROXY.fixedtext.text
+msgid "~SOCKS proxy"
+msgstr "Proxy ~SOCKS"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_SOCKS_PORT.fixedtext.text
+msgid "Po~rt"
+msgstr "Pue~rto"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_NOPROXYFOR.fixedtext.text
+msgid "~No proxy for:"
+msgstr "S~in proxy para"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.ED_NOPROXYDESC.fixedtext.text
+msgid "Separator ;"
+msgstr "Separador ;"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.GB_DNS.fixedline.text
+msgid "DNS server"
+msgstr "Servidor DNS"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.RB_DNS_AUTO.radiobutton.text
+msgid "~Automatic"
+msgstr "~Automático"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.RB_DNS_MANUAL.radiobutton.text
+msgid "~Manual"
+msgstr "~Manual"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.ST_MSG_255_0.string.text
+msgid "is not a valid entry for this field. Please specify a value between 0 and 255."
+msgstr "no es una entrada válida para este campo. Escriba un valor entre 0 y 255."
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.ST_MSG_255_1.string.text
+msgid "is not a valid entry for this field. Please specify a value between 1 and 255."
+msgstr "no es una entrada válida para este campo. Escriba un valor entre 1 y 255."
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.tabpage.text
+msgctxt "optinet2.src#RID_SVXPAGE_INET_PROXY.tabpage.text"
+msgid "Proxy"
+msgstr "Proxy"
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.FL_SEC_SECURITYOPTIONS.fixedline.text
+msgctxt "optinet2.src#RID_SVXPAGE_INET_SECURITY.FL_SEC_SECURITYOPTIONS.fixedline.text"
+msgid "Security options and warnings"
+msgstr "Opciones de seguridad y alertas"
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.FI_SEC_SECURITYOPTIONS.fixedtext.text
+msgid "Adjust security related options and define warnings for hidden information in documents."
+msgstr "Ajustar las opciones relacionadas con la seguridad y definir alertas para la información oculta en los documentos."
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.PB_SEC_SECURITYOPTIONS.pushbutton.text
+msgid "Options..."
+msgstr "Opciones..."
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.FL_SEC_PASSWORDS.fixedline.text
+msgid "Passwords for web connections"
+msgstr "Contraseñas para las conexiones web"
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.CB_SEC_SAVEPASSWORDS.checkbox.text
+msgid "Persistently save passwords for web connections"
+msgstr "Guardar las contraseñas para conexiones web persistentemente"
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.PB_SEC_CONNECTIONS.pushbutton.text
+msgid "Connections..."
+msgstr "Conexiones..."
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.CB_SEC_MASTERPASSWORD.checkbox.text
+msgid "Protected by a master password (recommended)"
+msgstr "Protegidas mediante una contraseña maestra (recomendado)"
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.FI_SEC_MASTERPASSWORD.fixedtext.text
+msgid "Passwords are protected by a master password. You will be asked to enter it once per session, if %PRODUCTNAME retrieves a password from the protected password list."
+msgstr "Las contraseñas están protegidas por una contraseña maestra. Deberá ingresarla una vez por sesión, si %PRODUCTNAME necesita recuperar una contraseña de la lista protegida de contraseñas."
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.PB_SEC_MASTERPASSWORD.pushbutton.text
+msgid "Master Password..."
+msgstr "Contraseña maestra..."
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.FL_SEC_MACROSEC.fixedline.text
+msgid "Macro security"
+msgstr "Seguridad de macros"
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.FI_SEC_MACROSEC.fixedtext.text
+msgid "Adjust the security level for executing macros and specify trusted macro developers."
+msgstr "Ajuste el nivel de seguridad para ejecutar macros y especifique los desarrolladores de macros de confianza."
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.PB_SEC_MACROSEC.pushbutton.text
+msgid "Macro Security..."
+msgstr "Seguridad de macros..."
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.FL_SEC_CERTPATH.fixedline.text
+msgctxt "optinet2.src#RID_SVXPAGE_INET_SECURITY.FL_SEC_CERTPATH.fixedline.text"
+msgid "Certificate Path"
+msgstr "Ruta del certificado"
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.FI_SEC_CERTPATH.fixedtext.text
+msgid "Select the Network Security Services certificate directory to use for digital signatures."
+msgstr "Seleccione el directorio del certificado Network Security Services para usar para las firmas digitales."
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.PB_SEC_CERTPATH.pushbutton.text
+msgid "Certificate..."
+msgstr "Certificar..."
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.STR_SEC_NOPASSWDSAVE.string.text
+msgid ""
+"Disabling the function to persistently store passwords deletes the list of passwords stored and resets the master password.\n"
+"\n"
+"Do you want to delete password list and reset master password?"
+msgstr ""
+"Al deshabilitar la función para almacenar las contraseñas persistentemente se eliminará la lista de contraseñas almacenadas y se restablecerá la contraseña maestra.\n"
+"\n"
+"¿Quiere eliminar la lista de contraseñas y la contraseña maestra?"
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.tabpage.text
+msgctxt "optinet2.src#RID_SVXPAGE_INET_SECURITY.tabpage.text"
+msgid "Security"
+msgstr "Seguridad"
+
+#: optinet2.src#RID_SVXERR_OPT_PROXYPORTS.errorbox.text
+msgid ""
+"Invalid value!\n"
+"\n"
+"The maximum value for a port number is 65535."
+msgstr ""
+"¡Valor inválido!\n"
+"\n"
+"El valor máximo para un número de puerto es 65535."
+
+#: optinet2.src#RID_SVXDLG_OPT_JAVASCRIPT_DISABLE.FT_JSCPT_WARNING.fixedtext.text
+msgid ""
+"Please note that with Java\n"
+"you disable Javascript as well.\n"
+"\n"
+"Do you still want to disable Java?"
+msgstr ""
+"Tenga en cuenta que al desactivar Java\n"
+"también desactivará Javascript.\n"
+"\n"
+"¿Desea desactivar Java igualmente?"
+
+#: optinet2.src#RID_SVXDLG_OPT_JAVASCRIPT_DISABLE.CB_JSCPT_DISABLE.checkbox.text
+msgid "~Don't show warning again"
+msgstr "~No mostrar más esta advertencia"
+
+#: optinet2.src#RID_SVXPAGE_INET_MAIL.FL_MAIL.fixedline.text
+msgid "Sending documents as e-mail attachments"
+msgstr "Envío de documentos como adjuntos en un correo electrónico"
+
+#: optinet2.src#RID_SVXPAGE_INET_MAIL.FT_MAILERURL.fixedtext.text
+msgid "~E-mail program"
+msgstr "Programa de ~correo electrónico"
+
+#: optinet2.src#RID_SVXPAGE_INET_MAIL.STR_DEFAULT_FILENAME.string.text
+msgid "All files"
+msgstr "Todos los archivos"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.CB_USETABLE.checkbox.text
+msgid "~Apply replacement table"
+msgstr "~Aplicar la tabla de sustituciones"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.FT_FONT1.fixedtext.text
+msgid "~Font"
+msgstr "~Fuente"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.FT_FONT2.fixedtext.text
+msgid "Re~place with"
+msgstr "Reem~plazar con"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.TBX_SUBSTNEWDEL.BT_SUBSTAPPLY.toolboxitem.text
+msgid "Apply"
+msgstr "Aplicar"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.TBX_SUBSTNEWDEL.BT_SUBSTDELETE.toolboxitem.text
+msgctxt "fontsubs.src#RID_SVX_FONT_SUBSTITUTION.TBX_SUBSTNEWDEL.BT_SUBSTDELETE.toolboxitem.text"
+msgid "Delete"
+msgstr "Eliminar"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.FL_SOURCEVIEW.fixedline.text
+msgid "Font settings for HTML, Basic and SQL sources"
+msgstr "Configuración de fuentes para HTML, Basic y orígenes de datos SQL"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.FT_FONTNAME.fixedtext.text
+msgctxt "fontsubs.src#RID_SVX_FONT_SUBSTITUTION.FT_FONTNAME.fixedtext.text"
+msgid "Fonts"
+msgstr "Fuentes"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.CB_NONPROP.checkbox.text
+msgid "Non-proportional fonts only"
+msgstr "Sólo fuentes no proporcionales"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.FT_FONTHEIGHT.fixedtext.text
+msgid "~Size"
+msgstr "~Tamaño"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.STR_HEADER1.string.text
+msgid "Always"
+msgstr "Siempre"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.STR_HEADER2.string.text
+msgid "Screen only"
+msgstr "Sólo en pantalla"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.STR_HEADER3.string.text
+msgid "Font"
+msgstr "Fuente"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.STR_HEADER4.string.text
+msgid "Replace with"
+msgstr "Reemplazar con"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.STR_AUTOMATIC.string.text
+msgctxt "fontsubs.src#RID_SVX_FONT_SUBSTITUTION.STR_AUTOMATIC.string.text"
+msgid "Automatic"
+msgstr "Automático"
+
+#: optdict.src#RID_SFXDLG_NEWDICT.FT_DICTNAME.fixedtext.text
+msgid "~Name"
+msgstr "~Nombre"
+
+#: optdict.src#RID_SFXDLG_NEWDICT.FT_DICTLANG.fixedtext.text
+msgctxt "optdict.src#RID_SFXDLG_NEWDICT.FT_DICTLANG.fixedtext.text"
+msgid "~Language"
+msgstr "~Idioma"
+
+#: optdict.src#RID_SFXDLG_NEWDICT.BTN_EXCEPT.checkbox.text
+msgid "~Exception (-)"
+msgstr "~Excepción (-)"
+
+#: optdict.src#RID_SFXDLG_NEWDICT.GB_NEWDICT.fixedline.text
+msgid "Dictionary"
+msgstr "Diccionario"
+
+#: optdict.src#RID_SFXDLG_NEWDICT.modaldialog.text
+msgid "New Dictionary"
+msgstr "Nuevo diccionario"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.FT_BOOK.fixedtext.text
+msgid "~Book"
+msgstr "~Libro"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.FT_DICTLANG.fixedtext.text
+msgctxt "optdict.src#RID_SFXDLG_EDITDICT.FT_DICTLANG.fixedtext.text"
+msgid "~Language"
+msgstr "~Idioma"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.FT_WORD.fixedtext.text
+msgid "~Word"
+msgstr "~Palabra"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.FT_REPLACE.fixedtext.text
+msgid "Replace ~By:"
+msgstr "~Reemplazar por:"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.PB_NEW_REPLACE.pushbutton.text
+msgid "~New"
+msgstr "~Nuevo"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.PB_DELETE_REPLACE.pushbutton.text
+msgctxt "optdict.src#RID_SFXDLG_EDITDICT.PB_DELETE_REPLACE.pushbutton.text"
+msgid "~Delete"
+msgstr "~Eliminar"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.STR_MODIFY.string.text
+msgid "~Replace"
+msgstr "~Reemplazar"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.BTN_EDITCLOSE.cancelbutton.text
+msgid "~Close"
+msgstr "~Cerrar"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.modaldialog.text
+msgid "Edit Custom Dictionary"
+msgstr "Editar diccionarios personalizados"
+
+#: optdict.src#RID_SVXSTR_OPT_DOUBLE_DICTS.string.text
+msgid ""
+"The specified name already exists.\n"
+"Please enter a new name."
+msgstr ""
+"Ya existe el nombre especificado.\n"
+"Escriba un nuevo nombre."
+
+#: optdict.src#RID_SFXQB_SET_LANGUAGE.querybox.text
+msgid "Do you want to change the '%1' dictionary language?"
+msgstr "¿Desea cambiar el idioma del diccionario '%1' ?"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE1.fixedtext.text
+msgid "Size ~1"
+msgstr "Tamaño ~1"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE2.fixedtext.text
+msgid "Size ~2"
+msgstr "Tamaño ~2"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE3.fixedtext.text
+msgid "Size ~3"
+msgstr "Tamaño ~3"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE4.fixedtext.text
+msgid "Size ~4"
+msgstr "Tamaño ~4"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE5.fixedtext.text
+msgid "Size ~5"
+msgstr "Tamaño ~5"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE6.fixedtext.text
+msgid "Size ~6"
+msgstr "Tamaño ~6"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE7.fixedtext.text
+msgid "Size ~7"
+msgstr "Tamaño ~7"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.GB_FONTSIZE.fixedline.text
+msgid "Font sizes"
+msgstr "Tamaños de fuentes"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.GB_IMPORT.fixedline.text
+msgid "Import"
+msgstr "Importar"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.CB_NUMBERS_ENGLISH_US.checkbox.text
+msgid "~Use '%ENGLISHUSLOCALE' locale for numbers"
+msgstr "~Usar la conf. regional '%ENGLISHUSLOCALE' para los números"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.CB_UNKNOWN_TAGS.checkbox.text
+msgid "~Import unknown HTML tags as fields"
+msgstr "~Importar etiquetas HTML desconocidas como campos"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.CB_IGNORE_FONTNAMES.checkbox.text
+msgid "Ignore ~font settings"
+msgstr "Ignorar las configuraciones de ~fuente"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.GB_EXPORT.fixedline.text
+msgid "Export"
+msgstr "Exportar"
+
+#: opthtml.src#CB_STARBASIC_WARNING.checkbox.text
+msgid "Display ~warning"
+msgstr "Mostrar ~advertencia"
+
+#: opthtml.src#CB_PRINT_EXTENSION.checkbox.text
+msgid "~Print layout"
+msgstr "Diseño de ~impresión"
+
+#: opthtml.src#CB_LOCAL_GRF.checkbox.text
+msgid "~Copy local graphics to Internet"
+msgstr "~Copiar las imágenes locales a Internet"
+
+#: opthtml.src#FT_CHARSET.fixedtext.text
+msgid "Character set"
+msgstr "Conjunto de caracteres"
+
+#: internationaloptions.src#RID_OFA_TP_INTERNATIONAL.FL_DEFTXTDIRECTION.fixedline.text
+msgid "Default text direction"
+msgstr "Dirección predeterminada del texto"
+
+#: internationaloptions.src#RID_OFA_TP_INTERNATIONAL.RB_TXTDIR_LEFT2RIGHT.radiobutton.text
+msgid "~Left-to-right"
+msgstr "De ~izquierda a derecha"
+
+#: internationaloptions.src#RID_OFA_TP_INTERNATIONAL.RB_TXTDIR_RIGHT2LEFT.radiobutton.text
+msgid "~Right-to-left"
+msgstr "De ~derecha a izquierda"
+
+#: internationaloptions.src#RID_OFA_TP_INTERNATIONAL.FL_SHEETVIEW.fixedline.text
+msgid "Sheet view"
+msgstr "Vista de hoja"
+
+#: internationaloptions.src#RID_OFA_TP_INTERNATIONAL.CB_SHTVW_RIGHT2LEFT.checkbox.text
+msgid "Right-~to-left"
+msgstr "De derecha ~a izquierda"
+
+#: internationaloptions.src#RID_OFA_TP_INTERNATIONAL.CB_SHTVW_CURRENTDOCONLY.checkbox.text
+msgid "~Current document only"
+msgstr "~Sólo para el documento actual"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.FL_COLORSCHEME.fixedline.text
+msgid "Color scheme"
+msgstr "Esquema de colores"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.FT_COLORSCHEME.fixedtext.text
+msgid "Scheme"
+msgstr "Esquema"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.PB_SAVESCHEME.pushbutton.text
+msgid "Save..."
+msgstr "Guardar..."
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.PB_DELETESCHEME.pushbutton.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.PB_DELETESCHEME.pushbutton.text"
+msgid "Delete"
+msgstr "Eliminar"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.FL_CUSTOMCOLORS.fixedline.text
+msgid "Custom colors"
+msgstr "Colores personalizados"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.ST_ON.string.text
+msgid "On"
+msgstr "Act."
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.ST_UIELEM.string.text
+msgid "User interface elements"
+msgstr "Elementos de la interfaz del usuario"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.ST_COLSET.string.text
+msgid "Color setting"
+msgstr "Config. del color"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.ST_PREVIEW.string.text
+msgid "Preview"
+msgstr "Vista prelim."
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_GENERAL.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_GENERAL.fixedtext.text"
+msgid "General"
+msgstr "General"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_DOCCOLOR.fixedtext.text
+msgid "Document background"
+msgstr "Fondo del documento"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_DOCBOUND.checkbox.text
+msgid "Text boundaries"
+msgstr "Límites del texto"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_APPBACKGROUND.fixedtext.text
+msgid "Application background"
+msgstr "Fondo de la aplicación"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_OBJECTBOUNDARIES.checkbox.text
+msgid "Object boundaries"
+msgstr "Límites de los objetos"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_TABLEBOUNDARIES.checkbox.text
+msgid "Table boundaries"
+msgstr "Límites de las tablas"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_FONTCOLOR.fixedtext.text
+msgid "Font color"
+msgstr "Color de la fuente"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_LINKS.checkbox.text
+msgid "Unvisited links"
+msgstr "Enlaces no visitados"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_LINKSVISITED.checkbox.text
+msgid "Visited links"
+msgstr "Enlaces visitados"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SPELL.fixedtext.text
+msgid "AutoSpellcheck"
+msgstr "Revisión ortográfica automática"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SMARTTAGS.fixedtext.text
+msgid "Smart Tags"
+msgstr "Etiquetas inteligentes"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_SHADOWCOLOR.checkbox.text
+msgid "Shadows"
+msgstr "Sombras"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_WRITER.fixedtext.text
+msgid "Text Document"
+msgstr "Documento de texto"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_WRITERTEXTGRID.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_WRITERTEXTGRID.fixedtext.text"
+msgid "Grid"
+msgstr "Cuadrícula"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_WRITERFIELDSHADINGS.checkbox.text
+msgid "Field shadings"
+msgstr "Sombreado de los campos"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_WRITERIDXSHADINGS.checkbox.text
+msgid "Index and table shadings"
+msgstr "Sombreado de los índices y tablas"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_WRITERSCRIPTINDICATOR.fixedtext.text
+msgid "Script indicator"
+msgstr "Indicador de escritura"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_WRITERSECTIONBOUNDARIES.checkbox.text
+msgid "Section boundaries"
+msgstr "Límites de las secciones"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_WRITERHEADERFOOTERMARK.fixedtext.text
+msgid "Headers and Footer delimiter"
+msgstr "Delimitador de encabezado y pie"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_WRITERPAGEBREAKS.fixedtext.text
+msgid "Page and column breaks"
+msgstr "Saltos de páginas y de columnas"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_WRITERDIRECTCURSOR.fixedtext.text
+msgid "Direct cursor"
+msgstr "Cursor directo"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_HTML.fixedtext.text
+msgid "HTML Document"
+msgstr "Documento HTML"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_HTMLSGML.fixedtext.text
+msgid "SGML syntax highlighting"
+msgstr "Resaltado de la sintaxis SGML"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_HTMLCOMMENT.fixedtext.text
+msgid "Comment highlighting"
+msgstr "Resaltado de los comentarios"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_HTMLKEYWORD.fixedtext.text
+msgid "Keyword highlighting"
+msgstr "Resaltado de las palabras claves"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_HTMLUNKNOWN.fixedtext.text
+msgid "Text"
+msgstr "Texto"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALC.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALC.fixedtext.text"
+msgid "Spreadsheet"
+msgstr "Hoja de cálculo"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCGRID.fixedtext.text
+msgid "Grid lines"
+msgstr "Líneas de la cuadrícula"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCPAGEBREAK.fixedtext.text
+msgid "Page breaks"
+msgstr "Saltos de página"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCPAGEBREAKMANUAL.fixedtext.text
+msgid "Manual page breaks"
+msgstr "Saltos de página manuales"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCPAGEBREAKAUTO.fixedtext.text
+msgid "Automatic page breaks"
+msgstr "Saltos de página automáticos"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCDETECTIVE.fixedtext.text
+msgid "Detective"
+msgstr "Detective"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCDETECTIVEERROR.fixedtext.text
+msgid "Detective error"
+msgstr "Error del detective"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCREFERENCE.fixedtext.text
+msgid "References"
+msgstr "Referencias"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCNOTESBACKGROUND.fixedtext.text
+msgid "Notes background"
+msgstr "Fondo de los comentarios"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_DRAW.fixedtext.text
+msgid "Drawing / Presentation"
+msgstr "Dibujo / Presentación"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_DRAWGRID.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_DRAWGRID.fixedtext.text"
+msgid "Grid"
+msgstr "Cuadrícula"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASIC.fixedtext.text
+msgid "Basic Syntax Highlighting"
+msgstr "Resaltado de la sintaxis de Basic"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICIDENTIFIER.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICIDENTIFIER.fixedtext.text"
+msgid "Identifier"
+msgstr "Identificador"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICCOMMENT.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICCOMMENT.fixedtext.text"
+msgid "Comment"
+msgstr "Comentario"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICNUMBER.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICNUMBER.fixedtext.text"
+msgid "Number"
+msgstr "Número"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICSTRING.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICSTRING.fixedtext.text"
+msgid "String"
+msgstr "Cadena"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICOPERATOR.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICOPERATOR.fixedtext.text"
+msgid "Operator"
+msgstr "Operador"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICKEYWORD.fixedtext.text
+msgid "Reserved expression"
+msgstr "Expresión reservada"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICERROR.fixedtext.text
+msgid "Error"
+msgstr "Error"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQL_COMMAND.fixedtext.text
+msgid "SQL Syntax Highlighting"
+msgstr "Resaltado de la sintaxis de SQL"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLIDENTIFIER.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLIDENTIFIER.fixedtext.text"
+msgid "Identifier"
+msgstr "Identificador"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLNUMBER.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLNUMBER.fixedtext.text"
+msgid "Number"
+msgstr "Número"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLSTRING.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLSTRING.fixedtext.text"
+msgid "String"
+msgstr "Cadena"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLOPERATOR.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLOPERATOR.fixedtext.text"
+msgid "Operator"
+msgstr "Operador"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLKEYWORD.fixedtext.text
+msgid "Keyword"
+msgstr "Palabra clave"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLPARAMETER.fixedtext.text
+msgid "Parameter"
+msgstr "Parámetro"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLCOMMENT.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLCOMMENT.fixedtext.text"
+msgid "Comment"
+msgstr "Comentario"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.ST_EXTENSION.string.text
+msgid "Colorsettings of the Extensions"
+msgstr "Configuraciones de color de las extensiones"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.ST_SPELL_CHECK_HIGHLIGHTING.string.text
+msgid "Spell check highlighting"
+msgstr "Resaltado de la revisión ortográfica"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.ST_GRAMMAR_CHECK_HIGHLIGHTING.string.text
+msgid "Grammar check highlighting"
+msgstr "Resaltado de la revisión gramatical"
+
+#: optcolor.src#RID_SVXQB_DELETE_COLOR_CONFIG.querybox.text
+msgid "Do you really want to delete the color scheme?"
+msgstr "¿Desea eliminar el esquema de colores?"
+
+#: optcolor.src#RID_SVXSTR_COLOR_CONFIG_DELETE.string.text
+msgid "Color Scheme Deletion"
+msgstr "Eliminación del esquema de colores"
+
+#: optcolor.src#RID_SVXSTR_COLOR_CONFIG_SAVE1.string.text
+msgid "Save scheme"
+msgstr "Guardar el esquema"
+
+#: optcolor.src#RID_SVXSTR_COLOR_CONFIG_SAVE2.string.text
+msgid "Name of color scheme"
+msgstr "Nombre del esquema de colores"
+
+#: optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.FL_CHART_COLOR_LIST.fixedline.text
+msgid "Chart colors"
+msgstr "Colores del gráfico"
+
+#: optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.FL_COLOR_BOX.fixedline.text
+msgid "Color table"
+msgstr "Tabla de color"
+
+#: optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.PB_ADD_CHART_COLOR.pushbutton.text
+msgid "~Add"
+msgstr "~Añadir"
+
+#: optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.PB_REMOVE_CHART_COLOR.pushbutton.text
+msgctxt "optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.PB_REMOVE_CHART_COLOR.pushbutton.text"
+msgid "~Remove"
+msgstr "~Eliminar"
+
+#: optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.PB_RESET_TO_DEFAULT.pushbutton.text
+msgctxt "optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.PB_RESET_TO_DEFAULT.pushbutton.text"
+msgid "~Default"
+msgstr "~Predeterminado"
+
+#: optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.tabpage.text
+msgctxt "optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.tabpage.text"
+msgid "Default Colors"
+msgstr "Colores predeterminados"
+
+#: optchart.src#RID_SVXSTR_DIAGRAM_ROW.string.text
+msgid "Data Series $(ROW)"
+msgstr "Series de datos $(ROW)"
+
+#: optchart.src#RID_OPTQB_COLOR_CHART_DELETE.querybox.text
+msgid "Do you really want to delete the chart color?"
+msgstr "¿Desea eliminar el color del gráfico?"
+
+#: optchart.src#RID_OPTSTR_COLOR_CHART_DELETE.string.text
+msgid "Chart Color Deletion"
+msgstr "Eliminación del color del gráfico"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.GB_KERNING.fixedline.text
+msgid "Kerning"
+msgstr "Ajuste de espaciado entre caracteres"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.RB_CHAR_KERNING.radiobutton.text
+msgid "~Western characters only"
+msgstr "Sólo en caracteres ~occidentales"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.RB_CHAR_PUNCT.radiobutton.text
+msgid "Western ~text and Asian punctuation"
+msgstr "~Texto occidental y puntuación asiática"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.GB_CHAR_DIST.fixedline.text
+msgid "Character spacing"
+msgstr "Espaciado entre caracteres"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.RB_NO_COMP.radiobutton.text
+msgid "~No compression"
+msgstr "~Sin compresión"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.RB_PUNCT_COMP.radiobutton.text
+msgid "~Compress punctuation only"
+msgstr "~Comprimir sólo la puntuación"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.RB_PUNCT_KANA_COMP.radiobutton.text
+msgid "Compress ~punctuation and Japanese Kana"
+msgstr "Comprimir la ~puntuación y Kana japonés"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.GB_START_END.fixedline.text
+msgid "First and last characters"
+msgstr "Primer y último carácter"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.FT_LANGUAGE.fixedtext.text
+msgctxt "optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.FT_LANGUAGE.fixedtext.text"
+msgid "~Language"
+msgstr "~Idioma"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.CB_STANDARD.checkbox.text
+msgctxt "optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.CB_STANDARD.checkbox.text"
+msgid "~Default"
+msgstr "~Predeterminado"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.FT_START.fixedtext.text
+msgid "Not at start of line:"
+msgstr "No al principio de la línea"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.FT_END.fixedtext.text
+msgid "Not at end of line:"
+msgstr "No al final de la línea"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.FT_HINT.fixedtext.text
+msgid "Without user-defined line break symbols"
+msgstr "Sin símbolos de salto de línea definidos por el usuario"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.tabpage.text
+msgctxt "optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.tabpage.text"
+msgid "Proxy"
+msgstr "Proxy"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE.PB_BACK.pushbutton.text
+msgid "~Revert"
+msgstr "~Revertir"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE.ST_LOAD_ERROR.string.text
+msgid "The selected module could not be loaded."
+msgstr "No se pudo cargar el módulo seleccionado."
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE.modaldialog.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE.modaldialog.text"
+msgid "Options"
+msgstr "Opciones"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.1.itemlist.text
+msgid "%PRODUCTNAME"
+msgstr "%PRODUCTNAME"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.2.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.2.itemlist.text"
+msgid "User Data"
+msgstr "Datos del usuario"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.3.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.3.itemlist.text"
+msgid "General"
+msgstr "General"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.4.itemlist.text
+msgid "Memory"
+msgstr "Memoria"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.5.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.5.itemlist.text"
+msgid "View"
+msgstr "Ver"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.6.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.6.itemlist.text"
+msgid "Print"
+msgstr "Imprimir"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.7.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.7.itemlist.text"
+msgid "Paths"
+msgstr "Rutas"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.8.itemlist.text
+msgid "Colors"
+msgstr "Colores"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.9.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.9.itemlist.text"
+msgid "Fonts"
+msgstr "Fuentes"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.10.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.10.itemlist.text"
+msgid "Security"
+msgstr "Seguridad"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.11.itemlist.text
+msgid "Appearance"
+msgstr "Apariencia"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.12.itemlist.text
+msgid "Accessibility"
+msgstr "Accesibilidad"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.13.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.13.itemlist.text"
+msgid "Java"
+msgstr "Java"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.14.itemlist.text
+msgid "Network Identity"
+msgstr "Identidad de red"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.15.itemlist.text
+msgid "Online Update"
+msgstr "Actualización en línea"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_LANGUAGE_OPTIONS.1.itemlist.text
+msgid "Language Settings"
+msgstr "Configuración de idioma"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_LANGUAGE_OPTIONS.2.itemlist.text
+msgid "Languages"
+msgstr "Idiomas"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_LANGUAGE_OPTIONS.3.itemlist.text
+msgid "Writing Aids"
+msgstr "Asistencia a la escritura"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_LANGUAGE_OPTIONS.4.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_LANGUAGE_OPTIONS.4.itemlist.text"
+msgid "Searching in Japanese"
+msgstr "Búsqueda en Japonés"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_LANGUAGE_OPTIONS.5.itemlist.text
+msgid "Asian Layout"
+msgstr "Diseño asiático"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_LANGUAGE_OPTIONS.6.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_LANGUAGE_OPTIONS.6.itemlist.text"
+msgid "Complex Text Layout"
+msgstr "Disposición compleja de texto"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_INET_DLG.1.itemlist.text
+msgid "Internet"
+msgstr "Internet"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_INET_DLG.2.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_INET_DLG.2.itemlist.text"
+msgid "Proxy"
+msgstr "Proxy"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_INET_DLG.3.itemlist.text
+msgid "E-mail"
+msgstr "Correo electrónico"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_INET_DLG.4.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_INET_DLG.4.itemlist.text"
+msgid "Browser Plug-in"
+msgstr "Complemento del navegador"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.1.itemlist.text
+msgid "%PRODUCTNAME Writer"
+msgstr "%PRODUCTNAME Writer"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.2.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.2.itemlist.text"
+msgid "General"
+msgstr "General"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.3.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.3.itemlist.text"
+msgid "View"
+msgstr "Ver"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.4.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.4.itemlist.text"
+msgid "Formatting Aids"
+msgstr "Ayudas de formato"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.5.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.5.itemlist.text"
+msgid "Grid"
+msgstr "Cuadrícula"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.6.itemlist.text
+msgid "Basic Fonts (Western)"
+msgstr "Fuentes básicas (occidentales)"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.7.itemlist.text
+msgid "Basic Fonts (Asian)"
+msgstr "Fuentes básicas (asiáticas)"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.8.itemlist.text
+msgid "Basic Fonts (CTL)"
+msgstr "Fuentes básicas (CTL)"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.9.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.9.itemlist.text"
+msgid "Print"
+msgstr "Imprimir"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.10.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.10.itemlist.text"
+msgid "Table"
+msgstr "Tabla"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.11.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.11.itemlist.text"
+msgid "Changes"
+msgstr "Cambios"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.12.itemlist.text
+msgid "Comparison"
+msgstr "Comparación"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.13.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.13.itemlist.text"
+msgid "Compatibility"
+msgstr "Compatibilidad"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.14.itemlist.text
+msgid "AutoCaption"
+msgstr "Leyenda automática"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.15.itemlist.text
+msgid "Mail Merge E-mail"
+msgstr "Correo electrónico de Combinar correspondencia"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.1.itemlist.text
+msgid "%PRODUCTNAME Writer/Web"
+msgstr "%PRODUCTNAME Writer/Web"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.2.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.2.itemlist.text"
+msgid "View"
+msgstr "Ver"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.3.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.3.itemlist.text"
+msgid "Formatting Aids"
+msgstr "Ayudas de formato"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.4.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.4.itemlist.text"
+msgid "Grid"
+msgstr "Cuadrícula"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.5.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.5.itemlist.text"
+msgid "Print"
+msgstr "Imprimir"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.6.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.6.itemlist.text"
+msgid "Table"
+msgstr "Tabla"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.7.itemlist.text
+msgid "Background"
+msgstr "Fondo"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SM_EDITOPTIONS.1.itemlist.text
+msgid "%PRODUCTNAME Math"
+msgstr "%PRODUCTNAME Math"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SM_EDITOPTIONS.2.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SM_EDITOPTIONS.2.itemlist.text"
+msgid "Settings"
+msgstr "Configuración"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.1.itemlist.text
+msgid "%PRODUCTNAME Calc"
+msgstr "%PRODUCTNAME Calc"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.2.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.2.itemlist.text"
+msgid "General"
+msgstr "General"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.3.itemlist.text
+msgid "Defaults"
+msgstr "Predeterminados"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.4.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.4.itemlist.text"
+msgid "View"
+msgstr "Ver"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.5.itemlist.text
+msgid "International"
+msgstr "Internacional"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.6.itemlist.text
+msgid "Calculate"
+msgstr "Calcular"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.7.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.7.itemlist.text"
+msgid "Formula"
+msgstr "Fórmula"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.8.itemlist.text
+msgid "Sort Lists"
+msgstr "Listas de ordenamiento"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.9.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.9.itemlist.text"
+msgid "Changes"
+msgstr "Cambios"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.10.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.10.itemlist.text"
+msgid "Compatibility"
+msgstr "Compatibilidad"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.11.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.11.itemlist.text"
+msgid "Grid"
+msgstr "Cuadrícula"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.12.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.12.itemlist.text"
+msgid "Print"
+msgstr "Imprimir"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_EDITOPTIONS.1.itemlist.text
+msgid "%PRODUCTNAME Impress"
+msgstr "%PRODUCTNAME Impress"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_EDITOPTIONS.2.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_EDITOPTIONS.2.itemlist.text"
+msgid "General"
+msgstr "General"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_EDITOPTIONS.3.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_EDITOPTIONS.3.itemlist.text"
+msgid "View"
+msgstr "Ver"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_EDITOPTIONS.4.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_EDITOPTIONS.4.itemlist.text"
+msgid "Grid"
+msgstr "Cuadrícula"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_EDITOPTIONS.5.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_EDITOPTIONS.5.itemlist.text"
+msgid "Print"
+msgstr "Imprimir"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_GRAPHIC_OPTIONS.1.itemlist.text
+msgid "%PRODUCTNAME Draw"
+msgstr "%PRODUCTNAME Draw"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_GRAPHIC_OPTIONS.2.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_GRAPHIC_OPTIONS.2.itemlist.text"
+msgid "General"
+msgstr "General"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_GRAPHIC_OPTIONS.3.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_GRAPHIC_OPTIONS.3.itemlist.text"
+msgid "View"
+msgstr "Ver"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_GRAPHIC_OPTIONS.4.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_GRAPHIC_OPTIONS.4.itemlist.text"
+msgid "Grid"
+msgstr "Cuadrícula"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_GRAPHIC_OPTIONS.5.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_GRAPHIC_OPTIONS.5.itemlist.text"
+msgid "Print"
+msgstr "Imprimir"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SCH_EDITOPTIONS.1.itemlist.text
+msgid "Charts"
+msgstr "Gráficos"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SCH_EDITOPTIONS.2.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SCH_EDITOPTIONS.2.itemlist.text"
+msgid "Default Colors"
+msgstr "Colores predeterminados"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_FILTER_DLG.1.itemlist.text
+msgid "Load/Save"
+msgstr "Cargar/Guardar"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_FILTER_DLG.2.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_FILTER_DLG.2.itemlist.text"
+msgid "General"
+msgstr "General"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_FILTER_DLG.3.itemlist.text
+msgid "VBA Properties"
+msgstr "Propiedades de VBA"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_FILTER_DLG.4.itemlist.text
+msgid "Microsoft Office"
+msgstr "Microsoft Office"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_FILTER_DLG.5.itemlist.text
+msgid "HTML Compatibility"
+msgstr "Compatibilidad HTML"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SB_STARBASEOPTIONS.1.itemlist.text
+msgid "%PRODUCTNAME Base"
+msgstr "%PRODUCTNAME Base"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SB_STARBASEOPTIONS.2.itemlist.text
+msgid "Connections"
+msgstr "Conexiones"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SB_STARBASEOPTIONS.3.itemlist.text
+msgid "Databases"
+msgstr "Bases de datos"
+
+#: treeopt.src#RID_RIDER_SLL_SITE.string.text
+msgid "Site certificates"
+msgstr "Certificados de sitios"
+
+#: treeopt.src#RID_RIDER_SLL_PERSONAL.string.text
+msgid "Personal certificates"
+msgstr "Certificados personales"
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.FL_JAVA.fixedline.text
+msgid "Java options"
+msgstr "Opciones de Java"
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.CB_JAVA_ENABLE.checkbox.text
+msgid "~Use a Java runtime environment"
+msgstr "~Usar un entorno de ejecución de Java"
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.FT_JAVA_FOUND.fixedtext.text
+msgid "~Java runtime environments (JRE) already installed:"
+msgstr "Entornos de ejecución de ~Java (JRE) instalados:"
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.PB_ADD.pushbutton.text
+msgctxt "optjava.src#RID_SVXPAGE_OPTIONS_JAVA.PB_ADD.pushbutton.text"
+msgid "~Add..."
+msgstr "~Añadir..."
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.PB_PARAMETER.pushbutton.text
+msgid "~Parameters..."
+msgstr "~Parámetros..."
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.PB_CLASSPATH.pushbutton.text
+msgid "~Class Path..."
+msgstr "Ruta de ~clase..."
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.STR_INSTALLED_IN.string.text
+msgid "Location: "
+msgstr "Ubicación: "
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.STR_ACCESSIBILITY.string.text
+msgid "with accessibility support"
+msgstr "con soporte de accesibilidad"
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.STR_ADDDLGTEXT.string.text
+msgid "Select a Java Runtime Environment"
+msgstr "Seleccionar un entorno de ejecución de Java"
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.STR_HEADER_VENDOR.string.text
+msgid "Vendor"
+msgstr "Fabricante"
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.STR_HEADER_VERSION.string.text
+msgid "Version"
+msgstr "Versión"
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.STR_HEADER_FEATURES.string.text
+msgid "Features"
+msgstr "Características"
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.tabpage.text
+msgctxt "optjava.src#RID_SVXPAGE_OPTIONS_JAVA.tabpage.text"
+msgid "Java"
+msgstr "Java"
+
+#: optjava.src#RID_SVXDLG_JAVA_PARAMETER.FT_PARAMETER.fixedtext.text
+msgid "Java start ~parameter"
+msgstr "~Parámetro de inicio de Java"
+
+#: optjava.src#RID_SVXDLG_JAVA_PARAMETER.PB_ASSIGN.pushbutton.text
+msgid "~Assign"
+msgstr "~Asignar"
+
+#: optjava.src#RID_SVXDLG_JAVA_PARAMETER.FT_ASSIGNED.fixedtext.text
+msgid "Assig~ned start parameters"
+msgstr "Parámetros de inicio asig~nados"
+
+#: optjava.src#RID_SVXDLG_JAVA_PARAMETER.FT_EXAMPLE.fixedtext.text
+msgid "For example: -Dmyprop=c:\\program files\\java"
+msgstr "Por ejemplo: -Dmyprop=c:\\program files\\java"
+
+#: optjava.src#RID_SVXDLG_JAVA_PARAMETER.PB_REMOVE.pushbutton.text
+msgctxt "optjava.src#RID_SVXDLG_JAVA_PARAMETER.PB_REMOVE.pushbutton.text"
+msgid "~Remove"
+msgstr "~Eliminar"
+
+#: optjava.src#RID_SVXDLG_JAVA_PARAMETER.modaldialog.text
+msgid "Java Start Parameters"
+msgstr "Parámetros de inicio de Java"
+
+#: optjava.src#RID_SVXDLG_JAVA_CLASSPATH.FT_PATH.fixedtext.text
+msgid "A~ssigned folders and archives"
+msgstr "Carpetas y paquetes a~signados"
+
+#: optjava.src#RID_SVXDLG_JAVA_CLASSPATH.PB_ADDARCHIVE.pushbutton.text
+msgid "~Add Archive..."
+msgstr "~Añadir paquete..."
+
+#: optjava.src#RID_SVXDLG_JAVA_CLASSPATH.PB_ADDPATH.pushbutton.text
+msgid "Add ~Folder"
+msgstr "Añadir ~carpeta"
+
+#: optjava.src#RID_SVXDLG_JAVA_CLASSPATH.PB_REMOVE_PATH.pushbutton.text
+msgctxt "optjava.src#RID_SVXDLG_JAVA_CLASSPATH.PB_REMOVE_PATH.pushbutton.text"
+msgid "~Remove"
+msgstr "~Eliminar"
+
+#: optjava.src#RID_SVXDLG_JAVA_CLASSPATH.modaldialog.text
+msgid "Class Path"
+msgstr "Ruta de clase"
+
+#: optjava.src#RID_SVXERR_JRE_NOT_RECOGNIZED.errorbox.text
+msgid ""
+"The folder you selected does not contain a Java runtime environment.\n"
+"Please select a different folder."
+msgstr ""
+"La carpeta seleccionada no contiene un entorno de ejecución de Java.\n"
+"Seleccione una carpeta diferente."
+
+#: optjava.src#RID_SVXERR_JRE_FAILED_VERSION.errorbox.text
+msgid ""
+"The Java runtime environment you selected is not the required version.\n"
+"Please select a different folder."
+msgstr ""
+"La versión del entorno de ejecución de Java seleccionado no es la requerida.\n"
+"Seleccione una carpeta diferente."
+
+#: optjava.src#RID_SVX_MSGBOX_JAVA_RESTART.warningbox.text
+msgid ""
+"For the selected Java runtime environment to work properly, %PRODUCTNAME must be restarted.\n"
+"Please restart %PRODUCTNAME now."
+msgstr ""
+"Debe reiniciar %PRODUCTNAME para que el entorno de ejecución de Java seleccionado funcione adecuadamente.\n"
+"Reinicie %PRODUCTNAME ahora."
+
+#: optjava.src#RID_SVX_MSGBOX_OPTIONS_RESTART.warningbox.text
+msgid ""
+"You have to restart %PRODUCTNAME so the new or modified values can take effect.\n"
+"Please restart %PRODUCTNAME now."
+msgstr ""
+"Necesita reiniciar %PRODUCTNAME para que los valores nuevos o modificados surtan efecto.\n"
+"Reinicie %PRODUCTNAME ahora."
+
+#: optmemory.src#OFA_TP_MEMORY.GB_UNDO.fixedline.text
+msgid "Undo"
+msgstr "Deshacer"
+
+#: optmemory.src#OFA_TP_MEMORY.FT_UNDO.fixedtext.text
+msgid "Number of steps"
+msgstr "Cantidad de pasos"
+
+#: optmemory.src#OFA_TP_MEMORY.GB_GRAPHICCACHE.fixedline.text
+msgid "Graphics cache"
+msgstr "Caché de imágenes"
+
+#: optmemory.src#OFA_TP_MEMORY.FT_GRAPHICCACHE.fixedtext.text
+msgid "Use for %PRODUCTNAME"
+msgstr "Usar para %PRODUCTNAME"
+
+#: optmemory.src#OFA_TP_MEMORY.FT_GRAPHICCACHE_UNIT.fixedtext.text
+msgctxt "optmemory.src#OFA_TP_MEMORY.FT_GRAPHICCACHE_UNIT.fixedtext.text"
+msgid "MB"
+msgstr "MB"
+
+#: optmemory.src#OFA_TP_MEMORY.FT_GRAPHICOBJECTCACHE.fixedtext.text
+msgid "Memory per object"
+msgstr "Memoria por objeto"
+
+#: optmemory.src#OFA_TP_MEMORY.FT_GRAPHICOBJECTCACHE_UNIT.fixedtext.text
+msgctxt "optmemory.src#OFA_TP_MEMORY.FT_GRAPHICOBJECTCACHE_UNIT.fixedtext.text"
+msgid "MB"
+msgstr "MB"
+
+#: optmemory.src#OFA_TP_MEMORY.FT_GRAPHICOBJECTTIME.fixedtext.text
+msgid "Remove from memory after"
+msgstr "Eliminar de la memoria después de"
+
+#: optmemory.src#OFA_TP_MEMORY.FT_GRAPHICOBJECTTIME_UNIT.fixedtext.text
+msgid "hh:mm"
+msgstr "hh:mm"
+
+#: optmemory.src#OFA_TP_MEMORY.GB_OLECACHE.fixedline.text
+msgid "Cache for inserted objects"
+msgstr "Caché para los objetos insertados"
+
+#: optmemory.src#OFA_TP_MEMORY.FT_OLECACHE.fixedtext.text
+msgid "Number of objects"
+msgstr "Número de objetos"
+
+#: optmemory.src#OFA_TP_MEMORY.FL_QUICKLAUNCH.fixedline.text
+msgid "%PRODUCTNAME Quickstarter"
+msgstr "Inicio rápido de %PRODUCTNAME"
+
+#: optmemory.src#OFA_TP_MEMORY.CB_QUICKLAUNCH.checkbox.text
+msgid "Load %PRODUCTNAME during system start-up"
+msgstr "Cargar %PRODUCTNAME durante el inicio del sistema"
+
+#: optmemory.src#OFA_TP_MEMORY.STR_QUICKLAUNCH_UNX.string.text
+msgid "Enable systray Quickstarter"
+msgstr "Habilitar el inicio rápido en la bandeja del sistema"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.FL_MISCELLANEOUS.fixedline.text
+msgid "Miscellaneous options"
+msgstr "Otras opciones"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_ACCESSIBILITY_TOOL.checkbox.text
+msgid "Support ~assistive technology tools (program restart required)"
+msgstr "Habilitar las herramientas de tecnología de ~asistencia (se debe reiniciar el programa)"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_TEXTSELECTION.checkbox.text
+msgid "Use te~xt selection cursor in read-only text documents"
+msgstr "Usar el cursor de selección en los documentos de te~xto de sólo lectura"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_ANIMATED_GRAPHICS.checkbox.text
+msgid "Allow animated ~graphics"
+msgstr "Permitir ~imágenes animadas"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_ANIMATED_TEXTS.checkbox.text
+msgid "Allow animated ~text"
+msgstr "Permitir ~texto animado"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_TIPHELP.checkbox.text
+msgid "~Help tips disappear after "
+msgstr "Los consejos emer~gentes desaparecen tras "
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.FT_TIPHELP.fixedtext.text
+msgid "seconds"
+msgstr "segundos"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.FL_HC_OPTIONS.fixedline.text
+msgid "Options for high contrast appearance"
+msgstr "Opciones para la apariencia de alto contraste"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_AUTO_DETECT_HC.checkbox.text
+msgid "Automatically ~detect high contrast mode of operating system"
+msgstr "~Detectar automáticamente el modo de alto contraste del sistema operativo"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_AUTOMATIC_FONT_COLOR.checkbox.text
+msgid "Use automatic font ~color for screen display"
+msgstr "Usar el ~color de fuente automático para la visualización en pantalla"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_PAGE_PREVIEWS.checkbox.text
+msgid "~Use system colors for page previews"
+msgstr "~Usar los colores del sistema en la vista previa de las páginas"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.FL_SEQUENCECHECKING.fixedline.text
+msgid "Sequence checking"
+msgstr "Control de secuencia"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.CB_SEQUENCECHECKING.checkbox.text
+msgid "Use se~quence checking"
+msgstr "Usar el control de se~cuencia"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.CB_RESTRICTED.checkbox.text
+msgid "Restricted"
+msgstr "Restringido"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.CB_TYPE_REPLACE.checkbox.text
+msgid "~Type and replace"
+msgstr "~Escribir y reemplazar"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.FL_CURSORCONTROL.fixedline.text
+msgid "Cursor control"
+msgstr "Control del cursor"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.FT_MOVEMENT.fixedtext.text
+msgid "Movement"
+msgstr "Movimiento"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.RB_MOVEMENT_LOGICAL.radiobutton.text
+msgid "Lo~gical"
+msgstr "Ló~gico"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.RB_MOVEMENT_VISUAL.radiobutton.text
+msgid "~Visual"
+msgstr "~Visual"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.FL_GENERAL.fixedline.text
+msgid "General options"
+msgstr "Opciones generales"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.FT_NUMERALS.fixedtext.text
+msgid "~Numerals"
+msgstr "~Numerales"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.LB_NUMERALS.1.stringlist.text
+msgid "Arabic"
+msgstr "Arábigo"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.LB_NUMERALS.2.stringlist.text
+msgid "Hindi"
+msgstr "Hindi"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.LB_NUMERALS.3.stringlist.text
+msgctxt "optctl.src#RID_SVXPAGE_OPTIONS_CTL.LB_NUMERALS.3.stringlist.text"
+msgid "System"
+msgstr "Sistema"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.LB_NUMERALS.4.stringlist.text
+msgid "Context"
+msgstr "Contexto"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.tabpage.text
+msgctxt "optctl.src#RID_SVXPAGE_OPTIONS_CTL.tabpage.text"
+msgid "Complex Text Layout"
+msgstr "Disposición compleja de texto (CTL)"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.FL_POOLING.fixedline.text
+msgid "Connection pool"
+msgstr "Persistencia de conexiones"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.CB_POOL_CONNS.checkbox.text
+msgid "Connection pooling enabled"
+msgstr "Activar conexiones persistentes"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.FT_DRIVERS.fixedtext.text
+msgid "Drivers known in %PRODUCTNAME"
+msgstr "Controladores registrados en %PRODUCTNAME"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.FT_DRIVERLABEL.fixedtext.text
+msgid "Current driver:"
+msgstr "Controlador actual:"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.CB_DRIVERPOOLING.checkbox.text
+msgid "Enable pooling for this driver"
+msgstr "Activar conexiones persistentes para este controlador"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.FT_TIMEOUT.fixedtext.text
+msgid "Timeout (seconds)"
+msgstr "Tiempo de espera (segundos)"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.STR_DRIVER_NAME.string.text
+msgid "Driver name"
+msgstr "Nombre del controlador"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.STR_POOLED_FLAG.string.text
+msgid "Pool"
+msgstr "Persistente"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.STR_POOL_TIMEOUT.string.text
+msgid "Timeout"
+msgstr "Tiempo de espera"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.STR_YES.string.text
+msgid "Yes"
+msgstr "Sí"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.STR_NO.string.text
+msgid "No"
+msgstr "No"
+
+#: optgdlg.src#OFA_TP_MISC.FL_HELP.fixedline.text
+msgctxt "optgdlg.src#OFA_TP_MISC.FL_HELP.fixedline.text"
+msgid "Help"
+msgstr "Ayuda"
+
+#: optgdlg.src#OFA_TP_MISC.CB_TOOLTIP.checkbox.text
+msgid "~Tips"
+msgstr "~Consejos"
+
+#: optgdlg.src#OFA_TP_MISC.CB_EXTHELP.checkbox.text
+msgid "~Extended tips"
+msgstr "Consejos e~xtendidos"
+
+#: optgdlg.src#OFA_TP_MISC.FT_HELPFORMAT.fixedtext.text
+msgid "Help ~formatting"
+msgstr "~Formato de la ayuda"
+
+#: optgdlg.src#OFA_TP_MISC.LB_HELPFORMAT.1.stringlist.text
+msgid "Default"
+msgstr "Predeterminado"
+
+#: optgdlg.src#OFA_TP_MISC.LB_HELPFORMAT.2.stringlist.text
+msgid "High Contrast #1"
+msgstr "Alto contraste #1"
+
+#: optgdlg.src#OFA_TP_MISC.LB_HELPFORMAT.3.stringlist.text
+msgid "High Contrast #2"
+msgstr "Alto contraste #2"
+
+#: optgdlg.src#OFA_TP_MISC.LB_HELPFORMAT.4.stringlist.text
+msgid "High Contrast Black"
+msgstr "Alto contraste en negro"
+
+#: optgdlg.src#OFA_TP_MISC.LB_HELPFORMAT.5.stringlist.text
+msgid "High Contrast White"
+msgstr "Alto contraste en blanco"
+
+#: optgdlg.src#OFA_TP_MISC.CB_HELPAGENT.checkbox.text
+msgid "~Help Agent"
+msgstr "~Ayudante"
+
+#: optgdlg.src#OFA_TP_MISC.PB_HELPAGENT_RESET.pushbutton.text
+msgid "~Reset Help Agent"
+msgstr "~Restablecer el ayudante"
+
+#: optgdlg.src#OFA_TP_MISC.FL_FILEDLG.fixedline.text
+msgid "Open/Save dialogs"
+msgstr "Diálogos para abrir/guardar"
+
+#: optgdlg.src#OFA_TP_MISC.CB_FILEDLG.checkbox.text
+msgid "~Use %PRODUCTNAME dialogs"
+msgstr "~Usar los diálogos de %PRODUCTNAME"
+
+#: optgdlg.src#OFA_TP_MISC.CB_ODMADLG.checkbox.text
+msgid "Show ODMA DMS dialogs first"
+msgstr "Mostrar primero los diálogos ODMA DMS"
+
+#: optgdlg.src#OFA_TP_MISC.FL_PRINTDLG.fixedline.text
+msgid "Print dialogs"
+msgstr "Diálogos de impresión"
+
+#: optgdlg.src#OFA_TP_MISC.CB_PRINTDLG.checkbox.text
+msgid "Use %PRODUCTNAME ~dialogs"
+msgstr "Usar los ~diálogos de %PRODUCTNAME"
+
+#: optgdlg.src#OFA_TP_MISC.FL_DOCSTATUS.fixedline.text
+msgid "Document status"
+msgstr "Estado del documento"
+
+#: optgdlg.src#OFA_TP_MISC.CB_DOCSTATUS.checkbox.text
+msgid "~Printing sets \"document modified\" status"
+msgstr "Considerar como modificado el documento al ~imprimir"
+
+#: optgdlg.src#OFA_TP_MISC.CB_SAVE_ALWAYS.checkbox.text
+msgid "Allow to save document even when the document is not modified"
+msgstr "Permitir guardar el documento aunque no haya sido modificado"
+
+#: optgdlg.src#OFA_TP_MISC.FL_TWOFIGURE.fixedline.text
+msgid "Year (two digits)"
+msgstr "Año (dos dígitos)"
+
+#: optgdlg.src#OFA_TP_MISC.FT_INTERPRET.fixedtext.text
+msgid "Interpret as years between"
+msgstr "Interpretar como años entre"
+
+#: optgdlg.src#OFA_TP_MISC.FT_TOYEAR.fixedtext.text
+msgid "and "
+msgstr "y "
+
+#: optgdlg.src#OFA_TP_MISC.CB_EXPERIMENTAL.checkbox.text
+msgid "Enable experimental (unstable) features"
+msgstr "Activar las características experimentales (inestables)"
+
+#: optgdlg.src#OFA_TP_MISC.CB_MACRORECORDER.checkbox.text
+msgid "Enable macro recording (limited)"
+msgstr "Activar grabación de macros (limitada)"
+
+#: optgdlg.src#OFA_TP_VIEW.FL_USERINTERFACE.fixedline.text
+msgid "User Interface"
+msgstr "Interfaz del usuario"
+
+#: optgdlg.src#OFA_TP_VIEW.FT_WINDOWSIZE.fixedtext.text
+msgid "Sc~aling"
+msgstr "Esc~ala"
+
+#: optgdlg.src#OFA_TP_VIEW.FT_ICONSIZESTYLE.fixedtext.text
+msgid "Icon size and style"
+msgstr "Tamaño y estilo de los iconos"
+
+#: optgdlg.src#OFA_TP_VIEW.STR_ICONSIZE.string.text
+msgid "Icon size"
+msgstr "Tamaño de los iconos"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSIZE.1.stringlist.text
+msgctxt "optgdlg.src#OFA_TP_VIEW.LB_ICONSIZE.1.stringlist.text"
+msgid "Automatic"
+msgstr "Automático"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSIZE.2.stringlist.text
+msgid "Small"
+msgstr "Pequeño"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSIZE.3.stringlist.text
+msgid "Large"
+msgstr "Grande"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.1.stringlist.text
+msgctxt "optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.1.stringlist.text"
+msgid "Automatic"
+msgstr "Automático"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.2.stringlist.text
+msgid "Galaxy (default)"
+msgstr "Galaxia (predeterminado)"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.3.stringlist.text
+msgid "High Contrast"
+msgstr "Contraste alto"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.4.stringlist.text
+msgid "Industrial"
+msgstr "Industrial"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.5.stringlist.text
+msgid "Crystal"
+msgstr "Cristal"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.6.stringlist.text
+msgid "Tango"
+msgstr "Tango"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.7.stringlist.text
+msgid "Oxygen"
+msgstr "Oxígeno"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.8.stringlist.text
+msgid "Classic"
+msgstr "Clásico"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.9.stringlist.text
+msgid "Human"
+msgstr "Humano"
+
+#: optgdlg.src#OFA_TP_VIEW.CB_SYSTEM_FONT.checkbox.text
+msgid "Use system ~font for user interface"
+msgstr "Usar la ~fuente del sistema para la interfaz del usuario"
+
+#: optgdlg.src#OFA_TP_VIEW.CB_FONTANTIALIASING.checkbox.text
+msgid "Screen font antialiasing"
+msgstr "Suavizar las fuentes en la pantalla"
+
+#: optgdlg.src#OFA_TP_VIEW.FT_POINTLIMIT_LABEL.fixedtext.text
+msgid "from"
+msgstr "a partir de"
+
+#: optgdlg.src#OFA_TP_VIEW.FT_POINTLIMIT_UNIT.fixedtext.text
+msgid "Pixels"
+msgstr "Píxeles"
+
+#: optgdlg.src#OFA_TP_VIEW.FL_MENU.fixedline.text
+msgid "Menu"
+msgstr "Menú"
+
+#: optgdlg.src#OFA_TP_VIEW.FT_MENU_ICONS.fixedtext.text
+msgid "Icons in menus"
+msgstr "Iconos en los menús"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MENU_ICONS.1.stringlist.text
+msgctxt "optgdlg.src#OFA_TP_VIEW.LB_MENU_ICONS.1.stringlist.text"
+msgid "Automatic"
+msgstr "Automático"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MENU_ICONS.2.stringlist.text
+msgid "Hide"
+msgstr "Ocultar"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MENU_ICONS.3.stringlist.text
+msgid "Show"
+msgstr "Mostrar"
+
+#: optgdlg.src#OFA_TP_VIEW.FL_FONTLISTS.fixedline.text
+msgid "Font Lists"
+msgstr "Listas de fuentes"
+
+#: optgdlg.src#OFA_TP_VIEW.CB_FONT_SHOW.checkbox.text
+msgid "Show p~review of fonts"
+msgstr "Mostrar p~revisualización de las fuentes"
+
+#: optgdlg.src#OFA_TP_VIEW.CB_FONT_HISTORY.checkbox.text
+msgid "Show font h~istory"
+msgstr "Mostrar h~istorial de fuentes"
+
+#: optgdlg.src#OFA_TP_VIEW.FL_RENDERING.fixedline.text
+msgid "Graphics output"
+msgstr "Salida gráfica"
+
+#: optgdlg.src#OFA_TP_VIEW.CB_USE_HARDACCELL.checkbox.text
+msgid "Use hardware acceleration"
+msgstr "Usar la aceleración por hardware"
+
+#: optgdlg.src#OFA_TP_VIEW.CB_USE_ANTIALIASE.checkbox.text
+msgid "Use Anti-Aliasing"
+msgstr "Usar el suavizado de fuentes"
+
+#: optgdlg.src#OFA_TP_VIEW.FL_MOUSE.fixedline.text
+msgid "Mouse"
+msgstr "Ratón"
+
+#: optgdlg.src#OFA_TP_VIEW.FT_MOUSEPOS.fixedtext.text
+msgid "Mouse positioning"
+msgstr "Posicionamiento del ratón"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MOUSEPOS.1.stringlist.text
+msgid "Default button"
+msgstr "En el botón predeterminado"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MOUSEPOS.2.stringlist.text
+msgid "Dialog center"
+msgstr "Al centro del diálogo"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MOUSEPOS.3.stringlist.text
+msgid "No automatic positioning"
+msgstr "Sin posicionamiento automático"
+
+#: optgdlg.src#OFA_TP_VIEW.FT_MOUSEMIDDLE.fixedtext.text
+msgid "Middle mouse button"
+msgstr "Botón central del ratón"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MOUSEMIDDLE.1.stringlist.text
+msgid "No function"
+msgstr "Sin función"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MOUSEMIDDLE.2.stringlist.text
+msgid "Automatic scrolling"
+msgstr "Desplazamiento automático"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MOUSEMIDDLE.3.stringlist.text
+msgid "Paste clipboard"
+msgstr "Pegar el portapapeles"
+
+#: optgdlg.src#OFA_TP_VIEW.FL_SELECTION.fixedline.text
+msgid "Selection"
+msgstr "Selección"
+
+#: optgdlg.src#OFA_TP_VIEW.CB_SELECTION.checkbox.text
+msgid "Transparency"
+msgstr "Transparencia"
+
+#: optgdlg.src#OFA_TP_VIEW.MF_SELECTION.metricfield.text
+msgid "%"
+msgstr "%"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FL_UI_LANG.fixedline.text
+msgid "Language of"
+msgstr "Idioma para"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_USERINTERFACE.fixedtext.text
+msgid "~User interface"
+msgstr "Interfaz del ~usuario"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_LOCALESETTING.fixedtext.text
+msgid "Locale setting"
+msgstr "Configuración regional"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_DECIMALSEPARATOR.fixedtext.text
+msgid "Decimal separator key"
+msgstr "Símbolo del separador decimal"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.CB_DECIMALSEPARATOR.checkbox.text
+msgid "~Same as locale setting ( %1 )"
+msgstr "El ~mismo de la configuración regional ( %1 )"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_CURRENCY.fixedtext.text
+msgid "~Default currency"
+msgstr "Moneda ~predeterminada"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FL_LINGU_LANG.fixedline.text
+msgid "Default languages for documents"
+msgstr "Idiomas predeterminados para los documentos"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_WEST_LANG.fixedtext.text
+msgid "Western"
+msgstr "Occidental"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_ASIAN_LANG.fixedtext.text
+msgid "Asian"
+msgstr "Asiático"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_COMPLEX_LANG.fixedtext.text
+msgid "C~TL"
+msgstr "C~TL"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.CB_CURRENT_DOC.checkbox.text
+msgid "For the current document only"
+msgstr "Sólo para el documento actual"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FL_ENHANCED.fixedline.text
+msgid "Enhanced language support"
+msgstr "Manejo avanzado de idiomas"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.CB_ASIANSUPPORT.checkbox.text
+msgid "E~nabled for Asian languages"
+msgstr "~Habilitado para los idiomas asiáticos"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.CB_CTLSUPPORT.checkbox.text
+msgid "Ena~bled for complex text layout (CTL)"
+msgstr "Ha~bilitado para la disposición compleja de texto (CTL)"
+
+#: optgdlg.src#RID_SVX_MSGBOX_LANGUAGE_RESTART.infobox.text
+msgid "The language setting of the user interface has been updated and will take effect the next time you start %PRODUCTNAME %PRODUCTVERSION"
+msgstr "Se actualizó la configuración de idioma de la interfaz del usuario. Entrará en vigencia la próxima vez que inicie %PRODUCTNAME %PRODUCTVERSION"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.GB_WORD.fixedline.text
+msgid "Microsoft Word 97/2000/XP"
+msgstr "Microsoft Word 97/2000/XP"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_WBAS_CODE.checkbox.text
+msgid "Load Basic ~code"
+msgstr "Cargar el ~código Basic"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_WBAS_WBCTBL.checkbox.text
+msgctxt "optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_WBAS_WBCTBL.checkbox.text"
+msgid "E~xecutable code"
+msgstr "Código e~jecutable"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_WBAS_STG.checkbox.text
+msgid "Save ~original Basic code"
+msgstr "Guardar el código Basic ~original"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.GB_EXCEL.fixedline.text
+msgid "Microsoft Excel 97/2000/XP"
+msgstr "Microsoft Excel 97/2000/XP"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_EBAS_CODE.checkbox.text
+msgid "Lo~ad Basic code"
+msgstr "C~argar el código Basic"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_EBAS_EXECTBL.checkbox.text
+msgctxt "optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_EBAS_EXECTBL.checkbox.text"
+msgid "E~xecutable code"
+msgstr "Código e~jecutable"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_EBAS_STG.checkbox.text
+msgid "Sa~ve original Basic code"
+msgstr "Guar~dar el código Basic original"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.GB_PPOINT.fixedline.text
+msgid "Microsoft PowerPoint 97/2000/XP"
+msgstr "Microsoft PowerPoint 97/2000/XP"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_PBAS_CODE.checkbox.text
+msgid "Load Ba~sic code"
+msgstr "Cargar el código Ba~sic"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_PBAS_STG.checkbox.text
+msgid "Sav~e original Basic code"
+msgstr "Guarda~r el código Basic original"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.ST_HEADER1.string.text
+msgid "[L]"
+msgstr "[C]"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.ST_HEADER2.string.text
+msgid "[S]"
+msgstr "[G]"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.FT_HEADER1_EXPLANATION.fixedtext.text
+msgid "[L]: Load and convert the object"
+msgstr "[C]: Cargar y convertir el objeto"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.FT_HEADER2_EXPLANATION.fixedtext.text
+msgid "[S]: Convert and save the object"
+msgstr "[G]: Convertir y guardar el objeto"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.ST_CHG_MATH.string.text
+msgid "MathType to %PRODUCTNAME Math or reverse"
+msgstr "De MathType a %PRODUCTNAME Math o a la inversa"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.ST_CHG_WRITER.string.text
+msgid "WinWord to %PRODUCTNAME Writer or reverse"
+msgstr "De WinWord a %PRODUCTNAME Writer o a la inversa"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.ST_CHG_CALC.string.text
+msgid "Excel to %PRODUCTNAME Calc or reverse"
+msgstr "De Excel a %PRODUCTNAME Calc o a la inversa"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.ST_CHG_IMPRESS.string.text
+msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
+msgstr "De PowerPoint a %PRODUCTNAME Impress o a la inversa"
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.FT_TYPE.fixedtext.text
+msgid "Registered name"
+msgstr "Nombre registrado"
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.FT_PATH.fixedtext.text
+msgid "Database file"
+msgstr "Archivo de base de datos"
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.BTN_NEW.pushbutton.text
+msgctxt "dbregister.src#RID_SFXPAGE_DBREGISTER.BTN_NEW.pushbutton.text"
+msgid "~New..."
+msgstr "~Nuevo..."
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.BTN_EDIT.pushbutton.text
+msgctxt "dbregister.src#RID_SFXPAGE_DBREGISTER.BTN_EDIT.pushbutton.text"
+msgid "~Edit..."
+msgstr "~Editar..."
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.BTN_DELETE.pushbutton.text
+msgctxt "dbregister.src#RID_SFXPAGE_DBREGISTER.BTN_DELETE.pushbutton.text"
+msgid "~Delete"
+msgstr "E~liminar"
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.GB_STD.fixedline.text
+msgctxt "dbregister.src#RID_SFXPAGE_DBREGISTER.GB_STD.fixedline.text"
+msgid "Registered databases"
+msgstr "Bases de datos registradas"
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.tabpage.text
+msgctxt "dbregister.src#RID_SFXPAGE_DBREGISTER.tabpage.text"
+msgid "Registered databases"
+msgstr "Bases de datos registradas"
+
+#: certpath.src#RID_SVXDLG_CERTPATH.FL_CERTPATH.fixedline.text
+msgctxt "certpath.src#RID_SVXDLG_CERTPATH.FL_CERTPATH.fixedline.text"
+msgid "Certificate Path"
+msgstr "Ruta del certificado"
+
+#: certpath.src#RID_SVXDLG_CERTPATH.FT_CERTPATH.fixedtext.text
+msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures:"
+msgstr "Seleccione o añada el directorio correcto del certificado Network Security Services para usarlo para las firmas digitales:"
+
+#: certpath.src#RID_SVXDLG_CERTPATH.PB_ADD.pushbutton.text
+msgctxt "certpath.src#RID_SVXDLG_CERTPATH.PB_ADD.pushbutton.text"
+msgid "~Add..."
+msgstr "~Añadir..."
+
+#: certpath.src#RID_SVXDLG_CERTPATH.STR_ADDDLGTEXT.string.text
+msgid "Select a Certificate directory"
+msgstr "Seleccione un directorio del certificado"
+
+#: certpath.src#RID_SVXDLG_CERTPATH.STR_MANUAL.string.text
+msgid "manual"
+msgstr "manual"
+
+#: certpath.src#RID_SVXDLG_CERTPATH.STR_PROFILE.string.text
+msgid "Profile"
+msgstr "Perfil"
+
+#: certpath.src#RID_SVXDLG_CERTPATH.STR_DIRECTORY.string.text
+msgid "Directory"
+msgstr "Directorio"
+
+#: certpath.src#RID_SVXDLG_CERTPATH.modaldialog.text
+msgctxt "certpath.src#RID_SVXDLG_CERTPATH.modaldialog.text"
+msgid "Certificate Path"
+msgstr "Ruta del certificado"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.FL_EDIT_MODULES_OPTIONS.fixedline.text
+msgctxt "optlingu.src#RID_SVXDLG_EDIT_MODULES.FL_EDIT_MODULES_OPTIONS.fixedline.text"
+msgid "Options"
+msgstr "Opciones"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.FT_EDIT_MODULES_LANGUAGE.fixedtext.text
+msgid "Language"
+msgstr "Idioma"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.PB_EDIT_MODULES_PRIO_UP.pushbutton.text
+msgid "Move Up"
+msgstr "Hacia arriba"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.PB_EDIT_MODULES_PRIO_DOWN.pushbutton.text
+msgid "Move Down"
+msgstr "Hacia abajo"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.PB_EDIT_MODULES_PRIO_BACK.pushbutton.text
+msgid "~Back"
+msgstr "~Volver"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.FT_EDIT_MODULES_NEWDICTSLINK.fixedtext.text
+msgctxt "optlingu.src#RID_SVXDLG_EDIT_MODULES.FT_EDIT_MODULES_NEWDICTSLINK.fixedtext.text"
+msgid "~Get more dictionaries online..."
+msgstr "~Obtener más diccionarios en línea..."
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.PB_OK.okbutton.text
+msgctxt "optlingu.src#RID_SVXDLG_EDIT_MODULES.PB_OK.okbutton.text"
+msgid "Close"
+msgstr "Cerrar"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.ST_SPELL.string.text
+msgid "Spelling"
+msgstr "Ortografía"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.ST_HYPH.string.text
+msgctxt "optlingu.src#RID_SVXDLG_EDIT_MODULES.ST_HYPH.string.text"
+msgid "Hyphenation"
+msgstr "Separación silábica"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.ST_THES.string.text
+msgid "Thesaurus"
+msgstr "Sinónimos"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.ST_GRAMMAR.string.text
+msgid "Grammar"
+msgstr "Gramática"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.modaldialog.text
+msgid "Edit Modules"
+msgstr "Editar módulos"
+
+#: optlingu.src#RID_SVXDLG_LNG_ED_NUM_PREBREAK.STR_NUM_PRE_BREAK_DLG.string.text
+msgid "Characters before break"
+msgstr "Caracteres antes de separar"
+
+#: optlingu.src#RID_SVXDLG_LNG_ED_NUM_PREBREAK.STR_NUM_POST_BREAK_DLG.string.text
+msgid "Characters after break"
+msgstr "Caracteres después de separar"
+
+#: optlingu.src#RID_SVXDLG_LNG_ED_NUM_PREBREAK.STR_NUM_MIN_WORDLEN_DLG.string.text
+msgid "Minimal word length"
+msgstr "Tamaño minímo de palabra"
+
+#: optlingu.src#RID_SVXDLG_LNG_ED_NUM_PREBREAK.modaldialog.text
+msgctxt "optlingu.src#RID_SVXDLG_LNG_ED_NUM_PREBREAK.modaldialog.text"
+msgid "Hyphenation"
+msgstr "Separación silábica"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.FL_LINGUISTIC.fixedline.text
+msgctxt "optlingu.src#RID_SFXPAGE_LINGU.FL_LINGUISTIC.fixedline.text"
+msgid "Writing aids"
+msgstr "Asistencia a la escritura"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.FT_LINGU_MODULES.fixedtext.text
+msgid "Available language modules"
+msgstr "Módulos de idioma disponibles"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.PB_LINGU_MODULES_EDIT.pushbutton.text
+msgctxt "optlingu.src#RID_SFXPAGE_LINGU.PB_LINGU_MODULES_EDIT.pushbutton.text"
+msgid "~Edit..."
+msgstr "~Editar..."
+
+#: optlingu.src#RID_SFXPAGE_LINGU.FT_LINGU_DICS.fixedtext.text
+msgctxt "optlingu.src#RID_SFXPAGE_LINGU.FT_LINGU_DICS.fixedtext.text"
+msgid "User-defined dictionaries"
+msgstr "Diccionarios definidos por el usuario"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.PB_LINGU_DICS_NEW_DIC.pushbutton.text
+msgctxt "optlingu.src#RID_SFXPAGE_LINGU.PB_LINGU_DICS_NEW_DIC.pushbutton.text"
+msgid "~New..."
+msgstr "~Nuevo..."
+
+#: optlingu.src#RID_SFXPAGE_LINGU.PB_LINGU_DICS_EDIT_DIC.pushbutton.text
+msgid "Ed~it..."
+msgstr "Ed~itar..."
+
+#: optlingu.src#RID_SFXPAGE_LINGU.PB_LINGU_DICS_DEL_DIC.pushbutton.text
+msgctxt "optlingu.src#RID_SFXPAGE_LINGU.PB_LINGU_DICS_DEL_DIC.pushbutton.text"
+msgid "~Delete"
+msgstr "E~liminar"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.FT_LINGU_OPTIONS.fixedtext.text
+msgid "~Options"
+msgstr "~Opciones"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.PB_LINGU_OPTIONS_EDIT.pushbutton.text
+msgid "Edi~t..."
+msgstr "Edi~tar..."
+
+#: optlingu.src#RID_SFXPAGE_LINGU.FT_LINGU_OPTIONS_MOREDICTS.fixedtext.text
+msgctxt "optlingu.src#RID_SFXPAGE_LINGU.FT_LINGU_OPTIONS_MOREDICTS.fixedtext.text"
+msgid "~Get more dictionaries online..."
+msgstr "~Obtener más diccionarios en línea..."
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_CAPITAL_WORDS.string.text
+msgid "Check uppercase words"
+msgstr "Revisar palabras en mayúsculas"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_WORDS_WITH_DIGITS.string.text
+msgid "Check words with numbers "
+msgstr "Revisar palabras con números "
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_CAPITALIZATION.string.text
+msgid "Check capitalization"
+msgstr "Revisar el uso de mayúsculas y minúsculas"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_SPELL_SPECIAL.string.text
+msgid "Check special regions"
+msgstr "Revisar regiones especiales"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_SPELL_AUTO.string.text
+msgid "Check spelling as you type"
+msgstr "Revisar la ortografía al escribir"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_GRAMMAR_AUTO.string.text
+msgid "Check grammar as you type"
+msgstr "Revisar la gramática al escribir"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_NUM_MIN_WORDLEN.string.text
+msgid "Minimal number of characters for hyphenation: "
+msgstr "Cantidad mínima de caracteres para la separación silábica: "
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_NUM_PRE_BREAK.string.text
+msgid "Characters before line break: "
+msgstr "Caracteres antes del salto de línea: "
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_NUM_POST_BREAK.string.text
+msgid "Characters after line break: "
+msgstr "Caracteres después del salto de línea: "
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_HYPH_AUTO.string.text
+msgid "Hyphenate without inquiry"
+msgstr "Separar en sílabas sin preguntar"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_HYPH_SPECIAL.string.text
+msgid "Hyphenate special regions"
+msgstr "Separación silábica en regiones especiales"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_LINGU_MODULES_EDIT.string.text
+msgid "Edit Available language modules"
+msgstr "Editar los módulos de idioma disponibles"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_LINGU_DICS_EDIT_DIC.string.text
+msgid "Edit User-defined dictionaries"
+msgstr "Editar los diccionarios definidos por el usuario"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_LINGU_OPTIONS_EDIT.string.text
+msgid "Edit Options"
+msgstr "Editar las opciones"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.tabpage.text
+msgctxt "optlingu.src#RID_SFXPAGE_LINGU.tabpage.text"
+msgid "Options"
+msgstr "Opciones"
+
+#: optlingu.src#RID_SFXQB_DELDICT.querybox.text
+msgid "Do you want to delete the dictionary?"
+msgstr "¿Desea eliminar el diccionario?"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.FL_TREAT_AS_EQUAL.fixedline.text
+msgid "Treat as equal"
+msgstr "Tratar como si fueran iguales"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_CASE.checkbox.text
+msgid "~uppercase/lowercase"
+msgstr "~mayúsculas/minúsculas"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_FULL_HALF_WIDTH.checkbox.text
+msgid "~full-width/half-width forms"
+msgstr "formas de ancho ~normal/ancho medio"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_HIRAGANA_KATAKANA.checkbox.text
+msgid "~hiragana/katakana"
+msgstr "~hiragana/katakana"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_CONTRACTIONS.checkbox.text
+msgid "~contractions (yo-on, sokuon)"
+msgstr "~contracciones (yo-on, sokuon)"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_MINUS_DASH_CHOON.checkbox.text
+msgid "~minus/dash/cho-on"
+msgstr "~menos/raya/cho-on"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_REPEAT_CHAR_MARKS.checkbox.text
+msgid "'re~peat character' marks"
+msgstr "marcas de 're~petición de carácter'"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_VARIANT_FORM_KANJI.checkbox.text
+msgid "~variant-form kanji (itaiji)"
+msgstr "forma ~variante kanji (itaiji)"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_OLD_KANA_FORMS.checkbox.text
+msgid "~old Kana forms"
+msgstr "~antiguas formas Kana"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_DIZI_DUZU.checkbox.text
+msgid "~di/zi, du/zu"
+msgstr "~di/zi, du/zu"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_BAVA_HAFA.checkbox.text
+msgid "~ba/va, ha/fa"
+msgstr "~ba/va, ha/fa"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_TSITHICHI_DHIZI.checkbox.text
+msgid "~tsi/thi/chi, dhi/zi"
+msgstr "~tsi/thi/chi, dhi/zi"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_HYUFYU_BYUVYU.checkbox.text
+msgid "h~yu/fyu, byu/vyu"
+msgstr "h~yu/fyu, byu/vyu"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_SESHE_ZEJE.checkbox.text
+msgid "~se/she, ze/je"
+msgstr "~se/she, ze/je"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_IAIYA.checkbox.text
+msgid "~ia/iya (piano/piyano)"
+msgstr "~ia/iya (piano/piyano)"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_KIKU.checkbox.text
+msgid "~ki/ku (tekisuto/tekusuto)"
+msgstr "~ki/ku (tekisuto/tekusuto)"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_PROLONGED_SOUNDMARK.checkbox.text
+msgid "Prolon~ged vowels (ka-/kaa)"
+msgstr "Vocales prolon~gadas (ka-/kaa)"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.FL_IGNORE.fixedline.text
+msgid "Ignore"
+msgstr "Ignorar"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_IGNORE_PUNCTUATION.checkbox.text
+msgid "Pu~nctuation characters"
+msgstr "Caracteres de pu~ntuación"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_IGNORE_WHITESPACES.checkbox.text
+msgid "~Whitespace characters"
+msgstr "Caracteres de espacio en ~blanco"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_IGNORE_MIDDLE_DOT.checkbox.text
+msgid "Midd~le dots"
+msgstr "P~untos centrales"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.tabpage.text
+msgctxt "optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.tabpage.text"
+msgid "Searching in Japanese"
+msgstr "Buscar en japonés"
+
+#: doclinkdialog.src#DLG_DOCUMENTLINK.FT_URL.fixedtext.text
+msgid "~Database file"
+msgstr "Archivo de ~base de datos"
+
+#: doclinkdialog.src#DLG_DOCUMENTLINK.PB_BROWSEFILE.pushbutton.text
+msgid "~Browse..."
+msgstr "~Examinar..."
+
+#: doclinkdialog.src#DLG_DOCUMENTLINK.FT_NAME.fixedtext.text
+msgid "Registered ~name"
+msgstr "~Nombre registrado"
+
+#: doclinkdialog.src#DLG_DOCUMENTLINK.STR_EDIT_LINK.string.text
+msgid "Edit Database Link"
+msgstr "Editar el enlace a la base de datos"
+
+#: doclinkdialog.src#DLG_DOCUMENTLINK.STR_NEW_LINK.string.text
+msgid "Create Database Link"
+msgstr "Crear un enlace a la base de datos"
+
+#: doclinkdialog.src#STR_LINKEDDOC_DOESNOTEXIST.string.text
+msgid ""
+"The file\n"
+"$file$\n"
+"does not exist."
+msgstr ""
+"El archivo\n"
+"$file$\n"
+"no existe"
+
+#: doclinkdialog.src#STR_LINKEDDOC_NO_SYSTEM_FILE.string.text
+msgid ""
+"The file\n"
+"$file$\n"
+"does not exist in the local file system."
+msgstr ""
+"El archivo\n"
+"$file$\n"
+"no existe en el sistema de archivos local"
+
+#: doclinkdialog.src#STR_NAME_CONFLICT.string.text
+msgid ""
+"The name '$file$' is already used for another database.\n"
+"Please choose a different name."
+msgstr ""
+"El nombre '$file$' ya se utilizó para otra base de datos.\n"
+"Elija un nombre diferente."
+
+#: doclinkdialog.src#QUERY_DELETE_CONFIRM.querybox.text
+msgid "Do you want to delete the entry?"
+msgstr "¿Quiere eliminar esta entrada?"
+
+#: optpath.src#RID_SFXPAGE_PATH.FT_TYPE.fixedtext.text
+msgid "Type"
+msgstr "Tipo"
+
+#: optpath.src#RID_SFXPAGE_PATH.FT_PATH.fixedtext.text
+msgid "Path"
+msgstr "Ruta"
+
+#: optpath.src#RID_SFXPAGE_PATH.BTN_PATH.pushbutton.text
+msgctxt "optpath.src#RID_SFXPAGE_PATH.BTN_PATH.pushbutton.text"
+msgid "~Edit..."
+msgstr "~Editar..."
+
+#: optpath.src#RID_SFXPAGE_PATH.BTN_STANDARD.pushbutton.text
+msgctxt "optpath.src#RID_SFXPAGE_PATH.BTN_STANDARD.pushbutton.text"
+msgid "~Default"
+msgstr "~Predeterminado"
+
+#: optpath.src#RID_SFXPAGE_PATH.GB_STD.fixedline.text
+msgid "Paths used by %PRODUCTNAME"
+msgstr "Rutas que utiliza %PRODUCTNAME"
+
+#: optpath.src#RID_SFXPAGE_PATH.STR_MULTIPATHDLG.string.text
+msgid "Edit Paths: %1"
+msgstr "Editar rutas: %1"
+
+#: optpath.src#RID_SFXPAGE_PATH.tabpage.text
+msgctxt "optpath.src#RID_SFXPAGE_PATH.tabpage.text"
+msgid "Paths"
+msgstr "Rutas"
+
+#: optpath.src#RID_SVXERR_OPT_DOUBLEPATHS.errorbox.text
+msgid ""
+"The configuration and mail directories must be specified as separate directories.\n"
+"Please choose a new path."
+msgstr ""
+"Los directorios de configuración y de correo deben ser distintos\n"
+"Elija una nueva ruta."
+
+#: optpath.src#RID_SVXSTR_KEY_CONFIG_DIR.string.text
+msgid "Configuration"
+msgstr "Configuración"
+
+#: optpath.src#RID_SVXSTR_KEY_WORK_PATH.string.text
+msgid "My Documents"
+msgstr "Mis documentos"
+
+#: optpath.src#RID_SVXSTR_KEY_GRAPHICS_PATH.string.text
+msgid "Graphics"
+msgstr "Imágenes"
+
+#: optpath.src#RID_SVXSTR_KEY_BITMAP_PATH.string.text
+msgid "Icons"
+msgstr "Iconos"
+
+#: optpath.src#RID_SVXSTR_KEY_PALETTE_PATH.string.text
+msgid "Palettes"
+msgstr "Paletas"
+
+#: optpath.src#RID_SVXSTR_KEY_BACKUP_PATH.string.text
+msgid "Backups"
+msgstr "Copias de seguridad"
+
+#: optpath.src#RID_SVXSTR_KEY_MODULES_PATH.string.text
+msgid "Modules"
+msgstr "Módulos"
+
+#: optpath.src#RID_SVXSTR_KEY_TEMPLATE_PATH.string.text
+msgid "Templates"
+msgstr "Plantillas"
+
+#: optpath.src#RID_SVXSTR_KEY_GLOSSARY_PATH.string.text
+msgid "AutoText"
+msgstr "Autotexto"
+
+#: optpath.src#RID_SVXSTR_KEY_DICTIONARY_PATH.string.text
+msgid "Dictionaries"
+msgstr "Diccionarios"
+
+#: optpath.src#RID_SVXSTR_KEY_HELP_DIR.string.text
+msgctxt "optpath.src#RID_SVXSTR_KEY_HELP_DIR.string.text"
+msgid "Help"
+msgstr "Ayuda"
+
+#: optpath.src#RID_SVXSTR_KEY_GALLERY_DIR.string.text
+msgid "Gallery"
+msgstr "Galería"
+
+#: optpath.src#RID_SVXSTR_KEY_STORAGE_DIR.string.text
+msgid "Message Storage"
+msgstr "Almacén de mensajes"
+
+#: optpath.src#RID_SVXSTR_KEY_TEMP_PATH.string.text
+msgid "Temporary files"
+msgstr "Archivos temporales"
+
+#: optpath.src#RID_SVXSTR_KEY_PLUGINS_PATH.string.text
+msgid "Plug-ins"
+msgstr "Complementos"
+
+#: optpath.src#RID_SVXSTR_KEY_FAVORITES_DIR.string.text
+msgid "Folder Bookmarks"
+msgstr "Marcadores de carpetas"
+
+#: optpath.src#RID_SVXSTR_KEY_FILTER_PATH.string.text
+msgid "Filters"
+msgstr "Filtros"
+
+#: optpath.src#RID_SVXSTR_KEY_ADDINS_PATH.string.text
+msgid "Add-ins"
+msgstr "Complementos"
+
+#: optpath.src#RID_SVXSTR_KEY_USERCONFIG_PATH.string.text
+msgid "User Configuration"
+msgstr "Configuración de usuario"
+
+#: optpath.src#RID_SVXSTR_KEY_USERDICTIONARY_DIR.string.text
+msgctxt "optpath.src#RID_SVXSTR_KEY_USERDICTIONARY_DIR.string.text"
+msgid "User-defined dictionaries"
+msgstr "Diccionarios definidos por el usuario"
+
+#: optpath.src#RID_SVXSTR_KEY_AUTOCORRECT_DIR.string.text
+msgid "AutoCorrect"
+msgstr "Autocorrección"
+
+#: optpath.src#RID_SVXSTR_KEY_LINGUISTIC_DIR.string.text
+msgctxt "optpath.src#RID_SVXSTR_KEY_LINGUISTIC_DIR.string.text"
+msgid "Writing aids"
+msgstr "Asistencia a la escritura"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.FL_OPTIONS.fixedline.text
+msgid "Online Update Options"
+msgstr "Opciones de actualización en línea"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.CB_AUTOCHECK.checkbox.text
+msgid "~Check for updates automatically"
+msgstr "~Buscar actualizaciones automáticamente"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.RB_EVERYDAY.radiobutton.text
+msgid "Every Da~y"
+msgstr "Ca~da día"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.RB_EVERYWEEK.radiobutton.text
+msgid "Every ~Week"
+msgstr "Cada ~semana"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.RB_EVERYMONTH.radiobutton.text
+msgid "Every ~Month"
+msgstr "Cada ~mes"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.FT_LASTCHECKED.fixedtext.text
+msgid "Last checked: %DATE%, %TIME%"
+msgstr "Última búsqueda: %DATE%, %TIME%"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.PB_CHECKNOW.pushbutton.text
+msgid "Check ~now"
+msgstr "Buscar a~hora"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.CB_AUTODOWNLOAD.checkbox.text
+msgid "~Download updates automatically"
+msgstr "~Descargar actualizaciones automáticamente"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.FT_DESTPATHLABEL.fixedtext.text
+msgid "Download destination:"
+msgstr "Destino de la descarga:"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.PB_CHANGEPATH.pushbutton.text
+msgid "Ch~ange..."
+msgstr "Ca~mbiar..."
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.STR_NEVERCHECKED.string.text
+msgid "Last checked: Not yet"
+msgstr "Última búsqueda: Aún no realizada"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.tabpage.text
+msgid "OnlineUpdate"
+msgstr "Actualización en línea"
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.FI_NEVERSHOWN.fixedtext.text
+msgid "Web login information (passwords are never shown)"
+msgstr "Información de acceso web (las contraseñas nunca se muestran)"
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.PB_REMOVE.pushbutton.text
+msgid "Remove"
+msgstr "Eliminar"
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.PB_REMOVEALL.pushbutton.text
+msgid "Remove All"
+msgstr "Eliminar todo"
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.PB_CHANGE.pushbutton.text
+msgid "Change Password..."
+msgstr "Cambiar la contraseña..."
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.PB_CLOSE.cancelbutton.text
+msgctxt "webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.PB_CLOSE.cancelbutton.text"
+msgid "Close"
+msgstr "Cerrar"
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.STR_WEBSITE.string.text
+msgid "Website"
+msgstr "Sitio web"
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.STR_USERNAME.string.text
+msgid "User name"
+msgstr "Nombre de usuario"
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.modaldialog.text
+msgid "Stored Web Connection Information"
+msgstr "Información de conexión web almacenada"
diff --git a/source/es/cui/source/tabpages.po b/source/es/cui/source/tabpages.po
new file mode 100644
index 00000000000..380e6e1d412
--- /dev/null
+++ b/source/es/cui/source/tabpages.po
@@ -0,0 +1,5030 @@
+#. extracted from cui/source/tabpages.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+cui%2Fsource%2Ftabpages.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-08-17 08:17+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: macroass.src#RID_SVXPAGE_EVENTASSIGN.STR_EVENT.string.text
+msgid "Event"
+msgstr "Evento"
+
+#: macroass.src#RID_SVXPAGE_EVENTASSIGN.STR_ASSMACRO.string.text
+msgid "Assigned macro"
+msgstr "Macro asignada"
+
+#: macroass.src#RID_SVXPAGE_EVENTASSIGN.FT_LABEL4LB_MACROS.fixedtext.text
+msgid "~Existing macros\n"
+msgstr "Macros ~existentes\n"
+
+#: macroass.src#RID_SVXPAGE_EVENTASSIGN.PB_ASSIGN.pushbutton.text
+msgid "~Assign"
+msgstr "~Asignar"
+
+#: macroass.src#RID_SVXPAGE_EVENTASSIGN.PB_DELETE.pushbutton.text
+msgid "~Remove"
+msgstr "~Quitar"
+
+#: macroass.src#RID_SVXPAGE_EVENTASSIGN.STR_MACROS.string.text
+msgid "Macros"
+msgstr "Macros"
+
+#: macroass.src#RID_SVXPAGE_EVENTASSIGN.tabpage.text
+msgid "Assign Macro"
+msgstr "Asignar macro"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_POSITION.fixedline.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_POSITION.fixedline.text"
+msgid "Position"
+msgstr "Posición"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_POS_X.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_POS_X.fixedtext.text"
+msgid "Position ~X"
+msgstr "Posición ~X"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_POS_Y.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_POS_Y.fixedtext.text"
+msgid "Position ~Y"
+msgstr "Posición ~Y"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_POSREFERENCE.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_POSREFERENCE.fixedtext.text"
+msgid "Base point"
+msgstr "Punto base"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.CTL_POSRECT.control.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.CTL_POSRECT.control.text"
+msgid "-"
+msgstr "-"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.CTL_POSRECT.control.quickhelptext
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.CTL_POSRECT.control.quickhelptext"
+msgid "Base point"
+msgstr "Punto base"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_SIZE.fixedline.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_SIZE.fixedline.text"
+msgid "Size"
+msgstr "Tamaño"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_WIDTH.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_WIDTH.fixedtext.text"
+msgid "Wi~dth"
+msgstr "An~cho"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_HEIGHT.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_HEIGHT.fixedtext.text"
+msgid "H~eight"
+msgstr "Al~tura"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_SIZEREFERENCE.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_SIZEREFERENCE.fixedtext.text"
+msgid "Base point"
+msgstr "Punto base"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.CTL_SIZERECT.control.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.CTL_SIZERECT.control.text"
+msgid "-"
+msgstr "-"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.CTL_SIZERECT.control.quickhelptext
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.CTL_SIZERECT.control.quickhelptext"
+msgid "Base point"
+msgstr "Punto base"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.CBX_SCALE.checkbox.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.CBX_SCALE.checkbox.text"
+msgid "~Keep ratio"
+msgstr "~Mantener proporción"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_PROTECT.fixedline.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_PROTECT.fixedline.text"
+msgid "Protect"
+msgstr "Protección"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.TSB_POSPROTECT.tristatebox.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.TSB_POSPROTECT.tristatebox.text"
+msgid "Position"
+msgstr "Posición"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.TSB_SIZEPROTECT.tristatebox.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.TSB_SIZEPROTECT.tristatebox.text"
+msgid "~Size"
+msgstr "~Tamaño"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_ADJUST.fixedline.text
+msgid "Adapt"
+msgstr "Adaptación"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.TSB_AUTOGROW_WIDTH.tristatebox.text
+msgid "~Fit width to text"
+msgstr "Ajustar a~ncho al texto"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.TSB_AUTOGROW_HEIGHT.tristatebox.text
+msgid "Fit ~height to text"
+msgstr "Ajustar ~altura al texto"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_ANCHOR.fixedline.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_ANCHOR.fixedline.text"
+msgid "Anchor"
+msgstr "Anclaje"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_ANCHOR.fixedtext.text
+msgid "~Anchor"
+msgstr "~Ancla"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ANCHOR.1.stringlist.text
+msgid "To paragraph"
+msgstr "Al párrafo"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ANCHOR.2.stringlist.text
+msgid "As character"
+msgstr "Como el carácter"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ANCHOR.3.stringlist.text
+msgid "To page"
+msgstr "A la página"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ANCHOR.4.stringlist.text
+msgid "To frame"
+msgstr "Al marco"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_ORIENT.fixedtext.text
+msgid "P~osition"
+msgstr "P~osición"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.1.stringlist.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.1.stringlist.text"
+msgid "From top"
+msgstr "Desde arriba"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.2.stringlist.text
+msgid "Above"
+msgstr "Encima"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.3.stringlist.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.3.stringlist.text"
+msgid "Centered"
+msgstr "Centrado"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.4.stringlist.text
+msgid "Below"
+msgstr "Debajo"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.5.stringlist.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.5.stringlist.text"
+msgid "Top of character"
+msgstr "Carácter arriba"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.6.stringlist.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.6.stringlist.text"
+msgid "Center of character"
+msgstr "Carácter centrado"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.7.stringlist.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.7.stringlist.text"
+msgid "Bottom of character"
+msgstr "Carácter abajo"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.8.stringlist.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.8.stringlist.text"
+msgid "Top of line"
+msgstr "Principio de línea"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.9.stringlist.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.9.stringlist.text"
+msgid "Center of line"
+msgstr "Centro de línea"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.10.stringlist.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.10.stringlist.text"
+msgid "Bottom of line"
+msgstr "Línea inferior"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.tabpage.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.tabpage.text"
+msgid "Position and Size"
+msgstr "Posición y tamaño"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.FL_POSITION.fixedline.text
+msgid "Pivot point"
+msgstr "Punto de giro"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.FT_POS_X.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_ANGLE.FT_POS_X.fixedtext.text"
+msgid "Position ~X"
+msgstr "Posición ~X"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.FT_POS_Y.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_ANGLE.FT_POS_Y.fixedtext.text"
+msgid "Position ~Y"
+msgstr "Posición ~Y"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.FT_POSPRESETS.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_ANGLE.FT_POSPRESETS.fixedtext.text"
+msgid "Default settings"
+msgstr "Configuración predeterminada"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.CTL_RECT.control.text
+msgctxt "transfrm.src#RID_SVXPAGE_ANGLE.CTL_RECT.control.text"
+msgid "-"
+msgstr "-"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.CTL_RECT.control.quickhelptext
+msgid "Rotation point"
+msgstr "Punto de rotación"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.FL_ANGLE.fixedline.text
+msgid "Rotation angle"
+msgstr "Ángulo de rotación"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.FT_ANGLE.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_ANGLE.FT_ANGLE.fixedtext.text"
+msgid "~Angle"
+msgstr "Á~ngulo"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.MTR_FLD_ANGLE.metricfield.text
+msgctxt "transfrm.src#RID_SVXPAGE_ANGLE.MTR_FLD_ANGLE.metricfield.text"
+msgid " degrees"
+msgstr " grados"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.FT_ANGLEPRESETS.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_ANGLE.FT_ANGLEPRESETS.fixedtext.text"
+msgid "Default settings"
+msgstr "Configuración predeterminada"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.CTL_ANGLE.control.text
+msgctxt "transfrm.src#RID_SVXPAGE_ANGLE.CTL_ANGLE.control.text"
+msgid "-"
+msgstr "-"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.CTL_ANGLE.control.quickhelptext
+msgid "Rotation Angle"
+msgstr "Ángulo de rotación"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.tabpage.text
+msgid "Angle"
+msgstr "Ángulo"
+
+#: transfrm.src#RID_SVXPAGE_SLANT.FL_RADIUS.fixedline.text
+msgid "Corner radius"
+msgstr "Radio de esquina"
+
+#: transfrm.src#RID_SVXPAGE_SLANT.FT_RADIUS.fixedtext.text
+msgid "~Radius"
+msgstr "~Radio"
+
+#: transfrm.src#RID_SVXPAGE_SLANT.FL_SLANT.fixedline.text
+msgid "Slant"
+msgstr "Inclinar"
+
+#: transfrm.src#RID_SVXPAGE_SLANT.FT_ANGLE.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_SLANT.FT_ANGLE.fixedtext.text"
+msgid "~Angle"
+msgstr "Á~ngulo"
+
+#: transfrm.src#RID_SVXPAGE_SLANT.MTR_FLD_ANGLE.metricfield.text
+msgctxt "transfrm.src#RID_SVXPAGE_SLANT.MTR_FLD_ANGLE.metricfield.text"
+msgid " degrees"
+msgstr " grados"
+
+#: transfrm.src#RID_SVXPAGE_SLANT.tabpage.text
+msgctxt "transfrm.src#RID_SVXPAGE_SLANT.tabpage.text"
+msgid "Slant & Corner Radius"
+msgstr "Inclinar y radio de esquina"
+
+#: transfrm.src#_POS_SIZE_TEXT.#define.text
+msgctxt "transfrm.src#_POS_SIZE_TEXT.#define.text"
+msgid "Position and Size"
+msgstr "Posición y tamaño"
+
+#: transfrm.src#RID_SVXDLG_TRANSFORM.TAB_CONTROL.RID_SVXPAGE_ANGLE.pageitem.text
+msgid "Rotation"
+msgstr "Rotación"
+
+#: transfrm.src#RID_SVXDLG_TRANSFORM.TAB_CONTROL.RID_SVXPAGE_SLANT.pageitem.text
+msgctxt "transfrm.src#RID_SVXDLG_TRANSFORM.TAB_CONTROL.RID_SVXPAGE_SLANT.pageitem.text"
+msgid "Slant & Corner Radius"
+msgstr "Inclinar y radio de esquina"
+
+#: transfrm.src#RID_SVXDLG_TRANSFORM.tabdialog.text
+msgctxt "transfrm.src#RID_SVXDLG_TRANSFORM.tabdialog.text"
+msgid "Position and Size"
+msgstr "Posición y tamaño"
+
+#: bbdlg.src#RID_SVXDLG_BBDLG.1.RID_SVXPAGE_BORDER.pageitem.text
+msgctxt "bbdlg.src#RID_SVXDLG_BBDLG.1.RID_SVXPAGE_BORDER.pageitem.text"
+msgid "Borders"
+msgstr "Bordes"
+
+#: bbdlg.src#RID_SVXDLG_BBDLG.1.RID_SVXPAGE_BACKGROUND.pageitem.text
+msgctxt "bbdlg.src#RID_SVXDLG_BBDLG.1.RID_SVXPAGE_BACKGROUND.pageitem.text"
+msgid "Background"
+msgstr "Fondo"
+
+#: bbdlg.src#RID_SVXDLG_BBDLG.tabdialog.text
+msgid "Border / Background"
+msgstr "Bordes / Fondo"
+
+#: backgrnd.src#UNLINKED_IMAGE.#define.text
+msgid "Unlinked graphic"
+msgstr "Imagen no vinculada"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.FT_SELECTOR.fixedtext.text
+msgid "A~s"
+msgstr "~Como"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_SELECTOR.1.stringlist.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_SELECTOR.1.stringlist.text"
+msgid "Color"
+msgstr "Color"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_SELECTOR.2.stringlist.text
+msgid "Graphic"
+msgstr "Imagen"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.FT_TBL_DESC.fixedtext.text
+msgid "F~or"
+msgstr "Pa~ra"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_TBL_BOX.1.stringlist.text
+msgid "Cell"
+msgstr "Celda"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_TBL_BOX.2.stringlist.text
+msgid "Row"
+msgstr "Fila"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_TBL_BOX.3.stringlist.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_TBL_BOX.3.stringlist.text"
+msgid "Table"
+msgstr "Tabla"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_PARA_BOX.1.stringlist.text
+msgid "Paragraph"
+msgstr "Párrafo"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_PARA_BOX.2.stringlist.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_PARA_BOX.2.stringlist.text"
+msgid "Character"
+msgstr "Carácter"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.GB_BGDCOLOR.fixedline.text
+msgid "Background color"
+msgstr "Color de fondo"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.FT_COL_TRANS.fixedtext.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.FT_COL_TRANS.fixedtext.text"
+msgid "~Transparency"
+msgstr "~Transparencia"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.GB_FILE.fixedline.text
+msgid "File"
+msgstr "Archivo"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_BROWSE.pushbutton.text
+msgid "~Browse..."
+msgstr "Seleccio~nar..."
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_LINK.checkbox.text
+msgid "~Link"
+msgstr "~Vincular"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.GB_POSITION.fixedline.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.GB_POSITION.fixedline.text"
+msgid "Type"
+msgstr "Tipo"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_POSITION.radiobutton.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_POSITION.radiobutton.text"
+msgid "~Position"
+msgstr "~Posición"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_AREA.radiobutton.text
+msgid "Ar~ea"
+msgstr "Ár~ea"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_TILE.radiobutton.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_TILE.radiobutton.text"
+msgid "~Tile"
+msgstr "~Mosaico"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.FL_GRAPH_TRANS.fixedline.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.FL_GRAPH_TRANS.fixedline.text"
+msgid "Transparency"
+msgstr "Transparencia"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_PREVIEW.checkbox.text
+msgid "Pre~view"
+msgstr "Previsuali~zación"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.STR_BROWSE.string.text
+msgid "Find graphics"
+msgstr "Buscar imagen"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.tabpage.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.tabpage.text"
+msgid "Background"
+msgstr "Fondo"
+
+#: numpages.src#RID_SVXPAGE_PICK_BULLET.FL_VALUES.fixedline.text
+msgctxt "numpages.src#RID_SVXPAGE_PICK_BULLET.FL_VALUES.fixedline.text"
+msgid "Selection"
+msgstr "Selección"
+
+#: numpages.src#RID_SVXPAGE_PICK_SINGLE_NUM.FL_VALUES.fixedline.text
+msgctxt "numpages.src#RID_SVXPAGE_PICK_SINGLE_NUM.FL_VALUES.fixedline.text"
+msgid "Selection"
+msgstr "Selección"
+
+#: numpages.src#RID_SVXPAGE_PICK_NUM.FL_VALUES.fixedline.text
+msgctxt "numpages.src#RID_SVXPAGE_PICK_NUM.FL_VALUES.fixedline.text"
+msgid "Selection"
+msgstr "Selección"
+
+#: numpages.src#RID_SVXPAGE_PICK_BMP.FL_VALUES.fixedline.text
+msgctxt "numpages.src#RID_SVXPAGE_PICK_BMP.FL_VALUES.fixedline.text"
+msgid "Selection"
+msgstr "Selección"
+
+#: numpages.src#RID_SVXPAGE_PICK_BMP.CB_LINKED.checkbox.text
+msgid "~Link graphics"
+msgstr "~Vincular imágenes"
+
+#: numpages.src#RID_SVXPAGE_PICK_BMP.FT_ERROR.fixedtext.text
+msgid "The Gallery theme 'Bullets' is empty (no graphics)."
+msgstr "No hay imágenes en el tema 'Bullets' de la Gallery."
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_LEVEL.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_LEVEL.fixedtext.text"
+msgid "Level"
+msgstr "Nivel"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FL_FORMAT.fixedline.text
+msgid "Format"
+msgstr "Formato"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_FMT.fixedtext.text
+msgid "~Numbering"
+msgstr "Nu~meración"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.1.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.1.stringlist.text"
+msgid "1, 2, 3, ..."
+msgstr "1, 2, 3, ..."
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.2.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.2.stringlist.text"
+msgid "A, B, C, ..."
+msgstr "A, B, C, ..."
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.3.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.3.stringlist.text"
+msgid "a, b, c, ..."
+msgstr "a, b, c, ..."
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.4.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.4.stringlist.text"
+msgid "I, II, III, ..."
+msgstr "I, II, III, ..."
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.5.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.5.stringlist.text"
+msgid "i, ii, iii, ..."
+msgstr "i, ii, iii, ..."
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.6.stringlist.text
+msgid "A, .., AA, .., AAA, ..."
+msgstr "A, .., AA, .., AAA, ..."
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.7.stringlist.text
+msgid "a, .., aa, .., aaa, ..."
+msgstr "a, .., aa, .., aaa, ..."
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.8.stringlist.text
+msgid "Bullet"
+msgstr "Viñeta"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.9.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.9.stringlist.text"
+msgid "Graphics"
+msgstr "Imagen"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.10.stringlist.text
+msgid "Linked graphics"
+msgstr "Imagen vinculada"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.11.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.11.stringlist.text"
+msgid "None"
+msgstr "Ninguna"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.12.stringlist.text
+msgid "Native Numbering"
+msgstr "Numeración nativa"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.13.stringlist.text
+msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
+msgstr "А, Б, .., Аа, Аб, ... (Búlgaro)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.14.stringlist.text
+msgid "а, б, .., аа, аб, ... (Bulgarian)"
+msgstr "а, б, .., аа, аб, ... (Búlgaro)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.15.stringlist.text
+msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
+msgstr "А, Б, .., Аа, Бб, ... (Búlgaro)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.16.stringlist.text
+msgid "а, б, .., аа, бб, ... (Bulgarian)"
+msgstr "а, б, .., аа, бб, ... (Búlgaro)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.17.stringlist.text
+msgid "А, Б, .., Аа, Аб, ... (Russian)"
+msgstr "А, Б, .., Аа, Аб, ... (Ruso)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.18.stringlist.text
+msgid "а, б, .., аа, аб, ... (Russian)"
+msgstr "а, б, .., аа, аб, ... (Ruso)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.19.stringlist.text
+msgid "А, Б, .., Аа, Бб, ... (Russian)"
+msgstr "А, Б, .., Аа, Бб, ... (Ruso)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.20.stringlist.text
+msgid "а, б, .., аа, бб, ... (Russian)"
+msgstr "а, б, .., аа, бб, ... (Ruso)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.21.stringlist.text
+msgid "А, Б, .., Аа, Аб, ... (Serbian)"
+msgstr "А, Б, .., Аа, Аб, ... (Serbio)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.22.stringlist.text
+msgid "а, б, .., аа, аб, ... (Serbian)"
+msgstr "а, б, .., аа, аб, ... (Serbio)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.23.stringlist.text
+msgid "А, Б, .., Аа, Бб, ... (Serbian)"
+msgstr "А, Б, .., Аа, Бб, ... (Serbio)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.24.stringlist.text
+msgid "а, б, .., аа, бб, ... (Serbian)"
+msgstr "а, б, .., аа, бб, ... (Serbio)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.25.stringlist.text
+msgid "Α, Β, Γ, ... (Greek Upper Letter)"
+msgstr "Α, Β, Γ, ... (Letras griegas mayúsculas)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.26.stringlist.text
+msgid "α, β, γ, ... (Greek Lower Letter)"
+msgstr "α, β, γ, ... (Letras griegas minúsculas)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_PREFIX.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_PREFIX.fixedtext.text"
+msgid "Before"
+msgstr "Delante"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_SUFFIX.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_SUFFIX.fixedtext.text"
+msgid "After"
+msgstr "Detrás"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_CHARFMT.fixedtext.text
+msgid "~Character Style"
+msgstr "Es~tilo de carácter:"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_BUL_COLOR.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_BUL_COLOR.fixedtext.text"
+msgid "Color"
+msgstr "Color"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_BUL_REL_SIZE.fixedtext.text
+msgid "~Relative size"
+msgstr "~Tamaño relativo"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_ALL_LEVEL.fixedtext.text
+msgid "Show sublevels"
+msgstr "Mostrar subniveles"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_START.fixedtext.text
+msgid "Start at"
+msgstr "Empezar en"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_ALIGN.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_ALIGN.fixedtext.text"
+msgid "~Alignment"
+msgstr "~Alineación"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ALIGN.1.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ALIGN.1.stringlist.text"
+msgid "Left"
+msgstr "Izquierda"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ALIGN.2.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ALIGN.2.stringlist.text"
+msgid "Centered"
+msgstr "Centrado"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ALIGN.3.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ALIGN.3.stringlist.text"
+msgid "Right"
+msgstr "Derecha"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.STR_BULLET.string.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.STR_BULLET.string.text"
+msgid "Character"
+msgstr "Carácter"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_BITMAP.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_BITMAP.fixedtext.text"
+msgid "Graphics"
+msgstr "Imagen"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.MB_BITMAP.MN_GRAPHIC_DLG.menuitem.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.MB_BITMAP.MN_GRAPHIC_DLG.menuitem.text"
+msgid "From file..."
+msgstr "De archivo..."
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.MB_BITMAP.MN_GALLERY.menuitem.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.MB_BITMAP.MN_GALLERY.menuitem.text"
+msgid "Gallery"
+msgstr "Gallery"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.MB_BITMAP.menubutton.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.MB_BITMAP.menubutton.text"
+msgid "Select..."
+msgstr "Selección..."
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_SIZE.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_SIZE.fixedtext.text"
+msgid "Width"
+msgstr "Ancho"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_MULT.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_MULT.fixedtext.text"
+msgid "Height"
+msgstr "Altura"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.CB_RATIO.checkbox.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.CB_RATIO.checkbox.text"
+msgid "Keep ratio"
+msgstr "Sincronización"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_ORIENT.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_ORIENT.fixedtext.text"
+msgid "Alignment"
+msgstr "Alineación"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.1.stringlist.text
+msgid "Top of baseline"
+msgstr "Encima de línea de refefencia"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.2.stringlist.text
+msgid "Center of baseline"
+msgstr "Centro de línea de referencia"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.3.stringlist.text
+msgid "Bottom of baseline"
+msgstr "Debajo de línea de referencia"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.4.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.4.stringlist.text"
+msgid "Top of character"
+msgstr "Carácter arriba"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.5.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.5.stringlist.text"
+msgid "Center of character"
+msgstr "Carácter centrado"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.6.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.6.stringlist.text"
+msgid "Bottom of character"
+msgstr "Carácter abajo"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.7.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.7.stringlist.text"
+msgid "Top of line"
+msgstr "Línea superior"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.8.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.8.stringlist.text"
+msgid "Center of line"
+msgstr "Línea centro"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.9.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.9.stringlist.text"
+msgid "Bottom of line"
+msgstr "Línea inferior"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FL_SAME_LEVEL.fixedline.text
+msgid "All levels"
+msgstr "Todos los niveles"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.CB_SAME_LEVEL.checkbox.text
+msgid "~Consecutive numbering"
+msgstr "Numeración ~consecutiva"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.ST_POPUP_EMPTY_ENTRY.string.text
+msgid "There are no graphics in the 'Bullets' Gallery theme."
+msgstr "No existen imágenes en el tema 'Viñetas' de la Galería."
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_LEVEL.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_POSITION.FT_LEVEL.fixedtext.text"
+msgid "Level"
+msgstr "Nivel"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FL_POSITION.fixedline.text
+msgid "Position and spacing"
+msgstr "Posición y espacio"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_BORDERDIST.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_POSITION.FT_BORDERDIST.fixedtext.text"
+msgid "Indent"
+msgstr "Sangría"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.CB_RELATIVE.checkbox.text
+msgid "Relati~ve"
+msgstr "Relati~vo"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_INDENT.fixedtext.text
+msgid "Width of numbering"
+msgstr "Ancho de numeraciones"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_NUMDIST.fixedtext.text
+msgid "Minimum space numbering <-> text"
+msgstr "Distancia mínima número <-> texto"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_ALIGN.fixedtext.text
+msgid "N~umbering alignment"
+msgstr "~Alineación de numeración"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.LB_ALIGN.1.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_POSITION.LB_ALIGN.1.stringlist.text"
+msgid "Left"
+msgstr "Izquierda"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.LB_ALIGN.2.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_POSITION.LB_ALIGN.2.stringlist.text"
+msgid "Centered"
+msgstr "Centrado"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.LB_ALIGN.3.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_POSITION.LB_ALIGN.3.stringlist.text"
+msgid "Right"
+msgstr "Derecha"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_LABEL_FOLLOWED_BY.fixedtext.text
+msgid "Numbering followed by"
+msgstr "Numeración seguida por"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.LB_LABEL_FOLLOWED_BY.1.stringlist.text
+msgid "Tab stop"
+msgstr "Tabulación"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.LB_LABEL_FOLLOWED_BY.2.stringlist.text
+msgid "Space"
+msgstr "Espacio"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.LB_LABEL_FOLLOWED_BY.3.stringlist.text
+msgid "Nothing"
+msgstr "Nada"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_LISTTAB.fixedtext.text
+msgid "at"
+msgstr "en"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_ALIGNED_AT.fixedtext.text
+msgid "Aligned at"
+msgstr "Alineado a"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_INDENT_AT.fixedtext.text
+msgid "Indent at"
+msgstr "Sangrar en"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.PB_STANDARD.pushbutton.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_POSITION.PB_STANDARD.pushbutton.text"
+msgid "Default"
+msgstr "Predeterminado"
+
+#: numpages.src#RID_STR_EDIT_GRAPHIC.string.text
+msgid "Link"
+msgstr "Vincular"
+
+#: strings.src#RID_SVXSTR_DESC_GRADIENT.string.text
+msgid "Please enter a name for the gradient:"
+msgstr "Introduzca aquí un nombre para el gradiente:"
+
+#: strings.src#RID_SVXSTR_ASK_DEL_GRADIENT.string.text
+msgid "Do you want to delete the gradient?"
+msgstr "¿Desea realmente eliminar el gradiente de color?"
+
+#: strings.src#RID_SVXSTR_ASK_CHANGE_GRADIENT.string.text
+msgid ""
+"The gradient was modified without saving. \n"
+"Modify the selected gradient or add a new gradient."
+msgstr ""
+"El gradiente de color ha sido modificado sin guardar.\n"
+"Puede modificarlo\n"
+"o añadir uno nuevo."
+
+#: strings.src#RID_SVXSTR_DESC_NEW_BITMAP.string.text
+msgid "Please enter a name for the bitmap:"
+msgstr "Introduzca aquí un nombre para la bitmap:"
+
+#: strings.src#RID_SVXSTR_DESC_EXT_BITMAP.string.text
+msgid "Please enter a name for the external bitmap:"
+msgstr "Introduzca aquí un nombre para la bitmap externa:"
+
+#: strings.src#RID_SVXSTR_ASK_DEL_BITMAP.string.text
+msgid "Are you sure you want to delete the bitmap?"
+msgstr "¿Desea realmente eliminar el bitmap?"
+
+#: strings.src#RID_SVXSTR_ASK_CHANGE_BITMAP.string.text
+msgid ""
+"The bitmap was modified without saving. \n"
+"Modify the selected bitmap or add a new bitmap."
+msgstr ""
+"El bitmap ha sido modificado sin guardar.\n"
+"Puede modificar el bitmap seleccionado\n"
+"o añadir uno nuevo."
+
+#: strings.src#RID_SVXSTR_DESC_LINESTYLE.string.text
+msgid "Please enter a name for the line style:"
+msgstr "Inserte aquí el nombre del estilo de línea:"
+
+#: strings.src#RID_SVXSTR_ASK_DEL_LINESTYLE.string.text
+msgid "Do you want to delete the line style?"
+msgstr "¿Desea realmente eliminar el estilo de línea?"
+
+#: strings.src#RID_SVXSTR_ASK_CHANGE_LINESTYLE.string.text
+msgid ""
+"The line style was modified without saving. \n"
+"Modify the selected line style or add a new line style."
+msgstr ""
+"El estilo de línea ha sido modificado sin guardar.\n"
+"Puede modificar el estilo de línea seleccionado\n"
+"o añadir uno nuevo."
+
+#: strings.src#RID_SVXSTR_DESC_HATCH.string.text
+msgid "Please enter a name for the hatching:"
+msgstr "Introduzca aquí un nombre para la trama:"
+
+#: strings.src#RID_SVXSTR_ASK_DEL_HATCH.string.text
+msgid "Do you want to delete the hatching?"
+msgstr "¿Desea realmente eliminar el entramado?"
+
+#: strings.src#RID_SVXSTR_ASK_CHANGE_HATCH.string.text
+msgid ""
+"The hatching type was modified but not saved. \n"
+"Modify the selected hatching type or add a new hatching type."
+msgstr ""
+"La trama ha sido modificada sin guardar.\n"
+"Puede modificar la trama seleccionada\n"
+"o añadir una nueva."
+
+#: strings.src#RID_SVXSTR_CHANGE.string.text
+msgid "Modify"
+msgstr "Modificar"
+
+#: strings.src#RID_SVXSTR_ADD.string.text
+msgctxt "strings.src#RID_SVXSTR_ADD.string.text"
+msgid "Add"
+msgstr "Añadir"
+
+#: strings.src#RID_SVXSTR_DESC_COLOR.string.text
+msgid "Please enter a name for the new color:"
+msgstr "Inserte aquí el nombre del nuevo color:"
+
+#: strings.src#RID_SVXSTR_ASK_DEL_COLOR.string.text
+msgid "Do you want to delete the color?"
+msgstr "¿Desea realmente eliminar el color?"
+
+#: strings.src#RID_SVXSTR_ASK_CHANGE_COLOR.string.text
+msgid ""
+"The color was modified without saving.\n"
+"Modify the selected color or add a new color."
+msgstr ""
+"El color ha sido modificado sin guardar.\n"
+"Puede modificar el color seleccionado\n"
+"o añadir uno nuevo."
+
+#: strings.src#RID_SVXSTR_TABLE.string.text
+msgctxt "strings.src#RID_SVXSTR_TABLE.string.text"
+msgid "Table"
+msgstr "Tabla"
+
+#: strings.src#RID_SVXSTR_WRITE_DATA_ERROR.string.text
+msgid "The file could not be saved!"
+msgstr "¡No se pudo guardar el archivo!"
+
+#: strings.src#RID_SVXSTR_READ_DATA_ERROR.string.text
+msgid "The file could not be loaded!"
+msgstr "¡No se pudo cargar el archivo!"
+
+#: strings.src#RID_SVXSTR_WARN_TABLE_OVERWRITE.string.text
+msgid "The list was modified without saving. Would you like to save the list now?"
+msgstr ""
+"La tabla ha sido modificada sin guardar.\n"
+"¿Desea guardarla?"
+
+#: strings.src#RID_SVXSTR_WARN_NAME_DUPLICATE.string.text
+msgid ""
+"The name you have entered already exists. \n"
+"Please choose another name."
+msgstr ""
+"Este nombre ya existe. \n"
+"Introduzca otro nombre por favor."
+
+#: strings.src#RID_SVXSTR_DESC_LINEEND.string.text
+msgid "Please enter a name for the new arrowhead:"
+msgstr "Introduzca aquí un nombre para el nuevo fin de línea:"
+
+#: strings.src#RID_SVXSTR_ASK_DEL_LINEEND.string.text
+msgid "Do you want to delete the arrowhead?"
+msgstr "¿Desea realmente eliminar el final de línea?"
+
+#: strings.src#RID_SVXSTR_ASK_CHANGE_LINEEND.string.text
+msgid ""
+"The arrowhead was modified without saving.\n"
+"Would you like to save the arrowhead now?"
+msgstr ""
+"El final de línea ha sido modificado pero no guardado. \n"
+"¿Desea guardar ahora el final de línea?"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FL_ALIGNMENT.fixedline.text
+msgid "Text alignment"
+msgstr "Alineación de texto"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FT_HORALIGN.fixedtext.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.FT_HORALIGN.fixedtext.text"
+msgid "Hori~zontal"
+msgstr "Hori~zontal"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.1.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.1.stringlist.text"
+msgid "Default"
+msgstr "Predeterminado"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.2.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.2.stringlist.text"
+msgid "Left"
+msgstr "Izquierda"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.3.stringlist.text
+msgid "Center"
+msgstr "Centrado"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.4.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.4.stringlist.text"
+msgid "Right"
+msgstr "Derecha"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.5.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.5.stringlist.text"
+msgid "Justified"
+msgstr "Justificado"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.6.stringlist.text
+msgid "Filled"
+msgstr "Relleno"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.7.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.7.stringlist.text"
+msgid "Distributed"
+msgstr "Distribuida"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FT_INDENT.fixedtext.text
+msgid "I~ndent"
+msgstr "Sa~ngría"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FT_VERALIGN.fixedtext.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.FT_VERALIGN.fixedtext.text"
+msgid "~Vertical"
+msgstr "~Vertical"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.1.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.1.stringlist.text"
+msgid "Default"
+msgstr "Predeterminado"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.2.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.2.stringlist.text"
+msgid "Top"
+msgstr "Arriba"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.3.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.3.stringlist.text"
+msgid "Middle"
+msgstr "Centrado"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.4.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.4.stringlist.text"
+msgid "Bottom"
+msgstr "Abajo"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.5.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.5.stringlist.text"
+msgid "Justified"
+msgstr "Justificada"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.6.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.6.stringlist.text"
+msgid "Distributed"
+msgstr "Distribuida"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FL_ORIENTATION.fixedline.text
+msgid "Text orientation"
+msgstr "Orientación del texto"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.BTN_TXTSTACKED.tristatebox.text
+msgid "Ve~rtically stacked"
+msgstr "Disposición ve~rtical"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FT_DEGREES.fixedtext.text
+msgid "De~grees"
+msgstr "Án~gulo"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FT_BORDER_LOCK.fixedtext.text
+msgid "Re~ference edge"
+msgstr "~Aristas de referencia"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.BTN_ASIAN_VERTICAL.tristatebox.text
+msgid "Asian layout ~mode"
+msgstr "Modo de diseño ~asiático"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FL_WRAP.fixedline.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.FL_WRAP.fixedline.text"
+msgid "Properties"
+msgstr "Propiedades"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.BTN_WRAP.tristatebox.text
+msgid "~Wrap text automatically"
+msgstr "Ajustar ~texto automáticamente"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.BTN_HYPH.tristatebox.text
+msgid "Hyphenation ~active"
+msgstr "División de palabras ~activa"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.BTN_SHRINK.tristatebox.text
+msgid "~Shrink to fit cell size"
+msgstr "~Reducir para ajustar al tamaño de celda"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FT_TEXTFLOW.fixedtext.text
+msgid "Te~xt direction"
+msgstr "Dirección del te~xto"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.STR_BOTTOMLOCK.string.text
+msgid "Text Extension From Lower Cell Border"
+msgstr "Expansión del texto a partir del borde inferior de la celda."
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.STR_TOPLOCK.string.text
+msgid "Text Extension From Upper Cell Border"
+msgstr "Expansión del texto a partir del borde superior de la celda."
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.STR_CELLLOCK.string.text
+msgid "Text Extension Inside Cell"
+msgstr "Expansión del texto solo dentro de la celda."
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.tabpage.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.tabpage.text"
+msgid "Alignment"
+msgstr "Alineación"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FL_WEST.fixedline.text
+msgid "Western text font"
+msgstr "Fuente de texto occidental"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE.1.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE.1.stringlist.text"
+msgid "Normal"
+msgstr "Normal"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE.2.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE.2.stringlist.text"
+msgid "Italic"
+msgstr "Cursiva"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE.3.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE.3.stringlist.text"
+msgid "Bold"
+msgstr "Negrita"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE.4.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE.4.stringlist.text"
+msgid "Bold italic"
+msgstr "Negrita Cursivas"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE_NOCJK.1.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE_NOCJK.1.stringlist.text"
+msgid "Normal"
+msgstr "Normal"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE_NOCJK.2.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE_NOCJK.2.stringlist.text"
+msgid "Italic"
+msgstr "Cursiva"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE_NOCJK.3.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE_NOCJK.3.stringlist.text"
+msgid "Bold"
+msgstr "Negrita"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE_NOCJK.4.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE_NOCJK.4.stringlist.text"
+msgid "Bold italic"
+msgstr "Negrita Cursivas"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_WEST_SIZE.fixedtext.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_WEST_SIZE.fixedtext.text"
+msgid "Size"
+msgstr "Tamaño"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_WEST_SIZE_NOCJK.fixedtext.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_WEST_SIZE_NOCJK.fixedtext.text"
+msgid "Size"
+msgstr "Tamaño"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_WEST_LANG.fixedtext.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_WEST_LANG.fixedtext.text"
+msgid "Language"
+msgstr "Idioma"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_WEST_LANG_NOCJK.fixedtext.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_WEST_LANG_NOCJK.fixedtext.text"
+msgid "~Language"
+msgstr "~Idioma"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FL_EAST.fixedline.text
+msgid "Asian text font"
+msgstr "Fuente de texto asiática"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_EAST_STYLE.1.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_EAST_STYLE.1.stringlist.text"
+msgid "Normal"
+msgstr "Normal"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_EAST_STYLE.2.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_EAST_STYLE.2.stringlist.text"
+msgid "Italic"
+msgstr "Cursiva"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_EAST_STYLE.3.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_EAST_STYLE.3.stringlist.text"
+msgid "Bold"
+msgstr "Negrita"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_EAST_STYLE.4.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_EAST_STYLE.4.stringlist.text"
+msgid "Bold italic"
+msgstr "Negrita Cursivas"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_EAST_SIZE.fixedtext.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_EAST_SIZE.fixedtext.text"
+msgid "Size"
+msgstr "Tamaño"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_EAST_LANG.fixedtext.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_EAST_LANG.fixedtext.text"
+msgid "Language"
+msgstr "Idioma"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FL_CTL.fixedline.text
+msgid "CTL font"
+msgstr "Fuente CTL"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_CTL_STYLE.1.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_CTL_STYLE.1.stringlist.text"
+msgid "Normal"
+msgstr "Normal"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_CTL_STYLE.2.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_CTL_STYLE.2.stringlist.text"
+msgid "Italic"
+msgstr "Cursiva"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_CTL_STYLE.3.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_CTL_STYLE.3.stringlist.text"
+msgid "Bold"
+msgstr "Negrita"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_CTL_STYLE.4.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_CTL_STYLE.4.stringlist.text"
+msgid "Bold italic"
+msgstr "Negrita Cursivas"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_CTL_SIZE.fixedtext.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_CTL_SIZE.fixedtext.text"
+msgid "Size"
+msgstr "Tamaño"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_CTL_LANG.fixedtext.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_CTL_LANG.fixedtext.text"
+msgid "Language"
+msgstr "Idioma"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.WIN_CHAR_PREVIEW.window.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.WIN_CHAR_PREVIEW.window.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FL_COLOR2.fixedline.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.FL_COLOR2.fixedline.text"
+msgid "Color"
+msgstr "Colores"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_COLOR2.fixedtext.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_COLOR2.fixedtext.text"
+msgid "Font ~color"
+msgstr "~Color de la fuente"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_NOSTYLE.string.text
+msgid "No %1"
+msgstr "No %1"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_TRANSPARENT.string.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_TRANSPARENT.string.text"
+msgid "Transparent"
+msgstr "Transparente"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_FAMILY.string.text
+msgid "Family"
+msgstr "Familia"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_FONT.string.text
+msgid "Font"
+msgstr "Fuente"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_STYLE.string.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_STYLE.string.text"
+msgid "Style"
+msgstr "Estilo"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_TYPEFACE.string.text
+msgid "Typeface"
+msgstr "Tipo de letra"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_FONTCOLOR.fixedtext.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_FONTCOLOR.fixedtext.text"
+msgid "Font ~color"
+msgstr "~Color de fuente"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_EFFECTS.fixedtext.text
+msgid "~Effects"
+msgstr "~Efectos"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EFFECTS2.1.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EFFECTS2.1.stringlist.text"
+msgid "(Without)"
+msgstr "(Sin)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EFFECTS2.2.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EFFECTS2.2.stringlist.text"
+msgid "Capitals"
+msgstr "Mayúsculas"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EFFECTS2.3.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EFFECTS2.3.stringlist.text"
+msgid "Lowercase"
+msgstr "Minúsculas"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EFFECTS2.4.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EFFECTS2.4.stringlist.text"
+msgid "Title"
+msgstr "Título"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EFFECTS2.5.stringlist.text
+msgid "Small capitals"
+msgstr "Versalitas"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_RELIEF.fixedtext.text
+msgid "~Relief"
+msgstr "~Relieve"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_RELIEF.1.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_RELIEF.1.stringlist.text"
+msgid "(Without)"
+msgstr "(Sin)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_RELIEF.2.stringlist.text
+msgid "Embossed"
+msgstr "Repujado"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_RELIEF.3.stringlist.text
+msgid "Engraved"
+msgstr "Grabado"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.CB_OUTLINE.tristatebox.text
+msgid "Out~line"
+msgstr "Es~quema"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.CB_SHADOW.tristatebox.text
+msgid "Sha~dow"
+msgstr "Som~bra"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.CB_BLINKING.tristatebox.text
+msgid "~Blinking"
+msgstr "~Parpadeando"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.CB_CHARHIDDEN.tristatebox.text
+msgid "H~idden"
+msgstr "O~culto"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_OVERLINE.fixedtext.text
+msgid "~Overlining"
+msgstr "S~obrelineado"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.1.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.1.stringlist.text"
+msgid "(Without)"
+msgstr "(Sin)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.2.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.2.stringlist.text"
+msgid "Single"
+msgstr "Simple"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.3.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.3.stringlist.text"
+msgid "Double"
+msgstr "Doble"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.4.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.4.stringlist.text"
+msgid "Bold"
+msgstr "Negrita"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.5.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.5.stringlist.text"
+msgid "Dotted"
+msgstr "Punteado"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.6.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.6.stringlist.text"
+msgid "Dotted (Bold)"
+msgstr "Punteado negrita"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.7.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.7.stringlist.text"
+msgid "Dash"
+msgstr "Guión"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.8.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.8.stringlist.text"
+msgid "Dash (Bold)"
+msgstr "Trazo negrita"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.9.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.9.stringlist.text"
+msgid "Long Dash"
+msgstr "Trazo largo"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.10.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.10.stringlist.text"
+msgid "Long Dash (Bold)"
+msgstr "Trazo negrita largo"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.11.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.11.stringlist.text"
+msgid "Dot Dash"
+msgstr "Punto trazo"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.12.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.12.stringlist.text"
+msgid "Dot Dash (Bold)"
+msgstr "Punto trazo negrita"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.13.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.13.stringlist.text"
+msgid "Dot Dot Dash"
+msgstr "Punto punto trazo"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.14.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.14.stringlist.text"
+msgid "Dot Dot Dash (Bold)"
+msgstr "Punto punto trazo negrita"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.15.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.15.stringlist.text"
+msgid "Wave"
+msgstr "Ondulada"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.16.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.16.stringlist.text"
+msgid "Wave (Bold)"
+msgstr "Ondulada negrita"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.17.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.17.stringlist.text"
+msgid "Double Wave"
+msgstr "Ondulada doble"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_OVERLINE_COLOR.fixedtext.text
+msgid "O~verline color"
+msgstr "Color de s~obrelinea"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_STRIKEOUT.fixedtext.text
+msgid "~Strikethrough"
+msgstr "~Tachado"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_STRIKEOUT.1.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_STRIKEOUT.1.stringlist.text"
+msgid "(Without)"
+msgstr "(Sin)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_STRIKEOUT.2.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_STRIKEOUT.2.stringlist.text"
+msgid "Single"
+msgstr "Simple"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_STRIKEOUT.3.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_STRIKEOUT.3.stringlist.text"
+msgid "Double"
+msgstr "Doble"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_STRIKEOUT.4.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_STRIKEOUT.4.stringlist.text"
+msgid "Bold"
+msgstr "Negrita"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_STRIKEOUT.5.stringlist.text
+msgid "With /"
+msgstr "Con /"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_STRIKEOUT.6.stringlist.text
+msgid "With X"
+msgstr "Con X"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_UNDERLINE.fixedtext.text
+msgid "~Underlining"
+msgstr "~Subrayando"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.1.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.1.stringlist.text"
+msgid "(Without)"
+msgstr "(Sin)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.2.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.2.stringlist.text"
+msgid "Single"
+msgstr "Simple"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.3.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.3.stringlist.text"
+msgid "Double"
+msgstr "Doble"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.4.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.4.stringlist.text"
+msgid "Bold"
+msgstr "Negrita"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.5.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.5.stringlist.text"
+msgid "Dotted"
+msgstr "Punteado"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.6.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.6.stringlist.text"
+msgid "Dotted (Bold)"
+msgstr "Punteado (Negrita)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.7.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.7.stringlist.text"
+msgid "Dash"
+msgstr "Guión"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.8.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.8.stringlist.text"
+msgid "Dash (Bold)"
+msgstr "Guión (Negrita)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.9.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.9.stringlist.text"
+msgid "Long Dash"
+msgstr "Guión Largo"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.10.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.10.stringlist.text"
+msgid "Long Dash (Bold)"
+msgstr "Guión Largo (Negrita)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.11.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.11.stringlist.text"
+msgid "Dot Dash"
+msgstr "Punto Guión"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.12.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.12.stringlist.text"
+msgid "Dot Dash (Bold)"
+msgstr "Punto Guion (Negrita)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.13.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.13.stringlist.text"
+msgid "Dot Dot Dash"
+msgstr "Punto Punto Guión"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.14.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.14.stringlist.text"
+msgid "Dot Dot Dash (Bold)"
+msgstr "Punto Punto Guión (Negrita)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.15.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.15.stringlist.text"
+msgid "Wave"
+msgstr "Onda"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.16.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.16.stringlist.text"
+msgid "Wave (Bold)"
+msgstr "Onda (Negrita)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.17.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.17.stringlist.text"
+msgid "Double Wave"
+msgstr "Ondulación Doble"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_UNDERLINE_COLOR.fixedtext.text
+msgid "U~nderline color"
+msgstr "Color sobre la lí~nea"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.CB_INDIVIDUALWORDS.checkbox.text
+msgid "Individual ~words"
+msgstr "~Palabras individuales"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_EMPHASIS.fixedtext.text
+msgid "Emp~hasis mark"
+msgstr "Marca de én~fasis"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EMPHASIS.1.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EMPHASIS.1.stringlist.text"
+msgid "(Without)"
+msgstr "(Sin)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EMPHASIS.2.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EMPHASIS.2.stringlist.text"
+msgid "Dot"
+msgstr "Punto"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EMPHASIS.3.stringlist.text
+msgid "Circle"
+msgstr "Círculo"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EMPHASIS.4.stringlist.text
+msgid "Disc"
+msgstr "Disco"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EMPHASIS.5.stringlist.text
+msgid "Accent"
+msgstr "Acento"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_POSITION.fixedtext.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_POSITION.fixedtext.text"
+msgid "~Position"
+msgstr "~Posición"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_POSITION.1.stringlist.text
+msgid "Above text"
+msgstr "Sobre el texto"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_POSITION.2.stringlist.text
+msgid "Below text"
+msgstr "Debajo del texto"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.WIN_EFFECTS_PREVIEW.window.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.WIN_EFFECTS_PREVIEW.window.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_CAPITALS.string.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_CAPITALS.string.text"
+msgid "Capitals"
+msgstr "Mayúsculas"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_LOWERCASE.string.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_LOWERCASE.string.text"
+msgid "Lowercase"
+msgstr "Minúsculas"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_TITLE.string.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_TITLE.string.text"
+msgid "Title"
+msgstr "Título"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_SMALL.string.text
+msgid "Small Capitals"
+msgstr "Versalitas"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_OUTLINE.string.text
+msgid "Outline"
+msgstr "Contorno"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_SHADOW.string.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_SHADOW.string.text"
+msgid "Shadow"
+msgstr "Sombra"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_BLINKING.string.text
+msgid "Blinking"
+msgstr "Parpadeando"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_CHARNAME_TRANSPARENT.string.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_CHARNAME_TRANSPARENT.string.text"
+msgid "Transparent"
+msgstr "Trasparente"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FL_POSITION.fixedline.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_POSITION.FL_POSITION.fixedline.text"
+msgid "Position"
+msgstr "Posición"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_HIGHPOS.radiobutton.text
+msgid "Superscript"
+msgstr "Superíndice"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_NORMALPOS.radiobutton.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_NORMALPOS.radiobutton.text"
+msgid "Normal"
+msgstr "Normal"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_LOWPOS.radiobutton.text
+msgid "Subscript"
+msgstr "Subíndice"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FT_HIGHLOW.fixedtext.text
+msgid "~Raise/lower by"
+msgstr "~Subir/bajar por"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.CB_HIGHLOW.checkbox.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_POSITION.CB_HIGHLOW.checkbox.text"
+msgid "A~utomatic"
+msgstr "A~utomático"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FT_FONTSIZE.fixedtext.text
+msgid "Relative font size"
+msgstr "Tamaño relativo de fuente"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FL_ROTATION_SCALING.fixedline.text
+msgid "Rotation / scaling"
+msgstr "Rotación / escalado"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FL_SCALING.fixedline.text
+msgid "Scaling"
+msgstr "Escalado"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_0_DEG.radiobutton.text
+msgid "~0 degrees"
+msgstr "~0 grados"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_90_DEG.radiobutton.text
+msgid "~90 degrees"
+msgstr "~90 grados"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_270_DEG.radiobutton.text
+msgid "~270 degrees"
+msgstr "~270 grados"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.CB_FIT_TO_LINE.checkbox.text
+msgid "Fit to line"
+msgstr "Ajustar a la línea"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FT_SCALE_WIDTH.fixedtext.text
+msgid "Scale ~width"
+msgstr "Escalar ~ancho"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FL_KERNING2.fixedline.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_POSITION.FL_KERNING2.fixedline.text"
+msgid "Spacing"
+msgstr "Espaciado"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.LB_KERNING2.1.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_POSITION.LB_KERNING2.1.stringlist.text"
+msgid "Default"
+msgstr "Predeterminado"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.LB_KERNING2.2.stringlist.text
+msgid "Expanded"
+msgstr "Expandido"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.LB_KERNING2.3.stringlist.text
+msgid "Condensed"
+msgstr "Condensado"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FT_KERNING2.fixedtext.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_POSITION.FT_KERNING2.fixedtext.text"
+msgid "b~y"
+msgstr "p~or"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.CB_PAIRKERNING.checkbox.text
+msgid "~Pair kerning"
+msgstr "~Interletraje de pares"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.WIN_POS_PREVIEW.window.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_POSITION.WIN_POS_PREVIEW.window.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.FL_SWITCHON.fixedline.text
+msgid "Double-lined"
+msgstr "Líneas dobles"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.CB_TWOLINES.checkbox.text
+msgid "~Write in double lines"
+msgstr "~Escribir en doble línea"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.FL_ENCLOSE.fixedline.text
+msgid "Enclosing character"
+msgstr "Caracteres de inclusión"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.FT_STARTBRACKET.fixedtext.text
+msgid "I~nitial character"
+msgstr "Carácter i~nicial"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_STARTBRACKET.1.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_STARTBRACKET.1.stringlist.text"
+msgid "(None)"
+msgstr "(Ninguno)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_STARTBRACKET.2.stringlist.text
+msgid "("
+msgstr "("
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_STARTBRACKET.3.stringlist.text
+msgid "["
+msgstr "["
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_STARTBRACKET.4.stringlist.text
+msgid "<"
+msgstr "<"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_STARTBRACKET.5.stringlist.text
+msgid "{"
+msgstr "{"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_STARTBRACKET.6.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_STARTBRACKET.6.stringlist.text"
+msgid "Other Characters..."
+msgstr "Otros carácteres..."
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.FT_ENDBRACKET.fixedtext.text
+msgid "Final charact~er"
+msgstr "Caráct~er final"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_ENDBRACKET.1.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_ENDBRACKET.1.stringlist.text"
+msgid "(None)"
+msgstr "(Ninguno)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_ENDBRACKET.2.stringlist.text
+msgid ")"
+msgstr ")"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_ENDBRACKET.3.stringlist.text
+msgid "]"
+msgstr "]"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_ENDBRACKET.4.stringlist.text
+msgid ">"
+msgstr ">"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_ENDBRACKET.5.stringlist.text
+msgid "}"
+msgstr "}"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_ENDBRACKET.6.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_ENDBRACKET.6.stringlist.text"
+msgid "Other Characters..."
+msgstr "Otros Caracteres..."
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.WIN_TWOLINES_PREVIEW.window.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.WIN_TWOLINES_PREVIEW.window.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_AUTOCORR_REPLACE.pageitem.text
+msgid "Replace"
+msgstr "Reemplazar"
+
+#: autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_AUTOCORR_EXCEPT.pageitem.text
+msgid "Exceptions"
+msgstr "Excepciones"
+
+#: autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_AUTOCORR_OPTIONS.pageitem.text
+msgctxt "autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_AUTOCORR_OPTIONS.pageitem.text"
+msgid "Options"
+msgstr "Opciones"
+
+#: autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_AUTOFMT_APPLY.pageitem.text
+msgctxt "autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_AUTOFMT_APPLY.pageitem.text"
+msgid "Options"
+msgstr "Opciones"
+
+#: autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_AUTOCORR_QUOTE.pageitem.text
+msgctxt "autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_AUTOCORR_QUOTE.pageitem.text"
+msgid "Localized Options"
+msgstr "Opciones regionales"
+
+#: autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.pageitem.text
+msgctxt "autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.pageitem.text"
+msgid "Word Completion"
+msgstr "Completado de palabras"
+
+#: autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_SMARTTAG_OPTIONS.pageitem.text
+msgctxt "autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_SMARTTAG_OPTIONS.pageitem.text"
+msgid "Smart Tags"
+msgstr "Etiquetas Inteligentes"
+
+#: autocdlg.src#RID_OFA_AUTOCORR_DLG.FT_LANG.fixedtext.text
+msgid "Replacements and exceptions for language:"
+msgstr "Sustituciones y excepciones para el idioma:"
+
+#: autocdlg.src#RID_OFA_AUTOCORR_DLG.tabdialog.text
+msgid "AutoCorrect"
+msgstr "Autocorrección"
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.ST_USE_REPLACE.string.text
+msgid "Use replacement table"
+msgstr "Usar la tabla de sustituciones"
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.ST_CPTL_STT_WORD.string.text
+msgid "Correct TWo INitial CApitals"
+msgstr "Corregir DOs MAyúsculas SEguidas"
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.ST_CPTL_STT_SENT.string.text
+msgid "Capitalize first letter of every sentence"
+msgstr "Iniciar todas las frases con mayúsculas"
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.ST_BOLD_UNDER.string.text
+msgid "Automatic *bold* and _underline_"
+msgstr "En *negrita* y _subrayado_ automáticamente."
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.STR_NO_DBL_SPACES.string.text
+msgid "Ignore double spaces"
+msgstr "Ignorar espacios dobles"
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.ST_DETECT_URL.string.text
+msgid "URL Recognition"
+msgstr "Reconocer URL"
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.ST_DASH.string.text
+msgid "Replace dashes"
+msgstr "Reemplazar guiones"
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.ST_CORRECT_ACCIDENTAL_CAPS_LOCK.string.text
+msgid "Correct accidental use of cAPS LOCK key"
+msgstr "Corregir el uso accidental de la tecla Bloq Mayús"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_OPTIONS.tabpage.text
+msgid "Settings"
+msgstr "Configuración"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.PB_EDIT.pushbutton.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.PB_EDIT.pushbutton.text"
+msgid "~Edit..."
+msgstr "~Editar..."
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_HEADER1.string.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_HEADER1.string.text"
+msgid "[M]"
+msgstr "[M]"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_HEADER2.string.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_HEADER2.string.text"
+msgid "[T]"
+msgstr "[E]"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.FT_HEADER1_EXPLANATION.fixedtext.text
+msgid "[M]: Replace while modifying existing text"
+msgstr "[M]: Reemplazar al modificar el texto existente"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.FT_HEADER2_EXPLANATION.fixedtext.text
+msgid "[T]: AutoFormat/AutoCorrect while typing"
+msgstr "[E]: Autoformato y autocorrección al escribir"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.ST_DEL_EMPTY_PARA.string.text
+msgid "Remove blank paragraphs"
+msgstr "Eliminar los párrafos vacíos"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.ST_USER_STYLE.string.text
+msgid "Replace Custom Styles"
+msgstr "Reemplazar los estilos personalizados"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.ST_BULLET.string.text
+msgid "Replace bullets with: "
+msgstr "Reemplazar viñetas por: "
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.ST_RIGHT_MARGIN.string.text
+msgid "Combine single line paragraphs if length greater than"
+msgstr "Combinar los párrafos de una sóla línea si la longitud es mayor al"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_NUM.string.text
+msgid "Apply numbering - symbol: "
+msgstr "Aplicar numeración - símbolo: "
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_BORDER.string.text
+msgid "Apply border"
+msgstr "Aplicar borde"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_TABLE.string.text
+msgid "Create table"
+msgstr "Crear tabla"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_REPLACE_TEMPLATES.string.text
+msgid "Apply Styles"
+msgstr "Aplicar estilos"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_DEL_SPACES_AT_STT_END.string.text
+msgid "Delete spaces and tabs at beginning and end of paragraph"
+msgstr "Eliminar espacios y tabuladores al principio y al final de los párrafos"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_DEL_SPACES_BETWEEN_LINES.string.text
+msgid "Delete spaces and tabs at end and start of line"
+msgstr "Eliminar espacios y tabuladores al final y al principio de las líneas"
+
+#: autocdlg.src#RID_OFADLG_PRCNT_SET.FL_PRCNT.fixedline.text
+msgid "Minimum size"
+msgstr "Tamaño mínimo"
+
+#: autocdlg.src#RID_OFADLG_PRCNT_SET.modaldialog.text
+msgid "Combine"
+msgstr "Combinar"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_REPLACE.FT_SHORT.fixedtext.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_REPLACE.FT_SHORT.fixedtext.text"
+msgid "Repla~ce"
+msgstr "Reempla~zar"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_REPLACE.FT_REPLACE.fixedtext.text
+msgid "~With:"
+msgstr "~Por:"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_REPLACE.CB_TEXT_ONLY.checkbox.text
+msgid "~Text only"
+msgstr "~Solo texto"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_REPLACE.PB_NEW_REPLACE.pushbutton.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_REPLACE.PB_NEW_REPLACE.pushbutton.text"
+msgid "~New"
+msgstr "~Nuevo"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_REPLACE.PB_DELETE_REPLACE.pushbutton.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_REPLACE.PB_DELETE_REPLACE.pushbutton.text"
+msgid "~Delete"
+msgstr "~Eliminar"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_REPLACE.STR_MODIFY.string.text
+msgid "~Replace"
+msgstr "~Reemplazar"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.FL_ABBREV.fixedline.text
+msgid "Abbreviations (no subsequent capital)"
+msgstr "Abreviaturas (a las que no siguen mayúsculas)"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.PB_NEWABBREV.pushbutton.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.PB_NEWABBREV.pushbutton.text"
+msgid "~New"
+msgstr "~Nuevo"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.PB_DELABBREV.pushbutton.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.PB_DELABBREV.pushbutton.text"
+msgid "~Delete"
+msgstr "~Eliminar"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.CB_AUTOABBREV.checkbox.text
+msgid "~AutoInclude"
+msgstr "~Incluir automáticamente"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.FL_DOUBLECAPS.fixedline.text
+msgid "Words with TWo INitial CApitals"
+msgstr "Palabras que COmienzan COn DOs MAyúsculas"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.PB_NEWDOUBLECAPS.pushbutton.text
+msgid "Ne~w"
+msgstr "Nue~vo"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.PB_DELDOUBLECAPS.pushbutton.text
+msgid "Dele~te"
+msgstr "E~liminar"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.CB_AUTOCAPS.checkbox.text
+msgid "A~utoInclude"
+msgstr "Incl~uir automáticamente"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.STR_PB_NEWABBREV.string.text
+msgid "New abbreviations"
+msgstr "Nuevas abreviaturas"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.STR_PB_DELABBREV.string.text
+msgid "Delete abbreviations"
+msgstr "Eliminar abreviaturas"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.STR_PB_NEWDOUBLECAPS.string.text
+msgid "New words with two initial capitals"
+msgstr "Palabras nuevas con dos mayúsculas iniciales"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.STR_PB_DELDOUBLECAPS.string.text
+msgid "Delete words with two initial capitals"
+msgstr "Eliminar palabras con dos mayúsculas iniciales"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_HEADER1.string.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_HEADER1.string.text"
+msgid "[M]"
+msgstr "[M]"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_HEADER2.string.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_HEADER2.string.text"
+msgid "[T]"
+msgstr "[E]"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.ST_NON_BREAK_SPACE.string.text
+msgid "Add non breaking space before specific punctuation marks in french text"
+msgstr "Añadir un espacio de no separación antes de ciertos signos de puntuación en textos franceses"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.ST_ORDINAL.string.text
+msgid "Format ordinal numbers suffixes (1st -> 1^st)"
+msgstr "Formatear los sufijos de números ordinales (1ro -> 1^ro)"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.FL_SINGLE.fixedline.text
+msgid "Single quotes"
+msgstr "Comillas simples"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.CB_SGL_TYPO.checkbox.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.CB_SGL_TYPO.checkbox.text"
+msgid "Repla~ce"
+msgstr "Reempla~zar"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.FT_SGL_STARTQUOTE.fixedtext.text
+msgid "~Start quote:"
+msgstr "Comilla de ~apertura:"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.FT_SGL_ENDQUOTE.fixedtext.text
+msgid "~End quote:"
+msgstr "Comilla de ~cierre:"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.PB_SGL_STD.pushbutton.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.PB_SGL_STD.pushbutton.text"
+msgid "~Default"
+msgstr "~Predeterminado"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.FL_DOUBLE.fixedline.text
+msgid "Double quotes"
+msgstr "Comillas dobles"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.CB_TYPO.checkbox.text
+msgid "Repl~ace"
+msgstr "Reemp~lazar"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.FT_STARTQUOTE.fixedtext.text
+msgid "Start q~uote:"
+msgstr "C~omilla de apertura:"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.FT_ENDQUOTE.fixedtext.text
+msgid "E~nd quote:"
+msgstr "Comilla de cie~rre:"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.PB_DBL_STD.pushbutton.text
+msgid "De~fault"
+msgstr "~Predeterminado"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_CHANGE_START.string.text
+msgid "Start quote"
+msgstr "Comilla de apertura"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_CHANGE_END.string.text
+msgid "End quote"
+msgstr "Comilla de cierre"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.ST_STANDARD.string.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.ST_STANDARD.string.text"
+msgid "Default"
+msgstr "Predeterminado"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_PB_SGL_STD.string.text
+msgid "Single quotes default"
+msgstr "Comillas simples en forma predeterminada"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_PB_DBL_STD.string.text
+msgid "Double quotes default"
+msgstr "Comillas dobles en forma predeterminada"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_PB_SGL_START.string.text
+msgid "Start quote of single quotes"
+msgstr "Comilla inicial para las comillas simples"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_PB_DBL_START.string.text
+msgid "Start quote of double quotes"
+msgstr "Comilla inicial para las comillas dobles"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_PB_SGL_END.string.text
+msgid "End quote of single quotes"
+msgstr "Comilla final para las comillas simples"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_PB_DBL_END.string.text
+msgid "End quote of double quotes"
+msgstr "Comilla final para las comillas dobles"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.tabpage.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.tabpage.text"
+msgid "Localized Options"
+msgstr "Opciones regionales"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.CB_ACTIV.checkbox.text
+msgid "Enable word ~completion"
+msgstr "Activar el ~completado de palabras"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.CB_APPEND_SPACE.checkbox.text
+msgid "~Append space"
+msgstr "~Anexar un espacio"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.CB_AS_TIP.checkbox.text
+msgid "~Show as tip"
+msgstr "~Mostrar como consejo emergente"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.CB_COLLECT.checkbox.text
+msgid "C~ollect words"
+msgstr "Rec~olectar palabras"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.CB_REMOVE_LIST.checkbox.text
+msgid "~When closing a document, remove the words collected from it from the list"
+msgstr "~Al cerrar el documento, eliminar de la lista las palabras que fueron recolectadas del mismo"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.FT_EXPAND_KEY.fixedtext.text
+msgid "Acc~ept with"
+msgstr "Ac~eptar con"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.FT_MIN_WORDLEN.fixedtext.text
+msgid "Mi~n. word length"
+msgstr "Longitud de palabra mí~n."
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.FT_MAX_ENTRIES.fixedtext.text
+msgid "~Max. entries"
+msgstr "~Máxima cantidad de elementos"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.PB_ENTRIES.pushbutton.text
+msgid "~Delete Entry"
+msgstr "~Eliminar elemento"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.tabpage.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.tabpage.text"
+msgid "Word Completion"
+msgstr "Completado de palabras"
+
+#: autocdlg.src#RID_OFAPAGE_SMARTTAG_OPTIONS.CB_SMARTTAGS.checkbox.text
+msgid "Label text with smart tags"
+msgstr "Etiquetar el texto con etiquetas inteligentes"
+
+#: autocdlg.src#RID_OFAPAGE_SMARTTAG_OPTIONS.FT_SMARTTAGS.fixedtext.text
+msgid "Currently installed smart tags"
+msgstr "Etiquetas inteligentes instaladas actualmente"
+
+#: autocdlg.src#RID_OFAPAGE_SMARTTAG_OPTIONS.PB_SMARTTAGS.pushbutton.text
+msgid "Properties..."
+msgstr "Propiedades..."
+
+#: autocdlg.src#RID_OFAPAGE_SMARTTAG_OPTIONS.tabpage.text
+msgctxt "autocdlg.src#RID_OFAPAGE_SMARTTAG_OPTIONS.tabpage.text"
+msgid "Smart Tags"
+msgstr "Etiquetas inteligentes"
+
+#: page.src#RID_SVXPAGE_PAGE.FL_PAPER_SIZE.fixedline.text
+msgid "Paper format"
+msgstr "Formato de papel"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_PAPER_FORMAT.fixedtext.text
+msgid "~Format"
+msgstr "~Formato"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_PAPER_WIDTH.fixedtext.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.FT_PAPER_WIDTH.fixedtext.text"
+msgid "~Width"
+msgstr "~Ancho"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_PAPER_HEIGHT.fixedtext.text
+msgid "~Height"
+msgstr "A~ltura"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_ORIENTATION.fixedtext.text
+msgid "Orientation"
+msgstr "Orientación"
+
+#: page.src#RID_SVXPAGE_PAGE.RB_PORTRAIT.radiobutton.text
+msgid "~Portrait"
+msgstr "~Vertical"
+
+#: page.src#RID_SVXPAGE_PAGE.RB_LANDSCAPE.radiobutton.text
+msgid "L~andscape"
+msgstr "~Apaisada"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_TEXT_FLOW.fixedtext.text
+msgid "~Text direction"
+msgstr "Dirección del ~texto"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_PAPER_TRAY.fixedtext.text
+msgid "Paper ~tray"
+msgstr "~Alimentación del papel"
+
+#: page.src#RID_SVXPAGE_PAGE.FL_MARGIN.fixedline.text
+msgid "Margins"
+msgstr "Márgenes"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_LEFT_MARGIN.fixedtext.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.FT_LEFT_MARGIN.fixedtext.text"
+msgid "~Left"
+msgstr "~Izquierdo"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_RIGHT_MARGIN.fixedtext.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.FT_RIGHT_MARGIN.fixedtext.text"
+msgid "~Right"
+msgstr "~Derecho"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_TOP_MARGIN.fixedtext.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.FT_TOP_MARGIN.fixedtext.text"
+msgid "~Top"
+msgstr "~Superior"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_BOTTOM_MARGIN.fixedtext.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.FT_BOTTOM_MARGIN.fixedtext.text"
+msgid "~Bottom"
+msgstr "~Inferior"
+
+#: page.src#RID_SVXPAGE_PAGE.FL_LAYOUT.fixedline.text
+msgid "Layout settings"
+msgstr "Configuración del diseño"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_PAGELAYOUT.fixedtext.text
+msgid "Page layout"
+msgstr "Diseño de página"
+
+#: page.src#RID_SVXPAGE_PAGE.LB_LAYOUT.1.stringlist.text
+msgid "Right and left"
+msgstr "Derecha e izquierda"
+
+#: page.src#RID_SVXPAGE_PAGE.LB_LAYOUT.2.stringlist.text
+msgid "Mirrored"
+msgstr "Reflejado"
+
+#: page.src#RID_SVXPAGE_PAGE.LB_LAYOUT.3.stringlist.text
+msgid "Only right"
+msgstr "Solo derecha"
+
+#: page.src#RID_SVXPAGE_PAGE.LB_LAYOUT.4.stringlist.text
+msgid "Only left"
+msgstr "Solo izquierda"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_NUMBER_FORMAT.fixedtext.text
+msgid "For~mat"
+msgstr "For~mato"
+
+#: page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.1.stringlist.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.1.stringlist.text"
+msgid "A, B, C, ..."
+msgstr "A, B, C, ..."
+
+#: page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.2.stringlist.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.2.stringlist.text"
+msgid "a, b, c, ..."
+msgstr "a, b, c, ..."
+
+#: page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.3.stringlist.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.3.stringlist.text"
+msgid "I, II, III, ..."
+msgstr "I, II, III, ..."
+
+#: page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.4.stringlist.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.4.stringlist.text"
+msgid "i, ii, iii, ..."
+msgstr "i, ii, iii, ..."
+
+#: page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.5.stringlist.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.5.stringlist.text"
+msgid "1, 2, 3, ..."
+msgstr "1, 2, 3, ..."
+
+#: page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.6.stringlist.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.6.stringlist.text"
+msgid "None"
+msgstr "Ninguno"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_TBL_ALIGN.fixedtext.text
+msgid "Table alignment"
+msgstr "Alineación de tabla"
+
+#: page.src#RID_SVXPAGE_PAGE.CB_HORZ.checkbox.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.CB_HORZ.checkbox.text"
+msgid "Hori~zontal"
+msgstr "Hori~zontal"
+
+#: page.src#RID_SVXPAGE_PAGE.CB_VERT.checkbox.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.CB_VERT.checkbox.text"
+msgid "~Vertical"
+msgstr "Ver~tical"
+
+#: page.src#RID_SVXPAGE_PAGE.CB_ADAPT.checkbox.text
+msgid "~Fit object to paper format"
+msgstr "~Ajustar el objeto al formato del papel"
+
+#: page.src#RID_SVXPAGE_PAGE.CB_REGISTER.checkbox.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.CB_REGISTER.checkbox.text"
+msgid "Register-true"
+msgstr "Conformidad de registro"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_REGISTER.fixedtext.text
+msgid "Reference ~Style"
+msgstr "E~stilo de referencia"
+
+#: page.src#RID_SVXPAGE_PAGE.STR_INSIDE.string.text
+msgid "I~nner"
+msgstr "Int~erior"
+
+#: page.src#RID_SVXPAGE_PAGE.STR_OUTSIDE.string.text
+msgid "O~uter"
+msgstr "E~xterior"
+
+#: page.src#RID_SVXPAGE_PAGE.STR_QUERY_PRINTRANGE.string.text
+msgid ""
+"The margin settings are out of print range.\n"
+"\n"
+"Do you still want to apply these settings?"
+msgstr ""
+"La configuración de los márgenes está fuera del área imprimible.\n"
+"\n"
+"¿Quiere aplicar esta configuración de todos modos?"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.1.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.1.itemlist.text"
+msgid "A6"
+msgstr "A6"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.2.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.2.itemlist.text"
+msgid "A5"
+msgstr "A5"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.3.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.3.itemlist.text"
+msgid "A4"
+msgstr "A4"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.4.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.4.itemlist.text"
+msgid "A3"
+msgstr "A3"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.5.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.5.itemlist.text"
+msgid "B6 (ISO)"
+msgstr "B6 (ISO)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.6.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.6.itemlist.text"
+msgid "B5 (ISO)"
+msgstr "B5 (ISO)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.7.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.7.itemlist.text"
+msgid "B4 (ISO)"
+msgstr "B4 (ISO)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.8.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.8.itemlist.text"
+msgid "Letter"
+msgstr "Carta"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.9.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.9.itemlist.text"
+msgid "Legal"
+msgstr "Legal"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.10.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.10.itemlist.text"
+msgid "Long Bond"
+msgstr "Oficio"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.11.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.11.itemlist.text"
+msgid "Tabloid"
+msgstr "Tabloide"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.12.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.12.itemlist.text"
+msgid "B6 (JIS)"
+msgstr "B6 (JIS)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.13.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.13.itemlist.text"
+msgid "B5 (JIS)"
+msgstr "B5 (JIS)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.14.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.14.itemlist.text"
+msgid "B4 (JIS)"
+msgstr "B4 (JIS)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.15.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.15.itemlist.text"
+msgid "16 Kai"
+msgstr "Kai 16"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.16.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.16.itemlist.text"
+msgid "32 Kai"
+msgstr "Kai 32"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.17.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.17.itemlist.text"
+msgid "Big 32 Kai"
+msgstr "Kai 32 grande"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.18.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.18.itemlist.text"
+msgid "User"
+msgstr "Usuario"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.19.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.19.itemlist.text"
+msgid "DL Envelope"
+msgstr "Sobre DL"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.20.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.20.itemlist.text"
+msgid "C6 Envelope"
+msgstr "Sobre C6"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.21.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.21.itemlist.text"
+msgid "C6/5 Envelope"
+msgstr "Sobre C6/5"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.22.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.22.itemlist.text"
+msgid "C5 Envelope"
+msgstr "Sobre C5"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.23.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.23.itemlist.text"
+msgid "C4 Envelope"
+msgstr "Sobre C4"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.24.itemlist.text
+msgid "#6 3/4 (Personal) Envelope"
+msgstr "Sobre #6 3/4 (Personal)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.25.itemlist.text
+msgid "#8 (Monarch) Envelope"
+msgstr "Sobre #8 (Monarca)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.26.itemlist.text
+msgid "#9 Envelope"
+msgstr "Sobre #9"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.27.itemlist.text
+msgid "#10 Envelope"
+msgstr "Sobre #10"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.28.itemlist.text
+msgid "#11 Envelope"
+msgstr "Sobre #11"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.29.itemlist.text
+msgid "#12 Envelope"
+msgstr "Sobre #12"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.30.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.30.itemlist.text"
+msgid "Japanese Postcard"
+msgstr "Tarjeta postal japonesa"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.1.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.1.itemlist.text"
+msgid "A6"
+msgstr "A6"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.2.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.2.itemlist.text"
+msgid "A5"
+msgstr "A5"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.3.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.3.itemlist.text"
+msgid "A4"
+msgstr "A4"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.4.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.4.itemlist.text"
+msgid "A3"
+msgstr "A3"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.5.itemlist.text
+msgid "A2"
+msgstr "A2"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.6.itemlist.text
+msgid "A1"
+msgstr "A1"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.7.itemlist.text
+msgid "A0"
+msgstr "A0"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.8.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.8.itemlist.text"
+msgid "B6 (ISO)"
+msgstr "B6 (ISO)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.9.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.9.itemlist.text"
+msgid "B5 (ISO)"
+msgstr "B5 (ISO)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.10.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.10.itemlist.text"
+msgid "B4 (ISO)"
+msgstr "B4 (ISO)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.11.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.11.itemlist.text"
+msgid "Letter"
+msgstr "Carta"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.12.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.12.itemlist.text"
+msgid "Legal"
+msgstr "Legal"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.13.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.13.itemlist.text"
+msgid "Long Bond"
+msgstr "Oficio"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.14.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.14.itemlist.text"
+msgid "Tabloid"
+msgstr "Tabloide"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.15.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.15.itemlist.text"
+msgid "B6 (JIS)"
+msgstr "B6 (JIS)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.16.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.16.itemlist.text"
+msgid "B5 (JIS)"
+msgstr "B5 (JIS)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.17.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.17.itemlist.text"
+msgid "B4 (JIS)"
+msgstr "B4 (JIS)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.18.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.18.itemlist.text"
+msgid "16 Kai"
+msgstr "Kai 16"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.19.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.19.itemlist.text"
+msgid "32 Kai"
+msgstr "Kai 32"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.20.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.20.itemlist.text"
+msgid "Big 32 Kai"
+msgstr "Kai 32 grande"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.21.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.21.itemlist.text"
+msgid "User"
+msgstr "Usuario"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.22.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.22.itemlist.text"
+msgid "DL Envelope"
+msgstr "Sobre DL"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.23.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.23.itemlist.text"
+msgid "C6 Envelope"
+msgstr "Sobre C6"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.24.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.24.itemlist.text"
+msgid "C6/5 Envelope"
+msgstr "Sobre C6/5"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.25.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.25.itemlist.text"
+msgid "C5 Envelope"
+msgstr "Sobre C5"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.26.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.26.itemlist.text"
+msgid "C4 Envelope"
+msgstr "Sobre C4"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.27.itemlist.text
+msgid "Dia Slide"
+msgstr "Diapositiva Dia"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.28.itemlist.text
+msgid "Screen 4:3"
+msgstr "Pantalla 4:3"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.29.itemlist.text
+msgid "Screen 16:9"
+msgstr "Pantalla 16:9"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.30.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.30.itemlist.text"
+msgid "Japanese Postcard"
+msgstr "Tarjeta postal japonesa"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FL_LINE.fixedline.text
+msgctxt "measure.src#RID_SVXPAGE_MEASURE.FL_LINE.fixedline.text"
+msgid "Line"
+msgstr "Línea"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_LINE_DIST.fixedtext.text
+msgid "Line ~distance"
+msgstr "D~istancia entre líneas"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_HELPLINE_OVERHANG.fixedtext.text
+msgid "Guide ~overhang"
+msgstr "Guías ~sobresalientes"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_HELPLINE_DIST.fixedtext.text
+msgid "~Guide distance"
+msgstr "~Distancia entre guías"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_HELPLINE1_LEN.fixedtext.text
+msgid "~Left guide"
+msgstr "Línea auxiliar i~zquierda"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_HELPLINE2_LEN.fixedtext.text
+msgid "~Right guide"
+msgstr "Línea au~xiliar derecha"
+
+#: measure.src#RID_SVXPAGE_MEASURE.TSB_BELOW_REF_EDGE.tristatebox.text
+msgid "Measure ~below object"
+msgstr "Medida de~bajo del objeto"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_DECIMALPLACES.fixedtext.text
+msgid "Decimal places"
+msgstr "Decimales"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FL_LABEL.fixedline.text
+msgid "Legend"
+msgstr "Etiqueta"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_POSITION.fixedtext.text
+msgid "~Text position"
+msgstr "~Posición del texto"
+
+#: measure.src#RID_SVXPAGE_MEASURE.TSB_AUTOPOSV.tristatebox.text
+msgid "~AutoVertical"
+msgstr "~Vertical autom."
+
+#: measure.src#RID_SVXPAGE_MEASURE.TSB_AUTOPOSH.tristatebox.text
+msgid "A~utoHorizontal"
+msgstr "~Horizontal autom."
+
+#: measure.src#RID_SVXPAGE_MEASURE.TSB_PARALLEL.tristatebox.text
+msgid "~Parallel to line"
+msgstr "~Paralela a la línea"
+
+#: measure.src#RID_SVXPAGE_MEASURE.TSB_SHOW_UNIT.tristatebox.text
+msgid "Show ~meas. units"
+msgstr "~Mostrar unidades de medida"
+
+#: measure.src#RID_SVXPAGE_MEASURE.STR_MEASURE_AUTOMATIC.string.text
+msgctxt "measure.src#RID_SVXPAGE_MEASURE.STR_MEASURE_AUTOMATIC.string.text"
+msgid "Automatic"
+msgstr "Automático"
+
+#: measure.src#RID_SVXPAGE_MEASURE.tabpage.text
+msgid "Dimensioning"
+msgstr "Dimensiones"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FL_EFFECT.fixedline.text
+msgid "Text animation effects"
+msgstr "Efectos de animación de texto"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FT_EFFECTS.fixedtext.text
+msgid "E~ffect"
+msgstr "E~fecto"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.LB_EFFECT.1.stringlist.text
+msgid "No Effect"
+msgstr "Sin efecto"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.LB_EFFECT.2.stringlist.text
+msgid "Blink"
+msgstr "Intermitente"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.LB_EFFECT.3.stringlist.text
+msgid "Scroll Through"
+msgstr "Continuo"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.LB_EFFECT.4.stringlist.text
+msgid "Scroll Back and Forth"
+msgstr "De un lado al otro"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.LB_EFFECT.5.stringlist.text
+msgid "Scroll In"
+msgstr "Entrar"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FT_DIRECTION.fixedtext.text
+msgid "Direction"
+msgstr "Orientación"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.BTN_UP.imagebutton.text
+msgctxt "textanim.src#RID_SVXPAGE_TEXTANIMATION.BTN_UP.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.BTN_UP.imagebutton.quickhelptext
+msgid "To Top"
+msgstr "Hacia arriba"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.BTN_LEFT.imagebutton.text
+msgctxt "textanim.src#RID_SVXPAGE_TEXTANIMATION.BTN_LEFT.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.BTN_LEFT.imagebutton.quickhelptext
+msgid "To Left"
+msgstr "Hacia la izquierda"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.BTN_RIGHT.imagebutton.text
+msgctxt "textanim.src#RID_SVXPAGE_TEXTANIMATION.BTN_RIGHT.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.BTN_RIGHT.imagebutton.quickhelptext
+msgid "To Right"
+msgstr "Hacia la derecha"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.BTN_DOWN.imagebutton.text
+msgctxt "textanim.src#RID_SVXPAGE_TEXTANIMATION.BTN_DOWN.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.BTN_DOWN.imagebutton.quickhelptext
+msgid "To Bottom"
+msgstr "Hacia abajo"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FL_PROPERTIES.fixedline.text
+msgctxt "textanim.src#RID_SVXPAGE_TEXTANIMATION.FL_PROPERTIES.fixedline.text"
+msgid "Properties"
+msgstr "Propiedades"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.TSB_START_INSIDE.tristatebox.text
+msgid "S~tart inside"
+msgstr "Texto visible al ~iniciar"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.TSB_STOP_INSIDE.tristatebox.text
+msgid "Text visible when exiting"
+msgstr "Texto visible al finalizar"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FT_COUNT.fixedtext.text
+msgid "Animation cycles"
+msgstr "Ciclos de animación"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.TSB_ENDLESS.tristatebox.text
+msgid "~Continuous"
+msgstr "~Continuo"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FT_AMOUNT.fixedtext.text
+msgid "Increment"
+msgstr "Incremento"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.TSB_PIXEL.tristatebox.text
+msgid "~Pixels"
+msgstr "~Píxeles"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.MTR_FLD_AMOUNT.metricfield.text
+msgid " Pixel"
+msgstr " Píxel"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FT_DELAY.fixedtext.text
+msgid "Delay"
+msgstr "Retardo"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.TSB_AUTO.tristatebox.text
+msgctxt "textanim.src#RID_SVXPAGE_TEXTANIMATION.TSB_AUTO.tristatebox.text"
+msgid "~Automatic"
+msgstr "~Automático"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.MTR_FLD_DELAY.metricfield.text
+msgid " ms"
+msgstr " ms"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.tabpage.text
+msgid "Animation"
+msgstr "Animación de texto"
+
+#: textanim.src#RID_SVXDLG_TEXT.1.RID_SVXPAGE_TEXTATTR.pageitem.text
+msgctxt "textanim.src#RID_SVXDLG_TEXT.1.RID_SVXPAGE_TEXTATTR.pageitem.text"
+msgid "Text"
+msgstr "Texto"
+
+#: textanim.src#RID_SVXDLG_TEXT.1.RID_SVXPAGE_TEXTANIMATION.pageitem.text
+msgid "Text Animation"
+msgstr "Animación de texto"
+
+#: textanim.src#RID_SVXDLG_TEXT.tabdialog.text
+msgctxt "textanim.src#RID_SVXDLG_TEXT.tabdialog.text"
+msgid "Text"
+msgstr "Texto"
+
+#: border.src#RID_SVXPAGE_BORDER.FL_BORDER.fixedline.text
+msgid "Line arrangement"
+msgstr "Disposición de líneas"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_DEFAULT.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_DEFAULT.fixedtext.text"
+msgid "~Default"
+msgstr "~Predeterminado"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_USERDEF.fixedtext.text
+msgid "~User-defined"
+msgstr "Definido por el ~usuario"
+
+#: border.src#RID_SVXPAGE_BORDER.FL_LINE.fixedline.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FL_LINE.fixedline.text"
+msgid "Line"
+msgstr "Línea"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_STYLE.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_STYLE.fixedtext.text"
+msgid "St~yle"
+msgstr "~Estilo"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_WIDTH.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_WIDTH.fixedtext.text"
+msgid "~Width"
+msgstr "~Ancho"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_COLOR.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_COLOR.fixedtext.text"
+msgid "~Color"
+msgstr "~Color"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_LEFT.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_LEFT.fixedtext.text"
+msgid "~Left"
+msgstr "~Izquierda"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_RIGHT.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_RIGHT.fixedtext.text"
+msgid "Right"
+msgstr "Derecha"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_TOP.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_TOP.fixedtext.text"
+msgid "~Top"
+msgstr "~Arriba"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_BOTTOM.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_BOTTOM.fixedtext.text"
+msgid "~Bottom"
+msgstr "A~bajo"
+
+#: border.src#RID_SVXPAGE_BORDER.CB_SYNC.checkbox.text
+msgid "Synchronize"
+msgstr "Sincronizar"
+
+#: border.src#RID_SVXPAGE_BORDER.FL_DISTANCE.fixedline.text
+msgid "Spacing to contents"
+msgstr "Distancia al texto"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_SHADOWPOS.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_SHADOWPOS.fixedtext.text"
+msgid "~Position"
+msgstr "~Posición"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_SHADOWSIZE.fixedtext.text
+msgid "Distan~ce"
+msgstr "Distan~cia"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_SHADOWCOLOR.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_SHADOWCOLOR.fixedtext.text"
+msgid "C~olor"
+msgstr "C~olor"
+
+#: border.src#RID_SVXPAGE_BORDER.FL_SHADOW.fixedline.text
+msgid "Shadow style"
+msgstr "Estilo de sombra"
+
+#: border.src#RID_SVXPAGE_BORDER.FL_PROPERTIES.fixedline.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FL_PROPERTIES.fixedline.text"
+msgid "Properties"
+msgstr "Propiedades"
+
+#: border.src#RID_SVXPAGE_BORDER.CB_MERGEWITHNEXT.checkbox.text
+msgid "~Merge with next paragraph"
+msgstr "~Combinar con siguiente párrafo"
+
+#: border.src#RID_SVXPAGE_BORDER.CB_MERGEADJACENTBORDERS.checkbox.text
+msgid "~Merge adjacent line styles"
+msgstr "~Fusionar estilos de línea contiguos"
+
+#: border.src#RID_SVXPAGE_BORDER.tabpage.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.tabpage.text"
+msgid "Borders"
+msgstr "Borde"
+
+#: border.src#RID_SVXSTR_TABLE_PRESET_NONE.string.text
+msgid "Set No Borders"
+msgstr "Sin bordes"
+
+#: border.src#RID_SVXSTR_TABLE_PRESET_ONLYOUTER.string.text
+msgid "Set Outer Border Only"
+msgstr "Sólo borde exterior"
+
+#: border.src#RID_SVXSTR_TABLE_PRESET_OUTERHORI.string.text
+msgid "Set Outer Border and Horizontal Lines"
+msgstr "Borde exterior y líneas horizontales"
+
+#: border.src#RID_SVXSTR_TABLE_PRESET_OUTERALL.string.text
+msgid "Set Outer Border and All Inner Lines"
+msgstr "Borde exterior y todas las líneas interiores"
+
+#: border.src#RID_SVXSTR_TABLE_PRESET_OUTERINNER.string.text
+msgid "Set Outer Border Without Changing Inner Lines"
+msgstr "Borde exterior sin modificación de las líneas interiores"
+
+#: border.src#RID_SVXSTR_PARA_PRESET_DIAGONAL.string.text
+msgid "Set Diagonal Lines Only"
+msgstr "Definir sólo líneas verticales"
+
+#: border.src#RID_SVXSTR_PARA_PRESET_ALL.string.text
+msgid "Set All Four Borders"
+msgstr "Los cuatro bordes"
+
+#: border.src#RID_SVXSTR_PARA_PRESET_LEFTRIGHT.string.text
+msgid "Set Left and Right Borders Only"
+msgstr "Sólo borde derecho e izquierdo"
+
+#: border.src#RID_SVXSTR_PARA_PRESET_TOPBOTTOM.string.text
+msgid "Set Top and Bottom Borders Only"
+msgstr "Sólo borde inferior y superior"
+
+#: border.src#RID_SVXSTR_PARA_PRESET_ONLYLEFT.string.text
+msgid "Set Left Border Only"
+msgstr "Sólo borde izquierdo"
+
+#: border.src#RID_SVXSTR_HOR_PRESET_ONLYHOR.string.text
+msgid "Set Top and Bottom Borders, and All Inner Lines"
+msgstr "Definir borde inferior y superior y todas las líneas interiores"
+
+#: border.src#RID_SVXSTR_VER_PRESET_ONLYVER.string.text
+msgid "Set Left and Right Borders, and All Inner Lines"
+msgstr "Definir borde izquierdo y derecho y todas las líneas interiores"
+
+#: border.src#RID_SVXSTR_SHADOW_STYLE_NONE.string.text
+msgid "No Shadow"
+msgstr "Sin sombra"
+
+#: border.src#RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT.string.text
+msgid "Cast Shadow to Bottom Right"
+msgstr "Proyectar sombra hacia abajo y a la derecha"
+
+#: border.src#RID_SVXSTR_SHADOW_STYLE_TOPRIGHT.string.text
+msgid "Cast Shadow to Top Right"
+msgstr "Proyectar sombra hacia arriba y a la derecha"
+
+#: border.src#RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT.string.text
+msgid "Cast Shadow to Bottom Left"
+msgstr "Proyectar sombra hacia abajo y a la izquierda"
+
+#: border.src#RID_SVXSTR_SHADOW_STYLE_TOPLEFT.string.text
+msgid "Cast Shadow to Top Left"
+msgstr "Proyectar sombra hacia arriba y a la izquierda"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FL_CROP.fixedline.text
+msgid "Crop"
+msgstr "Recortar"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_LEFT.fixedtext.text
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_LEFT.fixedtext.text"
+msgid "~Left"
+msgstr "~Izquierda"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_RIGHT.fixedtext.text
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_RIGHT.fixedtext.text"
+msgid "~Right"
+msgstr "~Derecha"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_TOP.fixedtext.text
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_TOP.fixedtext.text"
+msgid "~Top"
+msgstr "~Arriba"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_BOTTOM.fixedtext.text
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_BOTTOM.fixedtext.text"
+msgid "~Bottom"
+msgstr "A~bajo"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.RB_SIZECONST.radiobutton.text
+msgid "Keep image si~ze"
+msgstr "~Mantener el tamaño"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.RB_ZOOMCONST.radiobutton.text
+msgid "Keep ~scale"
+msgstr "Mantener la ~escala"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FL_ZOOM.fixedline.text
+msgid "Scale"
+msgstr "Escala"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_WIDTHZOOM.fixedtext.text
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_WIDTHZOOM.fixedtext.text"
+msgid "~Width"
+msgstr "~Anchura"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_HEIGHTZOOM.fixedtext.text
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_HEIGHTZOOM.fixedtext.text"
+msgid "H~eight"
+msgstr "A~ltura"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FL_SIZE.fixedline.text
+msgid "Image size"
+msgstr "Tamaño de la imagen"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_WIDTH.fixedtext.text
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_WIDTH.fixedtext.text"
+msgid "~Width"
+msgstr "~Anchura"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_HEIGHT.fixedtext.text
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_HEIGHT.fixedtext.text"
+msgid "H~eight"
+msgstr "A~ltura"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.PB_ORGSIZE.pushbutton.text
+msgid "~Original Size"
+msgstr "Tamaño ori~ginal"
+
+#. PPI is pixel per inch, %1 is a number
+#: grfpage.src#STR_PPI.string.text
+msgid "(%1 PPI)"
+msgstr "(%1 PPI)"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.FL_TEXT.fixedline.text
+msgctxt "textattr.src#RID_SVXPAGE_TEXTATTR.FL_TEXT.fixedline.text"
+msgid "Text"
+msgstr "Texto"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_AUTOGROW_WIDTH.tristatebox.text
+msgid "Fit wi~dth to text"
+msgstr "Encajar den~tro del texto"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_AUTOGROW_HEIGHT.tristatebox.text
+msgid "Fit h~eight to text"
+msgstr "Ajustar alt~ura al texto"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_FIT_TO_SIZE.tristatebox.text
+msgid "~Fit to frame"
+msgstr "~Ajustar al marco"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_CONTOUR.tristatebox.text
+msgid "~Adjust to contour"
+msgstr "~Ajustar al contorno"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_WORDWRAP_TEXT.tristatebox.text
+msgid "~Word wrap text in shape"
+msgstr "~Ajustar texto a la forma"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_AUTOGROW_SIZE.tristatebox.text
+msgid "~Resize shape to fit text"
+msgstr "~Redimensionar forma para ajustarse al texto"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.FL_DISTANCE.fixedline.text
+msgid "Spacing to borders"
+msgstr "Espaciado a los bordes"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.FT_LEFT.fixedtext.text
+msgctxt "textattr.src#RID_SVXPAGE_TEXTATTR.FT_LEFT.fixedtext.text"
+msgid "~Left"
+msgstr "I~zquierda"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.FT_RIGHT.fixedtext.text
+msgctxt "textattr.src#RID_SVXPAGE_TEXTATTR.FT_RIGHT.fixedtext.text"
+msgid "~Right"
+msgstr "Derec~ha"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.FT_TOP.fixedtext.text
+msgctxt "textattr.src#RID_SVXPAGE_TEXTATTR.FT_TOP.fixedtext.text"
+msgid "~Top"
+msgstr "~Arriba"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.FT_BOTTOM.fixedtext.text
+msgctxt "textattr.src#RID_SVXPAGE_TEXTATTR.FT_BOTTOM.fixedtext.text"
+msgid "~Bottom"
+msgstr "A~bajo"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.FL_POSITION.fixedline.text
+msgid "Text anchor"
+msgstr "Ancla de texto"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_FULL_WIDTH.tristatebox.text
+msgid "Full ~width"
+msgstr "Ancho ~completo"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.tabpage.text
+msgctxt "textattr.src#RID_SVXPAGE_TEXTATTR.tabpage.text"
+msgid "Text"
+msgstr "Texto"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_TYPE.fixedtext.text
+msgctxt "connect.src#RID_SVXPAGE_CONNECTION.FT_TYPE.fixedtext.text"
+msgid "~Type"
+msgstr "~Tipo"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FL_DELTA.fixedline.text
+msgid "Line skew"
+msgstr "Desplazamiento de Línea"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_LINE_1.fixedtext.text
+msgid "Line ~1"
+msgstr "Línea ~1"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_LINE_2.fixedtext.text
+msgid "Line ~2"
+msgstr "Línea ~2"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_LINE_3.fixedtext.text
+msgid "Line ~3"
+msgstr "Línea ~3"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FL_DISTANCE.fixedline.text
+msgctxt "connect.src#RID_SVXPAGE_CONNECTION.FL_DISTANCE.fixedline.text"
+msgid "Line spacing"
+msgstr "Espaciado de linea"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_HORZ_1.fixedtext.text
+msgid "~Begin horizontal"
+msgstr "Comenz~ando horizontal"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_HORZ_2.fixedtext.text
+msgid "End ~horizontal"
+msgstr "Final ~horizontal"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_VERT_1.fixedtext.text
+msgid "Begin ~vertical"
+msgstr "Comenzar ~vertical"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_VERT_2.fixedtext.text
+msgid "~End vertical"
+msgstr "~Fin vertical"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.CTL_PREVIEW.control.text
+msgctxt "connect.src#RID_SVXPAGE_CONNECTION.CTL_PREVIEW.control.text"
+msgid "-"
+msgstr "-"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.CTL_PREVIEW.control.quickhelptext
+msgid "Preview"
+msgstr "Vista previa"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.tabpage.text
+msgid "Connector"
+msgstr "Conector"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.FT_ABSTAND.fixedtext.text
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.FT_ABSTAND.fixedtext.text"
+msgid "~Spacing"
+msgstr "Espa~cio"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.FT_WINKEL.fixedtext.text
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.FT_WINKEL.fixedtext.text"
+msgid "~Angle"
+msgstr "Á~ngulo"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_WINKEL.1.stringlist.text
+msgid "Free"
+msgstr "Cualquiera"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_WINKEL.2.stringlist.text
+msgid "30 Degrees"
+msgstr "30 grados"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_WINKEL.3.stringlist.text
+msgid "45 Degrees"
+msgstr "45 grados"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_WINKEL.4.stringlist.text
+msgid "60 Degrees"
+msgstr "60 grados"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_WINKEL.5.stringlist.text
+msgid "90 Degrees"
+msgstr "90 grados"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.FT_ANSATZ.fixedtext.text
+msgid "~Extension"
+msgstr "~Salida"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.1.stringlist.text
+msgid "Optimal"
+msgstr "Óptimo"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.2.stringlist.text
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.2.stringlist.text"
+msgid "From top"
+msgstr "Desde arriba"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.3.stringlist.text
+msgid "From left"
+msgstr "De izquierda"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.4.stringlist.text
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.4.stringlist.text"
+msgid "Horizontal"
+msgstr "Horizontal"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.5.stringlist.text
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.5.stringlist.text"
+msgid "Vertical"
+msgstr "Vertical"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.FT_UM.fixedtext.text
+msgid "~By"
+msgstr "~De"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.FT_ANSATZ_REL.fixedtext.text
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.FT_ANSATZ_REL.fixedtext.text"
+msgid "~Position"
+msgstr "~Posición"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.FT_LAENGE.fixedtext.text
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.FT_LAENGE.fixedtext.text"
+msgid "~Length"
+msgstr "~Longitud"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.CB_LAENGE.checkbox.text
+msgid "~Optimal"
+msgstr "Óptim~o"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.STR_CAPTTYPE_1.string.text
+msgid "Straight Line"
+msgstr "Línea recta"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.STR_CAPTTYPE_2.string.text
+msgid "Angled Line"
+msgstr "Línea acodada"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.STR_CAPTTYPE_3.string.text
+msgid "Angled Connector Line"
+msgstr "Línea acodada con un sólo ángulo"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.STR_CAPTTYPE_4.string.text
+msgid "Double-angled line"
+msgstr "Línea acodada con dos ángulos"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.STR_HORZ_LIST.string.text
+msgid "Top;Middle;Bottom"
+msgstr "Arriba;centro;abajo"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.STR_VERT_LIST.string.text
+msgid "Left;Middle;Right"
+msgstr "Izquierda;centrado;derecha"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.tabpage.text
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.tabpage.text"
+msgid "Callouts"
+msgstr "Llamadas"
+
+#: labdlg.src#_POS_SIZE_TEXT.#define.text
+msgctxt "labdlg.src#_POS_SIZE_TEXT.#define.text"
+msgid "Position and Size"
+msgstr "Posición y tamaño"
+
+#: labdlg.src#RID_SVXDLG_CAPTION.TAB_CONTROL.RID_SVXPAGE_CAPTION.pageitem.text
+msgid "Callout"
+msgstr "Llamada"
+
+#: labdlg.src#RID_SVXDLG_CAPTION.tabdialog.text
+msgctxt "labdlg.src#RID_SVXDLG_CAPTION.tabdialog.text"
+msgid "Callouts"
+msgstr "Llamadas"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.FL_HORIZONTAL.fixedline.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.FL_HORIZONTAL.fixedline.text"
+msgid "Horizontal"
+msgstr "Horizontal"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_NONE.radiobutton.text
+msgid "~None"
+msgstr "~Ninguno"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_LEFT.radiobutton.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_LEFT.radiobutton.text"
+msgid "~Left"
+msgstr "~Izquierda"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_CENTER.radiobutton.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_CENTER.radiobutton.text"
+msgid "~Center"
+msgstr "~Centrado"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_DISTANCE.radiobutton.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_DISTANCE.radiobutton.text"
+msgid "~Spacing"
+msgstr "~Espaciado"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_RIGHT.radiobutton.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_RIGHT.radiobutton.text"
+msgid "~Right"
+msgstr "~Derecha"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.FL_VERTICAL.fixedline.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.FL_VERTICAL.fixedline.text"
+msgid "Vertical"
+msgstr "Vertical"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_NONE.radiobutton.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_NONE.radiobutton.text"
+msgid "N~one"
+msgstr "N~inguno"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_TOP.radiobutton.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_TOP.radiobutton.text"
+msgid "~Top"
+msgstr "~Arriba"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_CENTER.radiobutton.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_CENTER.radiobutton.text"
+msgid "C~enter"
+msgstr "C~entrado"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_DISTANCE.radiobutton.text
+msgid "S~pacing"
+msgstr "Es~paciado"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_BOTTOM.radiobutton.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_BOTTOM.radiobutton.text"
+msgid "~Bottom"
+msgstr "A~bajo"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.tabpage.text
+msgid "Distribution"
+msgstr "Distribución"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FT_LEFTINDENT.fixedtext.text
+msgid "Before text"
+msgstr "Antes del texto"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FT_RIGHTINDENT.fixedtext.text
+msgid "After text"
+msgstr "Después del texto"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FT_FLINEINDENT.fixedtext.text
+msgid "~First line"
+msgstr "~Primera línea"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.CB_AUTO.checkbox.text
+msgctxt "paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.CB_AUTO.checkbox.text"
+msgid "~Automatic"
+msgstr "~Automático"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FL_INDENT.fixedline.text
+msgctxt "paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FL_INDENT.fixedline.text"
+msgid "Indent"
+msgstr "Sangría"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FT_TOPDIST.fixedtext.text
+msgid "Ab~ove paragraph"
+msgstr "En~cima del párrafo"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FT_BOTTOMDIST.fixedtext.text
+msgid "Below paragraph"
+msgstr "Debajo del párrafo"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.CB_CONTEXTUALSPACING.checkbox.text
+msgid "Don't add space between paragraphs of the same style"
+msgstr "No añadir espacio entre párrafos del mismo estilo"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FL_DIST.fixedline.text
+msgctxt "paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FL_DIST.fixedline.text"
+msgid "Spacing"
+msgstr "Espaciado"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.LB_LINEDIST.1.stringlist.text
+msgctxt "paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.LB_LINEDIST.1.stringlist.text"
+msgid "Single"
+msgstr "Sencillo"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.LB_LINEDIST.2.stringlist.text
+msgid "1.5 lines"
+msgstr "1,5 líneas"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.LB_LINEDIST.3.stringlist.text
+msgctxt "paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.LB_LINEDIST.3.stringlist.text"
+msgid "Double"
+msgstr "Doble"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.LB_LINEDIST.4.stringlist.text
+msgid "Proportional"
+msgstr "Proporcional"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.LB_LINEDIST.5.stringlist.text
+msgid "At least"
+msgstr "Al menos"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.LB_LINEDIST.6.stringlist.text
+msgid "Leading"
+msgstr "Inicial"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.ST_LINEDIST_ABS.string.text
+msgid "Fixed"
+msgstr "Fijo"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FT_LINEDIST.fixedtext.text
+msgid "of"
+msgstr "de"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FL_LINEDIST.fixedline.text
+msgctxt "paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FL_LINEDIST.fixedline.text"
+msgid "Line spacing"
+msgstr "Interlineado"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.CB_REGISTER.checkbox.text
+msgid "A~ctivate"
+msgstr "A~ctivar"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FL_REGISTER.fixedline.text
+msgctxt "paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FL_REGISTER.fixedline.text"
+msgid "Register-true"
+msgstr "Conformidad de registro"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.tabpage.text
+msgid "Indents and Spacing"
+msgstr "Sangrías y espaciado"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FL_ALIGN.fixedline.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FL_ALIGN.fixedline.text"
+msgid "Options"
+msgstr "Opciones"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_LEFTALIGN.radiobutton.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_LEFTALIGN.radiobutton.text"
+msgid "~Left"
+msgstr "~Izquierda"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_RIGHTALIGN.radiobutton.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_RIGHTALIGN.radiobutton.text"
+msgid "Righ~t"
+msgstr "~Derecha"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_CENTERALIGN.radiobutton.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_CENTERALIGN.radiobutton.text"
+msgid "~Center"
+msgstr "~Centrado"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_JUSTIFYALIGN.radiobutton.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_JUSTIFYALIGN.radiobutton.text"
+msgid "Justified"
+msgstr "Justificado"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.ST_LEFTALIGN_ASIAN.string.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.ST_LEFTALIGN_ASIAN.string.text"
+msgid "~Left/Top"
+msgstr "~A la izquierda/Arriba"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.ST_RIGHTALIGN_ASIAN.string.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.ST_RIGHTALIGN_ASIAN.string.text"
+msgid "Righ~t/Bottom"
+msgstr "~A la derecha/Abajo"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FT_LASTLINE.fixedtext.text
+msgid "~Last line"
+msgstr "Ú~ltima línea"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_LASTLINE.1.stringlist.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_LASTLINE.1.stringlist.text"
+msgid "Default"
+msgstr "Predeterminado"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_LASTLINE.2.stringlist.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_LASTLINE.2.stringlist.text"
+msgid "Left"
+msgstr "Izquierda"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_LASTLINE.3.stringlist.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_LASTLINE.3.stringlist.text"
+msgid "Centered"
+msgstr "Centro"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_LASTLINE.4.stringlist.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_LASTLINE.4.stringlist.text"
+msgid "Justified"
+msgstr "Justificado"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.CB_EXPAND.checkbox.text
+msgid "~Expand single word"
+msgstr "E~xpandir una palabra"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.CB_SNAP.checkbox.text
+msgid "Snap to text grid (if active)"
+msgstr "Usar cuadrícula (si activada)"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FL_VERTALIGN.fixedline.text
+msgid "Text-to-text"
+msgstr "Texto a texto"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FT_VERTALIGN.fixedtext.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FT_VERTALIGN.fixedtext.text"
+msgid "~Alignment"
+msgstr "~Alineación"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_VERTALIGN.1.stringlist.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_VERTALIGN.1.stringlist.text"
+msgid "Automatic"
+msgstr "Automático"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_VERTALIGN.2.stringlist.text
+msgid "Base line"
+msgstr "Línea de base"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_VERTALIGN.3.stringlist.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_VERTALIGN.3.stringlist.text"
+msgid "Top"
+msgstr "Arriba"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_VERTALIGN.4.stringlist.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_VERTALIGN.4.stringlist.text"
+msgid "Middle"
+msgstr "Centrado"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_VERTALIGN.5.stringlist.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_VERTALIGN.5.stringlist.text"
+msgid "Bottom"
+msgstr "Abajo"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FL_PROPERTIES.fixedline.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FL_PROPERTIES.fixedline.text"
+msgid "Properties"
+msgstr "Propiedades"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FT_TEXTDIRECTION.fixedtext.text
+msgid "Text ~direction"
+msgstr "~Dirección de escritura"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.tabpage.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.tabpage.text"
+msgid "Alignment"
+msgstr "Alineación"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.BTN_HYPHEN.tristatebox.text
+msgid "A~utomatically"
+msgstr "A~utomáticamente"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_HYPHENBEFORE.fixedtext.text
+msgid "C~haracters at line end"
+msgstr "C~aracteres al final de la línea"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_HYPHENAFTER.fixedtext.text
+msgid "Cha~racters at line begin"
+msgstr "Cara~cteres al principio de la línea"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_MAXHYPH.fixedtext.text
+msgid "~Maximum number of consecutive hyphens"
+msgstr "~Cantidad máxima de guiones consecutivos"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FL_HYPHEN.fixedline.text
+msgid "Hyphenation"
+msgstr "Separación silábica"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FL_OPTIONS.fixedline.text
+msgctxt "paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FL_OPTIONS.fixedline.text"
+msgid "Options"
+msgstr "Opciones"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FL_BREAKS.fixedline.text
+msgid "Breaks"
+msgstr "Saltos"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.BTN_PAGEBREAK.tristatebox.text
+msgid "Insert"
+msgstr "Insertar"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_BREAKTYPE.fixedtext.text
+msgctxt "paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_BREAKTYPE.fixedtext.text"
+msgid "~Type"
+msgstr "~Tipo"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.LB_BREAKTYPE.1.stringlist.text
+msgid "Page"
+msgstr "Página"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.LB_BREAKTYPE.2.stringlist.text
+msgid "Column"
+msgstr "Columna"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_BREAKPOSITION.fixedtext.text
+msgctxt "paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_BREAKPOSITION.fixedtext.text"
+msgid "Position"
+msgstr "Posición"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.LB_BREAKPOSITION.1.stringlist.text
+msgctxt "paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.LB_BREAKPOSITION.1.stringlist.text"
+msgid "Before"
+msgstr "Delante"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.LB_BREAKPOSITION.2.stringlist.text
+msgctxt "paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.LB_BREAKPOSITION.2.stringlist.text"
+msgid "After"
+msgstr "Después"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.BTN_PAGECOLL.tristatebox.text
+msgid "With Page St~yle"
+msgstr "C~on estilo de página"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_PAGENUM.fixedtext.text
+msgid "Page ~number"
+msgstr "Nú~mero página"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.BTN_KEEPTOGETHER.tristatebox.text
+msgid "~Do not split paragraph"
+msgstr "~No dividir párrafo"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.CB_KEEPTOGETHER.tristatebox.text
+msgid "~Keep with next paragraph"
+msgstr "Mantener párra~fos juntos"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.BTN_ORPHANS.tristatebox.text
+msgid "~Orphan control"
+msgstr "Ajuste de ~huérfanas"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_ORPHANS.fixedtext.text
+msgctxt "paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_ORPHANS.fixedtext.text"
+msgid "Lines"
+msgstr "Líneas"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.BTN_WIDOWS.tristatebox.text
+msgid "~Widow control"
+msgstr "Ajuste de ~viudas"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_WIDOWS.fixedtext.text
+msgctxt "paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_WIDOWS.fixedtext.text"
+msgid "Lines"
+msgstr "Líneas"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.tabpage.text
+msgid "Text Flow"
+msgstr "Flujo del texto"
+
+#: paragrph.src#RID_SVXPAGE_PARA_ASIAN.FL_AS_OPTIONS.fixedline.text
+msgid "Line change"
+msgstr "Cambio de fila"
+
+#: paragrph.src#RID_SVXPAGE_PARA_ASIAN.CB_AS_FORBIDDEN.tristatebox.text
+msgid "Apply list of forbidden characters to the beginning and end of lines"
+msgstr "Considerar lista de caracteres no aceptables a comienzo y fin de línea"
+
+#: paragrph.src#RID_SVXPAGE_PARA_ASIAN.CB_AS_HANG_PUNC.tristatebox.text
+msgid "Allow hanging punctuation"
+msgstr "Permitir puntuación libre"
+
+#: paragrph.src#RID_SVXPAGE_PARA_ASIAN.CB_AS_SCRIPT_SPACE.tristatebox.text
+msgid "Apply spacing between Asian, Latin and Complex text"
+msgstr "Aplicar espacio entre texto asiático, latino y complejo"
+
+#: paragrph.src#RID_SVXPAGE_PARA_ASIAN.tabpage.text
+msgid "Asian Typography"
+msgstr "Tipografía asiática"
+
+#: paragrph.src#STR_EXAMPLE.string.text
+msgctxt "paragrph.src#STR_EXAMPLE.string.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: paragrph.src#STR_PAGE_STYLE.string.text
+msgid "Page Style"
+msgstr "Estilo de página"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_CATEGORY.fixedtext.text
+msgid "~Category"
+msgstr "~Categoría"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.1.stringlist.text
+msgid "All"
+msgstr "Todo"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.2.stringlist.text
+msgid "User-defined"
+msgstr "Definido por el usuario"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.3.stringlist.text
+msgid "Number"
+msgstr "Número"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.4.stringlist.text
+msgid "Percent"
+msgstr "Porcentaje"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.5.stringlist.text
+msgid "Currency"
+msgstr "Moneda"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.6.stringlist.text
+msgid "Date"
+msgstr "Fecha"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.7.stringlist.text
+msgid "Time"
+msgstr "Tiempo"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.8.stringlist.text
+msgid "Scientific"
+msgstr "Científico"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.9.stringlist.text
+msgid "Fraction"
+msgstr "Fracción"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.10.stringlist.text
+msgid "Boolean Value"
+msgstr "Valor buleano"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.11.stringlist.text
+msgctxt "numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.11.stringlist.text"
+msgid "Text"
+msgstr "Texto"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_EDFORMAT.fixedtext.text
+msgid "~Format code"
+msgstr "~Formato de código"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_FORMAT.fixedtext.text
+msgid "F~ormat"
+msgstr "F~ormato"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CURRENCY.1.stringlist.text
+msgid "Automatically"
+msgstr "Automático"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_DECIMALS.fixedtext.text
+msgid "~Decimal places"
+msgstr "~Decimales"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_LEADZEROES.fixedtext.text
+msgid "Leading ~zeroes"
+msgstr "Ceros princi~pales"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.BTN_NEGRED.checkbox.text
+msgid "~Negative numbers red"
+msgstr "~Número negativos en rojo"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.BTN_THOUSAND.checkbox.text
+msgid "~Thousands separator"
+msgstr "Separador de ~miles"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FL_OPTIONS.fixedline.text
+msgctxt "numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FL_OPTIONS.fixedline.text"
+msgid "Options"
+msgstr "Opciones"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_LANGUAGE.fixedtext.text
+msgctxt "numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_LANGUAGE.fixedtext.text"
+msgid "~Language"
+msgstr "~Lenguaje"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.CB_SOURCEFORMAT.checkbox.text
+msgid "So~urce format"
+msgstr "Formato fuen~te"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.IB_ADD.imagebutton.text
+msgctxt "numfmt.src#RID_SVXPAGE_NUMBERFORMAT.IB_ADD.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.IB_ADD.imagebutton.quickhelptext
+msgctxt "numfmt.src#RID_SVXPAGE_NUMBERFORMAT.IB_ADD.imagebutton.quickhelptext"
+msgid "Add"
+msgstr "Añadir"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.IB_REMOVE.imagebutton.text
+msgctxt "numfmt.src#RID_SVXPAGE_NUMBERFORMAT.IB_REMOVE.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.IB_REMOVE.imagebutton.quickhelptext
+msgid "Remove"
+msgstr "Eliminar"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.IB_INFO.imagebutton.text
+msgctxt "numfmt.src#RID_SVXPAGE_NUMBERFORMAT.IB_INFO.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.IB_INFO.imagebutton.quickhelptext
+msgid "Edit Comment"
+msgstr "Editar comentario"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.STR_AUTO_ENTRY.string.text
+msgctxt "numfmt.src#RID_SVXPAGE_NUMBERFORMAT.STR_AUTO_ENTRY.string.text"
+msgid "Automatic"
+msgstr "Automático"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.tabpage.text
+msgid "Number Format"
+msgstr "Formato de número"
+
+#: frmdirlbox.src#RID_SVXSTR_FRAMEDIR_LTR.string.text
+msgid "Left-to-right"
+msgstr "De izquierda a derecha"
+
+#: frmdirlbox.src#RID_SVXSTR_FRAMEDIR_RTL.string.text
+msgid "Right-to-left"
+msgstr "De derecha a izquierda"
+
+#: frmdirlbox.src#RID_SVXSTR_FRAMEDIR_SUPER.string.text
+msgid "Use superordinate object settings"
+msgstr "Utilizar la configuración del objeto superior"
+
+#: frmdirlbox.src#RID_SVXSTR_PAGEDIR_LTR_HORI.string.text
+msgid "Left-to-right (horizontal)"
+msgstr "De izquierda a derecha (horizontal)"
+
+#: frmdirlbox.src#RID_SVXSTR_PAGEDIR_RTL_HORI.string.text
+msgid "Right-to-left (horizontal)"
+msgstr "De derecha a izquierda (horizontal)"
+
+#: frmdirlbox.src#RID_SVXSTR_PAGEDIR_RTL_VERT.string.text
+msgid "Right-to-left (vertical)"
+msgstr "De derecha a izquierda (vertical)"
+
+#: frmdirlbox.src#RID_SVXSTR_PAGEDIR_LTR_VERT.string.text
+msgid "Left-to-right (vertical)"
+msgstr "De izquierda a derecha (vertical)"
+
+#: tabline.src#RID_SVXPAGE_LINE.FL_LINE.fixedline.text
+msgid "Line properties"
+msgstr "Propiedades de Línea"
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_LINE_STYLE.fixedtext.text
+msgid "~Style"
+msgstr "E~stilo"
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_COLOR.fixedtext.text
+msgid "Colo~r"
+msgstr "Colo~r"
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_LINE_WIDTH.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.FT_LINE_WIDTH.fixedtext.text"
+msgid "~Width"
+msgstr "An~cho"
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_TRANSPARENT.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.FT_TRANSPARENT.fixedtext.text"
+msgid "~Transparency"
+msgstr "~Transparencia"
+
+#: tabline.src#RID_SVXPAGE_LINE.FL_LINE_ENDS.fixedline.text
+msgid "Arrow styles"
+msgstr "Estilos de flecha"
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_LINE_ENDS_STYLE.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.FT_LINE_ENDS_STYLE.fixedtext.text"
+msgid "St~yle"
+msgstr "Est~ilo"
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_LINE_ENDS_WIDTH.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.FT_LINE_ENDS_WIDTH.fixedtext.text"
+msgid "Wi~dth"
+msgstr "An~cho"
+
+#: tabline.src#RID_SVXPAGE_LINE.TSB_CENTER_START.tristatebox.text
+msgid "Ce~nter"
+msgstr "Ce~ntro"
+
+#: tabline.src#RID_SVXPAGE_LINE.TSB_CENTER_END.tristatebox.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.TSB_CENTER_END.tristatebox.text"
+msgid "C~enter"
+msgstr "C~entro"
+
+#: tabline.src#RID_SVXPAGE_LINE.CBX_SYNCHRONIZE.checkbox.text
+msgid "Synchroni~ze ends"
+msgstr "Sincroni~zar finales"
+
+#: tabline.src#RID_SVXPAGE_LINE.FL_EDGE_STYLE.fixedline.text
+msgid "Corner style"
+msgstr "Estilo de esquina"
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_EDGE_STYLE.fixedtext.text
+msgid "Sty~le"
+msgstr "Esti~lo"
+
+#: tabline.src#RID_SVXPAGE_LINE.LB_EDGE_STYLE.1.stringlist.text
+msgid "Rounded"
+msgstr "Redondeado"
+
+#: tabline.src#RID_SVXPAGE_LINE.LB_EDGE_STYLE.2.stringlist.text
+msgid "- none -"
+msgstr "- sin -"
+
+#: tabline.src#RID_SVXPAGE_LINE.LB_EDGE_STYLE.3.stringlist.text
+msgid "Mitered"
+msgstr "Doblado"
+
+#: tabline.src#RID_SVXPAGE_LINE.LB_EDGE_STYLE.4.stringlist.text
+msgid "Beveled"
+msgstr "Biselado"
+
+#: tabline.src#RID_SVXPAGE_LINE.FL_SYMBOL_FORMAT.fixedline.text
+msgid "Icon"
+msgstr "Icono"
+
+#: tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.MN_SYMBOLS_NONE.menuitem.text
+msgid "No Symbol"
+msgstr "Sin símbolo"
+
+#: tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.MN_SYMBOLS_AUTO.menuitem.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.MN_SYMBOLS_AUTO.menuitem.text"
+msgid "Automatic"
+msgstr "Automático"
+
+#: tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.MN_GRAPHIC_DLG.menuitem.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.MN_GRAPHIC_DLG.menuitem.text"
+msgid "From file..."
+msgstr "Desde documento..."
+
+#: tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.MN_GALLERY.menuitem.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.MN_GALLERY.menuitem.text"
+msgid "Gallery"
+msgstr "Galería"
+
+#: tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.MN_SYMBOLS.menuitem.text
+msgid "Symbols"
+msgstr "Símbolos"
+
+#: tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.menubutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.menubutton.text"
+msgid "Select..."
+msgstr "Seleccionar..."
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_SYMBOL_WIDTH.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.FT_SYMBOL_WIDTH.fixedtext.text"
+msgid "Width"
+msgstr "Ancho"
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_SYMBOL_HEIGHT.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.FT_SYMBOL_HEIGHT.fixedtext.text"
+msgid "Height"
+msgstr "Altura"
+
+#: tabline.src#RID_SVXPAGE_LINE.CB_SYMBOL_RATIO.checkbox.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.CB_SYMBOL_RATIO.checkbox.text"
+msgid "Keep ratio"
+msgstr "Mantener razón"
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_STYLE.string.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.STR_STYLE.string.text"
+msgid "Style"
+msgstr "Estilo"
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_LB_START_STYLE.string.text
+msgid "Start style"
+msgstr "Estilo inicial"
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_LB_END_STYLE.string.text
+msgid "End style"
+msgstr "Estilo final"
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_MTR_FLD_START_WIDTH.string.text
+msgid "Start width"
+msgstr "Ancho inicial"
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_MTR_FLD_END_WIDTH.string.text
+msgid "End width"
+msgstr "Ancho final"
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_CENTER_START.string.text
+msgid "Start with center"
+msgstr "Iniciar al centro"
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_CENTER_END.string.text
+msgid "End with center"
+msgstr "Terminar al centro"
+
+#: tabline.src#RID_SVXPAGE_LINE.tabpage.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.tabpage.text"
+msgid "Lines"
+msgstr "Líneas"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.FL_DEFINITION.fixedline.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.FL_DEFINITION.fixedline.text"
+msgid "Properties"
+msgstr "Propiedades"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.FT_TYPE.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.FT_TYPE.fixedtext.text"
+msgid "~Type"
+msgstr "~Tipo"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.LB_TYPE_1.1.stringlist.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.LB_TYPE_1.1.stringlist.text"
+msgid "Dot"
+msgstr "Punto"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.LB_TYPE_1.2.stringlist.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.LB_TYPE_1.2.stringlist.text"
+msgid "Dash"
+msgstr "Guión"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.LB_TYPE_2.1.stringlist.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.LB_TYPE_2.1.stringlist.text"
+msgid "Dot"
+msgstr "Punto"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.LB_TYPE_2.2.stringlist.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.LB_TYPE_2.2.stringlist.text"
+msgid "Dash"
+msgstr "Guión"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.FT_NUMBER.fixedtext.text
+msgid "~Number"
+msgstr "~Número"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.FT_LENGTH.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.FT_LENGTH.fixedtext.text"
+msgid "~Length"
+msgstr "~Longitud"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.FT_DISTANCE.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.FT_DISTANCE.fixedtext.text"
+msgid "~Spacing"
+msgstr "Es~pacio"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.CBX_SYNCHRONIZE.checkbox.text
+msgid "~Fit to line width"
+msgstr "~Ajustar al ancho de la línea"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.FT_LINESTYLE.fixedtext.text
+msgid "Line style"
+msgstr "Estilo de línea"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.BTN_ADD.pushbutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.BTN_ADD.pushbutton.text"
+msgid "~Add..."
+msgstr "~Añadir..."
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.BTN_MODIFY.pushbutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.BTN_MODIFY.pushbutton.text"
+msgid "~Modify..."
+msgstr "~Modificar..."
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.BTN_DELETE.pushbutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.BTN_DELETE.pushbutton.text"
+msgid "~Delete..."
+msgstr "~Eliminar..."
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.BTN_LOAD.imagebutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.BTN_LOAD.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.BTN_LOAD.imagebutton.quickhelptext
+msgid "Load Line Styles"
+msgstr "Cargar estilos de línea"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.BTN_SAVE.imagebutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.BTN_SAVE.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.BTN_SAVE.imagebutton.quickhelptext
+msgid "Save Line Styles"
+msgstr "Guardar estilos de línea"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.STR_START_TYPE.string.text
+msgid "Start type"
+msgstr "Tipo inicial"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.STR_END_TYPE.string.text
+msgid "End type"
+msgstr "Tipo final"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.STR_START_NUM.string.text
+msgid "Start number"
+msgstr "Número inicial"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.STR_END_NUM.string.text
+msgid "End number"
+msgstr "Número final"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.STR_START_LENGTH.string.text
+msgid "Start length"
+msgstr "Longitud inicial"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.STR_END_LENGTH.string.text
+msgid "End length"
+msgstr "Longitud final"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.tabpage.text
+msgid "Define line styles"
+msgstr "Define los estilos de línea"
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.FL_TIP.fixedline.text
+msgid "Organize arrow styles"
+msgstr "Organizar estilos de flecha"
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.FI_TIP.fixedtext.text
+msgid "Add a selected object to create new arrow styles."
+msgstr "Agrega un objeto seleccionado para crear nuevos estilos de flecha"
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.FT_LINE_END_STYLE.fixedtext.text
+msgid "Arrow style"
+msgstr "Estilo de flecha"
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.FT_TITLE.fixedtext.text
+msgid "~Title"
+msgstr "~Título"
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_ADD.pushbutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_ADD.pushbutton.text"
+msgid "~Add..."
+msgstr "~Añadir..."
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_MODIFY.pushbutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_MODIFY.pushbutton.text"
+msgid "~Modify..."
+msgstr "~Modificar..."
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_DELETE.pushbutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_DELETE.pushbutton.text"
+msgid "~Delete..."
+msgstr "~Eliminar..."
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_LOAD.imagebutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_LOAD.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_LOAD.imagebutton.quickhelptext
+msgid "Load Arrow Styles"
+msgstr "Cargar estilos de flecha"
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_SAVE.imagebutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_SAVE.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_SAVE.imagebutton.quickhelptext
+msgid "Save Arrow Styles"
+msgstr "Guardar estilos de flecha"
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.tabpage.text
+msgid "Arrowheads"
+msgstr "Punta de línea"
+
+#: tabline.src#RID_SVXDLG_LINE.TAB_CONTROL.RID_SVXPAGE_LINE.pageitem.text
+msgctxt "tabline.src#RID_SVXDLG_LINE.TAB_CONTROL.RID_SVXPAGE_LINE.pageitem.text"
+msgid "Line"
+msgstr "Línea"
+
+#: tabline.src#RID_SVXDLG_LINE.TAB_CONTROL.RID_SVXPAGE_SHADOW.pageitem.text
+msgctxt "tabline.src#RID_SVXDLG_LINE.TAB_CONTROL.RID_SVXPAGE_SHADOW.pageitem.text"
+msgid "Shadow"
+msgstr "Sombra"
+
+#: tabline.src#RID_SVXDLG_LINE.TAB_CONTROL.RID_SVXPAGE_LINE_DEF.pageitem.text
+msgid "Line Styles"
+msgstr "Estilos de líneas"
+
+#: tabline.src#RID_SVXDLG_LINE.TAB_CONTROL.RID_SVXPAGE_LINEEND_DEF.pageitem.text
+msgid "Arrow Styles"
+msgstr "Estilos de flechas"
+
+#: tabline.src#RID_SVXDLG_LINE.tabdialog.text
+msgctxt "tabline.src#RID_SVXDLG_LINE.tabdialog.text"
+msgid "Line"
+msgstr "Línea"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.FL_TABPOS.fixedline.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.FL_TABPOS.fixedline.text"
+msgid "Position"
+msgstr "Posición"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.FL_TABTYPE.fixedline.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.FL_TABTYPE.fixedline.text"
+msgid "Type"
+msgstr "Tipo"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_TABTYPE_LEFT.radiobutton.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_TABTYPE_LEFT.radiobutton.text"
+msgid "~Left"
+msgstr "~Izquierda"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_TABTYPE_RIGHT.radiobutton.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_TABTYPE_RIGHT.radiobutton.text"
+msgid "Righ~t"
+msgstr "~Derecha"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_TABTYPE_CENTER.radiobutton.text
+msgid "C~entered"
+msgstr "C~entrado"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_TABTYPE_DECIMAL.radiobutton.text
+msgid "Deci~mal"
+msgstr "Deci~mal"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.FT_TABTYPE_DECCHAR.fixedtext.text
+msgid "~Character"
+msgstr "~Carácter"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.FL_FILLCHAR.fixedline.text
+msgid "Fill character"
+msgstr "Carácter de relleno"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_FILLCHAR_NO.radiobutton.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_FILLCHAR_NO.radiobutton.text"
+msgid "N~one"
+msgstr "Nin~guno"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_FILLCHAR_OTHER.radiobutton.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_FILLCHAR_OTHER.radiobutton.text"
+msgid "Character"
+msgstr "Carácter"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_NEW.pushbutton.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_NEW.pushbutton.text"
+msgid "~New"
+msgstr "~Nuevo"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_DELALL.pushbutton.text
+msgid "Delete ~All"
+msgstr "E~liminar todas"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_DEL.pushbutton.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_DEL.pushbutton.text"
+msgid "~Delete"
+msgstr "~Eliminar"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.ST_LEFTTAB_ASIAN.string.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.ST_LEFTTAB_ASIAN.string.text"
+msgid "~Left/Top"
+msgstr "~Izquierda/Arriba"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.ST_RIGHTTAB_ASIAN.string.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.ST_RIGHTTAB_ASIAN.string.text"
+msgid "Righ~t/Bottom"
+msgstr "~Derecha/Abajo"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.ST_FILLCHAR_OTHER.string.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.ST_FILLCHAR_OTHER.string.text"
+msgid "Character"
+msgstr "Carácter"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.tabpage.text
+msgid "Tabs"
+msgstr "Tabuladores"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_SIZE.fixedline.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_SIZE.fixedline.text"
+msgid "Size"
+msgstr "Tamaño"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_WIDTH.fixedtext.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_WIDTH.fixedtext.text"
+msgid "~Width"
+msgstr "~Ancho"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HEIGHT.fixedtext.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HEIGHT.fixedtext.text"
+msgid "H~eight"
+msgstr "A~lto"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_KEEPRATIO.checkbox.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_KEEPRATIO.checkbox.text"
+msgid "~Keep ratio"
+msgstr "~Mantener proporciones"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_ANCHOR.fixedline.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_ANCHOR.fixedline.text"
+msgid "Anchor"
+msgstr "Anclar"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.RB_TOPAGE.radiobutton.text
+msgid "To ~page"
+msgstr "A pág~ina"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.RB_TOPARA.radiobutton.text
+msgid "To paragrap~h"
+msgstr "A párra~fo"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.RB_TOCHAR.radiobutton.text
+msgid "To cha~racter"
+msgstr "A ~carácter"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.RB_ASCHAR.radiobutton.text
+msgid "~As character"
+msgstr "C~omo carácter"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.RB_TOFRAME.radiobutton.text
+msgid "To ~frame"
+msgstr "A ~marco"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_PROTECTION.fixedline.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_PROTECTION.fixedline.text"
+msgid "Protect"
+msgstr "Proteger"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_POSITION.tristatebox.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_POSITION.tristatebox.text"
+msgid "Position"
+msgstr "Posición"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_SIZE.tristatebox.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_SIZE.tristatebox.text"
+msgid "~Size"
+msgstr "~Tamaño"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_POSITION.fixedline.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_POSITION.fixedline.text"
+msgid "Position"
+msgstr "Posición"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HORI.fixedtext.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HORI.fixedtext.text"
+msgid "Hori~zontal"
+msgstr "Hori~zontal"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HORIBY.fixedtext.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HORIBY.fixedtext.text"
+msgid "b~y"
+msgstr "~distancia"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HORITO.fixedtext.text
+msgid "~to"
+msgstr "~hasta"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_HORIMIRROR.checkbox.text
+msgid "~Mirror on even pages"
+msgstr "~Reflejar en páginas pares"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_VERT.fixedtext.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_VERT.fixedtext.text"
+msgid "~Vertical"
+msgstr "~Vertical"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_VERTBY.fixedtext.text
+msgid "by"
+msgstr "por"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_VERTTO.fixedtext.text
+msgid "t~o"
+msgstr "h~asta"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_FOLLOW.checkbox.text
+msgid "Follow text flow"
+msgstr "Seguir distribución del texto"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.tabpage.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.tabpage.text"
+msgid "Position and Size"
+msgstr "Posición y tamaño"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.FL_PROP.fixedline.text
+msgid "Transparency mode"
+msgstr "Modo de transparencia"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.RBT_TRANS_OFF.radiobutton.text
+msgid "~No transparency"
+msgstr "~Sin transparencia"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.RBT_TRANS_LINEAR.radiobutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.RBT_TRANS_LINEAR.radiobutton.text"
+msgid "~Transparency"
+msgstr "~Transparencia"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.RBT_TRANS_GRADIENT.radiobutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.RBT_TRANS_GRADIENT.radiobutton.text"
+msgid "Gradient"
+msgstr "Gradiente"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_TYPE.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_TYPE.fixedtext.text"
+msgid "Ty~pe"
+msgstr "Ti~po"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.LB_TRGR_GRADIENT_TYPES.1.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.LB_TRGR_GRADIENT_TYPES.1.stringlist.text"
+msgid "Linear"
+msgstr "Linear"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.LB_TRGR_GRADIENT_TYPES.2.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.LB_TRGR_GRADIENT_TYPES.2.stringlist.text"
+msgid "Axial"
+msgstr "Matriz"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.LB_TRGR_GRADIENT_TYPES.3.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.LB_TRGR_GRADIENT_TYPES.3.stringlist.text"
+msgid "Radial"
+msgstr "Radial"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.LB_TRGR_GRADIENT_TYPES.4.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.LB_TRGR_GRADIENT_TYPES.4.stringlist.text"
+msgid "Ellipsoid"
+msgstr "Elipses"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.LB_TRGR_GRADIENT_TYPES.5.stringlist.text
+msgid "Quadratic"
+msgstr "Cuadrático"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.LB_TRGR_GRADIENT_TYPES.6.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.LB_TRGR_GRADIENT_TYPES.6.stringlist.text"
+msgid "Square"
+msgstr "Cuadrado"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_CENTER_X.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_CENTER_X.fixedtext.text"
+msgid "Center ~X"
+msgstr "Centrado ~X"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_CENTER_Y.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_CENTER_Y.fixedtext.text"
+msgid "Center ~Y"
+msgstr "Centrado ~Y"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_ANGLE.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_ANGLE.fixedtext.text"
+msgid "~Angle"
+msgstr "~Angulo"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.MTR_TRGR_ANGLE.metricfield.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.MTR_TRGR_ANGLE.metricfield.text"
+msgid " degrees"
+msgstr " grados"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_BORDER.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_BORDER.fixedtext.text"
+msgid "~Border"
+msgstr "~Borde"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_START_VALUE.fixedtext.text
+msgid "~Start value"
+msgstr "Valor ~inicial"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_END_VALUE.fixedtext.text
+msgid "~End value"
+msgstr "Valor ~final"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.tabpage.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.tabpage.text"
+msgid "Transparency"
+msgstr "Transparencia"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FL_PROP.fixedline.text
+msgid "Fill"
+msgstr "Relleno"
+
+#: tabarea.src#RID_SVXPAGE_AREA.LB_AREA_TYPE.1.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.LB_AREA_TYPE.1.stringlist.text"
+msgid "None"
+msgstr "Ninguno"
+
+#: tabarea.src#RID_SVXPAGE_AREA.LB_AREA_TYPE.2.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.LB_AREA_TYPE.2.stringlist.text"
+msgid "Color"
+msgstr "Color"
+
+#: tabarea.src#RID_SVXPAGE_AREA.LB_AREA_TYPE.3.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.LB_AREA_TYPE.3.stringlist.text"
+msgid "Gradient"
+msgstr "Gradiente"
+
+#: tabarea.src#RID_SVXPAGE_AREA.LB_AREA_TYPE.4.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.LB_AREA_TYPE.4.stringlist.text"
+msgid "Hatching"
+msgstr "Trama"
+
+#: tabarea.src#RID_SVXPAGE_AREA.LB_AREA_TYPE.5.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.LB_AREA_TYPE.5.stringlist.text"
+msgid "Bitmap"
+msgstr "Mapa de bits"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FL_STEPCOUNT.fixedline.text
+msgid "Increments"
+msgstr "Incremento"
+
+#: tabarea.src#RID_SVXPAGE_AREA.TSB_STEPCOUNT.tristatebox.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.TSB_STEPCOUNT.tristatebox.text"
+msgid "A~utomatic"
+msgstr "Au~tomática"
+
+#: tabarea.src#RID_SVXPAGE_AREA.CB_HATCHBCKGRD.checkbox.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.CB_HATCHBCKGRD.checkbox.text"
+msgid "~Background color"
+msgstr "Color de ~fondo"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FL_SIZE.fixedline.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.FL_SIZE.fixedline.text"
+msgid "Size"
+msgstr "Tamaño"
+
+#: tabarea.src#RID_SVXPAGE_AREA.TSB_ORIGINAL.tristatebox.text
+msgid "~Original"
+msgstr "~Original"
+
+#: tabarea.src#RID_SVXPAGE_AREA.TSB_SCALE.tristatebox.text
+msgid "Re~lative"
+msgstr "Rela~tivo"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FT_X_SIZE.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.FT_X_SIZE.fixedtext.text"
+msgid "Wi~dth"
+msgstr "An~cho"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FT_Y_SIZE.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.FT_Y_SIZE.fixedtext.text"
+msgid "H~eight"
+msgstr "A~ltura"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FL_POSITION.fixedline.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.FL_POSITION.fixedline.text"
+msgid "Position"
+msgstr "Posición"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FT_X_OFFSET.fixedtext.text
+msgid "~X Offset"
+msgstr "Desfaz ~X"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FT_Y_OFFSET.fixedtext.text
+msgid "~Y Offset"
+msgstr "Desfaz ~Y"
+
+#: tabarea.src#RID_SVXPAGE_AREA.TSB_TILE.tristatebox.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.TSB_TILE.tristatebox.text"
+msgid "~Tile"
+msgstr "~Mosaico"
+
+#: tabarea.src#RID_SVXPAGE_AREA.TSB_STRETCH.tristatebox.text
+msgid "Auto~Fit"
+msgstr "Auto~Fit"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FL_OFFSET.fixedline.text
+msgid "Offset"
+msgstr "Desfaz"
+
+#: tabarea.src#RID_SVXPAGE_AREA.RBT_ROW.radiobutton.text
+msgid "Ro~w"
+msgstr "~Fila"
+
+#: tabarea.src#RID_SVXPAGE_AREA.RBT_COLUMN.radiobutton.text
+msgid "Colu~mn"
+msgstr "Colu~mna"
+
+#: tabarea.src#RID_SVXPAGE_AREA.tabpage.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.tabpage.text"
+msgid "Area"
+msgstr "Área"
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.FL_PROP.fixedline.text
+msgctxt "tabarea.src#RID_SVXPAGE_SHADOW.FL_PROP.fixedline.text"
+msgid "Properties"
+msgstr "Propiedades"
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.TSB_SHOW_SHADOW.tristatebox.text
+msgid "~Use shadow"
+msgstr "~Usa sombras"
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.FT_POSITION.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_SHADOW.FT_POSITION.fixedtext.text"
+msgid "~Position"
+msgstr "~Posición"
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.FT_DISTANCE.fixedtext.text
+msgid "~Distance"
+msgstr "~Distancia"
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.FT_SHADOW_COLOR.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_SHADOW.FT_SHADOW_COLOR.fixedtext.text"
+msgid "~Color"
+msgstr "~Color"
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.FT_TRANSPARENT.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_SHADOW.FT_TRANSPARENT.fixedtext.text"
+msgid "~Transparency"
+msgstr "~Transparencia"
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.tabpage.text
+msgctxt "tabarea.src#RID_SVXPAGE_SHADOW.tabpage.text"
+msgid "Shadow"
+msgstr "Sombra"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.FL_PROP.fixedline.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.FL_PROP.fixedline.text"
+msgid "Properties"
+msgstr "Propiedades"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.FT_LINE_DISTANCE.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.FT_LINE_DISTANCE.fixedtext.text"
+msgid "~Spacing"
+msgstr "Es~pacio"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.FT_LINE_ANGLE.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.FT_LINE_ANGLE.fixedtext.text"
+msgid "A~ngle"
+msgstr "A~gulo"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.MTR_FLD_ANGLE.metricfield.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.MTR_FLD_ANGLE.metricfield.text"
+msgid " degrees"
+msgstr " grados"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.FT_LINE_TYPE.fixedtext.text
+msgid "~Line type"
+msgstr "Tipo de ~linea"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.LB_LINE_TYPE.1.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.LB_LINE_TYPE.1.stringlist.text"
+msgid "Single"
+msgstr "Simple"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.LB_LINE_TYPE.2.stringlist.text
+msgid "Crossed"
+msgstr "Cruzado"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.LB_LINE_TYPE.3.stringlist.text
+msgid "Triple"
+msgstr "Triple"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.FT_LINE_COLOR.fixedtext.text
+msgid "Line ~color"
+msgstr "Linea de ~color"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.BTN_ADD.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.BTN_ADD.pushbutton.text"
+msgid "~Add..."
+msgstr "~Añadir..."
+
+#: tabarea.src#RID_SVXPAGE_HATCH.BTN_MODIFY.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.BTN_MODIFY.pushbutton.text"
+msgid "~Modify..."
+msgstr "~Modificar..."
+
+#: tabarea.src#RID_SVXPAGE_HATCH.BTN_DELETE.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.BTN_DELETE.pushbutton.text"
+msgid "~Delete..."
+msgstr "~Eliminar..."
+
+#: tabarea.src#RID_SVXPAGE_HATCH.BTN_LOAD.imagebutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.BTN_LOAD.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.BTN_LOAD.imagebutton.quickhelptext
+msgid "Load Hatches List"
+msgstr "Carga el listado de tramas"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.BTN_SAVE.imagebutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.BTN_SAVE.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.BTN_SAVE.imagebutton.quickhelptext
+msgid "Save Hatches List"
+msgstr "Guardar el listado de tramas"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.BTN_EMBED.checkbox.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.BTN_EMBED.checkbox.text"
+msgid "Embed"
+msgstr "Incrustar"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.tabpage.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.tabpage.text"
+msgid "Hatching"
+msgstr "Trama"
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.FL_PROP.fixedline.text
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.FL_PROP.fixedline.text"
+msgid "Properties"
+msgstr "Propiedades"
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.FT_PIXEL_EDIT.fixedtext.text
+msgid "Pattern Editor"
+msgstr "Editor de patrones"
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.FT_COLOR.fixedtext.text
+msgid "~Foreground color"
+msgstr "Color de ~superficie"
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.FT_BACKGROUND_COLOR.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.FT_BACKGROUND_COLOR.fixedtext.text"
+msgid "~Background color"
+msgstr "Color de ~fondo"
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.FT_BITMAPS_HIDDEN.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.FT_BITMAPS_HIDDEN.fixedtext.text"
+msgid "Bitmap"
+msgstr "Mapa de bits"
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_ADD.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.BTN_ADD.pushbutton.text"
+msgid "~Add..."
+msgstr "~Añadir..."
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_MODIFY.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.BTN_MODIFY.pushbutton.text"
+msgid "~Modify..."
+msgstr "~Modificar..."
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_IMPORT.pushbutton.text
+msgid "~Import..."
+msgstr "~Importar..."
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_DELETE.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.BTN_DELETE.pushbutton.text"
+msgid "~Delete..."
+msgstr "~Eliminar..."
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_LOAD.imagebutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.BTN_LOAD.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_LOAD.imagebutton.quickhelptext
+msgid "Load Bitmap List"
+msgstr "Cargar lista de mapas de bits"
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_SAVE.imagebutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.BTN_SAVE.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_SAVE.imagebutton.quickhelptext
+msgid "Save Bitmap List"
+msgstr "Guardar lista de mapas de bits"
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_EMBED.checkbox.text
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.BTN_EMBED.checkbox.text"
+msgid "Embed"
+msgstr "Incrustado"
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.tabpage.text
+msgid "Bitmap Patterns"
+msgstr "Patrones de mapa de bits"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FL_PROP.fixedline.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.FL_PROP.fixedline.text"
+msgid "Properties"
+msgstr "Propiedades"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FT_TYPE.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.FT_TYPE.fixedtext.text"
+msgid "Ty~pe"
+msgstr "Ti~po"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.LB_GRADIENT_TYPES.1.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.LB_GRADIENT_TYPES.1.stringlist.text"
+msgid "Linear"
+msgstr "Lineal"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.LB_GRADIENT_TYPES.2.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.LB_GRADIENT_TYPES.2.stringlist.text"
+msgid "Axial"
+msgstr "Axial"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.LB_GRADIENT_TYPES.3.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.LB_GRADIENT_TYPES.3.stringlist.text"
+msgid "Radial"
+msgstr "Radial"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.LB_GRADIENT_TYPES.4.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.LB_GRADIENT_TYPES.4.stringlist.text"
+msgid "Ellipsoid"
+msgstr "Elipsoide"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.LB_GRADIENT_TYPES.5.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.LB_GRADIENT_TYPES.5.stringlist.text"
+msgid "Square"
+msgstr "Cuadrado"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.LB_GRADIENT_TYPES.6.stringlist.text
+msgid "Rectangular"
+msgstr "Rectangular"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FT_CENTER_X.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.FT_CENTER_X.fixedtext.text"
+msgid "Center ~X"
+msgstr "Centrado ~X"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FT_CENTER_Y.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.FT_CENTER_Y.fixedtext.text"
+msgid "Center ~Y"
+msgstr "Centrado ~Y"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FT_ANGLE.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.FT_ANGLE.fixedtext.text"
+msgid "A~ngle"
+msgstr "Án~gulo"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.MTR_ANGLE.metricfield.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.MTR_ANGLE.metricfield.text"
+msgid " degrees"
+msgstr " grados"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FT_BORDER.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.FT_BORDER.fixedtext.text"
+msgid "~Border"
+msgstr "~Borde"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FT_COLOR_FROM.fixedtext.text
+msgid "~From"
+msgstr "~Desde"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FT_COLOR_TO.fixedtext.text
+msgid "~To"
+msgstr "~A"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.BTN_ADD.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.BTN_ADD.pushbutton.text"
+msgid "~Add..."
+msgstr "~Añadir..."
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.BTN_MODIFY.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.BTN_MODIFY.pushbutton.text"
+msgid "~Modify..."
+msgstr "~Modificar..."
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.BTN_DELETE.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.BTN_DELETE.pushbutton.text"
+msgid "~Delete..."
+msgstr "~Eliminar..."
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.BTN_LOAD.imagebutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.BTN_LOAD.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.BTN_LOAD.imagebutton.quickhelptext
+msgid "Load Gradients List"
+msgstr "Cargar lista de degradados"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.BTN_SAVE.imagebutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.BTN_SAVE.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.BTN_SAVE.imagebutton.quickhelptext
+msgid "Save Gradients List"
+msgstr "Guardar lista de degradados"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.BTN_EMBED.checkbox.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.BTN_EMBED.checkbox.text"
+msgid "Embed"
+msgstr "Incrustar"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.tabpage.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.tabpage.text"
+msgid "Gradients"
+msgstr "Degradados"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.FL_PROP.fixedline.text
+msgctxt "tabarea.src#RID_SVXPAGE_COLOR.FL_PROP.fixedline.text"
+msgid "Properties"
+msgstr "Propiedades"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.FT_NAME.fixedtext.text
+msgid "~Name"
+msgstr "~Nombre"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.FT_COLOR.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_COLOR.FT_COLOR.fixedtext.text"
+msgid "C~olor"
+msgstr "C~olor"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.FT_TABLE_NAME.fixedtext.text
+msgid "Color table"
+msgstr "Tabla de color"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.LB_COLORMODEL.1.stringlist.text
+msgid "RGB"
+msgstr "RGB"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.LB_COLORMODEL.2.stringlist.text
+msgid "CMYK"
+msgstr "CMYK"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.FT_1.fixedtext.text
+msgid "~C"
+msgstr "~C"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.FT_2.fixedtext.text
+msgid "~M"
+msgstr "~M"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.FT_3.fixedtext.text
+msgid "~Y"
+msgstr "~A"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.FT_4.fixedtext.text
+msgid "~K"
+msgstr "~K"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.BTN_ADD.pushbutton.text
+msgid "~Add"
+msgstr "~Añadir"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.BTN_WORK_ON.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_COLOR.BTN_WORK_ON.pushbutton.text"
+msgid "~Edit..."
+msgstr "~Editar..."
+
+#: tabarea.src#RID_SVXPAGE_COLOR.BTN_DELETE.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_COLOR.BTN_DELETE.pushbutton.text"
+msgid "~Delete..."
+msgstr "~Eliminar..."
+
+#: tabarea.src#RID_SVXPAGE_COLOR.BTN_MODIFY.pushbutton.text
+msgid "~Modify"
+msgstr "~Modificar"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.BTN_LOAD.imagebutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_COLOR.BTN_LOAD.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.BTN_LOAD.imagebutton.quickhelptext
+msgid "Load Color List"
+msgstr "Carga la lista de colores"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.BTN_SAVE.imagebutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_COLOR.BTN_SAVE.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.BTN_SAVE.imagebutton.quickhelptext
+msgid "Save Color List"
+msgstr "Guarda la lista de colores"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.BTN_EMBED.checkbox.text
+msgctxt "tabarea.src#RID_SVXPAGE_COLOR.BTN_EMBED.checkbox.text"
+msgid "Embed"
+msgstr "Incrustar"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.tabpage.text
+msgctxt "tabarea.src#RID_SVXPAGE_COLOR.tabpage.text"
+msgid "Colors"
+msgstr "Colores"
+
+#: tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_AREA.pageitem.text
+msgctxt "tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_AREA.pageitem.text"
+msgid "Area"
+msgstr "Área"
+
+#: tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_SHADOW.pageitem.text
+msgctxt "tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_SHADOW.pageitem.text"
+msgid "Shadow"
+msgstr "Sombra"
+
+#: tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_TRANSPARENCE.pageitem.text
+msgctxt "tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_TRANSPARENCE.pageitem.text"
+msgid "Transparency"
+msgstr "Transparencia"
+
+#: tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_COLOR.pageitem.text
+msgctxt "tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_COLOR.pageitem.text"
+msgid "Colors"
+msgstr "Colores"
+
+#: tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_GRADIENT.pageitem.text
+msgctxt "tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_GRADIENT.pageitem.text"
+msgid "Gradients"
+msgstr "Degradados"
+
+#: tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_HATCH.pageitem.text
+msgctxt "tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_HATCH.pageitem.text"
+msgid "Hatching"
+msgstr "Trama"
+
+#: tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_BITMAP.pageitem.text
+msgid "Bitmaps"
+msgstr "Mapas de bits"
+
+#: tabarea.src#RID_SVXDLG_AREA.tabdialog.text
+msgctxt "tabarea.src#RID_SVXDLG_AREA.tabdialog.text"
+msgid "Area"
+msgstr "Área"
+
+#: tabarea.src#STR_LB_HATCHINGSTYLE.string.text
+msgid "Hatching Style"
+msgstr "Estilo de entramado"
+
+#: tabarea.src#STR_CUI_COLORMODEL.string.text
+msgid "Color Mode"
+msgstr "Modo de color"
diff --git a/source/es/dbaccess/source/core/resource.po b/source/es/dbaccess/source/core/resource.po
new file mode 100644
index 00000000000..9087b6d7c59
--- /dev/null
+++ b/source/es/dbaccess/source/core/resource.po
@@ -0,0 +1,304 @@
+#. extracted from dbaccess/source/core/resource.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fcore%2Fresource.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-13 09:46+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: strings.src#RID_STR_TRIED_OPEN_TABLE.string.text
+msgid "Tried to open the table $name$."
+msgstr "Se intentó abrir la tabla $name$."
+
+#: strings.src#RID_STR_CONNECTION_INVALID.string.text
+msgid "No connection could be established."
+msgstr "No se pudo establecer una conexión."
+
+#: strings.src#RID_STR_TABLE_IS_FILTERED.string.text
+msgid "The table $name$ already exists. It is not visible because it has been filtered out."
+msgstr "La tabla $name$ ya existe. No es visible porque ha sido filtrada."
+
+#: strings.src#RID_STR_NEED_CONFIG_WRITE_ACCESS.string.text
+msgid "You have no write access to the configuration data the object is based on."
+msgstr "No es posible el acceso a los datos de configuración para escribir."
+
+#: strings.src#RID_STR_COULDNOTCONNECT_UNSPECIFIED.string.text
+msgid "The connection to the external data source could not be established. An unknown error occurred. The driver is probably defective."
+msgstr "No se pudo realizar la conexión a la fuente de datos externa. Ha ocurrido un error desconocido. Es posible que el controlador esté defectuoso."
+
+#: strings.src#RID_STR_COULDNOTCONNECT_NODRIVER.string.text
+msgid "The connection to the external data source could not be established. No SDBC driver was found for the given URL."
+msgstr "No se pudo realizar la conexión a la fuente de datos externa porque no se encontró ningún controlador SDBC para la URL indicada."
+
+#: strings.src#RID_STR_COULDNOTLOAD_MANAGER.string.text
+msgid "The connection to the external data source could not be established. The SDBC driver manager could not be loaded."
+msgstr "No se pudo realizar la conexión a la fuente de datos externa porque no se pudo cargar el gestor de controladores SDBC."
+
+#: strings.src#RID_STR_FORM.string.text
+msgid "Form"
+msgstr "Formulario"
+
+#: strings.src#RID_STR_REPORT.string.text
+msgid "Report"
+msgstr "Informe"
+
+#: strings.src#RID_STR_DATASOURCE_NOT_STORED.string.text
+msgid "The data source was not saved. Please use the interface XStorable to save the data source."
+msgstr "No se ha guardado el origen de datos. Utilice la interfaz de XStorable para guardar el origen de datos."
+
+#: strings.src#RID_STR_ONLY_QUERY.string.text
+msgid ""
+"The given command is not a SELECT statement.\n"
+"Only queries are allowed."
+msgstr ""
+"El comando proporcionado no es una instrucción SELECT.\n"
+"Sólo se permiten consultas."
+
+#: strings.src#RID_STR_NO_VALUE_CHANGED.string.text
+msgid "No values were modified."
+msgstr "No se ha modificado ningún valor."
+
+#: strings.src#RID_STR_NO_XROWUPDATE.string.text
+msgid "Values could not be inserted. The XRowUpdate interface is not supported by ResultSet."
+msgstr "No se han podido insertar valores. ResultSet no admite la interfaz de XRowUpdate."
+
+#: strings.src#RID_STR_NO_XRESULTSETUPDATE.string.text
+msgid "Values could not be inserted. The XResultSetUpdate interface is not supported by ResultSet."
+msgstr "No se han podido insertar valores. ResultSet no admite la interfaz de XResultSetUpdate."
+
+#: strings.src#RID_STR_NO_UPDATE_MISSING_CONDITION.string.text
+msgid "Values could not be modified, due to a missing condition statement."
+msgstr "No se han podido modificar los valores debido a que falta una instrucción de condición."
+
+#: strings.src#RID_STR_NO_COLUMN_ADD.string.text
+msgid "The adding of columns is not supported."
+msgstr "No se permite agregar columnas."
+
+#: strings.src#RID_STR_NO_COLUMN_DROP.string.text
+msgid "The dropping of columns is not supported."
+msgstr "No se permite colocar columnas."
+
+#: strings.src#RID_STR_NO_CONDITION_FOR_PK.string.text
+msgid "The WHERE condition could not be created for the primary key."
+msgstr "No se ha podido crear la condición WHERE para la clave principal."
+
+#: strings.src#RID_STR_COLUMN_UNKNOWN_PROP.string.text
+msgid "The column does not support the property '%value'."
+msgstr "La columna no admite la propiedad '%value'."
+
+#: strings.src#RID_STR_COLUMN_NOT_SEARCHABLE.string.text
+msgid "The column is not searchable!"
+msgstr "No se pueden efectuar búsquedas en la columna."
+
+#: strings.src#RID_STR_NOT_SEQUENCE_INT8.string.text
+msgid "The value of the columns is not of the type Sequence<sal_Int8>."
+msgstr "El valor de las columnas no es del tipo Secuencia<sal_Int8>."
+
+#: strings.src#RID_STR_COLUMN_NOT_VALID.string.text
+msgid "The column is not valid."
+msgstr "La columna no es válida."
+
+#: strings.src#RID_STR_COLUMN_MUST_VISIBLE.string.text
+msgid "The column '%name' must be visible as a column."
+msgstr "La columna '%name' debe aparecer como columna."
+
+#: strings.src#RID_STR_NO_XQUERIESSUPPLIER.string.text
+msgid "The interface XQueriesSupplier is not available."
+msgstr "La interfaz de XQueriesSupplier no está disponible."
+
+#: strings.src#RID_STR_NOT_SUPPORTED_BY_DRIVER.string.text
+msgid "The driver does not support this function."
+msgstr "El controlador no admite esta función."
+
+#: strings.src#RID_STR_NO_ABS_ZERO.string.text
+msgid "An 'absolute(0)' call is not allowed."
+msgstr "No se admiten llamadas 'absolute(0)'."
+
+#: strings.src#RID_STR_NO_RELATIVE.string.text
+msgid "Relative positioning is not allowed in this state."
+msgstr "No se admite la posición relativa en este estado."
+
+#: strings.src#RID_STR_NO_REFESH_AFTERLAST.string.text
+msgid "A row cannot be refreshed when the ResultSet is positioned after the last row."
+msgstr "No se pueden actualizar las filas cuando ResultSet está detrás de la última fila."
+
+#: strings.src#RID_STR_NO_MOVETOINSERTROW_CALLED.string.text
+msgid "A new row cannot be inserted when the ResultSet is not first moved to the insert row."
+msgstr "No se puede insertar una fila nueva si no se mueve antes ResultSet a la fila de inserción."
+
+#: strings.src#RID_STR_NO_UPDATEROW.string.text
+msgid "A row cannot be modified in this state"
+msgstr "No se puede modificar una fila en este estado"
+
+#: strings.src#RID_STR_NO_DELETEROW.string.text
+msgid "A row cannot be deleted in this state."
+msgstr "No se puede eliminar una fila en este estado."
+
+#: strings.src#RID_STR_NO_TABLE_RENAME.string.text
+msgid "The driver does not support table renaming."
+msgstr "El controlador no permite cambiar el nombre de la tabla."
+
+#: strings.src#RID_STR_NO_ALTER_COLUMN_DEF.string.text
+msgid "The driver does not support the modification of column descriptions."
+msgstr "El controlador no permite modificar descripciones de columnas."
+
+#: strings.src#RID_STR_COLUMN_ALTER_BY_NAME.string.text
+msgid "The driver does not support the modification of column descriptions by changing the name."
+msgstr "El controlador no permite modificar descripciones de columnas cambiando el nombre."
+
+#: strings.src#RID_STR_COLUMN_ALTER_BY_INDEX.string.text
+msgid "The driver does not support the modification of column descriptions by changing the index."
+msgstr "El controlador no permite modificar descripciones de columnas cambiando el índice."
+
+#: strings.src#RID_STR_FILE_DOES_NOT_EXIST.string.text
+msgid "The file \"$file$\" does not exist."
+msgstr "El archivo \"$file$\" no existe."
+
+#: strings.src#RID_STR_TABLE_DOES_NOT_EXIST.string.text
+msgid "There exists no table named \"$table$\"."
+msgstr "No hay ninguna tabla llamada \"$table$\"."
+
+#: strings.src#RID_STR_QUERY_DOES_NOT_EXIST.string.text
+msgid "There exists no query named \"$table$\"."
+msgstr "No hay ninguna consulta llamada \"$table$\"."
+
+#: strings.src#RID_STR_CONFLICTING_NAMES.string.text
+msgid "There are tables in the database whose names conflict with the names of existing queries. To make full use of all queries and tables, make sure they have distinct names."
+msgstr "Hay tablas de la base de datos cuyos nombres entran en conflicto con los de las consultas. Para poder utilizar al máximo todas las consultas y las tablas, cada cual debe tener su propio nombre."
+
+#: strings.src#RID_STR_COMMAND_LEADING_TO_ERROR.string.text
+msgid ""
+"The SQL command leading to this error is:\n"
+"\n"
+"$command$"
+msgstr ""
+"El comando SQL que comporta este error es:\n"
+"\n"
+"$command$"
+
+#: strings.src#RID_STR_STATEMENT_WITHOUT_RESULT_SET.string.text
+msgid "The SQL command does not describe a result set."
+msgstr "El comando SQL no describe un conjunto de resultados."
+
+#: strings.src#RID_STR_NAME_MUST_NOT_BE_EMPTY.string.text
+msgid "The name must not be empty."
+msgstr "El campo nombre no puede estar vacío."
+
+#: strings.src#RID_STR_NO_NULL_OBJECTS_IN_CONTAINER.string.text
+msgid "The container cannot contain NULL objects."
+msgstr "El contenedor no puede contener objetos NULL."
+
+#: strings.src#RID_STR_NAME_ALREADY_USED.string.text
+msgid "There already is an object with the given name."
+msgstr "Ya existe un objeto con el nombre dado."
+
+#: strings.src#RID_STR_OBJECT_CONTAINER_MISMATCH.string.text
+msgid "This object cannot be part of this container."
+msgstr "El objeto no puede ser parte de este contenedor."
+
+#: strings.src#RID_STR_OBJECT_ALREADY_CONTAINED.string.text
+msgid "The object already is, with a different name, part of the container."
+msgstr "El objeto ya es, con un nombre diferente, parte del contenedor."
+
+#: strings.src#RID_STR_NAME_NOT_FOUND.string.text
+msgid "Unable to find the document '$name$'."
+msgstr "No es posible encontrar el documento '$name$'."
+
+#: strings.src#RID_STR_ERROR_WHILE_SAVING.string.text
+msgid ""
+"Could not save the document to $location$:\n"
+"$message$"
+msgstr ""
+"No se pudo guardar el documento en $location$:\n"
+"$message$"
+
+#: strings.src#RID_NO_SUCH_DATA_SOURCE.string.text
+msgid ""
+"Error accessing data source '$name$':\n"
+"$error$"
+msgstr "Error al acceder a la fuente de datos '$name$':$error$"
+
+#: strings.src#RID_STR_NO_SUB_FOLDER.string.text
+msgid "There exists no folder named \"$folder$\"."
+msgstr "No existe ningún directorio llamado \"$folder$\"."
+
+#: strings.src#RID_STR_NO_DELETE_BEFORE_AFTER.string.text
+msgid "Cannot delete the before-first or after-last row."
+msgstr "No se puede eliminar la fila anterior a la primera ni la posterior a la última."
+
+#: strings.src#RID_STR_NO_DELETE_INSERT_ROW.string.text
+msgid "Cannot delete the insert-row."
+msgstr "No se puede eliminar la fila de inserción."
+
+#: strings.src#RID_STR_RESULT_IS_READONLY.string.text
+msgid "Result set is read only."
+msgstr "El conjunto de resultados es de sólo lectura."
+
+#: strings.src#RID_STR_NO_DELETE_PRIVILEGE.string.text
+msgid "DELETE privilege not available."
+msgstr "No está disponible el privilegio para eliminación DELETE."
+
+#: strings.src#RID_STR_ROW_ALREADY_DELETED.string.text
+msgid "Current row is already deleted."
+msgstr "La fila actual ya fue eliminada."
+
+#: strings.src#RID_STR_UPDATE_FAILED.string.text
+msgid "Current row could not be updated."
+msgstr "No se pudo actualizar la fila actual."
+
+#: strings.src#RID_STR_NO_INSERT_PRIVILEGE.string.text
+msgid "INSERT privilege not available."
+msgstr "No está disponible el privilegio para inserción INSERT."
+
+#: strings.src#RID_STR_INTERNAL_ERROR.string.text
+msgid "Internal error: no statement object provided by the database driver."
+msgstr "Se produjo un error interno: el controlador de la base de datos no proporcionó ningún objeto de tipo instrucción."
+
+#: strings.src#RID_STR_EXPRESSION1.string.text
+msgid "Expression1"
+msgstr "Expresión1"
+
+#: strings.src#RID_STR_NO_SQL_COMMAND.string.text
+msgid "No SQL command was provided."
+msgstr "No se proporcionó ningún comando SQL."
+
+#: strings.src#RID_STR_INVALID_INDEX.string.text
+msgid "Invalid column index."
+msgstr "Índice de columna inválido."
+
+#: strings.src#RID_STR_INVALID_CURSOR_STATE.string.text
+msgid "Invalid cursor state."
+msgstr "Estado del cursor inválido."
+
+#: strings.src#RID_STR_CURSOR_BEFORE_OR_AFTER.string.text
+msgid "The cursor points to before the first or after the last row."
+msgstr "El cursor apunta antes de la primera fila, o después de la última."
+
+#: strings.src#RID_STR_NO_BOOKMARK_BEFORE_OR_AFTER.string.text
+msgid "The rows before the first and after the last row don't have a bookmark."
+msgstr "La fila anterior a la primera y la posterior a la última no poseen marcadores."
+
+#: strings.src#RID_STR_NO_BOOKMARK_DELETED.string.text
+msgid "The current row is deleted, and thus doesn't have a bookmark."
+msgstr "La fila actual fue eliminada, por lo cual no posee un marcador."
+
+#: strings.src#RID_STR_NO_EMBEDDING.string.text
+msgid "Embedding of database documents is not supported."
+msgstr "No es posible incrustar documentos de base de datos."
+
+#: strings.src#RID_STR_CONNECTION_REQUEST.string.text
+msgid "A connection for the following URL was requested \"$name$\"."
+msgstr "Se solicitó una conexión para el siguiente URL \"$name$\"."
+
+#: strings.src#RID_STR_MISSING_EXTENSION.string.text
+msgid "The extension is not installed."
+msgstr "La extensión no está instalada."
diff --git a/source/es/dbaccess/source/ext/macromigration.po b/source/es/dbaccess/source/ext/macromigration.po
new file mode 100644
index 00000000000..b5802318203
--- /dev/null
+++ b/source/es/dbaccess/source/ext/macromigration.po
@@ -0,0 +1,212 @@
+#. extracted from dbaccess/source/ext/macromigration.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fext%2Fmacromigration.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-08-14 05:19+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: macromigration.src#DLG_MACRO_MIGRATION.STR_STATE_CLOSE_SUB_DOCS.string.text
+msgid "Prepare"
+msgstr "Preparar"
+
+#: macromigration.src#DLG_MACRO_MIGRATION.STR_STATE_BACKUP_DBDOC.string.text
+msgid "Backup Document"
+msgstr "Respaldar documento"
+
+#: macromigration.src#DLG_MACRO_MIGRATION.STR_STATE_MIGRATE.string.text
+msgid "Migrate"
+msgstr "Migrar"
+
+#: macromigration.src#DLG_MACRO_MIGRATION.STR_STATE_SUMMARY.string.text
+msgctxt "macromigration.src#DLG_MACRO_MIGRATION.STR_STATE_SUMMARY.string.text"
+msgid "Summary"
+msgstr "Resumen"
+
+#: macromigration.src#DLG_MACRO_MIGRATION.modaldialog.text
+msgid "Database Document Macro Migration"
+msgstr "Migración para macros de documentos de base de datos"
+
+#: macromigration.src#TP_PREPARE.FT_HEADER.fixedtext.text
+msgid "Welcome to the Database Macro Migration Wizard"
+msgstr "Bienvenido/a al Asistente para la migración de macros de bases de datos"
+
+#: macromigration.src#TP_PREPARE.FT_INTRODUCTION.fixedtext.text
+msgid ""
+"This wizard will guide you through the task of migrating your macros.\n"
+"\n"
+"After you finished it, all macros which were formerly embedded into the forms and reports of the current database document will have been moved to the document itself. In this course, libraries will be renamed as needed.\n"
+"\n"
+"If your forms and reports contain references to those macros, they will be adjusted, where possible.\n"
+"\n"
+"Before the migration can start, all forms, reports, queries and tables belonging to the document must be closed. Press 'Next' to do so."
+msgstr ""
+"Este asistente le guiará en la tarea de migración de sus macros.\n"
+"\n"
+"Después de finalizar, todas las macros que se encontraban incrustadas dentro de los formularios e informes del documento de base de datos actual se habrán movido al propio documento. Durante el proceso, las bibliotecas se renombrarán cuando sea necesario.\n"
+"\n"
+"Si los formularios o los informes contienen referencias a estas macros, se los ajustará siempre que sea posible.\n"
+"\n"
+"Antes de poder iniciar la migración deben cerrarse todos los formularios, informes, consultas y tablas que pertenezcan a este documento. Pulse «Siguiente» para cerrarlos."
+
+#: macromigration.src#TP_PREPARE.FT_CLOSE_DOC_ERROR.fixedtext.text
+msgid "Not all objects could be closed. Please close them manually, and re-start the wizard."
+msgstr "No se pudieron cerrar todos los objetos. Ciérrelos manualmente, y reinicie el asistente."
+
+#: macromigration.src#TP_SAVE_DBDOC_AS.FT_HEADER.fixedtext.text
+msgid "Backup your Document"
+msgstr "Respalde su documento"
+
+#: macromigration.src#TP_SAVE_DBDOC_AS.FT_EXPLANATION.fixedtext.text
+msgid "To allow you to go back to the state before the migration, the database document will be backed up to a location of your choice. Every change done by the wizard will be made to the original document, the backup will stay untouched."
+msgstr "Para permitirle regresar al estado anterior a la migración, el documento de la base de datos será respaldado en la ubicación que usted elija. Los cambios hechos por el asistente se aplicarán al documento original, y la copia de respaldo no será modificada."
+
+#: macromigration.src#TP_SAVE_DBDOC_AS.FT_SAVE_AS_LABEL.fixedtext.text
+msgid "Save To:"
+msgstr "Guardar a:"
+
+#: macromigration.src#TP_SAVE_DBDOC_AS.PB_BROWSE_SAVE_AS_LOCATION.pushbutton.text
+msgid "Browse ..."
+msgstr "Examinar..."
+
+#: macromigration.src#TP_SAVE_DBDOC_AS.FT_START_MIGRATION.fixedtext.text
+msgid "Press 'Next' to save a copy of your document, and to begin the migration."
+msgstr "Pulse «Siguiente» para guardar una copia de su documento, y para comenzar la migración."
+
+#: macromigration.src#TP_MIGRATE.FT_HEADER.fixedtext.text
+msgid "Migration Progress"
+msgstr "Progreso de la migración"
+
+#: macromigration.src#TP_MIGRATE.FT_OBJECT_COUNT.fixedtext.text
+msgid "The database document contains $forms$ form(s) and $reports$ report(s), which are currently being processed:"
+msgstr "El documento de la base de datos contiene $forms$ formulario(s) y $reports$ informe(s), que se están procesando en este momento:"
+
+#: macromigration.src#TP_MIGRATE.FT_CURRENT_OBJECT_LABEL.fixedtext.text
+msgid "Current object:"
+msgstr "Objeto actual:"
+
+#: macromigration.src#TP_MIGRATE.FT_CURRENT_PROGRESS_LABEL.fixedtext.text
+msgid "Current progress:"
+msgstr "Progreso actual:"
+
+#: macromigration.src#TP_MIGRATE.FT_ALL_PROGRESS_LABEL.fixedtext.text
+msgid "Overall progress:"
+msgstr "Progreso total:"
+
+#: macromigration.src#TP_MIGRATE.FT_OBJECT_COUNT_PROGRESS.fixedtext.text
+msgctxt "macromigration.src#TP_MIGRATE.FT_OBJECT_COUNT_PROGRESS.fixedtext.text"
+msgid "document $current$ of $overall$"
+msgstr "documento $current$ de $overall$"
+
+#: macromigration.src#TP_MIGRATE.FT_MIGRATION_DONE.fixedtext.text
+msgid "All forms and reports have been successfully processed. Press 'Next' to show a detailed summary."
+msgstr "Todos los documentos se han procesado satisfactoriamente. Presione 'Siguiente' para ver un resumen detallado."
+
+#: macromigration.src#TP_SUMMARY.FT_HEADER.fixedtext.text
+msgctxt "macromigration.src#TP_SUMMARY.FT_HEADER.fixedtext.text"
+msgid "Summary"
+msgstr "Resumen"
+
+#: macromigration.src#TP_SUMMARY.STR_SUCCESSFUL.string.text
+msgid "The migration was successful. Below is a log of the actions which have been taken to your document."
+msgstr "La migración fue exitosa. Debajo se encuentra un registro de las acciones que fueron ejecutadas en su documento."
+
+#: macromigration.src#TP_SUMMARY.STR_UNSUCCESSFUL.string.text
+msgid "The migration was not successful. Examine the migration log below for details."
+msgstr "La migración no fue exitosa. Examine el registro de migración que se encuentra debajo, para los detalles."
+
+#. This refers to a form document inside a database document.
+#: macromigration.src#STR_FORM.string.text
+msgid "Form '$name$'"
+msgstr "Formulario '$name$'"
+
+#. This refers to a report document inside a database document.
+#: macromigration.src#STR_REPORT.string.text
+msgid "Report '$name$'"
+msgstr "Informe '$name$'"
+
+#: macromigration.src#STR_OVERALL_PROGRESS.string.text
+msgctxt "macromigration.src#STR_OVERALL_PROGRESS.string.text"
+msgid "document $current$ of $overall$"
+msgstr "documento $current$ de $overall$"
+
+#: macromigration.src#STR_DATABASE_DOCUMENT.string.text
+msgid "Database Document"
+msgstr "Documento de la base de datos"
+
+#: macromigration.src#STR_SAVED_COPY_TO.string.text
+msgid "saved copy to $location$"
+msgstr "se guardó una copia en $location$"
+
+#: macromigration.src#STR_MOVED_LIBRARY.string.text
+msgid "migrated $type$ library '$old$' to '$new$'"
+msgstr "se movió la biblioteca $type$ de '$old$' a '$new$'"
+
+#: macromigration.src#STR_LIBRARY_TYPE_AND_NAME.string.text
+msgid "$type$ library '$library$'"
+msgstr "$type$ biblioteca '$library$'"
+
+#: macromigration.src#STR_MIGRATING_LIBS.string.text
+msgid "migrating libraries ..."
+msgstr "moviendo bibliotecas..."
+
+#: macromigration.src#STR_OOO_BASIC.string.text
+msgid "%PRODUCTNAME Basic"
+msgstr "%PRODUCTNAME Basic"
+
+#: macromigration.src#STR_JAVA_SCRIPT.string.text
+msgid "JavaScript"
+msgstr "JavaScript"
+
+#: macromigration.src#STR_BEAN_SHELL.string.text
+msgid "BeanShell"
+msgstr "BeanShell"
+
+#: macromigration.src#STR_JAVA.string.text
+msgid "Java"
+msgstr "Java"
+
+#: macromigration.src#STR_PYTHON.string.text
+msgid "Python"
+msgstr "Python"
+
+#: macromigration.src#STR_DIALOG.string.text
+msgid "dialog"
+msgstr "diálogo"
+
+#: macromigration.src#STR_ERRORS.string.text
+msgid "Error(s)"
+msgstr "Error(es)"
+
+#: macromigration.src#STR_WARNINGS.string.text
+msgid "Warnings"
+msgstr "Advertencias"
+
+#: macromigration.src#STR_EXCEPTION.string.text
+msgid "caught exception:"
+msgstr "capturada excepción:"
+
+#: macromigration.src#ERR_INVALID_BACKUP_LOCATION.errorbox.text
+msgid "You need to choose a backup location other than the document location itself."
+msgstr "Para la copia de seguridad necesita elegir una ubicación diferente a la ubicación del documento."
+
+#: macromigration.src#STR_INVALID_NUMBER_ARGS.string.text
+msgid "Invalid number of initialization arguments. Expected 1."
+msgstr "La cantidad de argumentos de inicialización es incorrecta. Se esperaba 1."
+
+#: macromigration.src#STR_NO_DATABASE.string.text
+msgid "No database document found in the initialization arguments."
+msgstr "No se encontró un documento de base de datos en los argumentos de inicialización."
+
+#: macromigration.src#STR_NOT_READONLY.string.text
+msgid "Not applicable to read-only documents."
+msgstr "No se aplica a los documentos de sólo lectura."
diff --git a/source/es/dbaccess/source/sdbtools/resource.po b/source/es/dbaccess/source/sdbtools/resource.po
new file mode 100644
index 00000000000..ef423fbe1df
--- /dev/null
+++ b/source/es/dbaccess/source/sdbtools/resource.po
@@ -0,0 +1,44 @@
+#. extracted from dbaccess/source/sdbtools/resource.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fsdbtools%2Fresource.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-08-14 05:19+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: sdbt_strings.src#STR_QUERY_AND_TABLE_DISTINCT_NAMES.string.text
+msgid "You cannot give a table and a query the same name. Please use a name which is not yet used by a query or table."
+msgstr "No puede asignar el mismo nombre a una tabla y una consulta. Utilice un nombre que no esté asignado a una consulta o tabla."
+
+#: sdbt_strings.src#STR_BASENAME_TABLE.string.text
+msgid "Table"
+msgstr "Tabla"
+
+#: sdbt_strings.src#STR_BASENAME_QUERY.string.text
+msgid "Query"
+msgstr "Consulta"
+
+#: sdbt_strings.src#STR_CONN_WITHOUT_QUERIES_OR_TABLES.string.text
+msgid "The given connection is no valid query and/or tables supplier."
+msgstr "La conexión proporcionada no corresponde a una consulta y/o tabla existente."
+
+#: sdbt_strings.src#STR_NO_TABLE_OBJECT.string.text
+msgid "The given object is no table object."
+msgstr "El objeto proporcionado no es una tabla."
+
+#: sdbt_strings.src#STR_INVALID_COMPOSITION_TYPE.string.text
+msgid "Invalid composition type - need a value from com.sun.star.sdb.tools.CompositionType."
+msgstr "Tipo de composición inválido - se necesita un valor de com.sun.star.sdb.tools.CompositionType."
+
+#: sdbt_strings.src#STR_INVALID_COMMAND_TYPE.string.text
+msgid "Invalid command type - only TABLE and QUERY from com.sun.star.sdb.CommandType are allowed."
+msgstr "Tipo de comando inválido - sólo se permite TABLE o CONSULTAS desde com.sun.star.sdb.CommandType"
diff --git a/source/es/dbaccess/source/ui/app.po b/source/es/dbaccess/source/ui/app.po
new file mode 100644
index 00000000000..6ba316265fd
--- /dev/null
+++ b/source/es/dbaccess/source/ui/app.po
@@ -0,0 +1,292 @@
+#. extracted from dbaccess/source/ui/app.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Fapp.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-08-14 05:06+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: app.src#RID_STR_NEW_FORM.string.text
+msgid "Create Form in Design View..."
+msgstr "Crear un formulario en modo de diseño..."
+
+#: app.src#RID_STR_NEW_FORM_AUTO.string.text
+msgid "Use Wizard to Create Form..."
+msgstr "Usar el asistente para crear un formulario..."
+
+#: app.src#RID_STR_NEW_REPORT_AUTO.string.text
+msgid "Use Wizard to Create Report..."
+msgstr "Usar el asistente para crear un informe..."
+
+#: app.src#RID_STR_NEW_REPORT.string.text
+msgid "Create Report in Design View..."
+msgstr "Crear un informe en modo de diseño..."
+
+#: app.src#RID_STR_NEW_QUERY.string.text
+msgid "Create Query in Design View..."
+msgstr "Crear una consulta en modo de diseño..."
+
+#: app.src#RID_STR_NEW_QUERY_SQL.string.text
+msgid "Create Query in SQL View..."
+msgstr "Crear una consulta en modo SQL..."
+
+#: app.src#RID_STR_NEW_QUERY_AUTO.string.text
+msgid "Use Wizard to Create Query..."
+msgstr "Usar el asistente para crear una consulta..."
+
+#: app.src#RID_STR_NEW_TABLE.string.text
+msgid "Create Table in Design View..."
+msgstr "Crear una tabla en modo de diseño..."
+
+#: app.src#RID_STR_NEW_TABLE_AUTO.string.text
+msgid "Use Wizard to Create Table..."
+msgstr "Usar el asistente para crear una tabla..."
+
+#: app.src#RID_STR_NEW_VIEW.string.text
+msgid "Create View..."
+msgstr "Crear una vista..."
+
+#: app.src#RID_STR_FORMS_CONTAINER.string.text
+msgid "Forms"
+msgstr "Formularios"
+
+#: app.src#RID_STR_REPORTS_CONTAINER.string.text
+msgid "Reports"
+msgstr "Informes"
+
+#: app.src#RID_MENU_APP_NEW.SID_APP_NEW_FORM.menuitem.text
+msgid "Form..."
+msgstr "Formulario..."
+
+#: app.src#RID_MENU_APP_NEW.SID_APP_NEW_REPORT.menuitem.text
+msgctxt "app.src#RID_MENU_APP_NEW.SID_APP_NEW_REPORT.menuitem.text"
+msgid "Report..."
+msgstr "Informe..."
+
+#: app.src#RID_MENU_APP_NEW.SID_DB_NEW_VIEW_SQL.menuitem.text
+msgid "View (Simple)..."
+msgstr "Vista (Simple)..."
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_PASTE_SPECIAL.menuitem.text
+msgid "Paste Special..."
+msgstr "Pegado especial..."
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_DELETE.menuitem.text
+msgid "Delete"
+msgstr "Eliminar"
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_RENAME.menuitem.text
+msgid "Rename"
+msgstr "Renombrar"
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_EDIT.menuitem.text
+msgid "Edit"
+msgstr "Editar"
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_EDIT_SQL_VIEW.menuitem.text
+msgid "Edit in SQL View..."
+msgstr "Editar en vista SQL..."
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_OPEN.menuitem.text
+msgid "Open"
+msgstr "Abrir"
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_CONVERTTOVIEW.menuitem.text
+msgid "Create as View"
+msgstr "Crear como vista"
+
+#: app.src#RID_MENU_APP_EDIT.SID_FORM_CREATE_REPWIZ_PRE_SEL.menuitem.text
+msgid "Form Wizard..."
+msgstr "Asistente para formularios..."
+
+#: app.src#RID_MENU_APP_EDIT.SID_APP_NEW_REPORT_PRE_SEL.menuitem.text
+msgctxt "app.src#RID_MENU_APP_EDIT.SID_APP_NEW_REPORT_PRE_SEL.menuitem.text"
+msgid "Report..."
+msgstr "Informe..."
+
+#: app.src#RID_MENU_APP_EDIT.SID_REPORT_CREATE_REPWIZ_PRE_SEL.menuitem.text
+msgid "Report Wizard..."
+msgstr "Asistente para informes..."
+
+#: app.src#RID_MENU_APP_EDIT.SID_SELECTALL.menuitem.text
+msgid "Select All"
+msgstr "Seleccionar todo"
+
+#: app.src#RID_MENU_APP_EDIT.MN_PROPS.SID_DB_APP_DSPROPS.menuitem.text
+msgid "Properties..."
+msgstr "Propiedades..."
+
+#: app.src#RID_MENU_APP_EDIT.MN_PROPS.SID_DB_APP_DSCONNECTION_TYPE.menuitem.text
+msgid "Connection Type..."
+msgstr "Tipo de conexión..."
+
+#: app.src#RID_MENU_APP_EDIT.MN_PROPS.SID_DB_APP_DSADVANCED_SETTINGS.menuitem.text
+msgid "Advanced Settings..."
+msgstr "Configuración avanzada..."
+
+#: app.src#RID_MENU_APP_EDIT.MN_PROPS.menuitem.text
+msgid "~Database"
+msgstr "~Base de datos"
+
+#: app.src#STR_QUERY_DELETE_DATASOURCE.string.text
+msgid "Do you want to delete the data source '%1'?"
+msgstr "¿Desea eliminar el origen de datos '%1'?"
+
+#: app.src#STR_APP_TITLE.string.text
+msgid " - %PRODUCTNAME Base"
+msgstr " - %PRODUCTNAME Base"
+
+#: app.src#RID_STR_REPORTS_HELP_TEXT_WIZARD.string.text
+msgid "The wizard will guide you through the steps necessary to create a report."
+msgstr "El asistente le guía por los pasos necesarios para crear un informe."
+
+#: app.src#RID_STR_FORMS_HELP_TEXT.string.text
+msgid "Create a form by specifying the record source, controls, and control properties."
+msgstr "Cree un formulario especificando el origen de datos, los controles y las propiedades de control."
+
+#: app.src#RID_STR_REPORT_HELP_TEXT.string.text
+msgid "Create a report by specifying the record source, controls, and control properties."
+msgstr "Crear un informe que especifique la fuente de registro, los controles y las propiedades de control."
+
+#: app.src#RID_STR_FORMS_HELP_TEXT_WIZARD.string.text
+msgid "The wizard will guide you through the steps necessary to create a form."
+msgstr "El asistente le guía por los pasos necesarios para crear un formulario."
+
+#: app.src#RID_STR_QUERIES_HELP_TEXT.string.text
+msgid "Create a query by specifying the filters, input tables, field names, and properties for sorting or grouping."
+msgstr "Cree una consulta especificando los filtros, las tablas de entrada, los nombres de campo y las propiedades para ordenar o agrupar."
+
+#: app.src#RID_STR_QUERIES_HELP_TEXT_SQL.string.text
+msgid "Create a query entering an SQL statement directly."
+msgstr "Cree una consulta escribiendo directamente una instrucción SQL."
+
+#: app.src#RID_STR_QUERIES_HELP_TEXT_WIZARD.string.text
+msgid "The wizard will guide you through the steps necessary to create a query."
+msgstr "El asistente le guía por los pasos necesarios para crear una consulta."
+
+#: app.src#RID_STR_TABLES_HELP_TEXT_DESIGN.string.text
+msgid "Create a table by specifying the field names and properties, as well as the data types."
+msgstr "Cree una tabla especificando los nombres de campo y las propiedades, así como los tipos de datos."
+
+#: app.src#RID_STR_TABLES_HELP_TEXT_WIZARD.string.text
+msgid "Choose from a selection of business and personal table samples, which you customize to create a table."
+msgstr "Elija en una selección de muestras de tablas personales y comerciales, que se pueden personalizar para crear una tabla."
+
+#: app.src#RID_STR_VIEWS_HELP_TEXT_DESIGN.string.text
+msgid "Create a view by specifying the tables and field names you would like to have visible."
+msgstr "Cree una vista especificando las tablas y los nombres de campo que desee ver."
+
+#: app.src#RID_STR_VIEWS_HELP_TEXT_WIZARD.string.text
+msgid "Opens the view wizard"
+msgstr "Abre el asistente para vistas"
+
+#: app.src#STR_DATABASE.string.text
+msgid "Database"
+msgstr "Base de datos"
+
+#: app.src#STR_TASKS.string.text
+msgid "Tasks"
+msgstr "Tareas"
+
+#: app.src#STR_DESCRIPTION.string.text
+msgid "Description"
+msgstr "Descripción"
+
+#: app.src#STR_PREVIEW.string.text
+msgid "Preview"
+msgstr "Vista previa"
+
+#: app.src#STR_DISABLEPREVIEW.string.text
+msgid "Disable Preview"
+msgstr "Desactivar vista previa"
+
+#: app.src#APP_SAVEMODIFIED.querybox.text
+msgid ""
+"The database has been modified.\n"
+"Do you want to save the changes?"
+msgstr ""
+"La base de datos se ha modificado.\n"
+"¿Desea guardar los cambios?"
+
+#: app.src#APP_CLOSEDOCUMENTS.querybox.text
+msgid ""
+"The connection type has been altered.\n"
+"For the changes to take effect, all forms, reports, queries and tables must be closed.\n"
+"\n"
+"Do you want to close all documents now?"
+msgstr ""
+"Se ha modificado el tipo de conexión.\n"
+"Para que los cambios surtan efecto, deben cerrarse todos los formularios, los informes, las consultas y las tablas.\n"
+"\n"
+"¿Desea cerrar todos los documentos ahora?"
+
+#: app.src#RID_MENU_APP_PREVIEW.SID_DB_APP_DISABLE_PREVIEW.menuitem.text
+msgid "None"
+msgstr "Ninguno"
+
+#: app.src#RID_MENU_APP_PREVIEW.SID_DB_APP_VIEW_DOCINFO_PREVIEW.menuitem.text
+msgid "Document Information"
+msgstr "Información del documento"
+
+#: app.src#RID_MENU_APP_PREVIEW.SID_DB_APP_VIEW_DOC_PREVIEW.menuitem.text
+msgid "Document"
+msgstr "Documento"
+
+#: app.src#RID_STR_FORM.string.text
+msgid "Form"
+msgstr "Formulario"
+
+#: app.src#RID_STR_REPORT.string.text
+msgid "Report"
+msgstr "Informe"
+
+#: app.src#STR_FRM_LABEL.string.text
+msgid "F~orm name"
+msgstr "Nombre del f~ormulario"
+
+#: app.src#STR_RPT_LABEL.string.text
+msgid "~Report name"
+msgstr "Nombre del ~informe"
+
+#: app.src#STR_FOLDER_LABEL.string.text
+msgid "F~older name"
+msgstr "Nombre de la c~arpeta"
+
+#: app.src#STR_SUB_DOCS_WITH_SCRIPTS.string.text
+msgid "The document contains forms or reports with embedded macros."
+msgstr "El documento contiene formularios o reportes con macros incrustadas."
+
+#: app.src#STR_SUB_DOCS_WITH_SCRIPTS_DETAIL.string.text
+msgid ""
+"Macros should be embedded into the database document itself.\n"
+"\n"
+"You can continue to use your document as before, however, you are encouraged to migrate your macros. The menu item 'Tools / Migrate Macros ...' will assist you with this.\n"
+"\n"
+"Note that you won't be able to embed macros into the database document itself until this migration is done. "
+msgstr ""
+"Las macros deberían incrustarse en el documento mismo de la base de datos.\n"
+"\n"
+"Puede seguir utilizando su documento como antes, sin embargo, le sugerimos que migre sus macros. El item del menú 'Herramientas / Migrar macros ...' le ayudará con esta tarea.\n"
+"\n"
+"Tenga en cuenta que no podrá incrustar macros en el documento de la base de datos hasta que lleve a cabo esta migración. "
+
+#: app.src#RID_STR_EMBEDDED_DATABASE.string.text
+msgid "Embedded database"
+msgstr "Base de datos incrustada"
+
+#: app.src#RID_STR_NO_DIFF_CAT.string.text
+msgid "You cannot select different categories."
+msgstr "No puede seleccionar categorías distintas."
+
+#: app.src#RID_STR_UNSUPPORTED_OBJECT_TYPE.string.text
+msgid "Unsupported object type found ($type$)."
+msgstr "Se encontró un tipo de objeto no admitido ($type$)."
diff --git a/source/es/dbaccess/source/ui/browser.po b/source/es/dbaccess/source/ui/browser.po
new file mode 100644
index 00000000000..5f9cac534a5
--- /dev/null
+++ b/source/es/dbaccess/source/ui/browser.po
@@ -0,0 +1,174 @@
+#. extracted from dbaccess/source/ui/browser.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Fbrowser.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-08-14 05:19+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: bcommon.src#RID_STR_TBL_TITLE.string.text
+msgctxt "bcommon.src#RID_STR_TBL_TITLE.string.text"
+msgid "Table #"
+msgstr "Tabla #"
+
+#: sbagrid.src#RID_SBA_GRID_COLCTXMENU.ID_BROWSER_COLATTRSET.menuitem.text
+msgid "Column ~Format..."
+msgstr "Formateado de ~columnas..."
+
+#: sbagrid.src#RID_SBA_GRID_COLCTXMENU.ID_BROWSER_COLUMNINFO.menuitem.text
+msgid "Copy Column D~escription"
+msgstr "Copiar descripción de colu~mna"
+
+#: sbagrid.src#RID_SBA_GRID_ROWCTXMENU.ID_BROWSER_TABLEATTR.menuitem.text
+msgid "Table Format..."
+msgstr "Formateado de tabla..."
+
+#: sbagrid.src#RID_SBA_GRID_ROWCTXMENU.ID_BROWSER_ROWHEIGHT.menuitem.text
+msgid "Row Height..."
+msgstr "Altura de fila..."
+
+#: sbagrid.src#RID_STR_UNDO_MODIFY_RECORD.string.text
+msgid "Undo: Data Input"
+msgstr "Deshacer: Introducción de datos"
+
+#: sbagrid.src#RID_STR_SAVE_CURRENT_RECORD.string.text
+msgid "Save current record"
+msgstr "Guardar registro actual"
+
+#: sbagrid.src#STR_QRY_TITLE.string.text
+msgid "Query #"
+msgstr "Consulta #"
+
+#: sbagrid.src#STR_TBL_TITLE.string.text
+msgctxt "sbagrid.src#STR_TBL_TITLE.string.text"
+msgid "Table #"
+msgstr "Tabla #"
+
+#: sbagrid.src#STR_VIEW_TITLE.string.text
+msgid "View #"
+msgstr "Ver #"
+
+#: sbagrid.src#STR_NAME_ALREADY_EXISTS.string.text
+msgid "The name \"#\" already exists."
+msgstr "El nombre \"#\" ya existe."
+
+#: sbagrid.src#STR_NO_COLUMNNAME_MATCHING.string.text
+msgid "No matching column names were found."
+msgstr "No se encontraron nombres de columna idénticos."
+
+#: sbagrid.src#STR_ERROR_OCCURRED_WHILE_COPYING.string.text
+msgid "An error occurred. Do you want to continue copying?"
+msgstr "Ocurrió un error. ¿Quiere continuar con la copia?"
+
+#: sbagrid.src#STR_DATASOURCE_GRIDCONTROL_NAME.string.text
+msgid "Data source table view"
+msgstr "Vista de tabla de la fuente de datos"
+
+#: sbagrid.src#STR_DATASOURCE_GRIDCONTROL_DESC.string.text
+msgid "Shows the selected table or query."
+msgstr "Muestra la tabla o consulta seleccionada."
+
+#: sbabrw.src#QUERY_BRW_SAVEMODIFIED.querybox.text
+msgid ""
+"The current record has been changed.\n"
+"Do you want to save the changes?"
+msgstr ""
+"El registro actual ha sido modificado.\n"
+"¿Desea guardar las modificaciones?"
+
+#: sbabrw.src#QUERY_BRW_DELETE_ROWS.querybox.text
+msgid "Do you want to delete the selected data?"
+msgstr "¿Desea eliminar los datos seleccionados?"
+
+#: sbabrw.src#RID_STR_DATABROWSER_FILTERED.string.text
+msgid "(filtered)"
+msgstr "(filtrado)"
+
+#: sbabrw.src#SBA_BROWSER_SETTING_ORDER.string.text
+msgid "Error setting the sort criteria"
+msgstr "Error al definir los criterios de ordenación"
+
+#: sbabrw.src#SBA_BROWSER_SETTING_FILTER.string.text
+msgid "Error setting the filter criteria"
+msgstr "Error al definir los criterios de filtro"
+
+#: sbabrw.src#RID_STR_CONNECTION_LOST.string.text
+msgid "Connection lost"
+msgstr "Se perdió la conexión"
+
+#: sbabrw.src#RID_STR_QUERIES_CONTAINER.string.text
+msgid "Queries"
+msgstr "Consultas"
+
+#: sbabrw.src#RID_STR_TABLES_CONTAINER.string.text
+msgid "Tables"
+msgstr "Tablas"
+
+#: sbabrw.src#MID_EDIT_DATABASE.#define.text
+msgid "Edit ~Database File..."
+msgstr "Editar archivo de la base de ~datos..."
+
+#: sbabrw.src#MID_ADMINISTRATE.#define.text
+msgid "Registered databases ..."
+msgstr "Bases de datos registradas..."
+
+#: sbabrw.src#MID_CLOSECONN.#define.text
+msgid "Disco~nnect"
+msgstr "Desco~nectar"
+
+#: sbabrw.src#STR_TITLE_CONFIRM_DELETION.string.text
+msgid "Confirm Deletion"
+msgstr "Confirmar eliminación"
+
+#: sbabrw.src#STR_QUERY_DELETE_TABLE.string.text
+msgid "Do you want to delete the table '%1'?"
+msgstr "¿Quiere eliminar la tabla «%1»?"
+
+#: sbabrw.src#QUERY_BRW_DELETE_QUERY_CONFIRM.querybox.text
+msgid "The query already exists. Do you want to delete it?"
+msgstr "La consulta ya existe. ¿Quiere eliminarla?"
+
+#: sbabrw.src#QUERY_CONNECTION_LOST.querybox.text
+msgid "The connection to the database has been lost. Do you want to reconnect?"
+msgstr "Se ha perdido la conexión a la base de datos. ¿Quiere reconectar?"
+
+#: sbabrw.src#STR_OPENTABLES_WARNINGS.string.text
+msgid "Warnings encountered"
+msgstr "Se han encontrado advertencias"
+
+#: sbabrw.src#STR_OPENTABLES_WARNINGS_DETAILS.string.text
+msgid "While retrieving the tables, warnings were reported by the database connection."
+msgstr "La conexión a la base de datos ha enviado advertencias durante la determinación de las tablas."
+
+#: sbabrw.src#STR_CONNECTING_DATASOURCE.string.text
+msgid "Connecting to \"$name$\" ..."
+msgstr "Conectando a «$name$» ..."
+
+#: sbabrw.src#STR_LOADING_QUERY.string.text
+msgid "Loading query $name$ ..."
+msgstr "Cargando consulta $name$ ..."
+
+#: sbabrw.src#STR_LOADING_TABLE.string.text
+msgid "Loading table $name$ ..."
+msgstr "Cargando tabla $name$ ..."
+
+#: sbabrw.src#STR_NO_TABLE_FORMAT_INSIDE.string.text
+msgid "No table format could be found."
+msgstr "No se ha podido encontrar ningún formato de hoja de cálculo."
+
+#: sbabrw.src#STR_COULDNOTCONNECT_DATASOURCE.string.text
+msgid "The connection to the data source \"$name$\" could not be established."
+msgstr "No se ha podido establecer la conexión al origen de datos «$name$»."
+
+#: sbabrw.src#RID_MENU_REFRESH_DATA.ID_BROWSER_REFRESH_REBUILD.menuitem.text
+msgid "Rebuild"
+msgstr "Reconstruir"
diff --git a/source/es/dbaccess/source/ui/control.po b/source/es/dbaccess/source/ui/control.po
new file mode 100644
index 00000000000..7c012033528
--- /dev/null
+++ b/source/es/dbaccess/source/ui/control.po
@@ -0,0 +1,92 @@
+#. extracted from dbaccess/source/ui/control.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Fcontrol.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-07-13 11:47+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: undosqledit.src#STR_QUERY_UNDO_MODIFYSQLEDIT.string.text
+msgid "Modify SQL statement(s)"
+msgstr "Modificar SQL"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_NAME.string.text
+msgid "Table name"
+msgstr "Nombre de la tabla"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_INSERT.string.text
+msgid "Insert data"
+msgstr "Insertar datos"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_DELETE.string.text
+msgid "Delete data"
+msgstr "Eliminar datos"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_UPDATE.string.text
+msgid "Modify data"
+msgstr "Modificar datos"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_ALTER.string.text
+msgid "Alter structure"
+msgstr "Modificar estructura"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_SELECT.string.text
+msgid "Read data"
+msgstr "Leer datos"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_REFERENCE.string.text
+msgid "Modify references"
+msgstr "Modificar referencias"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_DROP.string.text
+msgid "Drop structure"
+msgstr "Eliminar estructura"
+
+#: tabletree.src#MENU_TABLETREE_POPUP.MID_SORT_ASCENDING.menuitem.text
+msgid "Sort Ascending"
+msgstr "Orden ascendente"
+
+#: tabletree.src#MENU_TABLETREE_POPUP.MID_SORT_DECENDING.menuitem.text
+msgid "Sort Descending"
+msgstr "Orden descendente"
+
+#: tabletree.src#STR_COULDNOTCREATE_DRIVERMANAGER.string.text
+msgid "Cannot connect to the SDBC driver manager (#servicename#)."
+msgstr "No se pudo establecer una conexión al administrador de controladores SDBC (#servicename#)."
+
+#: tabletree.src#STR_NOREGISTEREDDRIVER.string.text
+msgid "A driver is not registered for the URL #connurl#."
+msgstr "No existe un controlador registrado para la URL #connurl#"
+
+#: tabletree.src#STR_COULDNOTCONNECT.string.text
+msgid "No connection could be established for the URL #connurl#."
+msgstr "No se pudo realizar ninguna conexión para la URL #connurl#."
+
+#: tabletree.src#STR_COULDNOTCONNECT_PLEASECHECK.string.text
+msgid "Please check the current settings, for example user name and password."
+msgstr "Compruebe la configuración actual, como el nombre de usuario y la contraseña."
+
+#: tabletree.src#STR_NOTABLEINFO.string.text
+msgid "Successfully connected, but information about database tables is not available."
+msgstr "Se ha realizado una conexión satisfactoriamente, pero no se ha conseguido ninguna información sobre tablas en la base de datos."
+
+#: tabletree.src#STR_ALL_TABLES.string.text
+msgid "All tables"
+msgstr "Todas las tablas"
+
+#: tabletree.src#STR_ALL_VIEWS.string.text
+msgid "All views"
+msgstr "Todas las visualizaciones de tablas"
+
+#: tabletree.src#STR_ALL_TABLES_AND_VIEWS.string.text
+msgid "All tables and views"
+msgstr "Todas las tablas y visualizaciones de tablas"
diff --git a/source/es/dbaccess/source/ui/dlg.po b/source/es/dbaccess/source/ui/dlg.po
new file mode 100644
index 00000000000..1f3c5fdeb16
--- /dev/null
+++ b/source/es/dbaccess/source/ui/dlg.po
@@ -0,0 +1,1598 @@
+#. extracted from dbaccess/source/ui/dlg.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Fdlg.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-08-14 06:09+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: textconnectionsettings.src#DLG_TEXT_CONNECTION_SETTINGS.modaldialog.text
+msgid "Text Connection Settings"
+msgstr "Configuración de conexión"
+
+#: indexdialog.src#DLG_INDEXDESIGN.TLB_ACTIONS.ID_INDEX_NEW.toolboxitem.text
+msgid "New Index"
+msgstr "Índice nuevo"
+
+#: indexdialog.src#DLG_INDEXDESIGN.TLB_ACTIONS.ID_INDEX_DROP.toolboxitem.text
+msgid "Delete Current Index"
+msgstr "Eliminar índice actual"
+
+#: indexdialog.src#DLG_INDEXDESIGN.TLB_ACTIONS.ID_INDEX_RENAME.toolboxitem.text
+msgid "Rename Current Index"
+msgstr "Renombrar índice actual"
+
+#: indexdialog.src#DLG_INDEXDESIGN.TLB_ACTIONS.ID_INDEX_SAVE.toolboxitem.text
+msgid "Save Current Index"
+msgstr "Guardar índice actual"
+
+#: indexdialog.src#DLG_INDEXDESIGN.TLB_ACTIONS.ID_INDEX_RESET.toolboxitem.text
+msgid "Reset Current Index"
+msgstr "Restablecer índice actual"
+
+#: indexdialog.src#DLG_INDEXDESIGN.FL_INDEXDETAILS.fixedline.text
+msgid "Index details"
+msgstr "Detalles del índice"
+
+#: indexdialog.src#DLG_INDEXDESIGN.FT_DESC_LABEL.fixedtext.text
+msgid "Index identifier:"
+msgstr "Identificador de índice:"
+
+#: indexdialog.src#DLG_INDEXDESIGN.CB_UNIQUE.checkbox.text
+msgid "~Unique"
+msgstr "Ú~nico"
+
+#: indexdialog.src#DLG_INDEXDESIGN.FT_FIELDS.fixedtext.text
+msgid "Fields"
+msgstr "Campos"
+
+#: indexdialog.src#DLG_INDEXDESIGN.PB_CLOSE.pushbutton.text
+msgctxt "indexdialog.src#DLG_INDEXDESIGN.PB_CLOSE.pushbutton.text"
+msgid "~Close"
+msgstr "~Cerrar"
+
+#: indexdialog.src#DLG_INDEXDESIGN.modaldialog.text
+msgctxt "indexdialog.src#DLG_INDEXDESIGN.modaldialog.text"
+msgid "Indexes"
+msgstr "Índices"
+
+#: indexdialog.src#STR_TAB_INDEX_SORTORDER.string.text
+msgctxt "indexdialog.src#STR_TAB_INDEX_SORTORDER.string.text"
+msgid "Sort order"
+msgstr "Orden de clasificación"
+
+#: indexdialog.src#STR_TAB_INDEX_FIELD.string.text
+msgid "Index field"
+msgstr "Campo del índice"
+
+#: indexdialog.src#STR_ORDER_ASCENDING.string.text
+msgid "Ascending"
+msgstr "Ascendente"
+
+#: indexdialog.src#STR_ORDER_DESCENDING.string.text
+msgid "Descending"
+msgstr "Descendente"
+
+#: indexdialog.src#STR_CONFIRM_DROP_INDEX.string.text
+msgid "Do you really want to delete the index '$name$'?"
+msgstr "¿Desea eliminar realmente el índice '$name$'?"
+
+#: indexdialog.src#STR_LOGICAL_INDEX_NAME.string.text
+msgid "index"
+msgstr "índice"
+
+#: indexdialog.src#ERR_NEED_INDEX_FIELDS.errorbox.text
+msgid "The index must contain at least one field."
+msgstr "El índice debe contener por lo menos un campo."
+
+#: indexdialog.src#ERR_NEED_INDEX_FIELDS.errorbox.title
+msgid "Save Index"
+msgstr "Guardar índice"
+
+#: indexdialog.src#QUERY_SAVE_CURRENT_INDEX.querybox.text
+msgid "Do you want to save the changes made to the current index?"
+msgstr "¿Desea guardar las modificaciones realizadas en el índice?"
+
+#: indexdialog.src#QUERY_SAVE_CURRENT_INDEX.querybox.title
+msgid "Exit Index Design"
+msgstr "Cerrar diseño de índice"
+
+#: indexdialog.src#STR_INDEX_NAME_ALREADY_USED.string.text
+msgid "There is already another index named \"$name$\"."
+msgstr "Ya existe otro índice con el nombre \"$name$\"."
+
+#: indexdialog.src#STR_INDEXDESIGN_DOUBLE_COLUMN_NAME.string.text
+msgid "In an index definition, no table column may occur more than once. However, you have entered column \"$name$\" twice."
+msgstr "En una definición de Índice, cada columna de tabla puede aparecer como máximo una vez; usted ha usado la columna \"$name$\" dos veces."
+
+#: dlgattr.src#DLG_ATTR.1.pushbutton.text
+msgid "Bac~k"
+msgstr "A~trás"
+
+#: dlgattr.src#DLG_ATTR.TP_ATTR_CHAR.string.text
+msgid "Font"
+msgstr "Fuente"
+
+#: dlgattr.src#DLG_ATTR.TP_ATTR_NUMBER.string.text
+msgid "Format"
+msgstr "Formato"
+
+#: dlgattr.src#DLG_ATTR.TP_ATTR_ALIGN.string.text
+msgid "Alignment"
+msgstr "Alineación"
+
+#: dlgattr.src#DLG_ATTR.ST_ROW.string.text
+msgid "Table Format"
+msgstr "Formato de tabla"
+
+#: dlgattr.src#DLG_ATTR.tabdialog.text
+msgid "Field Format"
+msgstr "Formato de campo"
+
+#: adtabdlg.src#DLG_JOIN_TABADD.RB_CASE_TABLES.radiobutton.text
+msgid "Tables"
+msgstr "Tablas"
+
+#: adtabdlg.src#DLG_JOIN_TABADD.RB_CASE_QUERIES.radiobutton.text
+msgid "Queries"
+msgstr "Consultas"
+
+#: adtabdlg.src#DLG_JOIN_TABADD.PB_ADDTABLE.pushbutton.text
+msgid "~Add"
+msgstr "~Añadir"
+
+#: adtabdlg.src#DLG_JOIN_TABADD.PB_CLOSE.cancelbutton.text
+msgctxt "adtabdlg.src#DLG_JOIN_TABADD.PB_CLOSE.cancelbutton.text"
+msgid "~Close"
+msgstr "~Cerrar"
+
+#: adtabdlg.src#DLG_JOIN_TABADD.STR_ADD_TABLES.string.text
+msgid "Add Tables"
+msgstr "Añadir tablas"
+
+#: adtabdlg.src#DLG_JOIN_TABADD.STR_ADD_TABLE_OR_QUERY.string.text
+msgid "Add Table or Query"
+msgstr "Añadir tabla o consulta"
+
+#: paramdialog.src#DLG_PARAMETERS.FL_PARAMS.fixedline.text
+msgid "~Parameters"
+msgstr "~Parámetros"
+
+#: paramdialog.src#DLG_PARAMETERS.FT_VALUE.fixedtext.text
+msgid "~Value"
+msgstr "~Valor"
+
+#: paramdialog.src#DLG_PARAMETERS.BT_TRAVELNEXT.pushbutton.text
+msgid "~Next"
+msgstr "~Siguiente"
+
+#: paramdialog.src#DLG_PARAMETERS.STR_COULD_NOT_CONVERT_PARAM.string.text
+msgid "The entry could not be converted to a valid value for the \"$name$\"column"
+msgstr "La entrada no se pudo convertir en un valor válido para la columna \"$name$\"."
+
+#: paramdialog.src#DLG_PARAMETERS.modaldialog.text
+msgid "Parameter Input"
+msgstr "Entrada de parámetro"
+
+#: dlgsave.src#DLG_SAVE_AS.FT_DESCRIPTION.fixedtext.text
+msgid "Please enter a name for the object to be created:"
+msgstr "Indique un nombre para el objeto a crear:"
+
+#: dlgsave.src#DLG_SAVE_AS.FT_CATALOG.fixedtext.text
+msgid "~Catalog"
+msgstr "~Catálogo"
+
+#: dlgsave.src#DLG_SAVE_AS.FT_SCHEMA.fixedtext.text
+msgid "~Schema"
+msgstr "~Esquema"
+
+#: dlgsave.src#DLG_SAVE_AS.STR_TBL_LABEL.string.text
+msgid "~Table Name"
+msgstr "~Nombre de la tabla"
+
+#: dlgsave.src#DLG_SAVE_AS.STR_VW_LABEL.string.text
+msgid "~Name of table view"
+msgstr "Nombre del ~modo tabla"
+
+#: dlgsave.src#DLG_SAVE_AS.STR_QRY_LABEL.string.text
+msgid "~Query name"
+msgstr "Nombre de la ~consulta"
+
+#: dlgsave.src#DLG_SAVE_AS.STR_TITLE_RENAME.string.text
+msgid "Rename to"
+msgstr "Renombrar a"
+
+#: dlgsave.src#DLG_SAVE_AS.STR_TITLE_PASTE_AS.string.text
+msgid "Insert as"
+msgstr "Pegar como"
+
+#: dlgsave.src#DLG_SAVE_AS.modaldialog.text
+msgid "Save As"
+msgstr "Guardar como"
+
+#: sqlmessage.src#DLG_SQLEXCEPTIONCHAIN.FL_DETAILS.fixedline.text
+msgctxt "sqlmessage.src#DLG_SQLEXCEPTIONCHAIN.FL_DETAILS.fixedline.text"
+msgid "Details"
+msgstr "Detalles"
+
+#: sqlmessage.src#DLG_SQLEXCEPTIONCHAIN.FT_ERRORLIST.fixedtext.text
+msgid "Error ~list:"
+msgstr "Lista de ~errores:"
+
+#: sqlmessage.src#DLG_SQLEXCEPTIONCHAIN.FT_DESCRIPTION.fixedtext.text
+msgid "~Description:"
+msgstr "~Descripción:"
+
+#: sqlmessage.src#DLG_SQLEXCEPTIONCHAIN.STR_EXCEPTION_STATUS.string.text
+msgid "SQL Status"
+msgstr "Estado SQL"
+
+#: sqlmessage.src#DLG_SQLEXCEPTIONCHAIN.STR_EXCEPTION_ERRORCODE.string.text
+msgid "Error code"
+msgstr "Código de error"
+
+#: sqlmessage.src#DLG_SQLEXCEPTIONCHAIN.modaldialog.text
+msgid "%PRODUCTNAME Base"
+msgstr "%PRODUCTNAME Base"
+
+#: sqlmessage.src#STR_EXPLAN_STRINGCONVERSION_ERROR.string.text
+msgid "A frequent reason for this error is an inappropriate character set setting for the language of your database. Check the setting by choosing Edit - Database - Properties."
+msgstr "Un motivo frecuente de este error es una configuración inadecuada de tipos de letra para el idioma de la base de datos. Compruebe la configuración. Para ello, elija Editar - Base de datos - Propiedades."
+
+#: sqlmessage.src#STR_EXCEPTION_ERROR.string.text
+msgid "Error"
+msgstr "Error"
+
+#: sqlmessage.src#STR_EXCEPTION_WARNING.string.text
+msgid "Warning"
+msgstr "Advertencia"
+
+#: sqlmessage.src#STR_EXCEPTION_INFO.string.text
+msgid "Information"
+msgstr "Información"
+
+#: sqlmessage.src#STR_EXCEPTION_DETAILS.string.text
+msgctxt "sqlmessage.src#STR_EXCEPTION_DETAILS.string.text"
+msgid "Details"
+msgstr "Detalles"
+
+#: CollectionView.src#DLG_COLLECTION_VIEW.BTN_EXPLORERFILE_NEWFOLDER.imagebutton.text
+msgctxt "CollectionView.src#DLG_COLLECTION_VIEW.BTN_EXPLORERFILE_NEWFOLDER.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: CollectionView.src#DLG_COLLECTION_VIEW.BTN_EXPLORERFILE_NEWFOLDER.imagebutton.quickhelptext
+msgid "Create New Directory"
+msgstr "Crear nuevo directorio"
+
+#: CollectionView.src#DLG_COLLECTION_VIEW.BTN_EXPLORERFILE_UP.imagebutton.text
+msgctxt "CollectionView.src#DLG_COLLECTION_VIEW.BTN_EXPLORERFILE_UP.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: CollectionView.src#DLG_COLLECTION_VIEW.BTN_EXPLORERFILE_UP.imagebutton.quickhelptext
+msgid "Up One Level"
+msgstr "Subir un nivel"
+
+#: CollectionView.src#DLG_COLLECTION_VIEW.FT_EXPLORERFILE_FILENAME.fixedtext.text
+msgid "File ~name:"
+msgstr "~Nombre del archivo:"
+
+#: CollectionView.src#DLG_COLLECTION_VIEW.BTN_EXPLORERFILE_SAVE.pushbutton.text
+msgctxt "CollectionView.src#DLG_COLLECTION_VIEW.BTN_EXPLORERFILE_SAVE.pushbutton.text"
+msgid "Save"
+msgstr "Guardar"
+
+#: CollectionView.src#DLG_COLLECTION_VIEW.STR_PATHNAME.string.text
+msgid "~Path:"
+msgstr "~Ruta:"
+
+#: CollectionView.src#DLG_COLLECTION_VIEW.modaldialog.text
+msgctxt "CollectionView.src#DLG_COLLECTION_VIEW.modaldialog.text"
+msgid "Save"
+msgstr "Guardar"
+
+#: CollectionView.src#STR_NEW_FOLDER.string.text
+msgid "Folder"
+msgstr "Carpeta"
+
+#: CollectionView.src#STR_ALREADYEXISTOVERWRITE.string.text
+msgid "The file already exists. Overwrite?"
+msgstr "El archivo ya existe. ¿Sobreescribirlo?"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_DBWIZARDTITLE.string.text
+msgctxt "dbadminsetup.src#DLG_DATABASE_WIZARD.STR_DBWIZARDTITLE.string.text"
+msgid "Database Wizard"
+msgstr "Asistente para bases de datos"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_INTROPAGE.string.text
+msgid "Select database"
+msgstr "Seleccionar base de datos"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_DBASE.string.text
+msgid "Set up dBASE connection"
+msgstr "Configurar conexión de dBASE"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_TEXT.string.text
+msgctxt "dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_TEXT.string.text"
+msgid "Set up a connection to text files"
+msgstr "Configure una conexión con archivos de texto"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_MSACCESS.string.text
+msgid "Set up Microsoft Access connection"
+msgstr "Configurar conexión de Microsoft Access"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_LDAP.string.text
+msgid "Set up LDAP connection"
+msgstr "Configurar conexión de LDAP"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_ADO.string.text
+msgid "Set up ADO connection"
+msgstr "Configurar conexión de ADO"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_JDBC.string.text
+msgid "Set up JDBC connection"
+msgstr "Configurar conexión de JDBC"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_ORACLE.string.text
+msgid "Set up Oracle database connection"
+msgstr "Configurar conexión de base de datos de Oracle"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_MYSQL.string.text
+msgid "Set up MySQL connection"
+msgstr "Configurar conexión de MySQL"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_ODBC.string.text
+msgid "Set up ODBC connection"
+msgstr "Configurar conexión de ODBC"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_SPREADSHEET.string.text
+msgid "Set up Spreadsheet connection"
+msgstr "Configurar conexión de Spreadsheet"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_AUTHENTIFICATION.string.text
+msgid "Set up user authentication"
+msgstr "Configurar autenticación del usuario"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_MYSQL_NATIVE.string.text
+msgid "Set up MySQL server data"
+msgstr "Configurar el servidor de datos de MySQL"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_FINAL.string.text
+msgid "Save and proceed"
+msgstr "Guardar y continuar"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.modaldialog.text
+msgctxt "dbadminsetup.src#DLG_DATABASE_WIZARD.modaldialog.text"
+msgid "Database Wizard"
+msgstr "Asistente para bases de datos"
+
+#: dbadminsetup.src#STR_DATABASEDEFAULTNAME.string.text
+msgid "New Database"
+msgstr "Nueva base de datos"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_INTRO.FT_MYSQL_HEADERTEXT.fixedtext.text
+msgid "Set up a connection to a MySQL database"
+msgstr "Configure una conexión con una base de datos MySQL"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_INTRO.FT_MYSQL_HELPTEXT.fixedtext.text
+msgid ""
+"You can connect to a MySQL database using either ODBC or JDBC.\n"
+"Please contact your system administrator if you are unsure about the following settings."
+msgstr ""
+"Puede realizar la conexión con una base de datos MySQL utilizando ODBC o JDBC.\n"
+"Póngase en contacto con el administrador del sistema si no está seguro de la configuración."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_INTRO.FT_MYSQLCONNECTIONMODE.fixedtext.text
+msgid "How do you want to connect to your MySQL database?"
+msgstr "¿Cómo desea conectarse a la base de datos MySQL?"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_INTRO.RB_CONNECTVIAODBC.radiobutton.text
+msgid "Connect using ODBC (Open Database Connectivity)"
+msgstr "Conectar utilizando ODBC (Open Database Connectivity)"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_INTRO.RB_CONNECTVIAJDBC.radiobutton.text
+msgid "Connect using JDBC (Java Database Connectivity)"
+msgstr "Conectar utilizando JDBC (Java Database Connectivity)"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_INTRO.RB_CONNECTVIANATIVE.radiobutton.text
+msgid "Connect directly"
+msgstr "Conectar directamente"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_AUTHENTIFICATION.FT_AUTHENTIFICATIONHEADERTEXT.fixedtext.text
+msgid "Set up the user authentication"
+msgstr "Configure la autenticación del usuario"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_AUTHENTIFICATION.FT_AUTHENTIFICATIONHELPTEXT.fixedtext.text
+msgid "Some databases require you to enter a user name."
+msgstr "Algunas bases de datos requieren que especifique un nombre de usuario."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_AUTHENTIFICATION.FT_GENERALUSERNAME.fixedtext.text
+msgctxt "dbadminsetup.src#PAGE_DBWIZARD_AUTHENTIFICATION.FT_GENERALUSERNAME.fixedtext.text"
+msgid "~User name"
+msgstr "~Nombre de usuario"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_AUTHENTIFICATION.CB_GENERALPASSWORDREQUIRED.checkbox.text
+msgid "Password re~quired"
+msgstr "Se re~quiere una contraseña"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_AUTHENTIFICATION.PB_TESTCONNECTION.pushbutton.text
+msgid "~Test Connection"
+msgstr "Conexión ~de prueba"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.FT_FINALHEADER.fixedtext.text
+msgid "Decide how to proceed after saving the database"
+msgstr "Decida cómo proceder después de guardar la base de datos"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.FT_FINALHELPTEXT.fixedtext.text
+msgid "Do you want the wizard to register the database in %PRODUCTNAME?"
+msgstr "¿Quiere que el asistente registre la base de datos en %PRODUCTNAME?"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.RB_REGISTERDATASOURCE.radiobutton.text
+msgid "~Yes, register the database for me"
+msgstr "~Sí, registrar la base de datos"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.RB_DONTREGISTERDATASOURCE.radiobutton.text
+msgid "N~o, do not register the database"
+msgstr "N~o, no registrar la base de datos"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.FT_ADDITIONALSETTINGS.fixedtext.text
+msgid "After the database file has been saved, what do you want to do?"
+msgstr "Después de guardar el archivo de base de datos, ¿qué quiere hacer?"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.CB_OPENAFTERWARDS.checkbox.text
+msgid "Open the database for editing"
+msgstr "Abrir la base de datos para editar"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.CB_STARTTABLEWIZARD.checkbox.text
+msgid "Create tables using the table wizard"
+msgstr "Crear tablas usando el Asistente para tablas"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.FT_FINALTEXT.fixedtext.text
+msgid "Click 'Finish' to save the database."
+msgstr "Pulse en «Finalizar» para guardar la base de datos."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_JDBC.STR_MYSQLJDBC_HEADERTEXT.string.text
+msgid "Set up connection to a MySQL database using JDBC"
+msgstr "Configurar conexión con una base de datos MySQL utilizando JDBC"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_JDBC.STR_MYSQLJDBC_HELPTEXT.string.text
+msgid ""
+"Please enter the required information to connect to a MySQL database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME.\n"
+"Please contact your system administrator if you are unsure about the following settings."
+msgstr ""
+"Escriba la información necesaria para realizar la conexión con una base de datos MySQL utilizando JDBC. Tenga en cuenta que el sistema debe tener una clase de controlador JDBC instalada y registrada con %PRODUCTNAME.\n"
+"Póngase en contacto con el administrador del sistema si no está seguro de la configuración."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_JDBC.STR_MYSQL_DRIVERCLASSTEXT.string.text
+msgid "MySQL JDBC d~river class:"
+msgstr "Cla~se de controlador MySQL JDBC:"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_JDBC.STR_MYSQL_DEFAULT.string.text
+msgctxt "dbadminsetup.src#PAGE_DBWIZARD_MYSQL_JDBC.STR_MYSQL_DEFAULT.string.text"
+msgid "Default: 3306"
+msgstr "Predeterminado: 3306"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_NATIVE.FT_SETUP_WIZARD_HEADER.fixedtext.text
+msgid "Set up connection to a MySQL database"
+msgstr "Configurar la conexión a una base de datos de MySQL"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_NATIVE.FT_SETUP_WIZARD_HELP.fixedtext.text
+msgid "Please enter the required information to connect to a MySQL database."
+msgstr "Por favor introduzca la información requerida para conectar a una base de datos MySQL."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_DBASE.STR_DBASE_HEADERTEXT.string.text
+msgid "Set up a connection to dBASE files"
+msgstr "Configure una conexión con archivos dBASE"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_DBASE.STR_DBASE_HELPTEXT.string.text
+msgid "Select the folder where the dBASE files are stored."
+msgstr "Seleccione la carpeta donde guardar los archivos dBASE."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_TEXT.STR_TEXT_HEADERTEXT.string.text
+msgctxt "dbadminsetup.src#PAGE_DBWIZARD_TEXT.STR_TEXT_HEADERTEXT.string.text"
+msgid "Set up a connection to text files"
+msgstr "Configure una conexión con archivos de texto"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_TEXT.STR_TEXT_HELPTEXT.string.text
+msgid "Select the folder where the CSV (Comma Separated Values) text files are stored. %PRODUCTNAME Base will open these files in read-only mode."
+msgstr "Seleccione la carpeta donde guardar los archivos de texto CSV (Comma Separated Values o valores separados por comas). %PRODUCTNAME Base abrirá estos archivos en modo de sólo lectura."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_TEXT.STR_TEXT_PATH_OR_FILE.string.text
+msgid "Path to text files"
+msgstr "Ruta de los archivos de texto"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MSACCESS.STR_MSACCESS_HEADERTEXT.string.text
+msgid "Set up a connection to a Microsoft Access database"
+msgstr "Configure una conexión con una base de datos de Microsoft Access"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MSACCESS.STR_MSACCESS_HELPTEXT.string.text
+msgid "Please select the Microsoft Access file you want to access."
+msgstr "Seleccione el archivo de Microsoft Access al que desee acceder."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_LDAP.FT_LDAP_HEADERTEXT.fixedtext.text
+msgid "Set up a connection to an LDAP directory"
+msgstr "Configure una conexión con un directorio LDAP"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_LDAP.FT_LDAP_HELPTEXT.fixedtext.text
+msgid ""
+"Please enter the required information to connect to an LDAP directory.\n"
+"Please contact your system administrator if you are unsure about the following settings."
+msgstr ""
+"Escriba la información necesaria para realizar la conexión con un directorio LDAP.\n"
+"Póngase en contacto con el administrador del sistema si no está seguro de la configuración."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_LDAP.STR_LDAP_DEFAULT.string.text
+msgid "Default: 389"
+msgstr "Predeterminado: 389"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_LDAP.CB_WIZ_USESSL.checkbox.text
+msgid "Use ~secure connection (SSL)"
+msgstr "Usar ~conexión segura (SSL)"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_ADO.STR_ADO_HEADERTEXT.string.text
+msgid "Set up a connection to an ADO database"
+msgstr "Configure una conexión con una base de datos ADO"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_ADO.STR_ADO_HELPTEXT.string.text
+msgid ""
+"Please enter the URL of the ADO data source you want to connect to.\n"
+"Click 'Browse' to configure provider-specific settings.\n"
+"Please contact your system administrator if you are unsure about the following settings."
+msgstr ""
+"Escriba el URL del origen de datos ADO con el que desee conectarse.\n"
+"Haga clic en 'Examinar' para configurar los parámetros del proveedor.\n"
+"Consulte al administrador del sistema si tiene dudas respecto a los parámetros siguientes."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_ODBC.STR_ODBC_HEADERTEXT.string.text
+msgid "Set up a connection to an ODBC database"
+msgstr "Configure una conexión con una base de datos ODBC"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_ODBC.STR_ODBC_HELPTEXT.string.text
+msgid ""
+"Enter the name of the ODBC database you want to connect to.\n"
+"Click 'Browse...' to select an ODBC database that is already registered in %PRODUCTNAME.\n"
+"Please contact your system administrator if you are unsure about the following settings."
+msgstr ""
+"Escriba el nombre de la base de datos ODBC con la que desea realizar la conexión.\n"
+"Haga clic en 'Examinar...' para seleccionar una base de datos ODBC ya registrada en %PRODUCTNAME.\n"
+"Póngase en contacto con el administrador del sistema si no está seguro de la configuración."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_JDBC.STR_JDBC_HEADERTEXT.string.text
+msgid "Set up a connection to a JDBC database"
+msgstr "Configure una conexión con una base de datos JDBC"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_JDBC.STR_JDBC_HELPTEXT.string.text
+msgid ""
+"Please enter the required information to connect to a JDBC database.\n"
+"Please contact your system administrator if you are unsure about the following settings."
+msgstr ""
+"Escriba la información necesaria para realizar la conexión con una base de datos JDBC.\n"
+"Póngase en contacto con el administrador del sistema si no está seguro de la configuración."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_ORACLE.STR_ORACLE_HEADERTEXT.string.text
+msgid "Set up a connection to an Oracle database"
+msgstr "Configure una conexión con una base de datos Oracle"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_ORACLE.STR_ORACLE_DEFAULT.string.text
+msgid "Default: 1521"
+msgstr "Predeterminado: 1521"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_ORACLE.STR_ORACLE_DRIVERCLASSTEXT.string.text
+msgid "Oracle JDBC ~driver class"
+msgstr "~Clase de controlador Oracle JDBC"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_ORACLE.STR_ORACLE_HELPTEXT.string.text
+msgid ""
+"Please enter the required information to connect to an Oracle database.Note that a JDBC Driver Class must be installed on your system and registered with %PRODUCTNAME.\n"
+"Please contact your system administrator if you are unsure about the following settings."
+msgstr ""
+"Proporcione los datos pertinentes para conectarse con una base de datos Oracle. Tenga en cuenta que en el sistema se debe instalar una clase de controlador JDBC y registrarse con %PRODUCTNAME.\n"
+"Consulte al administrador del sistema si tiene dudas respecto a los parámetros siguientes."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_SPREADSHEET.STR_SPREADSHEET_HEADERTEXT.string.text
+msgid "Set up a connection to spreadsheets"
+msgstr "Configure una conexión con hojas de cálculo"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_SPREADSHEET.STR_SPREADSHEET_HELPTEXT.string.text
+msgid ""
+"Click 'Browse...' to select a %PRODUCTNAME spreadsheet or Microsoft Excel workbook.\n"
+"%PRODUCTNAME will open this file in read-only mode."
+msgstr ""
+"Haga clic en 'Examinar...' para seleccionar una hoja de cálculo de %PRODUCTNAME o un libro de Microsoft Excel.\n"
+"%PRODUCTNAME abrirá este archivo en modo de sólo lectura."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_SPREADSHEET.STR_SPREADSHEETPATH.string.text
+msgid "~Location and file name"
+msgstr "~Ubicación y nombre del archivo"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_SPREADSHEET.CB_SPREADSHEETPASSWORDREQUIRED.checkbox.text
+msgid "~Password required"
+msgstr "Se requiere ~una contraseña"
+
+#: directsql.src#DLG_DIRECTSQL.FL_SQL.fixedline.text
+msgid "SQL command"
+msgstr "Comando SQL"
+
+#: directsql.src#DLG_DIRECTSQL.FT_SQL.fixedtext.text
+msgid "Command to execute"
+msgstr "Comando a ejecutar"
+
+#: directsql.src#DLG_DIRECTSQL.PB_EXECUTE.pushbutton.text
+msgid "Execute"
+msgstr "Ejecutar"
+
+#: directsql.src#DLG_DIRECTSQL.FT_HISTORY.fixedtext.text
+msgid "Previous commands"
+msgstr "Comandos anteriores"
+
+#: directsql.src#DLG_DIRECTSQL.FL_STATUS.fixedline.text
+msgid "Status"
+msgstr "Estado"
+
+#: directsql.src#DLG_DIRECTSQL.PB_CLOSE.pushbutton.text
+msgid "Close"
+msgstr "Cerrar"
+
+#: directsql.src#DLG_DIRECTSQL.modaldialog.text
+msgid "Execute SQL Statement"
+msgstr "Ejecutar comando SQL"
+
+#: directsql.src#STR_COMMAND_EXECUTED_SUCCESSFULLY.string.text
+msgid "Command successfully executed."
+msgstr "Comando ejecutado satisfactoriamente."
+
+#: directsql.src#STR_DIRECTSQL_CONNECTIONLOST.string.text
+msgid "The connection to the database has been lost. This dialog will be closed."
+msgstr "Se perdió la conexión a la base de datos. Este diálogo se cerrará."
+
+#: queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE1.1.stringlist.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE1.1.stringlist.text"
+msgid "ascending"
+msgstr "ascendente"
+
+#: queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE1.2.stringlist.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE1.2.stringlist.text"
+msgid "descending"
+msgstr "descendente"
+
+#: queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE2.1.stringlist.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE2.1.stringlist.text"
+msgid "ascending"
+msgstr "ascendente"
+
+#: queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE2.2.stringlist.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE2.2.stringlist.text"
+msgid "descending"
+msgstr "descendente"
+
+#: queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE3.1.stringlist.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE3.1.stringlist.text"
+msgid "ascending"
+msgstr "ascendente"
+
+#: queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE3.2.stringlist.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE3.2.stringlist.text"
+msgid "descending"
+msgstr "descendente"
+
+#: queryorder.src#DLG_ORDERCRIT.FT_ORDERFIELD.fixedtext.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.FT_ORDERFIELD.fixedtext.text"
+msgid "Field name"
+msgstr "Nombre del campo"
+
+#: queryorder.src#DLG_ORDERCRIT.FT_ORDERAFTER1.fixedtext.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.FT_ORDERAFTER1.fixedtext.text"
+msgid "and then"
+msgstr "después"
+
+#: queryorder.src#DLG_ORDERCRIT.FT_ORDERAFTER2.fixedtext.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.FT_ORDERAFTER2.fixedtext.text"
+msgid "and then"
+msgstr "después"
+
+#: queryorder.src#DLG_ORDERCRIT.FT_ORDEROPER.fixedtext.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.FT_ORDEROPER.fixedtext.text"
+msgid "Operator"
+msgstr "Vínculo"
+
+#: queryorder.src#DLG_ORDERCRIT.FT_ORDERDIR.fixedtext.text
+msgid "Order"
+msgstr "Orden"
+
+#: queryorder.src#DLG_ORDERCRIT.FL_ORDER.fixedline.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.FL_ORDER.fixedline.text"
+msgid "Sort order"
+msgstr "Orden"
+
+#: queryorder.src#DLG_ORDERCRIT.STR_NOENTRY.string.text
+msgid "<none>"
+msgstr "<ninguno>"
+
+#: queryorder.src#DLG_ORDERCRIT.modaldialog.text
+msgid "Sort Order"
+msgstr "Orden"
+
+#: ConnectionPage.src#PAGE_CONNECTION.FL_SEPARATOR1.fixedline.text
+msgctxt "ConnectionPage.src#PAGE_CONNECTION.FL_SEPARATOR1.fixedline.text"
+msgid "General"
+msgstr "General"
+
+#: ConnectionPage.src#PAGE_CONNECTION.FT_HOSTNAME.fixedtext.text
+msgctxt "ConnectionPage.src#PAGE_CONNECTION.FT_HOSTNAME.fixedtext.text"
+msgid "~Host name"
+msgstr "Nombre del ~servidor"
+
+#: ConnectionPage.src#PAGE_CONNECTION.FL_SEPARATOR2.fixedline.text
+msgctxt "ConnectionPage.src#PAGE_CONNECTION.FL_SEPARATOR2.fixedline.text"
+msgid "User authentication"
+msgstr "Autenticación del usuario"
+
+#: ConnectionPage.src#PAGE_CONNECTION.FT_USERNAME.fixedtext.text
+msgctxt "ConnectionPage.src#PAGE_CONNECTION.FT_USERNAME.fixedtext.text"
+msgid "~User name"
+msgstr "Nombre de ~usuario"
+
+#: ConnectionPage.src#PAGE_CONNECTION.CB_PASSWORD_REQUIRED.checkbox.text
+msgctxt "ConnectionPage.src#PAGE_CONNECTION.CB_PASSWORD_REQUIRED.checkbox.text"
+msgid "Password required"
+msgstr "Se requiere una contraseña"
+
+#: ConnectionPage.src#PAGE_CONNECTION.FL_SEPARATOR3.fixedline.text
+msgid "JDBC properties"
+msgstr "Propiedades de JDBC"
+
+#: ConnectionPage.src#PAGE_CONNECTION.FT_JDBCDRIVERCLASS.fixedtext.text
+msgid "~JDBC driver class"
+msgstr "Clase de controlador ~JDBC"
+
+#: ConnectionPage.src#PAGE_CONNECTION.PB_TESTDRIVERCLASS.pushbutton.text
+msgid "Test Class"
+msgstr "Clase de prueba"
+
+#: ConnectionPage.src#PAGE_CONNECTION.PB_TESTCONNECTION.pushbutton.text
+msgid "Test Connection"
+msgstr "Conexión de prueba"
+
+#: ConnectionPage.src#STR_CONNECTION_TEST.string.text
+msgid "Connection Test"
+msgstr "Prueba de conexión"
+
+#: ConnectionPage.src#STR_CONNECTION_SUCCESS.string.text
+msgid "The connection was established successfully."
+msgstr "La conexión se ha establecido correctamente."
+
+#: ConnectionPage.src#STR_CONNECTION_NO_SUCCESS.string.text
+msgid "The connection could not be established."
+msgstr "No se ha podido establecer la conexión."
+
+#: ConnectionPage.src#STR_JDBCDRIVER_SUCCESS.string.text
+msgid "The JDBC driver was loaded successfully."
+msgstr "El controlador JDBC se cargó correctamente."
+
+#: ConnectionPage.src#STR_JDBCDRIVER_NO_SUCCESS.string.text
+msgid "The JDBC driver could not be loaded."
+msgstr "No se ha podido cargar el controlador JDBC."
+
+#: ConnectionPage.src#STR_MSACCESS_FILTERNAME.string.text
+msgid "MS Access file"
+msgstr "Archivo de MS Access"
+
+#: ConnectionPage.src#STR_MSACCESS_2007_FILTERNAME.string.text
+msgid "MS Access 2007 file"
+msgstr "Archivo de MS Access 2007"
+
+#: UserAdminDlg.src#DLG_DATABASE_USERADMIN.STR_PAGETITLE_USERADMIN.string.text
+msgid "User Settings"
+msgstr "Configuración de usuario"
+
+#: UserAdminDlg.src#DLG_DATABASE_USERADMIN.tabdialog.text
+msgid "User administration"
+msgstr "Administración de usuarios"
+
+#: queryfilter.src#DLG_FILTERCRIT.LB_WHERECOND2.1.stringlist.text
+msgctxt "queryfilter.src#DLG_FILTERCRIT.LB_WHERECOND2.1.stringlist.text"
+msgid "AND"
+msgstr "Y"
+
+#: queryfilter.src#DLG_FILTERCRIT.LB_WHERECOND2.2.stringlist.text
+msgctxt "queryfilter.src#DLG_FILTERCRIT.LB_WHERECOND2.2.stringlist.text"
+msgid "OR"
+msgstr "O"
+
+#: queryfilter.src#DLG_FILTERCRIT.LB_WHERECOND3.1.stringlist.text
+msgctxt "queryfilter.src#DLG_FILTERCRIT.LB_WHERECOND3.1.stringlist.text"
+msgid "AND"
+msgstr "Y"
+
+#: queryfilter.src#DLG_FILTERCRIT.LB_WHERECOND3.2.stringlist.text
+msgctxt "queryfilter.src#DLG_FILTERCRIT.LB_WHERECOND3.2.stringlist.text"
+msgid "OR"
+msgstr "O"
+
+#: queryfilter.src#DLG_FILTERCRIT.FT_WHEREFIELD.fixedtext.text
+msgctxt "queryfilter.src#DLG_FILTERCRIT.FT_WHEREFIELD.fixedtext.text"
+msgid "Field name"
+msgstr "Nombre del campo"
+
+#: queryfilter.src#DLG_FILTERCRIT.FT_WHERECOMP.fixedtext.text
+msgid "Condition"
+msgstr "Condición"
+
+#: queryfilter.src#DLG_FILTERCRIT.FT_WHEREVALUE.fixedtext.text
+msgid "Value"
+msgstr "Valor"
+
+#: queryfilter.src#DLG_FILTERCRIT.FT_WHEREOPER.fixedtext.text
+msgctxt "queryfilter.src#DLG_FILTERCRIT.FT_WHEREOPER.fixedtext.text"
+msgid "Operator"
+msgstr "Vínculo"
+
+#: queryfilter.src#DLG_FILTERCRIT.FL_FIELDS.fixedline.text
+msgid "Criteria"
+msgstr "Criterios"
+
+#: queryfilter.src#DLG_FILTERCRIT.STR_NOENTRY.string.text
+msgid "- none -"
+msgstr "- ninguno -"
+
+#: queryfilter.src#DLG_FILTERCRIT.STR_COMPARE_OPERATORS.string.text
+msgid "=;<>;<;<=;>;>=;like;not like;null;not null"
+msgstr "=;<>;<;<=;>;>=;como;no como;vacío;no vacío"
+
+#: queryfilter.src#DLG_FILTERCRIT.modaldialog.text
+msgid "Standard Filter"
+msgstr "Filtro estándar"
+
+#: dlgsize.src#DLG_ROWHEIGHT.FT_VALUE.fixedtext.text
+msgid "~Height"
+msgstr "~Altura"
+
+#: dlgsize.src#DLG_ROWHEIGHT.CB_STANDARD.checkbox.text
+msgctxt "dlgsize.src#DLG_ROWHEIGHT.CB_STANDARD.checkbox.text"
+msgid "~Automatic"
+msgstr "~Automático"
+
+#: dlgsize.src#DLG_ROWHEIGHT.modaldialog.text
+msgid "Row Height"
+msgstr "Altura de fila"
+
+#: dlgsize.src#DLG_COLWIDTH.FT_VALUE.fixedtext.text
+msgid "~Width"
+msgstr "~Anchura"
+
+#: dlgsize.src#DLG_COLWIDTH.CB_STANDARD.checkbox.text
+msgctxt "dlgsize.src#DLG_COLWIDTH.CB_STANDARD.checkbox.text"
+msgid "~Automatic"
+msgstr "~Automático"
+
+#: dlgsize.src#DLG_COLWIDTH.modaldialog.text
+msgid "Column Width"
+msgstr "Ancho de columna"
+
+#: dbfindex.src#DLG_DBASE_INDEXES.FT_TABLES.fixedtext.text
+msgid "~Table"
+msgstr "~Tabla"
+
+#: dbfindex.src#DLG_DBASE_INDEXES.FL_INDEXES.fixedline.text
+msgid "Assignment"
+msgstr "Asignación"
+
+#: dbfindex.src#DLG_DBASE_INDEXES.FT_TABLEINDEXES.fixedtext.text
+msgid "T~able indexes"
+msgstr "Índices de ta~bla"
+
+#: dbfindex.src#DLG_DBASE_INDEXES.FT_ALLINDEXES.fixedtext.text
+msgid "~Free indexes"
+msgstr "Índices lib~res"
+
+#: dbfindex.src#DLG_DBASE_INDEXES.modaldialog.text
+msgctxt "dbfindex.src#DLG_DBASE_INDEXES.modaldialog.text"
+msgid "Indexes"
+msgstr "Índices"
+
+#: advancedsettings.src#AUTO_DATAHANDLING_AUTO_Y_.FL_DATAHANDLING.fixedline.text
+msgid "Options"
+msgstr "Opciones"
+
+#: advancedsettings.src#AUTO_SQL92CHECK_AUTO_Y_.CB_SQL92CHECK.checkbox.text
+msgid "Use SQL92 naming constraints"
+msgstr "Utilizar las restricciones del nombre SQL92"
+
+#: advancedsettings.src#AUTO_APPENDTABLEALIAS_AUTO_Y_.CB_APPENDTABLEALIAS.checkbox.text
+msgid "Append the table alias name on SELECT statements"
+msgstr "Adjuntar alias en instrucciones SELECT"
+
+#: advancedsettings.src#AUTO_AS_BEFORE_CORR_NAME_AUTO_Y_.CB_AS_BEFORE_CORR_NAME.checkbox.text
+msgid "Use keyword AS before table alias names"
+msgstr "Usar palabra clave AS antes de nombres de alias de tabla"
+
+#: advancedsettings.src#AUTO_ENABLEOUTERJOIN_AUTO_Y_.CB_ENABLEOUTERJOIN.checkbox.text
+msgid "Use Outer Join syntax '{OJ }'"
+msgstr "Usar sintaxis de unión externa '{OJ }'"
+
+#: advancedsettings.src#AUTO_IGNOREDRIVER_PRIV_AUTO_Y_.CB_IGNOREDRIVER_PRIV.checkbox.text
+msgid "Ignore the privileges from the database driver"
+msgstr "Ignorar los privilegios del controlador de la base de datos"
+
+#: advancedsettings.src#AUTO_PARAMETERNAMESUBST_AUTO_Y_.CB_PARAMETERNAMESUBST.checkbox.text
+msgid "Replace named parameters with '?'"
+msgstr "Sustituir parámetros con nombre por '?'"
+
+#: advancedsettings.src#AUTO_SUPPRESVERSIONCOLUMN_AUTO_Y_.CB_SUPPRESVERSIONCL.checkbox.text
+msgid "Display version columns (when available)"
+msgstr "Mostrar las columnas de versión (si están disponibles)"
+
+#: advancedsettings.src#AUTO_CATALOG_AUTO_Y_.CB_CATALOG.checkbox.text
+msgid "Use catalog name in SELECT statements"
+msgstr "Usar nombre de catálogo en instrucciones SELECT"
+
+#: advancedsettings.src#AUTO_SCHEMA_AUTO_Y_.CB_SCHEMA.checkbox.text
+msgid "Use schema name in SELECT statements"
+msgstr "Usar nombre de esquema en instrucciones SELECT"
+
+#: advancedsettings.src#AUTO_IGNOREINDEXAPPENDIX_AUTO_Y_.CB_IGNOREINDEXAPPENDIX.checkbox.text
+msgid "Create index with ASC or DESC statement"
+msgstr "Crear índice con instrucciones ASC o DESC"
+
+#: advancedsettings.src#AUTO_DOSLINEENDS_AUTO_Y_.CB_DOSLINEENDS.checkbox.text
+msgid "End text lines with CR+LF"
+msgstr "Finalizar líneas de texto con CR+LF"
+
+#: advancedsettings.src#AUTO_IGNORECURRENCY_AUTO_Y_.CB_IGNORECURRENCY.checkbox.text
+msgid "Ignore currency field information"
+msgstr "Ignorar información del campo de moneda"
+
+#: advancedsettings.src#AUTO_CHECKREQUIRED_AUTO_Y_.CB_CHECK_REQUIRED.checkbox.text
+msgid "Form data input checks for required fields"
+msgstr "Verificación de datos ingresado a la forma para campos requeridos"
+
+#: advancedsettings.src#AUTO_ESCAPE_DATETIME_AUTO_Y_.CB_ESCAPE_DATETIME.checkbox.text
+msgid "Use ODBC conformant date/time literals"
+msgstr "Usar formato de fecha/hora ODBC"
+
+#: advancedsettings.src#AUTO_PRIMARY_KEY_SUPPORT_AUTO_Y_.CB_PRIMARY_KEY_SUPPORT.checkbox.text
+msgid "Supports primary keys"
+msgstr "Admite claves primarias"
+
+#: advancedsettings.src#AUTO_RESPECTRESULTSETTYPE_AUTO_Y_.CB_RESPECTRESULTSETTYPE.checkbox.text
+msgid "Respect the result set type from the database driver"
+msgstr "Respecto al resultado ajuste el tipo desde el controlador de base de datos"
+
+#: advancedsettings.src#WORKAROUND.1.stringlist.text
+msgid "Default"
+msgstr "Predeterminado"
+
+#: advancedsettings.src#WORKAROUND.2.stringlist.text
+msgid "SQL"
+msgstr "SQL"
+
+#: advancedsettings.src#WORKAROUND.3.stringlist.text
+msgid "Mixed"
+msgstr "Mixto"
+
+#: advancedsettings.src#WORKAROUND.4.stringlist.text
+msgid "MS Access"
+msgstr "MS Access"
+
+#: advancedsettings.src#AUTO_BOOLEANCOMPARISON_AUTO_Y_.FT_BOOLEANCOMPARISON.fixedtext.text
+msgid "Comparison of Boolean values"
+msgstr "Comparación de valores booleanos"
+
+#: advancedsettings.src#AUTO_MAXROWSCAN_AUTO_Y_.FT_MAXROWSCAN.fixedtext.text
+msgid "Rows to scan column types"
+msgstr "Filas a analizar para detectar el tipo de las columnas"
+
+#: advancedsettings.src#PAGE_GENERATED_VALUES.FL_SEPARATORAUTO.fixedline.text
+msgid "Settings"
+msgstr "Configuración"
+
+#: advancedsettings.src#PAGE_GENERATED_VALUES.CB_RETRIEVE_AUTO.checkbox.text
+msgid "Re~trieve generated values"
+msgstr "~Considerar los valores generados"
+
+#: advancedsettings.src#PAGE_GENERATED_VALUES.FT_AUTOINCREMENTVALUE.fixedtext.text
+msgid "~Auto-increment statement"
+msgstr "~Expresión incremento automático"
+
+#: advancedsettings.src#PAGE_GENERATED_VALUES.FT_RETRIEVE_AUTO.fixedtext.text
+msgid "~Query of generated values"
+msgstr "~Consulta de los valores generados"
+
+#: advancedsettings.src#DLG_DATABASE_ADVANCED.STR_GENERATED_VALUE.string.text
+msgid "Generated Values"
+msgstr "Valores generados"
+
+#: advancedsettings.src#DLG_DATABASE_ADVANCED.STR_DS_BEHAVIOUR.string.text
+msgid "Special Settings"
+msgstr "Configuración especial"
+
+#: advancedsettings.src#DLG_DATABASE_ADVANCED.tabdialog.text
+msgid "Advanced Settings"
+msgstr "Configuración avanzada"
+
+#: UserAdmin.src#TAB_PAGE_USERADMIN.FL_USER.fixedline.text
+msgid "User selection"
+msgstr "Selección de usuario"
+
+#: UserAdmin.src#TAB_PAGE_USERADMIN.FT_USER.fixedtext.text
+msgid "Us~er:"
+msgstr "Usuari~o:"
+
+#: UserAdmin.src#TAB_PAGE_USERADMIN.PB_NEWUSER.pushbutton.text
+msgid "~Add User..."
+msgstr "~Nuevo usuario..."
+
+#: UserAdmin.src#TAB_PAGE_USERADMIN.PB_CHANGEPWD.pushbutton.text
+msgid "Change ~Password..."
+msgstr "Cambiar ~contraseña..."
+
+#: UserAdmin.src#TAB_PAGE_USERADMIN.PB_DELETEUSER.pushbutton.text
+msgid "~Delete User..."
+msgstr "~Eliminar usuario..."
+
+#: UserAdmin.src#TAB_PAGE_USERADMIN.FL_TABLE_GRANTS.fixedline.text
+msgid "Access rights for selected user"
+msgstr "Derechos de usuario para usuarios seleccionados"
+
+#: UserAdmin.src#QUERY_USERADMIN_DELETE_USER.querybox.text
+msgid "Do you really want to delete the user?"
+msgstr "¿Desea realmente eliminar el usuario?"
+
+#: UserAdmin.src#STR_USERADMIN_NOT_AVAILABLE.string.text
+msgid "The database does not support user administration."
+msgstr "La base de datos no admite la administración de usuarios."
+
+#: UserAdmin.src#DLG_PASSWORD.FL_USER.fixedline.text
+msgid "User \"$name$: $\""
+msgstr "Usuario \"$name$: $\""
+
+#: UserAdmin.src#DLG_PASSWORD.FT_OLDPASSWORD.fixedtext.text
+msgid "Old p~assword"
+msgstr "Contraseña an~terior"
+
+#: UserAdmin.src#DLG_PASSWORD.FT_PASSWORD.fixedtext.text
+msgid "~Password"
+msgstr "~Contraseña"
+
+#: UserAdmin.src#DLG_PASSWORD.FT_PASSWORD_REPEAT.fixedtext.text
+msgid "~Confirm password"
+msgstr "~Confirmar contraseña"
+
+#: UserAdmin.src#DLG_PASSWORD.modaldialog.text
+msgid "Change Password"
+msgstr "Modificar contraseña"
+
+#: UserAdmin.src#STR_ERROR_PASSWORDS_NOT_IDENTICAL.string.text
+msgid "The passwords do not match. Please enter the password again."
+msgstr "Las contraseñas no coinciden. Introdúzcalas otra vez."
+
+#: admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.FT_MYSQL_DATABASE_NAME.fixedtext.text
+msgid "~Database name"
+msgstr "~Nombre de la base de datos"
+
+#: admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.RB_MYSQL_HOST_PORT.radiobutton.text
+msgid "Se~rver / Port"
+msgstr "Se~rvidor / Puerto"
+
+#: admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.FT_COMMON_HOST_NAME.fixedtext.text
+msgid "~Server"
+msgstr "~Servidor"
+
+#: admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.FT_COMMON_PORT.fixedtext.text
+msgid "~Port"
+msgstr "~Puerto"
+
+#: admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.FT_COMMON_PORT_DEFAULT.fixedtext.text
+msgctxt "admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.FT_COMMON_PORT_DEFAULT.fixedtext.text"
+msgid "Default: 3306"
+msgstr "Predeterminado: 3306"
+
+#: admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.RB_MYSQL_SOCKET.radiobutton.text
+msgid "So~cket"
+msgstr "So~cket"
+
+#: admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.RB_MYSQL_NAMED_PIPE.radiobutton.text
+msgid "Named p~ipe"
+msgstr "Nombre p~ipa"
+
+#: AutoControls_tmpl.hrc#AUTO_BROWSECONTROLGROUP__AUTO_X__AUTO_Y__AUTOPAGE_X__AUTO_HID__AUTO_HID2_.PB_AUTOBROWSEURL.pushbutton.text
+msgid "Browse"
+msgstr "Examinar"
+
+#: AutoControls_tmpl.hrc#AUTO_NAMECONTROLGROUP_AUTO_Y__AUTO_HID_.FT_AUTODATABASENAME.fixedtext.text
+msgid "Database name"
+msgstr "Nombre de base de datos"
+
+#: AutoControls_tmpl.hrc#AUTO_HOSTCONTROLGROUP_AUTO_Y__AUTO_HID_.FT_AUTOHOSTNAME.fixedtext.text
+msgid "Server"
+msgstr "Servidor"
+
+#: AutoControls_tmpl.hrc#AUTO_BASEDNCONTROLGROUP_AUTO_Y__AUTO_HID_.FT_AUTOBASEDN.fixedtext.text
+msgid "Base ~DN"
+msgstr "~Base DN"
+
+#: AutoControls_tmpl.hrc#AUTO_PORTCONTROLGROUP_AUTO_Y__AUTO_HID_.FT_AUTOPORTNUMBER.fixedtext.text
+msgctxt "AutoControls_tmpl.hrc#AUTO_PORTCONTROLGROUP_AUTO_Y__AUTO_HID_.FT_AUTOPORTNUMBER.fixedtext.text"
+msgid "~Port number"
+msgstr "~Número de puerto"
+
+#: AutoControls_tmpl.hrc#AUTO_CHARSET__AUTO_Y__AUTOPAGE_X__.FL_DATACONVERT.fixedline.text
+msgid "Data conversion"
+msgstr "Conversión de datos"
+
+#: AutoControls_tmpl.hrc#AUTO_CHARSET__AUTO_Y__AUTOPAGE_X__.FT_CHARSET.fixedtext.text
+msgid "~Character set"
+msgstr "Juego de ~caracteres"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.FT_AUTOEXTENSIONHEADER.fixedtext.text
+msgid "Specify the type of files you want to access"
+msgstr "Especifique el tipo de archivos a los que quiere acceder"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.RB_AUTOACCESSCTEXTFILES.radiobutton.text
+msgid "Plain text files (*.txt)"
+msgstr "Archivos de texto sin formato (*.txt)"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.RB_AUTOACCESSCCSVFILES.radiobutton.text
+msgid "'Comma separated value' files (*.csv)"
+msgstr "Archivos de 'texto separado con comas' (*.csv)"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.RB_AUTOACCESSOTHERS.radiobutton.text
+msgid "Custom:"
+msgstr "Personalizado:"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.FT_AUTOOWNEXTENSIONAPPENDIX.fixedtext.text
+msgid "Custom: *.abc"
+msgstr "Personalizado: *.abc"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.FL_AUTOSEPARATOR2.fixedline.text
+msgid "Row Format"
+msgstr "Formato de fila"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.FT_AUTOFIELDSEPARATOR.fixedtext.text
+msgid "Field separator"
+msgstr "Separador de campo"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.FT_AUTOTEXTSEPARATOR.fixedtext.text
+msgid "Text separator"
+msgstr "Separador de texto"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.FT_AUTODECIMALSEPARATOR.fixedtext.text
+msgid "Decimal separator"
+msgstr "Separador decimal"
+
+#: AutoControls_tmpl.hrc#FT_AUTOTHOUSANDSSEPARATOR.fixedtext.text
+msgid "Thousands separator"
+msgstr "Separador de miles"
+
+#: AutoControls_tmpl.hrc#CB_AUTOHEADER.checkbox.text
+msgid "~Text contains headers"
+msgstr "~El texto contiene encabezados"
+
+#: AutoControls_tmpl.hrc#STR_AUTOTEXT_FIELD_SEP_NONE.string.text
+msgid "{None}"
+msgstr "{Ninguno}"
+
+#. EM Dec 2002: \'Space\' refers to what you get when you hit the space bar on your keyboard.
+#: AutoControls_tmpl.hrc#STR_AUTOFIELDSEPARATORLIST.string.text
+msgid ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Space}\t32"
+msgstr ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Espacio}\t32"
+
+#: AutoControls_tmpl.hrc#STR_AUTODELIMITER_MISSING.string.text
+msgid "#1 must be set."
+msgstr "Debe definirse el número 1."
+
+#: AutoControls_tmpl.hrc#STR_AUTODELIMITER_MUST_DIFFER.string.text
+msgid "#1 and #2 must be different."
+msgstr "El número 1 y el número 2 deben ser diferentes."
+
+#: AutoControls_tmpl.hrc#STR_AUTONO_WILDCARDS.string.text
+msgid "Wildcards such as ?,* are not allowed in #1."
+msgstr "No se pueden utilizar los caracteres ?,* en el número 1."
+
+#: AutoControls_tmpl.hrc#AUTO_JDBCDRIVERCLASSGROUP_AUTO_Y__AUTO_HID__AUTO_HID2_.FT_AUTOJDBCDRIVERCLASS.fixedtext.text
+msgid "JDBC d~river class"
+msgstr "Cla~se de controlador JDBC"
+
+#: AutoControls_tmpl.hrc#AUTO_JDBCDRIVERCLASSGROUP_AUTO_Y__AUTO_HID__AUTO_HID2_.PB_AUTOTESTDRIVERCLASS.pushbutton.text
+msgctxt "AutoControls_tmpl.hrc#AUTO_JDBCDRIVERCLASSGROUP_AUTO_Y__AUTO_HID__AUTO_HID2_.PB_AUTOTESTDRIVERCLASS.pushbutton.text"
+msgid "Test class"
+msgstr "Clase de prueba"
+
+#: AutoControls_tmpl.hrc#AUTO_SOCKETCONTROLGROUP_AUTO_Y_.FT_SOCKET.fixedtext.text
+msgid "Socket"
+msgstr "Socket"
+
+#: dbadmin2.src#STR_ENTER_CONNECTION_PASSWORD.string.text
+msgid "A password is needed to connect to the data source \"$name$\"."
+msgstr "Debe introducir una contraseña para la conexión a la fuente de datos \"$name$\"."
+
+#: dbadmin2.src#STR_ASK_FOR_DIRECTORY_CREATION.string.text
+msgid ""
+"The directory\n"
+"\n"
+"$path$\n"
+"\n"
+"does not exist. Should it be created?"
+msgstr ""
+"No existe el directorio\n"
+"\n"
+"$path$\n"
+"\n"
+"¿Desea crearlo?"
+
+#: dbadmin2.src#STR_COULD_NOT_CREATE_DIRECTORY.string.text
+msgid "The directory $name$ could not be created."
+msgstr "No se pudo crear el directorio $name$."
+
+#: dbadmin2.src#DLG_DOMAINPASSWORD.FT_PASSWORD.fixedline.text
+msgid "Please enter the ~password for the user 'DOMAIN'."
+msgstr "Introduzca la ~contraseña para el usuario 'DOMAIN'."
+
+#: dbadmin2.src#DLG_DOMAINPASSWORD.modaldialog.text
+msgid "Convert Database"
+msgstr "Conversión de la base de datos"
+
+#: dbadmin2.src#PAGE_TABLESUBSCRIPTION.FL_SEPARATOR1.fixedline.text
+msgid "Tables and table filter"
+msgstr "Tablas y filtro de tablas"
+
+#: dbadmin2.src#PAGE_TABLESUBSCRIPTION.FT_FILTER_EXPLANATION.fixedtext.text
+msgid "Mark the tables that should be visible for the applications."
+msgstr "Marcar las tablas que deben estar visibles para las aplicaciones."
+
+#: dbadmin2.src#PAGE_TABLESUBSCRIPTION.tabpage.text
+msgid "Tables Filter"
+msgstr "Filtro de tablas"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.WND_CONTROL.FL_INVOLVED_TABLES.fixedline.text
+msgid "Tables involved"
+msgstr "Tablas implicadas"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.WND_CONTROL.FL_INVOLVED_FIELDS.fixedline.text
+msgid "Fields involved"
+msgstr "Campos implicados"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.FL_CASC_UPD.fixedline.text
+msgid "Update options"
+msgstr "Opciones de actualización"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.RB_NO_CASC_UPD.radiobutton.text
+msgctxt "RelationDlg.src#DLG_REL_PROPERTIES.RB_NO_CASC_UPD.radiobutton.text"
+msgid "~No action"
+msgstr "~Ninguna acción"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.RB_CASC_UPD.radiobutton.text
+msgid "~Update cascade"
+msgstr "Actualizar ~cascada"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.RB_CASC_UPD_NULL.radiobutton.text
+msgctxt "RelationDlg.src#DLG_REL_PROPERTIES.RB_CASC_UPD_NULL.radiobutton.text"
+msgid "~Set null"
+msgstr "Poner ~null"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.RB_CASC_UPD_DEFAULT.radiobutton.text
+msgctxt "RelationDlg.src#DLG_REL_PROPERTIES.RB_CASC_UPD_DEFAULT.radiobutton.text"
+msgid "Set ~default"
+msgstr "~Predeterminar"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.FL_CASC_DEL.fixedline.text
+msgid "Delete options"
+msgstr "Opciones de eliminación"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.RB_NO_CASC_DEL.radiobutton.text
+msgctxt "RelationDlg.src#DLG_REL_PROPERTIES.RB_NO_CASC_DEL.radiobutton.text"
+msgid "~No action"
+msgstr "Ninguna a~cción"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.RB_CASC_DEL.radiobutton.text
+msgid "Delete ~cascade"
+msgstr "Eliminar c~ascada"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.RB_CASC_DEL_NULL.radiobutton.text
+msgctxt "RelationDlg.src#DLG_REL_PROPERTIES.RB_CASC_DEL_NULL.radiobutton.text"
+msgid "~Set null"
+msgstr "Poner ~null"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.RB_CASC_DEL_DEFAULT.radiobutton.text
+msgctxt "RelationDlg.src#DLG_REL_PROPERTIES.RB_CASC_DEL_DEFAULT.radiobutton.text"
+msgid "Set ~default"
+msgstr "Pre~determinar"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.modaldialog.text
+msgid "Relations"
+msgstr "Relaciones"
+
+#: dsselect.src#DLG_DATASOURCE_SELECTION.FT_DESCRIPTION.fixedtext.text
+msgid "Choose a data source:"
+msgstr "Seleccione una fuente de datos:"
+
+#: dsselect.src#DLG_DATASOURCE_SELECTION.PB_MANAGE.pushbutton.text
+msgid "Organize..."
+msgstr "Administrar..."
+
+#: dsselect.src#DLG_DATASOURCE_SELECTION.PB_CREATE.pushbutton.text
+msgid "Create..."
+msgstr "Crear..."
+
+#: dsselect.src#DLG_DATASOURCE_SELECTION.STR_LOCAL_DATASOURCES.string.text
+msgid "Local Databases"
+msgstr "Bases de datos locales"
+
+#: dsselect.src#DLG_DATASOURCE_SELECTION.STR_DESCRIPTION2.string.text
+msgid "Choose a database"
+msgstr "Seleccione una base de datos"
+
+#: dsselect.src#DLG_DATASOURCE_SELECTION.modaldialog.text
+msgid "Data Source"
+msgstr "Fuente de datos"
+
+#: AutoControls.src#STR_DBASE_PATH_OR_FILE.string.text
+msgid "Path to the dBASE files"
+msgstr "Ruta de los archivos dBASE"
+
+#: AutoControls.src#STR_FLAT_PATH_OR_FILE.string.text
+msgid "Path to the text files"
+msgstr "Ruta de los archivos de texto"
+
+#: AutoControls.src#STR_CALC_PATH_OR_FILE.string.text
+msgid "Path to the spreadsheet document"
+msgstr "Ruta del documento de hoja de cálculo"
+
+#: AutoControls.src#STR_NAME_OF_ODBC_DATASOURCE.string.text
+msgid "Name of the ODBC data source on your system"
+msgstr "Nombre del origen de datos ODBC en el sistema"
+
+#: AutoControls.src#STR_MYSQL_DATABASE_NAME.string.text
+msgid "Name of the MySQL database"
+msgstr "Nombre de la base de datos MySQL"
+
+#: AutoControls.src#STR_ORACLE_DATABASE_NAME.string.text
+msgid "Name of the Oracle database"
+msgstr "Nombre de la base de datos Oracle"
+
+#: AutoControls.src#STR_MSACCESS_MDB_FILE.string.text
+msgid "Microsoft Access database file"
+msgstr "Archivo de base de datos de Microsoft Access"
+
+#: AutoControls.src#STR_NO_ADDITIONAL_SETTINGS.string.text
+msgid "No more settings are necessary. To verify that the connection is working, click the '%test' button."
+msgstr "No se necesita más configuración. Para verificar que funcione la conexión, haga clic en el botón '%test'."
+
+#: AutoControls.src#STR_COMMONURL.string.text
+msgid "Datasource URL"
+msgstr "URL de origen de datos"
+
+#: AutoControls.src#STR_HOSTNAME.string.text
+msgctxt "AutoControls.src#STR_HOSTNAME.string.text"
+msgid "~Host name"
+msgstr "~Nombre del anfitrión"
+
+#: AutoControls.src#STR_MOZILLA_PROFILE_NAME.string.text
+msgid "~Mozilla profile name"
+msgstr "~Nombre de perfil de Mozilla"
+
+#: AutoControls.src#STR_THUNDERBIRD_PROFILE_NAME.string.text
+msgid "~Thunderbird profile name"
+msgstr "~Nombre de perfil de Thunderbird"
+
+#: dbadmin.src#AUTO_USECATALOG_AUTO_Y_.CB_USECATALOG.checkbox.text
+msgid "Use catalog for file-based databases"
+msgstr "Usar catálogo con bases de datos basadas en archivo"
+
+#: dbadmin.src#AUTO_FIXEDLINE_CONNSETTINGS_AUTO_Y_.FL_SEPARATOR1.fixedline.text
+msgctxt "dbadmin.src#AUTO_FIXEDLINE_CONNSETTINGS_AUTO_Y_.FL_SEPARATOR1.fixedline.text"
+msgid "Connection Settings"
+msgstr "Configuración de conexión"
+
+#: dbadmin.src#AUTO_HOST_AND_PORT_AUTO_Y_.FT_HOSTNAME.fixedtext.text
+msgctxt "dbadmin.src#AUTO_HOST_AND_PORT_AUTO_Y_.FT_HOSTNAME.fixedtext.text"
+msgid "~Host name"
+msgstr "~Nombre del host"
+
+#: dbadmin.src#AUTO_HOST_AND_PORT_AUTO_Y_.FT_PORTNUMBER.fixedtext.text
+msgctxt "dbadmin.src#AUTO_HOST_AND_PORT_AUTO_Y_.FT_PORTNUMBER.fixedtext.text"
+msgid "~Port number"
+msgstr "~Número de puerto"
+
+#: dbadmin.src#DLG_DATABASE_ADMINISTRATION.STR_PAGETITLE_GENERAL.string.text
+msgid "Advanced Properties"
+msgstr "Propiedades avanzadas"
+
+#: dbadmin.src#DLG_DATABASE_ADMINISTRATION.STR_PAGETITLE_ADVANCED.string.text
+msgid "Additional Settings"
+msgstr "Configuración adicional"
+
+#: dbadmin.src#DLG_DATABASE_ADMINISTRATION.STR_PAGETITLE_CONNECTION.string.text
+msgid "Connection settings"
+msgstr "Configuración de conexión"
+
+#: dbadmin.src#DLG_DATABASE_ADMINISTRATION.tabdialog.text
+msgctxt "dbadmin.src#DLG_DATABASE_ADMINISTRATION.tabdialog.text"
+msgid "Database properties"
+msgstr "Propiedades de la base de datos"
+
+#: dbadmin.src#DLG_DATABASE_TYPE_CHANGE.modaldialog.text
+msgctxt "dbadmin.src#DLG_DATABASE_TYPE_CHANGE.modaldialog.text"
+msgid "Database properties"
+msgstr "Propiedades de la base de datos"
+
+#: dbadmin.src#PAGE_GENERAL.FT_GENERALHEADERTEXT.fixedtext.text
+msgid "Welcome to the %PRODUCTNAME Database Wizard"
+msgstr "Bienvenido/a al Asistente para bases de datos de %PRODUCTNAME"
+
+#: dbadmin.src#PAGE_GENERAL.FT_GENERALHELPTEXT.fixedtext.text
+msgid "Use the Database Wizard to create a new database, open an existing database file, or connect to a database stored on a server."
+msgstr "Utilice el Asistente para bases de datos para crear una base de datos, abrir un archivo de base de datos existente o conectarse a una base de datos de un servidor."
+
+#: dbadmin.src#PAGE_GENERAL.FT_DATASOURCEHEADER.fixedtext.text
+msgid "What do you want to do?"
+msgstr "¿Qué quiere hacer?"
+
+#: dbadmin.src#PAGE_GENERAL.RB_CREATEDBDATABASE.radiobutton.text
+msgid "Create a n~ew database"
+msgstr "Crear una base de datos nu~eva"
+
+#: dbadmin.src#PAGE_GENERAL.RB_OPENEXISTINGDOC.radiobutton.text
+msgid "Open an existing database ~file"
+msgstr "Abrir un ~archivo de base de datos existente"
+
+#: dbadmin.src#PAGE_GENERAL.FT_DOCLISTLABEL.fixedtext.text
+msgid "Recently used"
+msgstr "Usado recientemente"
+
+#: dbadmin.src#PAGE_GENERAL.RB_GETEXISTINGDATABASE.radiobutton.text
+msgid "Connect to an e~xisting database"
+msgstr "Conectar con una base de datos e~xistente"
+
+#: dbadmin.src#PAGE_GENERAL.FT_DATASOURCETYPE_PRE.fixedtext.text
+msgid "Select the type of database to which you want to establish a connection."
+msgstr "Seleccione el tipo de base de datos con el que desea establecer conexión."
+
+#: dbadmin.src#PAGE_GENERAL.FT_DATATYPE.fixedtext.text
+msgid "Database ~type "
+msgstr "~Tipo de base de datos "
+
+#: dbadmin.src#PAGE_GENERAL.FT_DATATYPEAPPENDIX.fixedtext.text
+msgid "Database"
+msgstr "Base de datos"
+
+#: dbadmin.src#PAGE_GENERAL.FT_DATASOURCETYPE_POST.fixedtext.text
+msgid ""
+"On the following pages, you can make detailed settings for the connection.\n"
+"\n"
+"The new settings you make will overwrite your existing settings."
+msgstr ""
+"En las páginas siguientes, puede configurar las opciones concretas para la conexión.\n"
+"\n"
+"La nueva configuración sustituirá a la existente."
+
+#: dbadmin.src#PAGE_GENERAL.STR_MYSQLENTRY.string.text
+msgid "MySQL"
+msgstr "MySQL"
+
+#: dbadmin.src#PAGE_GENERAL.STR_PARENTTITLE.string.text
+msgid "Data Source Properties: #"
+msgstr "Propiedades del origen de datos: #"
+
+#: dbadmin.src#PAGE_GENERAL.STR_COULDNOTLOAD_ODBCLIB.string.text
+msgid "Could not load the program library #lib# or it is corrupted. The ODBC data source selection is not available."
+msgstr "No se pudo cargar la biblioteca de programa #lib#, quizás esté dañada. La selección de fuente de datos ODBC no está disponible."
+
+#: dbadmin.src#PAGE_GENERAL.STR_UNSUPPORTED_DATASOURCE_TYPE.string.text
+msgid ""
+"This kind of data source is not supported on this platform.\n"
+"You are allowed to change the settings, but you probably will not be able to connect to the database."
+msgstr ""
+"Esta plataforma no es compatible este tipo de origen de datos.\n"
+"Puede modificar la configuración, pero seguramente no podrá conectarse con la base de datos."
+
+#: dbadmin.src#PAGE_GENERAL.tabpage.text
+msgctxt "dbadmin.src#PAGE_GENERAL.tabpage.text"
+msgid "General"
+msgstr "General"
+
+#: dbadmin.src#PAGE_DBASE.FL_SEPARATOR1.fixedline.text
+msgid "Optional settings"
+msgstr "Configuración opcional"
+
+#: dbadmin.src#PAGE_DBASE.CB_SHOWDELETEDROWS.checkbox.text
+msgid "Display deleted records as well"
+msgstr "Mostrar también registros eliminados"
+
+#: dbadmin.src#PAGE_DBASE.FT_SPECIAL_MESSAGE.fixedtext.text
+msgid "Note: When deleted, and thus inactive, records are displayed, you will not be able to delete records from the data source."
+msgstr "Nota: Cuando se muestran registros eliminados y, como consecuencia, inactivos, no es posible eliminar registros del origen de datos."
+
+#: dbadmin.src#PAGE_DBASE.PB_INDICIES.pushbutton.text
+msgid "Indexes..."
+msgstr "Índices..."
+
+#: dbadmin.src#PAGE_ODBC.FL_SEPARATOR1.fixedline.text
+msgid "Optional Settings"
+msgstr "Parámetros opcionales"
+
+#: dbadmin.src#PAGE_ODBC.FT_OPTIONS.fixedtext.text
+msgid "ODBC ~options"
+msgstr "~Opciones de ODBC"
+
+#: dbadmin.src#PAGE_MYSQL_JDBC.FT_JDBCDRIVERCLASS.fixedtext.text
+msgid "MySQL JDBC d~river class"
+msgstr "Clase de cont~rolador MySQL JDBC"
+
+#: dbadmin.src#PAGE_MYSQL_JDBC.PB_TESTDRIVERCLASS.pushbutton.text
+msgctxt "dbadmin.src#PAGE_MYSQL_JDBC.PB_TESTDRIVERCLASS.pushbutton.text"
+msgid "Test class"
+msgstr "Clase de prueba"
+
+#: dbadmin.src#PAGE_MYSQL_NATIVE.FL_SEPARATOR2.fixedline.text
+msgctxt "dbadmin.src#PAGE_MYSQL_NATIVE.FL_SEPARATOR2.fixedline.text"
+msgid "User authentication"
+msgstr "Autenticación de usuario"
+
+#: dbadmin.src#PAGE_MYSQL_NATIVE.FT_USERNAME.fixedtext.text
+msgctxt "dbadmin.src#PAGE_MYSQL_NATIVE.FT_USERNAME.fixedtext.text"
+msgid "~User name"
+msgstr "~Nombre de usuario"
+
+#: dbadmin.src#PAGE_MYSQL_NATIVE.CB_PASSWORD_REQUIRED.checkbox.text
+msgctxt "dbadmin.src#PAGE_MYSQL_NATIVE.CB_PASSWORD_REQUIRED.checkbox.text"
+msgid "Password required"
+msgstr "Se requiere una contraseña"
+
+#: dbadmin.src#PAGE_ORACLE_JDBC.FT_JDBCDRIVERCLASS.fixedtext.text
+msgid "Oracle JDBC d~river class"
+msgstr "Clase de cont~rolador Oracle JDBC"
+
+#: dbadmin.src#PAGE_ORACLE_JDBC.PB_TESTDRIVERCLASS.pushbutton.text
+msgctxt "dbadmin.src#PAGE_ORACLE_JDBC.PB_TESTDRIVERCLASS.pushbutton.text"
+msgid "Test class"
+msgstr "Clase de prueba"
+
+#: dbadmin.src#PAGE_LDAP.FL_SEPARATOR1.fixedline.text
+msgctxt "dbadmin.src#PAGE_LDAP.FL_SEPARATOR1.fixedline.text"
+msgid "Connection Settings"
+msgstr "Parámetros de conexión"
+
+#: dbadmin.src#PAGE_LDAP.FT_BASEDN.fixedtext.text
+msgid "~Base DN"
+msgstr "~Base DN"
+
+#: dbadmin.src#PAGE_LDAP.CB_USESSL.checkbox.text
+msgid "Use secure connection (SSL)"
+msgstr "Usar conexión segura (SSL)"
+
+#: dbadmin.src#PAGE_LDAP.FT_PORTNUMBER.fixedtext.text
+msgctxt "dbadmin.src#PAGE_LDAP.FT_PORTNUMBER.fixedtext.text"
+msgid "~Port number"
+msgstr "Número de ~puerto"
+
+#: dbadmin.src#PAGE_LDAP.FT_LDAPROWCOUNT.fixedtext.text
+msgid "Maximum number of ~records"
+msgstr "Número máximo de ~registros"
+
+#: dbadmin.src#PAGE_USERDRIVER.FT_HOSTNAME.fixedtext.text
+msgid "~Hostname"
+msgstr "Nombre del ~host"
+
+#: dbadmin.src#PAGE_USERDRIVER.FT_PORTNUMBER.fixedtext.text
+msgctxt "dbadmin.src#PAGE_USERDRIVER.FT_PORTNUMBER.fixedtext.text"
+msgid "~Port number"
+msgstr "Número de ~puerto"
+
+#: dbadmin.src#PAGE_USERDRIVER.FT_OPTIONS.fixedtext.text
+msgid "~Driver settings"
+msgstr "Con~figuración del controlador"
+
+#: dbadmin.src#STR_ERR_USE_CONNECT_TO.string.text
+msgid "Please choose 'Connect to an existing database' to connect to an existing database instead."
+msgstr "Elija «Conectar con una base de datos existente» para conectarse con una base de datos existente."
diff --git a/source/es/dbaccess/source/ui/inc.po b/source/es/dbaccess/source/ui/inc.po
new file mode 100644
index 00000000000..6a63f08fe4d
--- /dev/null
+++ b/source/es/dbaccess/source/ui/inc.po
@@ -0,0 +1,60 @@
+#. extracted from dbaccess/source/ui/inc.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Finc.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-13 11:54+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: toolbox_tmpl.hrc#MID_SBA_QRY_REFRESH.#define.text
+msgid "Refresh"
+msgstr "Actualizar"
+
+#: toolbox_tmpl.hrc#MID_NEW_VIEW_DESIGN.#define.text
+msgid "New ~View Design"
+msgstr "Nuevo diseño de ~visualización"
+
+#: toolbox_tmpl.hrc#MID_NEW_TABLE_DESIGN.#define.text
+msgid "New ~Table Design"
+msgstr "Nuevo diseño de ~tabla"
+
+#: toolbox_tmpl.hrc#MID_QUERY_WIZARD.#define.text
+msgid "Query AutoPilot..."
+msgstr "Asistente: Consulta..."
+
+#: toolbox_tmpl.hrc#MID_QUERY_NEW_DESIGN.#define.text
+msgid "New ~Query (Design View)"
+msgstr "Nueva ~consulta (vista de diseño)"
+
+#: toolbox_tmpl.hrc#MID_QUERY_EDIT_DESIGN.#define.text
+msgid "~Edit Query"
+msgstr "Editar cons~ulta"
+
+#: toolbox_tmpl.hrc#MID_QUERY_NEW_SQL.#define.text
+msgid "New Query (~SQL View)"
+msgstr "Nueva consulta (vista ~SQL)"
+
+#: toolbox_tmpl.hrc#MID_DBUI_QUERY_EDIT_JOINCONNECTION.#define.text
+msgid "Edit..."
+msgstr "Editar..."
+
+#: toolbox_tmpl.hrc#MID_COLUMN_WIDTH.#define.text
+msgid "Column ~Width..."
+msgstr "Anc~ho de columna..."
+
+#: toolbox_tmpl.hrc#MID_DOCUMENT_CREATE_REPWIZ.#define.text
+msgid "Report Wizard..."
+msgstr "Asistente para informes..."
+
+#: toolbox_tmpl.hrc#MID_DOCUMENT_NEW_AUTOPILOT.#define.text
+msgid "Form AutoPilot..."
+msgstr "Asistente para formularios..."
diff --git a/source/es/dbaccess/source/ui/misc.po b/source/es/dbaccess/source/ui/misc.po
new file mode 100644
index 00000000000..366b1fb2143
--- /dev/null
+++ b/source/es/dbaccess/source/ui/misc.po
@@ -0,0 +1,208 @@
+#. extracted from dbaccess/source/ui/misc.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Fmisc.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-08-14 06:13+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dbumiscres.src#RSC_CHARSETS.1.string.text
+msgid "System"
+msgstr "Sistema"
+
+#: dbumiscres.src#STR_ERROR_DURING_CREATION.string.text
+msgid "Error during creation"
+msgstr "Error al crear"
+
+#: dbumiscres.src#STR_UNEXPECTED_ERROR.string.text
+msgid "An unexpected error occurred. The operation could not be performed."
+msgstr "Ha ocurrido un error. No se puede ejecutar la operación."
+
+#: dbumiscres.src#STR_COULDNOTOPEN_LINKEDDOC.string.text
+msgid "The document \"$file$\" could not be opened."
+msgstr "No se pudo abrir el documento \"$file$\"."
+
+#: dbumiscres.src#STR_MISSING_TABLES_XDROP.string.text
+msgid "The table cannot be deleted because the database connection does not support this."
+msgstr "No se puede eliminar la tabla porque la conexión con la base de datos no apoya esta acción."
+
+#: dbumiscres.src#STR_BUTTON_TEXT_ALL.string.text
+msgctxt "dbumiscres.src#STR_BUTTON_TEXT_ALL.string.text"
+msgid "~All"
+msgstr "~Todos"
+
+#: dbumiscres.src#STR_UNDO_COLON.string.text
+msgid "Undo:"
+msgstr "Deshacer:"
+
+#: dbumiscres.src#STR_REDO_COLON.string.text
+msgid "Redo:"
+msgstr "Restaurar:"
+
+#: dbumiscres.src#STR_UNKNOWN_TYPE_FOUND.string.text
+msgid "No corresponding column type could be found for column '#1'."
+msgstr "No se encontró ninguna columna correspondiente al tipo de columna '#1'."
+
+#: dbumiscres.src#STR_FILE_DOES_NOT_EXIST.string.text
+msgid "The file \"$file$\" does not exist."
+msgstr "El archivo \"$file$\" no existe."
+
+#: dbumiscres.src#STR_WARNINGS_DURING_CONNECT.string.text
+msgid "Warnings were encountered while connecting to the data source. Press \"$buttontext$\" to view them."
+msgstr "Se han generado advertencias durante la conexión con el origen de datos. Pulse \"$buttontext$\" para verlas."
+
+#: dbumiscres.src#STR_NAMED_OBJECT_ALREADY_EXISTS.string.text
+msgid ""
+"The name '$#$' already exists.\n"
+"Please enter another name."
+msgstr ""
+"El nombre '$#$' ya existe.\n"
+"Especifique otro nombre."
+
+#: dbumiscres.src#RID_STR_EXTENSION_NOT_PRESENT.string.text
+msgid "The report, \"$file$\", requires the extension Oracle Report Builder."
+msgstr "El reporte, \"$file$\", necesita la extensión 'Oracle Report Builder'."
+
+#: WizardPages.src#STR_WIZ_COLUMN_SELECT_TITEL.string.text
+msgid "Apply columns"
+msgstr "Aplicar columnas"
+
+#: WizardPages.src#STR_WIZ_TYPE_SELECT_TITEL.string.text
+msgid "Type formatting"
+msgstr "Formato de tipos"
+
+#: WizardPages.src#STR_WIZ_PKEY_ALREADY_DEFINED.string.text
+msgid "The following fields have already been set as primary keys:\n"
+msgstr "Ya se han definido los siguientes campos como llaves primarias:\n"
+
+#: WizardPages.src#STR_WIZ_NAME_MATCHING_TITEL.string.text
+msgid "Assign columns"
+msgstr "Asignar columnas"
+
+#: WizardPages.src#WIZ_RTFCOPYTABLE.PB_HELP.helpbutton.text
+msgid "~Help"
+msgstr "Ay~uda"
+
+#: WizardPages.src#WIZ_RTFCOPYTABLE.PB_CANCEL.cancelbutton.text
+msgid "~Cancel"
+msgstr "~Cancelar"
+
+#: WizardPages.src#WIZ_RTFCOPYTABLE.PB_PREV.pushbutton.text
+msgid "< ~Back"
+msgstr "< ~Anterior"
+
+#: WizardPages.src#WIZ_RTFCOPYTABLE.PB_NEXT.pushbutton.text
+msgid "~Next>"
+msgstr "~Siguiente>"
+
+#: WizardPages.src#WIZ_RTFCOPYTABLE.PB_OK.okbutton.text
+msgid "C~reate"
+msgstr "~Crear"
+
+#: WizardPages.src#WIZ_RTFCOPYTABLE.modaldialog.text
+msgid "Copy RTF Table"
+msgstr "Copiar tabla RTF"
+
+#: WizardPages.src#TAB_WIZ_COLUMN_SELECT.FL_COLUMN_SELECT.fixedline.text
+msgid "Existing columns"
+msgstr "Columnas existentes"
+
+#: WizardPages.src#TAB_WIZ_TYPE_SELECT.FL_COLUMN_NAME.fixedline.text
+msgid "Column information"
+msgstr "Información sobre columnas"
+
+#: WizardPages.src#TAB_WIZ_TYPE_SELECT.FL_AUTO_TYPE.fixedline.text
+msgid "Automatic type recognition"
+msgstr "Autoreconocimiento de tipo"
+
+#: WizardPages.src#TAB_WIZ_TYPE_SELECT.FT_AUTO.fixedtext.text
+msgid "Lines (ma~x)"
+msgstr "~Líneas (máx.)"
+
+#: WizardPages.src#RID_SBA_RTF_PKEYPOPUP.SID_TABLEDESIGN_TABED_PRIMARYKEY.menuitem.text
+msgid "Primary Key"
+msgstr "Clave primaria"
+
+#: WizardPages.src#TAB_WIZ_NAME_MATCHING.FT_TABLE_LEFT.fixedtext.text
+msgid "Source table: \n"
+msgstr "Tabla de origen: \n"
+
+#: WizardPages.src#TAB_WIZ_NAME_MATCHING.FT_TABLE_RIGHT.fixedtext.text
+msgid "Destination table: \n"
+msgstr "Tabla de destino: \n"
+
+#: WizardPages.src#TAB_WIZ_NAME_MATCHING.PB_ALL.pushbutton.text
+msgctxt "WizardPages.src#TAB_WIZ_NAME_MATCHING.PB_ALL.pushbutton.text"
+msgid "~All"
+msgstr "To~dos"
+
+#: WizardPages.src#TAB_WIZ_NAME_MATCHING.PB_NONE.pushbutton.text
+msgid "Non~e"
+msgstr "~Ninguno"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.FT_TABLENAME.fixedtext.text
+msgid "Ta~ble name"
+msgstr "Nombre de la ta~bla"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.FL_OPTIONS.fixedline.text
+msgid "Options"
+msgstr "Opciones"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.RB_DEFDATA.radiobutton.text
+msgid "De~finition and data"
+msgstr "~Definición y datos"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.RB_DEF.radiobutton.text
+msgid "Def~inition"
+msgstr "Defi~nición"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.RB_VIEW.radiobutton.text
+msgid "A~s table view"
+msgstr "Como visualización de t~abla"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.RB_APPENDDATA.radiobutton.text
+msgid "Append ~data"
+msgstr "Anexar ~datos"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.CB_USEHEADERLINE.checkbox.text
+msgid "Use first ~line as column names"
+msgstr "Usar la primera ~línea como nombre de columna"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.CB_PRIMARY_COLUMN.checkbox.text
+msgid "Crea~te primary key"
+msgstr "~Crear llave primaria"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.FT_KEYNAME.fixedtext.text
+msgid "Name"
+msgstr "Nombre"
+
+#: WizardPages.src#STR_WIZ_TABLE_COPY.string.text
+msgctxt "WizardPages.src#STR_WIZ_TABLE_COPY.string.text"
+msgid "Copy table"
+msgstr "Copiar tabla"
+
+#: WizardPages.src#STR_COPYTABLE_TITLE_COPY.string.text
+msgctxt "WizardPages.src#STR_COPYTABLE_TITLE_COPY.string.text"
+msgid "Copy table"
+msgstr "Copiar tabla"
+
+#: WizardPages.src#STR_INVALID_TABLE_NAME.string.text
+msgid "This table name is not valid in the current database."
+msgstr "Este nombre de tabla no es válido en la base de datos actual."
+
+#: WizardPages.src#STR_SUGGEST_APPEND_TABLE_DATA.string.text
+msgid "Choose the option 'Append data' on the first page to append data to an existing table."
+msgstr "Seleccione la opción 'Anexar datos' de la primera página para incorporar datos a una tabla."
+
+#: WizardPages.src#STR_INVALID_TABLE_NAME_LENGTH.string.text
+msgid "Please change the table name. It is too long."
+msgstr "Cambie el nombre de la tabla. Es demasiado largo."
diff --git a/source/es/dbaccess/source/ui/querydesign.po b/source/es/dbaccess/source/ui/querydesign.po
new file mode 100644
index 00000000000..506128d4595
--- /dev/null
+++ b/source/es/dbaccess/source/ui/querydesign.po
@@ -0,0 +1,315 @@
+#. extracted from dbaccess/source/ui/querydesign.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Fquerydesign.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-08-14 06:10+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: query.src#STR_QUERY_UNDO_TABWINSHOW.string.text
+msgid "Add Table Window"
+msgstr "Añadir ventana de tabla"
+
+#: query.src#STR_QUERY_UNDO_MOVETABWIN.string.text
+msgid "Move table window"
+msgstr "Mover ventana de tabla"
+
+#: query.src#STR_QUERY_UNDO_INSERTCONNECTION.string.text
+msgid "Insert Join"
+msgstr "Insertar conexión"
+
+#: query.src#STR_QUERY_UNDO_REMOVECONNECTION.string.text
+msgid "Delete Join"
+msgstr "Eliminar conexión"
+
+#: query.src#STR_QUERY_UNDO_SIZETABWIN.string.text
+msgid "Resize table window"
+msgstr "Redimensionar ventana de tabla"
+
+#: query.src#STR_QUERY_UNDO_TABFIELDDELETE.string.text
+msgid "Delete Column"
+msgstr "Eliminar columna"
+
+#: query.src#STR_QUERY_UNDO_TABFIELDMOVED.string.text
+msgid "Move column"
+msgstr "Mover la columna"
+
+#: query.src#STR_QUERY_UNDO_TABFIELDCREATE.string.text
+msgid "Add Column"
+msgstr "Añadir columna"
+
+#: query.src#RID_STR_TABLE_DOESNT_EXIST.string.text
+msgid "Invalid expression, table '$name$' does not exist."
+msgstr "Expresión no válida, la tabla '$name$' no existe."
+
+#: query.src#RID_STR_FIELD_DOESNT_EXIST.string.text
+msgid "Invalid expression, field name '$name$' does not exist."
+msgstr "¡La expresión no es válida porque no se puede asignar el nombre de campo '$name$'!"
+
+#: query.src#RID_STR_TOMUCHTABLES.string.text
+msgid "The query covers #num# tables. The selected database type, however, can only process a maximum of #maxnum# table(s) per statement."
+msgstr "La consulta abarca #num# tablas. Sin embargo, el tipo de base de datos seleccionado sólo puede procesar como máximo #maxnum# tabla(s) por instrucción."
+
+#: query.src#STR_QUERY_UNDO_TABWINDELETE.string.text
+msgid "Delete Table Window"
+msgstr "Eliminar ventana de tabla"
+
+#: query.src#STR_QUERY_UNDO_MODIFY_CELL.string.text
+msgid "Edit Column Description"
+msgstr "Modificar descripción de columnas"
+
+#: query.src#STR_QUERY_UNDO_SIZE_COLUMN.string.text
+msgid "Adjust column width"
+msgstr "Modificar ancho de columnas"
+
+#: query.src#STR_QUERY_SORTTEXT.string.text
+msgid "(not sorted);ascending;descending"
+msgstr "(sin ordenar);ascendente;descendente"
+
+#: query.src#STR_QUERY_FUNCTIONS.string.text
+msgid "(no function);Group"
+msgstr "(sin función);Agrupar"
+
+#: query.src#STR_QUERY_NOTABLE.string.text
+msgid "(no table)"
+msgstr "(ninguna tabla)"
+
+#: query.src#STR_QRY_ORDERBY_UNRELATED.string.text
+msgid "The database only supports sorting for visible fields."
+msgstr "La base de datos apoya la clasificación solo para campos visibles."
+
+#: query.src#RID_QUERYFUNCTION_POPUPMENU.ID_QUERY_FUNCTION.menuitem.text
+msgid "Functions"
+msgstr "Funciones"
+
+#: query.src#RID_QUERYFUNCTION_POPUPMENU.ID_QUERY_TABLENAME.menuitem.text
+msgid "Table Name"
+msgstr "Nombre de la tabla"
+
+#: query.src#RID_QUERYFUNCTION_POPUPMENU.ID_QUERY_ALIASNAME.menuitem.text
+msgid "Alias"
+msgstr "Alias"
+
+#: query.src#RID_QUERYFUNCTION_POPUPMENU.ID_QUERY_DISTINCT.menuitem.text
+msgid "Distinct Values"
+msgstr "Valores inequívocos"
+
+#: query.src#STR_QUERY_HANDLETEXT.string.text
+msgid "Field;Alias;Table;Sort;Visible;Function;Criterion;Or;Or"
+msgstr "Campo;Alias;Tabla;Orden;Visible;Función;Criterio;o;o"
+
+#: query.src#STR_QRY_TOO_MANY_COLUMNS.string.text
+msgid "There are too many columns."
+msgstr "Existen demasiadas columnas."
+
+#: query.src#ERR_QRY_CRITERIA_ON_ASTERISK.errorbox.text
+msgid "A condition cannot be applied to field [*]"
+msgstr "No es posible una condición para el campo [*]"
+
+#: query.src#STR_QRY_TOO_LONG_STATEMENT.string.text
+msgid "The SQL statement created is too long."
+msgstr "La expresión SQL creada es demasiado larga."
+
+#: query.src#STR_QRY_TOOCOMPLEX.string.text
+msgid "Query is too complex"
+msgstr "Consulta demasiado compleja"
+
+#: query.src#STR_QRY_NOSELECT.string.text
+msgid "Nothing has been selected."
+msgstr "No se ha seleccionado nada."
+
+#: query.src#STR_QRY_TOOMANYCOND.string.text
+msgid "Too many search criteria"
+msgstr "Demasiados criterios de búsqueda"
+
+#: query.src#STR_QRY_SYNTAX.string.text
+msgid "SQL syntax error"
+msgstr "Error en la sintaxis SQL"
+
+#: query.src#ERR_QRY_ORDERBY_ON_ASTERISK.errorbox.text
+msgid "[*] cannot be used as a sort criterion."
+msgstr "No se puede usar [*] como criterio de orden."
+
+#: query.src#STR_QRY_TOO_MANY_TABLES.string.text
+msgid "There are too many tables."
+msgstr "Existen demasiadas tablas."
+
+#: query.src#STR_QRY_NATIVE.string.text
+msgid "The statement will not be applied when querying in the SQL dialect of the database."
+msgstr "En caso de consultar en el dialecto SQL de la base de datos, la instrucción no se aceptará."
+
+#: query.src#ERR_QRY_AMB_FIELD.errorbox.text
+msgid "Field name not found or not unique"
+msgstr "El nombre del campo no se encontró o no es único"
+
+#: query.src#STR_QRY_ILLEGAL_JOIN.string.text
+msgid "Join could not be processed"
+msgstr "No se pudo ejecutar el vínculo."
+
+#: query.src#STR_SVT_SQL_SYNTAX_ERROR.string.text
+msgid "Syntax error in SQL statement"
+msgstr "Error de sintaxis en la expresión SQL"
+
+#: query.src#STR_QUERYDESIGN_NO_VIEW_SUPPORT.string.text
+msgid "This database does not support table views."
+msgstr "Esta base de datos no admite vistas de tablas."
+
+#: query.src#STR_NO_ALTER_VIEW_SUPPORT.string.text
+msgid "This database does not support altering of existing table views."
+msgstr "Esta base de datos no soporta alterar la vista existente de tablas."
+
+#: query.src#STR_QUERYDESIGN_NO_VIEW_ASK.string.text
+msgid "Do you want to create a query instead?"
+msgstr "¿Desea crear una consulta en su lugar?"
+
+#: query.src#ERR_QRY_NOSTATEMENT.errorbox.text
+msgid "No query could be created."
+msgstr "¡No se pudo crear ninguna consulta!"
+
+#: query.src#ERR_QRY_NOCRITERIA.errorbox.text
+msgid "No query could be created because no fields were selected."
+msgstr "¡No se pudo crear ninguna consulta ya que no se ha seleccionado ningún campo!"
+
+#: query.src#STR_DATASOURCE_DELETED.string.text
+msgid "The corresponding data source has been deleted. Therefore, data relevant to that data source cannot be saved."
+msgstr "Se ha eliminado la fuente de datos. No se pueden guardar datos correspondientes a ella."
+
+#: query.src#STR_QRY_COLUMN_NOT_FOUND.string.text
+msgid "The column '$name$' is unknown."
+msgstr "La columna '$name$' se desconoce."
+
+#: query.src#STR_QRY_JOIN_COLUMN_COMPARE.string.text
+msgid "Columns can only be compared using '='."
+msgstr "Las columnas sólo se pueden comparar con el signo de igual '='."
+
+#: query.src#STR_QRY_LIKE_LEFT_NO_COLUMN.string.text
+msgid "You must use a column name before 'LIKE'."
+msgstr "Debe usar un nombre de columna antes de 'COMO'."
+
+#: query.src#STR_QRY_CHECK_CASESENSITIVE.string.text
+msgid "The column could not be found. Please note that the database is case-sensitive."
+msgstr "No se encontró la columna. Note que la base de datos distingue entre mayúsculas y minúsculas."
+
+#: query.src#STR_QUERYDESIGN.string.text
+msgid " - %PRODUCTNAME Base: Query Design"
+msgstr " - %PRODUCTNAME Base: Diseño de consulta"
+
+#: query.src#STR_VIEWDESIGN.string.text
+msgid " - %PRODUCTNAME Base: View Design"
+msgstr " - %PRODUCTNAME Base: Diseño de vista"
+
+#. For $object$, one of the values of the RSC_QUERY_OBJECT_TYPE resource will be inserted.
+#: query.src#STR_QUERY_SAVEMODIFIED.string.text
+msgid ""
+"$object$ has been changed.\n"
+"Do you want to save the changes?"
+msgstr ""
+"$object$ ha sido cambiado.\n"
+"¿Desea guardar los cambios?"
+
+#. For $object$, one of the values of the RSC_QUERY_OBJECT_TYPE resource (except "SQL command", which doesn't make sense here) will be inserted.
+#: query.src#STR_ERROR_PARSING_STATEMENT.string.text
+msgid "$object$ is based on an SQL command which could not be parsed."
+msgstr "$object$ esta basado en un comando SQL que no podría ser analizado."
+
+#. For $object$, one of the values of the RSC_QUERY_OBJECT_TYPE resource (except "SQL command", which doesn't make sense here) will be inserted.
+#: query.src#STR_INFO_OPENING_IN_SQL_VIEW.string.text
+msgid "$object$ will be opened in SQL view."
+msgstr "El $object$ se abrirá en vista SQL."
+
+#: query.src#RSC_QUERY_OBJECT_TYPE.1.string.text
+msgid "The table view"
+msgstr "La vista de la tabla"
+
+#: query.src#RSC_QUERY_OBJECT_TYPE.2.string.text
+msgid "The query"
+msgstr "La consulta"
+
+#: query.src#RSC_QUERY_OBJECT_TYPE.3.string.text
+msgid "The SQL statement"
+msgstr "La sentencia SQL"
+
+#: query.src#STR_STATEMENT_WITHOUT_RESULT_SET.string.text
+msgid "The query does not create a result set, and thus cannot be part of another query."
+msgstr "La consulta no crea un conjunto de resultados, con lo que no puede ser parte de otra consulta."
+
+#: query.src#STR_NO_DATASOURCE_OR_CONNECTION.string.text
+msgid "Both the ActiveConnection and the DataSourceName parameter are missing or wrong - cannot initialize the query designer."
+msgstr "Tanto la ConexiónActiva como el NombredeDatosFuente son parámetros faltantes o incorrectos; no se puede iniciar el diseñador de consultas."
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.FL_JOIN.fixedline.text
+msgid "Options"
+msgstr "Opciones"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.FT_LISTBOXTITLE.fixedtext.text
+msgid "~Type"
+msgstr "~Tipo"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE.1.stringlist.text
+msgid "Inner join"
+msgstr "JOIN interno"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE.2.stringlist.text
+msgid "Left join"
+msgstr "JOIN izquierdo"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE.3.stringlist.text
+msgid "Right join"
+msgstr "JOIN derecho"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE.4.stringlist.text
+msgid "Full (outer) join"
+msgstr "JOIN (externo) completo"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE.5.stringlist.text
+msgid "Cross join"
+msgstr "JOIN cruzado"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.CB_NATURAL.checkbox.text
+msgid "Natural"
+msgstr "Natural"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_CONTROL.FL_INVOLVED_TABLES.fixedline.text
+msgid "Tables involved"
+msgstr "Tablas implicadas"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_CONTROL.FL_INVOLVED_FIELDS.fixedline.text
+msgid "Fields involved"
+msgstr "Campos implicados"
+
+#: querydlg.src#DLG_QRY_JOIN.modaldialog.text
+msgid "Join Properties"
+msgstr "Propiedades de unión"
+
+#: querydlg.src#STR_JOIN_TYPE_HINT.string.text
+msgid "Please note that some databases may not support this join type."
+msgstr "Tenga en cuenta que algunas bases de datos pueden ser incompatibles con este tipo de combinación."
+
+#: querydlg.src#STR_QUERY_INNER_JOIN.string.text
+msgid "Includes only records for which the contents of the related fields of both tables are identical."
+msgstr "Contiene solo los registros en los que los contenidos de los campos vinculados de ambas tablas con iguales."
+
+#: querydlg.src#STR_QUERY_LEFTRIGHT_JOIN.string.text
+msgid "Contains ALL records from table '%1' but only records from table '%2' where the values in the related fields are matching."
+msgstr "Contiene TODOS los registros de datos de '%1' y solo los registros de '%2' en los que los contenidos de los campos vinculados de ambas tablas son iguales."
+
+#: querydlg.src#STR_QUERY_FULL_JOIN.string.text
+msgid "Contains ALL records from '%1' and from '%2'."
+msgstr "Contiene TODOS los registros de datos de '%1' y de '%2'"
+
+#: querydlg.src#STR_QUERY_CROSS_JOIN.string.text
+msgid "Contains the cartesian product of ALL records from '%1' and from '%2'."
+msgstr "Contiene el producto cartesiano de todos los registros de '%1' y de '%2'."
+
+#: querydlg.src#STR_QUERY_NATURAL_JOIN.string.text
+msgid "Contains only one column for each pair of equally-named columns from '%1' and from '%2'."
+msgstr "Contiene solo una columna para cada par de columnas llamadas desde '%1' y desde '%2'."
diff --git a/source/es/dbaccess/source/ui/relationdesign.po b/source/es/dbaccess/source/ui/relationdesign.po
new file mode 100644
index 00000000000..4612bd1e8ec
--- /dev/null
+++ b/source/es/dbaccess/source/ui/relationdesign.po
@@ -0,0 +1,56 @@
+#. extracted from dbaccess/source/ui/relationdesign.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Frelationdesign.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-08-14 05:21+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: relation.src#STR_QUERY_REL_EDIT_RELATION.string.text
+msgid "This relation already exists. Do you want to edit it or create a new one?"
+msgstr "Ésta relación ya existe. Quiere editarla o crear una nueva?"
+
+#: relation.src#STR_QUERY_REL_EDIT.string.text
+msgid "Edit..."
+msgstr "Editar..."
+
+#: relation.src#STR_QUERY_REL_CREATE.string.text
+msgid "Create..."
+msgstr "Crear..."
+
+#: relation.src#STR_RELATIONDESIGN.string.text
+msgid " - %PRODUCTNAME Base: Relation design"
+msgstr " - %PRODUCTNAME Base: Diseño de relación"
+
+#: relation.src#STR_RELATIONDESIGN_NOT_AVAILABLE.string.text
+msgid "The database does not support relations."
+msgstr "La base de datos no apoya ninguna relación."
+
+#: relation.src#RELATION_DESIGN_SAVEMODIFIED.querybox.text
+msgid ""
+"The relation design has been changed.\n"
+"Do you want to save the changes?"
+msgstr ""
+"El diseño de relación ha sido modificado\n"
+"¿Desea guardar las modificaciones?"
+
+#: relation.src#STR_QUERY_REL_DELETE_WINDOW.string.text
+msgid "When you delete this table all corresponding relations will be deleted as well. Continue?"
+msgstr "Si elimina esta tabla se eliminarán también todas las relaciones correspondientes. ¿Continuar?"
+
+#: relation.src#STR_QUERY_REL_COULD_NOT_CREATE.string.text
+msgid ""
+"The database could not create the relation. Maybe foreign keys for this kind of table aren't supported.\n"
+"Please check your documentation of the database."
+msgstr ""
+"La base de datos no puede crear la relación. Quizá las claves externas no están soportadas.\n"
+"Por favor revise la documentación de la base de datos."
diff --git a/source/es/dbaccess/source/ui/tabledesign.po b/source/es/dbaccess/source/ui/tabledesign.po
new file mode 100644
index 00000000000..9aec48b7f28
--- /dev/null
+++ b/source/es/dbaccess/source/ui/tabledesign.po
@@ -0,0 +1,362 @@
+#. extracted from dbaccess/source/ui/tabledesign.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Ftabledesign.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-08-14 06:11+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: table.src#STR_TABLEDESIGN_DBFIELDTYPES.string.text
+msgid "Unknown;Text;Number;Date/Time;Date;Time;Yes/No;Currency;Memo;Counter;Image;Text (fix);Decimal;Binary (fix);Binary;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Object;Distinct;Structure;Field;BLOB;CLOB;REF;OTHER;Bit (fix)"
+msgstr "Desconocido;Texto;Número;Fecha/Hora;Fecha;Hora;Sí/No;Moneda;Nota;Contador;Imagen;Texto (fijo);Decimal;Binario(fijo);Binario;Entero grande;Doble precisión;Coma flotante;Real;Entero;Entero pequeño;Entero minúsculo;Valor nulo;Objeto;Distinto;Estructura;Campo;BLOB;CLOB;REF;OTHER (fijo)"
+
+#: table.src#STR_TABLEDESIGN_UNDO_PRIMKEY.string.text
+msgctxt "table.src#STR_TABLEDESIGN_UNDO_PRIMKEY.string.text"
+msgid "Insert/remove primary key"
+msgstr "Insertar/eliminar llave primaria"
+
+#: table.src#STR_VALUE_YES.string.text
+msgid "Yes"
+msgstr "Sí"
+
+#: table.src#STR_VALUE_NO.string.text
+msgid "No"
+msgstr "No"
+
+#: table.src#STR_VALUE_ASC.string.text
+msgid "Ascending"
+msgstr "Ascendente"
+
+#: table.src#STR_VALUE_DESC.string.text
+msgid "Descending"
+msgstr "Descendente"
+
+#: table.src#STR_VALUE_NONE.string.text
+msgid "<none>"
+msgstr "<ninguno>"
+
+#: table.src#STR_TAB_FIELD_NAME.string.text
+msgid "Field name"
+msgstr "Nombre del campo"
+
+#: table.src#STR_TAB_FIELD_COLUMN_NAME.string.text
+msgid "Field Name"
+msgstr "Nombre del campo"
+
+#: table.src#STR_TAB_FIELD_DATATYPE.string.text
+msgid "Field ~type"
+msgstr "~Tipo de campo"
+
+#: table.src#STR_TAB_FIELD_COLUMN_DATATYPE.string.text
+msgid "Field Type"
+msgstr "Tipo del campo"
+
+#: table.src#STR_TAB_FIELD_LENGTH.string.text
+msgid "Field length"
+msgstr "Longitud de campo"
+
+#: table.src#STR_TAB_HELP_TEXT.string.text
+msgid "Description"
+msgstr "Descripción"
+
+#: table.src#STR_COLUMN_DESCRIPTION.string.text
+msgid "Column Description"
+msgstr "Descripción de la columna"
+
+#: table.src#STR_TAB_FIELD_NULLABLE.string.text
+msgid "Input required"
+msgstr "Se requiere entrada"
+
+#: table.src#STR_FIELD_AUTOINCREMENT.string.text
+msgid "~AutoValue"
+msgstr "~Valor automático"
+
+#: table.src#STR_TAB_PROPERTIES.string.text
+msgid "Field Properties"
+msgstr "Propiedades del campo"
+
+#: table.src#STR_TABPAGE_GENERAL.string.text
+msgid "General"
+msgstr "General"
+
+#: table.src#STR_TAB_TABLE_DESCRIPTION.string.text
+msgid "Description:"
+msgstr "Descripción :"
+
+#: table.src#STR_TAB_TABLE_PROPERTIES.string.text
+msgid "Table properties"
+msgstr "Propiedades de la tabla"
+
+#: table.src#ERR_INVALID_LISTBOX_ENTRY.errorbox.text
+msgid "The text you entered is not a list element. "
+msgstr "El texto que introdujo no es un elemento de lista. "
+
+#: table.src#RID_TABLEDESIGNROWPOPUPMENU.SID_TABLEDESIGN_INSERTROWS.menuitem.text
+msgid "Insert Rows"
+msgstr "Insertar filas"
+
+#: table.src#RID_TABLEDESIGNROWPOPUPMENU.SID_TABLEDESIGN_TABED_PRIMARYKEY.menuitem.text
+msgid "Primary Key"
+msgstr "Llave primaria"
+
+#: table.src#STR_TABED_UNDO_CELLMODIFIED.string.text
+msgid "Modify cell"
+msgstr "Modificar celda"
+
+#: table.src#STR_TABED_UNDO_ROWDELETED.string.text
+msgid "Delete row"
+msgstr "Eliminar fila"
+
+#: table.src#STR_TABED_UNDO_TYPE_CHANGED.string.text
+msgid "Modify field type"
+msgstr "Tipo de campo modificado"
+
+#: table.src#STR_TABED_UNDO_ROWINSERTED.string.text
+msgid "Insert row"
+msgstr "Insertar fila"
+
+#: table.src#STR_TABED_UNDO_NEWROWINSERTED.string.text
+msgid "Insert new row"
+msgstr "Insertar una fila nueva"
+
+#: table.src#STR_TABED_UNDO_PRIMKEY.string.text
+msgctxt "table.src#STR_TABED_UNDO_PRIMKEY.string.text"
+msgid "Insert/remove primary key"
+msgstr "Insertar/eliminar llave primaria"
+
+#: table.src#STR_DEFAULT_VALUE.string.text
+msgid "~Default value"
+msgstr "Valor pre~determinado"
+
+#: table.src#STR_FIELD_REQUIRED.string.text
+msgid "~Entry required"
+msgstr "~Entrada requerida"
+
+#: table.src#STR_TEXT_LENGTH.string.text
+msgctxt "table.src#STR_TEXT_LENGTH.string.text"
+msgid "~Length"
+msgstr "~Longitud"
+
+#: table.src#STR_NUMERIC_TYPE.string.text
+msgid "~Type"
+msgstr "Tip~o"
+
+#: table.src#STR_LENGTH.string.text
+msgctxt "table.src#STR_LENGTH.string.text"
+msgid "~Length"
+msgstr "Ta~maño"
+
+#: table.src#STR_SCALE.string.text
+msgid "Decimal ~places"
+msgstr "~Decimales"
+
+#: table.src#STR_FORMAT.string.text
+msgid "Format example"
+msgstr "Ejemplo de formato"
+
+#: table.src#STR_HELP_BOOL_DEFAULT.string.text
+msgid ""
+"Select a value that is to appear in all new records as default.\n"
+"If the field is not to have a default value, select the empty string."
+msgstr ""
+"Elija el valor que deba aparecer como predeterminado en cada registro de datos que se\n"
+"inserte de nuevo. Elija la secuencia vacía si el campo no ha de contener tal valor predeterminado."
+
+#: table.src#STR_HELP_DEFAULT_VALUE.string.text
+msgid ""
+"Enter a default value for this field.\n"
+"\n"
+"When you later enter data in the table, this string will be used in each new record for the field selected. It should, therefore, correspond to the cell format that needs to be entered below."
+msgstr ""
+"Especifique aquí un valor predeterminado para el campo.\n"
+"\n"
+"Si posteriormente introduce datos en la tabla, en cada registro nuevo se usará esta cadena de carecteres para el campo actual. Por esta razón debe corresponder al formato de celda a introducir más abajo."
+
+#: table.src#STR_HELP_FIELD_REQUIRED.string.text
+msgid "Activate this option if this field cannot contain NULL values, i.e. the user must always enter data."
+msgstr "Active esta opción si no están permitidos valores null en este campo, es decir, si el usuario debe introducir los datos siempre."
+
+#: table.src#STR_HELP_TEXT_LENGTH.string.text
+msgid "Enter the maximum text length permitted."
+msgstr "Escriba la longitud máxima de texto permitida."
+
+#: table.src#STR_HELP_NUMERIC_TYPE.string.text
+msgid "Enter the number format."
+msgstr "Especifique aquí el formato numérico."
+
+#: table.src#STR_HELP_LENGTH.string.text
+msgid ""
+"Determine the length data can have in this field.\n"
+"\n"
+"If decimal fields, then the maximum length of the number to be entered, if binary fields, then the length of the data block.\n"
+"The value will be corrected accordingly when it exceeds the maximum for this database."
+msgstr ""
+"Especifique la longitud de los datos en este tipo de campo.\n"
+"\n"
+"Para campos decimales será la longitud máxima del número introducido; para campos binarios, la longitud del bloque de datos.\n"
+"Si el valor fuera mayor que el máximo permitido para esta base de datos, se corregirá correspondientemente."
+
+#: table.src#STR_HELP_SCALE.string.text
+msgid "Specify the number of decimal places permitted in this field."
+msgstr "Especifique el número de decimales que deban contener los números en este campo."
+
+#: table.src#STR_HELP_FORMAT_CODE.string.text
+msgid "This is where you see how the data would be displayed in the current format (use the button on the right to modify the format)."
+msgstr "Aquí puede ver cómo serían formateados los datos de la columna actual con el formato definido actualmente, que puede modificar con el botón que se encuentra al lado."
+
+#: table.src#STR_HELP_FORMAT_BUTTON.string.text
+msgid "This is where you determine the output format of the data."
+msgstr "Aquí puede determinar el formato de salida para los datos."
+
+#: table.src#STR_HELP_AUTOINCREMENT.string.text
+msgid ""
+"Choose if this field should contain AutoIncrement values.\n"
+"\n"
+"You can not enter data in fields of this type. An intrinsic value will be assigned to each new record automatically (resulting from the increment of the previous record)."
+msgstr ""
+"Defina si este campo debe contener valores de incremento automático.\n"
+"\n"
+"En este caso no podrá escribir datos directamente, sino que a cada nuevo registro de datos se le asignará automáticamente un valor propio (que resulta del incremento proveniente del registro anterior)."
+
+#: table.src#PB_FORMAT.pushbutton.text
+msgid "~..."
+msgstr "..."
+
+#: table.src#STR_TABLEDESIGN_DUPLICATE_NAME.string.text
+msgid "The table cannot be saved because column name \"$column$\" was assigned twice."
+msgstr "No se puede guardar la tabla porque el nombre de columna \"$column$\" ha sido asignado dos veces."
+
+#: table.src#STR_TBL_COLUMN_IS_KEYCOLUMN.string.text
+msgid "The column \"$column$\" belongs to the primary key. If the column is deleted, the primary key will also be deleted. Do you really want to continue?"
+msgstr "La columna \"$column$\" pertenece a la llave primaria. En caso de que la elimine, eliminará también la llave primaria. ¿Desea continuar?"
+
+#: table.src#STR_TBL_COLUMN_IS_KEYCOLUMN_TITLE.string.text
+msgid "Primary Key Affected"
+msgstr "Clave principal afectada"
+
+#: table.src#STR_COLUMN_NAME.string.text
+msgid "Column"
+msgstr "Columna"
+
+#: table.src#STR_QRY_CONTINUE.string.text
+msgid "Continue anyway?"
+msgstr "¿Continuar de todos modos?"
+
+#: table.src#STR_STAT_WARNING.string.text
+msgid "Warning!"
+msgstr "¡Advertencia!"
+
+#: table.src#TABLE_DESIGN_SAVEMODIFIED.querybox.text
+msgid ""
+"The table has been changed.\n"
+"Do you want to save the changes?"
+msgstr ""
+"Se ha modificado esta tabla.\n"
+"¿Desea guardar los cambios?"
+
+#: table.src#TABLE_QUERY_CONNECTION_LOST.querybox.text
+msgid ""
+"The connection to the database was lost! The table design can only be used with limited functionality without a connection.\n"
+"Reconnect?"
+msgstr ""
+"¡Se ha cancelado la conexión a la base de datos! Sin ella, el diseño de tabla solo se puede usar de forma limitada.\n"
+"¿Desea reanudar la conexión?"
+
+#: table.src#STR_TABLEDESIGN_CONNECTION_MISSING.string.text
+msgid "The table could not be saved due to problems connecting to the database."
+msgstr "No ha sido posible guardar la tabla porque no se pudo efectuar una conexión a la base de datos."
+
+#: table.src#STR_TABLEDESIGN_DATASOURCE_DELETED.string.text
+msgid "The table filter could not be adjusted because the data source has been deleted."
+msgstr "No se pudo ajustar el filtro de tablas porque se eliminó la fuente de datos."
+
+#: table.src#QUERY_SAVE_TABLE_EDIT_INDEXES.querybox.text
+msgid ""
+"Before you can edit the indexes of a table, you have to save it.\n"
+"Do you want to save the changes now?"
+msgstr ""
+"Antes de modificar los índices de una tabla deberá guardarla.\n"
+"¿Desea guardar ahora las modificaciones en la estructura de la tabla?"
+
+#: table.src#STR_TABLEDESIGN_NO_PRIM_KEY_HEAD.string.text
+msgid "No primary key"
+msgstr "Ninguna llave primaria"
+
+#: table.src#STR_TABLEDESIGN_NO_PRIM_KEY.string.text
+msgid ""
+"A unique index or primary key is required for data record identification in this database.\n"
+"You can only enter data into this table when one of these two structural conditions has been met.\n"
+"\n"
+"Should a primary key be created now?"
+msgstr ""
+"Para la identificación de registros en esta base de datos se necesita un índice unívoco o una llave primaria.\n"
+"Solo cuando haya cumplido una de estas condiciones podrá introducir datos en la tabla.\n"
+"\n"
+"¿Desea crear ahora una llave primaria?"
+
+#: table.src#STR_TABLEDESIGN_TITLE.string.text
+msgid " - %PRODUCTNAME Base: Table Design"
+msgstr " - %PRODUCTNAME Base: Diseño de tabla"
+
+#: table.src#STR_TABLEDESIGN_ALTER_ERROR.string.text
+msgid "The column \"$column$\" could not be changed. Should the column instead be deleted and the new format appended?"
+msgstr "No se pudo modificar la columna \"$column$\". ¿Prefiere eliminarla y aplicar el nuevo formato?"
+
+#: table.src#STR_TABLEDESIGN_SAVE_ERROR.string.text
+msgid "Error while saving the table design"
+msgstr "Error al guardar el diseño de tabla"
+
+#: table.src#STR_TABLEDESIGN_COULD_NOT_DROP_COL.string.text
+msgid "The column $column$ could not be deleted."
+msgstr "No se puede eliminar la columna $column$."
+
+#: table.src#TABLE_DESIGN_ALL_ROWS_DELETED.querybox.text
+msgid "You are trying to delete all the columns in the table. A table cannot exist without columns. Should the table be deleted from the database? If not, the table will remain unchanged."
+msgstr "Está intentando eliminar todas las columnas en la tabla. Una tabla no puede existir sin columnas. ¿Quiere eliminar la tabla de la base de datos? Si no, la tabla permanecerá inalterada."
+
+#: table.src#STR_AUTOINCREMENT_VALUE.string.text
+msgid "A~uto-increment statement"
+msgstr "Expresión incremento a~utomático"
+
+#: table.src#STR_HELP_AUTOINCREMENT_VALUE.string.text
+msgid ""
+"Enter an SQL statement for the auto-increment field.\n"
+"\n"
+"This statement will be directly transferred to the database when the table is created."
+msgstr ""
+"Introduzca una expresión SQL para el campo de incremento automático.\n"
+"\n"
+"Esta expresión se importará directamente a la base de datos cuando se cree la tabla."
+
+#: table.src#STR_NO_TYPE_INFO_AVAILABLE.string.text
+msgid ""
+"No type information could be retrieved from the database.\n"
+"The table design mode is not available for this data source."
+msgstr ""
+"No se ha podido extraer información, relativa al tipo, de la base de datos.\n"
+"El modo diseño de tabla no está disponible para este origen de datos."
+
+#: table.src#STR_CHANGE_COLUMN_NAME.string.text
+msgid "change field name"
+msgstr "cambiar nombre del campo"
+
+#: table.src#STR_CHANGE_COLUMN_TYPE.string.text
+msgid "change field type"
+msgstr "cambiar tipo del campo"
+
+#: table.src#STR_CHANGE_COLUMN_DESCRIPTION.string.text
+msgid "change field description"
+msgstr "cambiar descripción del campo"
+
+#: table.src#STR_CHANGE_COLUMN_ATTRIBUTE.string.text
+msgid "change field attribute"
+msgstr "cambiar atributo del campo"
diff --git a/source/es/dbaccess/source/ui/uno.po b/source/es/dbaccess/source/ui/uno.po
new file mode 100644
index 00000000000..7f7f085611d
--- /dev/null
+++ b/source/es/dbaccess/source/ui/uno.po
@@ -0,0 +1,68 @@
+#. extracted from dbaccess/source/ui/uno.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Funo.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2011-04-05 20:01+0200\n"
+"Last-Translator: Alexandro <jza@openoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dbinteraction.src#STR_REMEMBERPASSWORD_SESSION.string.text
+msgid "~Remember password until end of session"
+msgstr "~Recordar la contraseña hasta el fin de la sesión"
+
+#: dbinteraction.src#STR_REMEMBERPASSWORD_PERSISTENT.string.text
+msgid "~Remember password"
+msgstr "~Guardar contraseña"
+
+#: copytablewizard.src#STR_CTW_NO_VIEWS_SUPPORT.string.text
+msgid "The destination database does not support views."
+msgstr "El base de datos de destino no apoyo vistas."
+
+#: copytablewizard.src#STR_CTW_NO_PRIMARY_KEY_SUPPORT.string.text
+msgid "The destination database does not support primary keys."
+msgstr "El base de datos de destino no apoyo claves primarios."
+
+#: copytablewizard.src#STR_CTW_INVALID_DATA_ACCESS_DESCRIPTOR.string.text
+msgid "no data access descriptor found, or no data access descriptor able to provide all necessary information"
+msgstr "ningún descriptor de acceso a datos encontrado, o ningún descriptor capaz de proveer la información necesario."
+
+#: copytablewizard.src#STR_CTW_ONLY_TABLES_AND_QUERIES_SUPPORT.string.text
+msgid "Only tables and queries are supported at the moment."
+msgstr "Solamente tablas y preguntas apoyado en este momento."
+
+#: copytablewizard.src#STR_CTW_COPY_SOURCE_NEEDS_BOOKMARKS.string.text
+msgid "The copy source's result set must support bookmarks."
+msgstr "El conjunto de resultados de la fuente de copia debe soportar marcadores."
+
+#: copytablewizard.src#STR_CTW_UNSUPPORTED_COLUMN_TYPE.string.text
+msgid "Unsupported source column type ($type$) at column position $pos$."
+msgstr "Tipo de columna fuente ($type$) no soportadaen la columna $pos$."
+
+#: copytablewizard.src#STR_CTW_ILLEGAL_PARAMETER_COUNT.string.text
+msgid "Illegal number of initialization parameters."
+msgstr "Número ilegal de los parametros de inicialización."
+
+#: copytablewizard.src#STR_CTW_ERROR_DURING_INITIALIZATION.string.text
+msgid "An error occurred during initialization."
+msgstr "Ocurrió un error durante la instalación."
+
+#: copytablewizard.src#STR_CTW_ERROR_UNSUPPORTED_SETTING.string.text
+msgid "Unsupported setting in the copy source descriptor: $name$."
+msgstr "No se admite la opción $name$ en el descriptor de origen para copiado."
+
+#: copytablewizard.src#STR_CTW_ERROR_NO_QUERY.string.text
+msgid "To copy a query, your connection must be able to provide queries."
+msgstr "Para copiar una consulta, su conexión debe ser capaz de proporcionar consultas."
+
+#: copytablewizard.src#STR_CTW_ERROR_INVALID_INTERACTIONHANDLER.string.text
+msgid "The given interaction handler is invalid."
+msgstr "El manejador de interacción proporcionado es inválido."
diff --git a/source/es/desktop/source/app.po b/source/es/desktop/source/app.po
new file mode 100644
index 00000000000..8eb97449cf2
--- /dev/null
+++ b/source/es/desktop/source/app.po
@@ -0,0 +1,176 @@
+#. extracted from desktop/source/app.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fapp.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-08-14 05:23+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: desktop.src#STR_RECOVER_QUERY.string.text
+msgid "Should the file \"$1\" be restored?"
+msgstr "¿Quiere restaurar el archivo «$1»"
+
+#: desktop.src#STR_RECOVER_TITLE.string.text
+msgid "File Recovery"
+msgstr "Recuperación de archivos"
+
+#: desktop.src#STR_RECOVER_PREPARED.warningbox.text
+msgid ""
+"An unrecoverable error has occurred.\n"
+"\n"
+"All modified files have been saved and can\n"
+"probably be recovered at program restart."
+msgstr ""
+"Ocurrió un error no solucionable.\n"
+"\n"
+"Todos los archivos modificados han sido guardados y\n"
+"probablemente se recuperen al reiniciar el programa."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_CANNOT_START.string.text
+msgid "The application cannot be started. "
+msgstr "No se puede iniciar la aplicación. "
+
+#: desktop.src#STR_BOOTSTRAP_ERR_DIR_MISSING.string.text
+msgid "The configuration directory \"$1\" could not be found."
+msgstr "No se encontró el directorio de configuración «$1»."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_PATH_INVALID.string.text
+msgid "The installation path is invalid."
+msgstr "La ruta de instalación no es válida."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_NO_PATH.string.text
+msgid "The installation path is not available."
+msgstr "La ruta de instalación no está disponible."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_INTERNAL.string.text
+msgid "An internal error occurred."
+msgstr "Ha ocurrido un error interno."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_FILE_CORRUPT.string.text
+msgid "The configuration file \"$1\" is corrupt."
+msgstr "El archivo de configuración «$1» está dañado."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_FILE_MISSING.string.text
+msgid "The configuration file \"$1\" was not found."
+msgstr "No se encontró el archivo de configuración «$1»."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_NO_SUPPORT.string.text
+msgid "The configuration file \"$1\" does not support the current version."
+msgstr "El archivo de configuración «$1» no es compatible con la versión actual."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_LANGUAGE_MISSING.string.text
+msgid "The user interface language cannot be determined."
+msgstr "No se puede determinar el idioma de la interfaz de usuario."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_NO_SERVICE.string.text
+msgid "The component manager is not available."
+msgstr "El gestor de componentes no está disponible."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_NO_CFG_SERVICE.string.text
+msgid "The configuration service is not available."
+msgstr "El servicio de configuración no está disponible."
+
+#: desktop.src#STR_ASK_START_SETUP_MANUALLY.string.text
+msgid "Start the setup application to repair the installation from the CD or the folder containing the installation packages."
+msgstr "Para reparar la instalación, inicie el instalador desde el CD o la carpeta con los paquetes de instalación."
+
+#: desktop.src#STR_CONFIG_ERR_SETTINGS_INCOMPLETE.string.text
+msgid "The startup settings for accessing the central configuration are incomplete. "
+msgstr "La configuración de inicio para acceder a la configuración central no está completa. "
+
+#: desktop.src#STR_CONFIG_ERR_CANNOT_CONNECT.string.text
+msgid "A connection to the central configuration could not be established. "
+msgstr "No se ha podido establecer ninguna conexión con la configuración central. "
+
+#: desktop.src#STR_CONFIG_ERR_RIGHTS_MISSING.string.text
+msgid "You cannot access the central configuration because of missing access rights. "
+msgstr "No puede acceder a la configuración central por falta de derechos de acceso. "
+
+#: desktop.src#STR_CONFIG_ERR_ACCESS_GENERAL.string.text
+msgid "A general error occurred while accessing your central configuration. "
+msgstr "Se produjo un error general mientras se accedía a la configuración central. "
+
+#: desktop.src#STR_CONFIG_ERR_NO_WRITE_ACCESS.string.text
+msgid "The changes to your personal settings cannot be stored centrally because of missing access rights. "
+msgstr "Las modificaciones realizadas en la configuración personal no se pueden guardar de manera central por falta de derechos de acceso. "
+
+#: desktop.src#STR_BOOTSTRAP_ERR_CFG_DATAACCESS.string.text
+msgid ""
+"%PRODUCTNAME cannot be started due to an error in accessing the %PRODUCTNAME configuration data.\n"
+"\n"
+"Please contact your system administrator."
+msgstr ""
+"%PRODUCTNAME no se puede iniciar debido a un error producido al acceder a los datos de la configuración de %PRODUCTNAME.\n"
+"\n"
+"Contacte su administrador de sistema."
+
+#: desktop.src#STR_INTERNAL_ERRMSG.string.text
+msgid "The following internal error has occurred: "
+msgstr "Se ha producido el error interno siguiente: "
+
+#: desktop.src#QBX_USERDATALOCKED.querybox.text
+msgid ""
+"Either another instance of %PRODUCTNAME is accessing your personal settings or your personal settings are locked.\n"
+"Simultaneous access can lead to inconsistencies in your personal settings. Before continuing, you should make sure user '$u' closes %PRODUCTNAME on host '$h'.\n"
+"\n"
+"Do you really want to continue?"
+msgstr ""
+"Otra instancia de %PRODUCTNAME está accediendo a su configuración personal o la configuración personal está bloqueada.\n"
+"Un acceso simultáneo puede provocar incoherencias en la configuración personal. Antes de continuar asegúrese de que el usuario '$u' cierre %PRODUCTNAME en el ordenador '$h'.\n"
+"\n"
+"¿Realmente quiere continuar?"
+
+#: desktop.src#STR_TITLE_USERDATALOCKED.string.text
+msgctxt "desktop.src#STR_TITLE_USERDATALOCKED.string.text"
+msgid "%PRODUCTNAME %PRODUCTVERSION"
+msgstr "%PRODUCTNAME %PRODUCTVERSION"
+
+#: desktop.src#DLG_CMDLINEHELP.modaldialog.text
+msgid "Help Message..."
+msgstr "Mensaje de ayuda..."
+
+#: desktop.src#EBX_ERR_PRINTDISABLED.errorbox.text
+msgid "Printing is disabled. No documents can be printed."
+msgstr "La impresión está desactivada. No se pueden imprimir documentos."
+
+#: desktop.src#INFOBOX_EXPIRED.infobox.text
+msgid ""
+"This Evaluation Version has expired. To find out more about %PRODUCTNAME,\n"
+"visit http://www.oracle.com/us/products/applications/open-office."
+msgstr ""
+"Esta versión de evaluación ha caducado. Para saber más sobre %PRODUCTNAME,\n"
+"diríjase a http://www.oracle.com/us/products/applications/open-office."
+
+#: desktop.src#STR_TITLE_EXPIRED.string.text
+msgctxt "desktop.src#STR_TITLE_EXPIRED.string.text"
+msgid "%PRODUCTNAME %PRODUCTVERSION"
+msgstr "%PRODUCTNAME %PRODUCTVERSION"
+
+#: desktop.src#STR_BOOTSTRAP_ERR_NO_PATHSET_SERVICE.string.text
+msgid "The path manager is not available.\n"
+msgstr "El administrador de rutas no está disponible.\n"
+
+#: desktop.src#STR_BOOSTRAP_ERR_NOTENOUGHDISKSPACE.string.text
+msgid ""
+"%PRODUCTNAME user installation could not be completed due to insufficient free disk space. Please free more disc space at the following location and restart %PRODUCTNAME:\n"
+"\n"
+msgstr ""
+"No se ha podido completar la instalación del usuario de %PRODUCTNAME debido a que no hay suficiente espacio libre en el disco. Libere más espacio en el disco en la ubicación que se indica y reinicie %PRODUCTNAME:\n"
+"\n"
+
+#: desktop.src#STR_BOOSTRAP_ERR_NOACCESSRIGHTS.string.text
+msgid ""
+"%PRODUCTNAME user installation could not be processed due to missing access rights. Please make sure that you have sufficient access rights for the following location and restart %PRODUCTNAME:\n"
+"\n"
+msgstr ""
+"No se ha podido procesar la instalación del usuario de %PRODUCTNAME debido a que faltan derechos de acceso. Asegúrese de que tenga suficientes derechos de acceso para la ubicación que se indica y reinicie %PRODUCTNAME:\n"
+"\n"
diff --git a/source/es/desktop/source/deployment/gui.po b/source/es/desktop/source/deployment/gui.po
new file mode 100644
index 00000000000..60253febed3
--- /dev/null
+++ b/source/es/desktop/source/deployment/gui.po
@@ -0,0 +1,525 @@
+#. extracted from desktop/source/deployment/gui.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fgui.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-11 22:56+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dp_gui_dialog.src#RID_STR_ADD_PACKAGES.string.text
+msgid "Add Extension(s)"
+msgstr "Añadir extensión(es)"
+
+#: dp_gui_dialog.src#RID_CTX_ITEM_REMOVE.string.text
+msgid "~Remove"
+msgstr "~Eliminar"
+
+#: dp_gui_dialog.src#RID_CTX_ITEM_ENABLE.string.text
+msgid "~Enable"
+msgstr "~Activar"
+
+#: dp_gui_dialog.src#RID_CTX_ITEM_DISABLE.string.text
+msgid "~Disable"
+msgstr "~Desactivar"
+
+#: dp_gui_dialog.src#RID_CTX_ITEM_CHECK_UPDATE.string.text
+msgid "~Update..."
+msgstr "~Actualizar..."
+
+#: dp_gui_dialog.src#RID_CTX_ITEM_OPTIONS.string.text
+msgid "~Options..."
+msgstr "~Opciones..."
+
+#: dp_gui_dialog.src#RID_STR_ADDING_PACKAGES.string.text
+msgctxt "dp_gui_dialog.src#RID_STR_ADDING_PACKAGES.string.text"
+msgid "Adding %EXTENSION_NAME"
+msgstr "Añadiendo %EXTENSION_NAME"
+
+#: dp_gui_dialog.src#RID_STR_REMOVING_PACKAGES.string.text
+msgid "Removing %EXTENSION_NAME"
+msgstr "Eliminando %EXTENSION_NAME"
+
+#: dp_gui_dialog.src#RID_STR_ENABLING_PACKAGES.string.text
+msgid "Enabling %EXTENSION_NAME"
+msgstr "Activando %EXTENSION_NAME"
+
+#: dp_gui_dialog.src#RID_STR_DISABLING_PACKAGES.string.text
+msgid "Disabling %EXTENSION_NAME"
+msgstr "Desactivando %EXTENSION_NAME"
+
+#: dp_gui_dialog.src#RID_STR_ACCEPT_LICENSE.string.text
+msgid "Accept license for %EXTENSION_NAME"
+msgstr "Aceptar la licencia para %EXTENSION_NAME"
+
+#: dp_gui_dialog.src#RID_STR_INSTALL_FOR_ALL.string.text
+msgid "~For all users"
+msgstr "~Para todos los usuarios"
+
+#: dp_gui_dialog.src#RID_STR_INSTALL_FOR_ME.string.text
+msgid "~Only for me"
+msgstr "~Solamente para mí"
+
+#: dp_gui_dialog.src#RID_STR_ERROR_UNKNOWN_STATUS.string.text
+msgid "Error: The status of this extension is unknown"
+msgstr "Error: El estado de esta extensión es desconocido"
+
+#: dp_gui_dialog.src#RID_STR_CLOSE_BTN.string.text
+msgctxt "dp_gui_dialog.src#RID_STR_CLOSE_BTN.string.text"
+msgid "Close"
+msgstr "Cerrar"
+
+#: dp_gui_dialog.src#RID_STR_EXIT_BTN.string.text
+msgid "Quit"
+msgstr "Salir"
+
+#: dp_gui_dialog.src#RID_STR_NO_ADMIN_PRIVILEGE.string.text
+msgid ""
+"%PRODUCTNAME has been updated to a new version. Some shared %PRODUCTNAME extensions are not compatible with this version and need to be updated before %PRODUCTNAME can be started.\n"
+"\n"
+"Updating of shared extension requires administrator privileges. Contact your system administrator to update the following shared extensions:"
+msgstr ""
+"%PRODUCTNAME se ha actualizado a una versión más reciente. Algunas extensiones compartidas de %PRODUCTNAME no son compatibles con esta versión y deben actualizarse antes de iniciar %PRODUCTNAME.\n"
+"\n"
+"Se necesitan privilegios administrativos para actualizar las extensiones compartidas. Contacte a su administrador de sistemas para actualizar las siguientes extensiones compartidas"
+
+#: dp_gui_dialog.src#RID_STR_ERROR_MISSING_DEPENDENCIES.string.text
+msgid "The extension cannot be enabled as the following system dependencies are not fulfilled:"
+msgstr "La extensión no se puede activar porque las siguientes dependencias del sistema no se cumplen:"
+
+#: dp_gui_dialog.src#RID_STR_ERROR_MISSING_LICENSE.string.text
+msgid "This extension is disabled because you haven't accepted the license yet.\n"
+msgstr "Esta extensión está desactivada porque aún no ha aceptado la licencia.\n"
+
+#: dp_gui_dialog.src#RID_STR_SHOW_LICENSE_CMD.string.text
+msgid "Show license"
+msgstr "Mostrar la licencia"
+
+#: dp_gui_dialog.src#RID_DLG_LICENSE.FT_LICENSE_HEADER.fixedtext.text
+msgid "Please follow these steps to proceed with the installation of the extension:"
+msgstr "Siga los pasos que se indican a continuación para proseguir con el proceso de instalación de la extensión:"
+
+#: dp_gui_dialog.src#RID_DLG_LICENSE.FT_LICENSE_BODY_1.fixedtext.text
+msgid "1."
+msgstr "1."
+
+#: dp_gui_dialog.src#RID_DLG_LICENSE.FT_LICENSE_BODY_1_TXT.fixedtext.text
+msgid "Read the complete License Agreement. Use the scroll bar or the \\'Scroll Down\\' button in this dialog to view the entire license text."
+msgstr "Lea el contrato de licencia en su totalidad. Mediante la barra desplazamiento o el botón \\'Bajar\\', lea todo el texto de la licencia."
+
+#: dp_gui_dialog.src#RID_DLG_LICENSE.FT_LICENSE_BODY_2.fixedtext.text
+msgid "2."
+msgstr "2."
+
+#: dp_gui_dialog.src#RID_DLG_LICENSE.FT_LICENSE_BODY_2_TXT.fixedtext.text
+msgid "Accept the License Agreement for the extension by pressing the \\'Accept\\' button."
+msgstr "Acepte el contrato de licencia de la extensión. Para ello, pulse el botón \\'Aceptar\\'."
+
+#: dp_gui_dialog.src#RID_DLG_LICENSE.PB_LICENSE_DOWN.pushbutton.text
+msgid "~Scroll Down"
+msgstr "~Bajar"
+
+#: dp_gui_dialog.src#RID_DLG_LICENSE.BTN_LICENSE_ACCEPT.okbutton.text
+msgid "Accept"
+msgstr "Aceptar"
+
+#: dp_gui_dialog.src#RID_DLG_LICENSE.BTN_LICENSE_DECLINE.cancelbutton.text
+msgid "Decline"
+msgstr "Rechazar"
+
+#: dp_gui_dialog.src#RID_DLG_LICENSE.modaldialog.text
+msgctxt "dp_gui_dialog.src#RID_DLG_LICENSE.modaldialog.text"
+msgid "Extension Software License Agreement"
+msgstr "Acuerdo de licencia de software para la extensión"
+
+#: dp_gui_dialog.src#RID_DLG_SHOW_LICENSE.RID_EM_BTN_CLOSE.okbutton.text
+msgctxt "dp_gui_dialog.src#RID_DLG_SHOW_LICENSE.RID_EM_BTN_CLOSE.okbutton.text"
+msgid "Close"
+msgstr "Cerrar"
+
+#: dp_gui_dialog.src#RID_DLG_SHOW_LICENSE.modaldialog.text
+msgctxt "dp_gui_dialog.src#RID_DLG_SHOW_LICENSE.modaldialog.text"
+msgid "Extension Software License Agreement"
+msgstr "Acuerdo de licencia de software para la extensión"
+
+#: dp_gui_dialog.src#RID_WARNINGBOX_INSTALL_EXTENSION.warningbox.text
+msgid ""
+"You are about to install the extension \\'%NAME\\'.\n"
+"Click \\'OK\\' to proceed with the installation.\n"
+"Click \\'Cancel\\' to stop the installation."
+msgstr ""
+"Está a punto de instalar la extensión «%NAME».\n"
+"Pulse «Aceptar» para proceder con la instalación.\n"
+"Pulse «Cancelar» para cancelar la instalación."
+
+#: dp_gui_dialog.src#RID_WARNINGBOX_REMOVE_EXTENSION.warningbox.text
+msgid ""
+"You are about to remove the extension \\'%NAME\\'.\n"
+"Click \\'OK\\' to remove the extension.\n"
+"Click \\'Cancel\\' to stop removing the extension."
+msgstr ""
+"Está a punto de eliminar la extensión «%NAME».\n"
+"Pulse «Aceptar» para eliminar la extensión.\n"
+"Pulse «Cancelar» para detener la eliminación."
+
+#: dp_gui_dialog.src#RID_WARNINGBOX_REMOVE_SHARED_EXTENSION.warningbox.text
+msgid ""
+"Make sure that no further users are working with the same %PRODUCTNAME, when changing shared extensions in a multi user environment.\n"
+"Click \\'OK\\' to remove the extension.\n"
+"Click \\'Cancel\\' to stop removing the extension."
+msgstr ""
+"Asegúrese que no hay otros usuarios trabajando con el mismo %PRODUCTNAME, cuando cambie extensiones compartidas en un entorno multiusuario.\n"
+"Pulse «Aceptar» para eliminar la extensión.\n"
+"Pulse «Cancelar» para detener la eliminación."
+
+#: dp_gui_dialog.src#RID_WARNINGBOX_ENABLE_SHARED_EXTENSION.warningbox.text
+msgid ""
+"Make sure that no further users are working with the same %PRODUCTNAME, when changing shared extensions in a multi user environment.\n"
+"Click \\'OK\\' to enable the extension.\n"
+"Click \\'Cancel\\' to stop enabling the extension."
+msgstr ""
+"Asegúrese que no hay otros usuarios trabajando con el mismo %PRODUCTNAME, cuando cambie extensiones compartidas en un entorno multiusuario.\n"
+"Pulse «Aceptar» para activar la extensión.\n"
+"Pulse «Cancelar» para detener la activación."
+
+#: dp_gui_dialog.src#RID_WARNINGBOX_DISABLE_SHARED_EXTENSION.warningbox.text
+msgid ""
+"Make sure that no further users are working with the same %PRODUCTNAME, when changing shared extensions in a multi user environment.\n"
+"Click \\'OK\\' to disable the extension.\n"
+"Click \\'Cancel\\' to stop disabling the extension."
+msgstr ""
+"Asegúrese que no hay otros usuarios trabajando con el mismo %PRODUCTNAME, cuando cambie extensiones compartidas en un entorno multiusuario.\n"
+"Pulse «Aceptar» para desactivar la extensión.\n"
+"Pulse «Cancelar» para detener la desactivación."
+
+#: dp_gui_dialog.src#RID_STR_UNSUPPORTED_PLATFORM.string.text
+msgid "The extension \\'%Name\\' does not work on this computer."
+msgstr "La extensión «%Name» no funciona en este equipo."
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_CHECKING.fixedtext.text
+msgid "Checking..."
+msgstr "Buscando..."
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_UPDATE.fixedtext.text
+msgid "~Available extension updates"
+msgstr "~Actualizaciones de extensiones disponibles"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_ALL.checkbox.text
+msgid "~Show all updates"
+msgstr "~Mostrar todas las actualizaciones"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_DESCRIPTION.fixedline.text
+msgid "Description"
+msgstr "Descripción"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_PUBLISHER_LABEL.fixedtext.text
+msgid "Publisher:"
+msgstr "Editor:"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_RELEASENOTES_LABEL.fixedtext.text
+msgid "What is new:"
+msgstr "Qué hay de nuevo:"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_RELEASENOTES_LINK.fixedtext.text
+msgid "Release Notes"
+msgstr "Notas de publicación"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_OK.pushbutton.text
+msgid "~Install"
+msgstr "~Instalar"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_CLOSE.pushbutton.text
+msgctxt "dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_CLOSE.pushbutton.text"
+msgid "Close"
+msgstr "Cerrar"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_ERROR.string.text
+msgid "Error"
+msgstr "Error"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_NONE.string.text
+msgid "No new updates are available."
+msgstr "No hay actualizaciones nuevas disponibles."
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_NOINSTALLABLE.string.text
+msgid "No installable updates are available. To see ignored or disabled updates, mark the check box 'Show all updates'."
+msgstr "No hay actualizaciones nuevas disponibles que se puedan instalar. Para ver las actualizaciones que se han ignorado o desactivado, marque la casilla «Mostrar todas las actualizaciones»."
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_FAILURE.string.text
+msgid "An error occurred:"
+msgstr "Ocurrió un error:"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_UNKNOWNERROR.string.text
+msgid "Unknown error."
+msgstr "Error desconocido."
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_NODESCRIPTION.string.text
+msgid "No more details are available for this update."
+msgstr "No hay más detalles disponibles para esta actualización."
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_NOINSTALL.string.text
+msgid "The extension cannot be updated because:"
+msgstr "La extensión no se puede instalar debido a:"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_NODEPENDENCY.string.text
+msgid "Required %PRODUCTNAME version doesn't match:"
+msgstr "La versión requerida de %PRODUCTNAME no es la indicada:"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_NODEPENDENCY_CUR_VER.string.text
+msgid "You have %PRODUCTNAME %VERSION"
+msgstr "Tiene instalado %PRODUCTNAME %VERSION"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_BROWSERBASED.string.text
+msgid "browser based update"
+msgstr "actualización desde en el navegador"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_VERSION.string.text
+msgid "Version"
+msgstr "Versión"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_IGNORE.string.text
+msgid "Ignore this Update"
+msgstr "Ignorar esta actualización"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_IGNORE_ALL.string.text
+msgid "Ignore all Updates"
+msgstr "Ignorar todas las actualizaciones"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_ENABLE.string.text
+msgid "Enable Updates"
+msgstr "Activar las actualizaciones"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_IGNORED_UPDATE.string.text
+msgid "This update will be ignored.\n"
+msgstr "Se ignorará esta actualización.\n"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.modaldialog.text
+msgid "Extension Update"
+msgstr "Actualización de extensión"
+
+#: dp_gui_updatedialog.src#RID_WARNINGBOX_UPDATE_SHARED_EXTENSION.warningbox.text
+msgid ""
+"Make sure that no further users are working with the same %PRODUCTNAME, when changing shared extensions in a multi user environment.\n"
+"Click \\'OK\\' to update the extensions.\n"
+"Click \\'Cancel\\' to stop updating the extensions."
+msgstr ""
+"Asegúrese que no hay otros usuarios trabajando con el mismo %PRODUCTNAME, cuando cambie extensiones compartidas en un entorno multiusuario\n"
+"Clic \\'Aceptar\\' para actualizar las extensiones.\n"
+"Clic \\'Cancelar\\' para detener la actualización de las extensiones."
+
+#: dp_gui_versionboxes.src#RID_WARNINGBOX_VERSION_LESS.warningbox.text
+msgid ""
+"You are about to install version $NEW of the extension \\'$NAME\\'.\n"
+"The newer version $DEPLOYED is already installed.\n"
+"Click \\'OK\\' to replace the installed extension.\n"
+"Click \\'Cancel\\' to stop the installation."
+msgstr ""
+"Está a punto de instalar la versión $NEW de la extensión «$NAME».\n"
+"La versión $DEPLOYED más reciente ya está instalada.\n"
+"Pulse «Aceptar» para reemplazar la extensión instalada.\n"
+"Pulse «Cancelar» para detener la instalación."
+
+#: dp_gui_versionboxes.src#RID_STR_WARNINGBOX_VERSION_LESS_DIFFERENT_NAMES.string.text
+msgid ""
+"You are about to install version $NEW of the extension \\'$NAME\\'.\n"
+"The newer version $DEPLOYED, named \\'$OLDNAME\\', is already installed.\n"
+"Click \\'OK\\' to replace the installed extension.\n"
+"Click \\'Cancel\\' to stop the installation."
+msgstr ""
+"Está a punto de instalar la versión $NEW de la extensión «$NAME».\n"
+"La versión $DEPLOYED más reciente ya está instalada (llamada «$OLDNAME»).\n"
+"Pulse «Aceptar» para reemplazar la extensión instalada.\n"
+"Pulse «Cancelar» para detener la instalación."
+
+#: dp_gui_versionboxes.src#RID_WARNINGBOX_VERSION_EQUAL.warningbox.text
+msgid ""
+"You are about to install version $NEW of the extension \\'$NAME\\'.\n"
+"That version is already installed.\n"
+"Click \\'OK\\' to replace the installed extension.\n"
+"Click \\'Cancel\\' to stop the installation."
+msgstr ""
+"Está a punto de instalar la versión $NEW de la extensión «$NAME».\n"
+"Esa versión ya está instalada.\n"
+"Pulse «Aceptar» para reemplazar la extensión instalada.\n"
+"Pulse «Cancelar» para detener la instalación."
+
+#: dp_gui_versionboxes.src#RID_STR_WARNINGBOX_VERSION_EQUAL_DIFFERENT_NAMES.string.text
+msgid ""
+"You are about to install version $NEW of the extension \\'$NAME\\'.\n"
+"That version, named \\'$OLDNAME\\', is already installed.\n"
+"Click \\'OK\\' to replace the installed extension.\n"
+"Click \\'Cancel\\' to stop the installation."
+msgstr ""
+"Está a punto de instalar la versión $NEW de la extensión «$NAME».\n"
+"Esa versión, llamada «$OLDNAME», ya está instalada.\n"
+"Pulse «Aceptar» para reemplazar la extensión instalada.\n"
+"Pulse «Cancelar» para detener la instalación."
+
+#: dp_gui_versionboxes.src#RID_WARNINGBOX_VERSION_GREATER.warningbox.text
+msgid ""
+"You are about to install version $NEW of the extension \\'$NAME\\'.\n"
+"The older version $DEPLOYED is already installed.\n"
+"Click \\'OK\\' to replace the installed extension.\n"
+"Click \\'Cancel\\' to stop the installation."
+msgstr ""
+"Está a punto de instalar la versión $NEW de la extensión «$NAME».\n"
+"La versión anterior $DEPLOYED ya está instalada.\n"
+"Pulse «Aceptar» para reemplazar la extensión instalada.\n"
+"Pulse «Cancelar» para detener la instalación."
+
+#: dp_gui_versionboxes.src#RID_STR_WARNINGBOX_VERSION_GREATER_DIFFERENT_NAMES.string.text
+msgid ""
+"You are about to install version $NEW of the extension \\'$NAME\\'.\n"
+"The older version $DEPLOYED, named \\'$OLDNAME\\', is already installed.\n"
+"Click \\'OK\\' to replace the installed extension.\n"
+"Click \\'Cancel\\' to stop the installation."
+msgstr ""
+"Está a punto de instalar la versión $NEW de la extensión «$NAME».\n"
+"La versión anterior $DEPLOYED, llamada «$OLDNAME» ya está instalada.\n"
+"Pulse «Aceptar» para reemplazar la extensión instalada.\n"
+"Pulse «Cancelar» para detener la instalación."
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_FT_TYPE_EXTENSIONS.fixedtext.text
+msgid "Type of Extension"
+msgstr "Tipo de extensión"
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_CBX_BUNDLED.checkbox.text
+msgid "~Installation"
+msgstr "Instalación"
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_CBX_SHARED.checkbox.text
+msgid "~Shared"
+msgstr "~Compartido"
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_CBX_USER.checkbox.text
+msgid "~User"
+msgstr "~Usuario"
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_BTN_ADD.pushbutton.text
+msgid "~Add..."
+msgstr "~Añadir..."
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_BTN_CHECK_UPDATES.pushbutton.text
+msgid "~Check for Updates..."
+msgstr "B~uscar actualizaciones..."
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_FT_GET_EXTENSIONS.fixedtext.text
+msgid "Get more extensions online..."
+msgstr "Obtener más extensiones en línea..."
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_FT_PROGRESS.fixedtext.text
+msgctxt "dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_FT_PROGRESS.fixedtext.text"
+msgid "Adding %EXTENSION_NAME"
+msgstr "Añadiendo %EXTENSION_NAME"
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_BTN_CLOSE.okbutton.text
+msgctxt "dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_BTN_CLOSE.okbutton.text"
+msgid "Close"
+msgstr "Cerrar"
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.modelessdialog.text
+msgid "Extension Manager"
+msgstr "Gestor de extensiones"
+
+#: dp_gui_dialog2.src#RID_DLG_UPDATE_REQUIRED.RID_EM_FT_MSG.fixedtext.text
+msgid "%PRODUCTNAME has been updated to a new version. Some installed %PRODUCTNAME extensions are not compatible with this version and need to be updated before they can be used."
+msgstr "%PRODUCTNAME se ha actualizado a una nueva versión. Algunas extensiones de %PRODUCTNAME instaladas no son compatibles con esta nueva versión y necesitan actualizarse antes de poder utilizarse."
+
+#: dp_gui_dialog2.src#RID_DLG_UPDATE_REQUIRED.RID_EM_FT_PROGRESS.fixedtext.text
+msgctxt "dp_gui_dialog2.src#RID_DLG_UPDATE_REQUIRED.RID_EM_FT_PROGRESS.fixedtext.text"
+msgid "Adding %EXTENSION_NAME"
+msgstr "Añadiendo %EXTENSION_NAME"
+
+#: dp_gui_dialog2.src#RID_DLG_UPDATE_REQUIRED.RID_EM_BTN_CHECK_UPDATES.pushbutton.text
+msgid "Check for ~Updates..."
+msgstr "~Buscar actualizaciones..."
+
+#: dp_gui_dialog2.src#RID_DLG_UPDATE_REQUIRED.RID_EM_BTN_CLOSE.pushbutton.text
+msgid "Disable all"
+msgstr "Desactivar todo"
+
+#: dp_gui_dialog2.src#RID_DLG_UPDATE_REQUIRED.modaldialog.text
+msgid "Extension Update Required"
+msgstr "Se necesita actualizar una extensión"
+
+#: dp_gui_dialog2.src#RID_QUERYBOX_INSTALL_FOR_ALL.querybox.text
+msgid ""
+"Make sure that no further users are working with the same %PRODUCTNAME, when installing an extension for all users in a multi user environment.\n"
+"\n"
+"For whom do you want to install the extension?\n"
+msgstr ""
+"Asegúrese que no hay usuarios trabajando con el mismo %PRODUCTNAME, cuando instale una extensión para todos los usuarios en un ambiente multiusuario.\n"
+"\n"
+"¿Para quién quiere instalar la extensión?\n"
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_DOWNLOADING.fixedtext.text
+msgid "Downloading extensions..."
+msgstr "Descargando extensiones..."
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_RESULTS.fixedtext.text
+msgid "Result"
+msgstr "Resultado"
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_OK.okbutton.text
+msgid "OK"
+msgstr "Aceptar"
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_ABORT.cancelbutton.text
+msgid "Cancel Update"
+msgstr "Cancelar actualización"
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_INSTALLING.string.text
+msgid "Installing extensions..."
+msgstr "Instalando extensiones..."
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_FINISHED.string.text
+msgid "Installation finished"
+msgstr "Instalación finalizada"
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_NO_ERRORS.string.text
+msgid "No errors."
+msgstr "No hay errores."
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_ERROR_DOWNLOAD.string.text
+msgid "Error while downloading extension %NAME. "
+msgstr "Error al descargar la extensión %NAME. "
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_THIS_ERROR_OCCURRED.string.text
+msgid "The error message is: "
+msgstr "El mensaje de error es: "
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_ERROR_INSTALLATION.string.text
+msgid "Error while installing extension %NAME. "
+msgstr "Error al instalar la extensión %NAME. "
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_ERROR_LIC_DECLINED.string.text
+msgid "The license agreement for extension %NAME was refused. "
+msgstr "Se ha rechazado el acuerdo de licencia de la extensión %NAME. "
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_EXTENSION_NOINSTALL.string.text
+msgid "The extension will not be installed."
+msgstr "La extensión no se instalará."
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.modaldialog.text
+msgid "Download and Installation"
+msgstr "Descarga e instalación"
+
+#: dp_gui_dependencydialog.src#RID_DLG_DEPENDENCIES.RID_DLG_DEPENDENCIES_TEXT.fixedtext.text
+msgid ""
+"The extension cannot be installed as the following\n"
+"system dependencies are not fulfilled:"
+msgstr ""
+"La extensión no se puede instalar porque las siguientes\n"
+"dependencias del sistema no se cumplen:"
+
+#: dp_gui_dependencydialog.src#RID_DLG_DEPENDENCIES.modaldialog.text
+msgid "System dependencies check"
+msgstr "Comprobación de dependencias del sistema"
diff --git a/source/es/desktop/source/deployment/manager.po b/source/es/desktop/source/deployment/manager.po
new file mode 100644
index 00000000000..3ed6899dcbc
--- /dev/null
+++ b/source/es/desktop/source/deployment/manager.po
@@ -0,0 +1,40 @@
+#. extracted from desktop/source/deployment/manager.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fmanager.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 20:01+0200\n"
+"Last-Translator: Alexandro <jza@openoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dp_manager.src#RID_STR_COPYING_PACKAGE.string.text
+msgid "Copying: "
+msgstr "Copia: "
+
+#: dp_manager.src#RID_STR_ERROR_WHILE_ADDING.string.text
+msgid "Error while adding: "
+msgstr "Error al añadir: "
+
+#: dp_manager.src#RID_STR_ERROR_WHILE_REMOVING.string.text
+msgid "Error while removing: "
+msgstr "Error al eliminar: "
+
+#: dp_manager.src#RID_STR_PACKAGE_ALREADY_ADDED.string.text
+msgid "Extension has already been added: "
+msgstr "La extensión ya se ha añadido: "
+
+#: dp_manager.src#RID_STR_NO_SUCH_PACKAGE.string.text
+msgid "There is no such extension deployed: "
+msgstr "No existe esta extensión utilizada: "
+
+#: dp_manager.src#RID_STR_SYNCHRONIZING_REPOSITORY.string.text
+msgid "Synchronizing repository for %NAME extensions"
+msgstr "Sincronización del repositorio para las extensiones %NAME"
diff --git a/source/es/desktop/source/deployment/misc.po b/source/es/desktop/source/deployment/misc.po
new file mode 100644
index 00000000000..d5189854fd6
--- /dev/null
+++ b/source/es/desktop/source/deployment/misc.po
@@ -0,0 +1,32 @@
+#. extracted from desktop/source/deployment/misc.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fmisc.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-06-14 01:28+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dp_misc.src#RID_DEPLOYMENT_DEPENDENCIES_UNKNOWN.string.text
+msgid "Unknown"
+msgstr "Desconocido"
+
+#: dp_misc.src#RID_DEPLOYMENT_DEPENDENCIES_OOO_MIN.string.text
+msgid "Extension requires at least OpenOffice.org reference version %VERSION"
+msgstr "La extension hace referencia a la la ultima version de OpenOffice.org %VERSION"
+
+#: dp_misc.src#RID_DEPLOYMENT_DEPENDENCIES_OOO_MAX.string.text
+msgid "Extension does not support OpenOffice.org reference versions greater than %VERSION"
+msgstr "La extensión no soporta la referencia a la versión %VERSION o mayor de OpenOffice.org"
+
+#: dp_misc.src#RID_DEPLOYMENT_DEPENDENCIES_LO_MIN.string.text
+msgid "Extension requires at least LibreOffice version %VERSION"
+msgstr "La extensión requiere por lo menos la versión de LibreOffice %VERSION"
diff --git a/source/es/desktop/source/deployment/registry.po b/source/es/desktop/source/deployment/registry.po
new file mode 100644
index 00000000000..0dec3af234e
--- /dev/null
+++ b/source/es/desktop/source/deployment/registry.po
@@ -0,0 +1,40 @@
+#. extracted from desktop/source/deployment/registry.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fregistry.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2011-04-05 20:01+0200\n"
+"Last-Translator: Alexandro <jza@openoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dp_registry.src#RID_STR_REGISTERING_PACKAGE.string.text
+msgid "Enabling: "
+msgstr "Habilitando: "
+
+#: dp_registry.src#RID_STR_REVOKING_PACKAGE.string.text
+msgid "Disabling: "
+msgstr "Inhabilitando: "
+
+#: dp_registry.src#RID_STR_CANNOT_DETECT_MEDIA_TYPE.string.text
+msgid "Cannot detect media-type: "
+msgstr "No se puede detectar el tipo de medio: "
+
+#: dp_registry.src#RID_STR_UNSUPPORTED_MEDIA_TYPE.string.text
+msgid "This media-type is not supported: "
+msgstr "El tipo de medio no es compatible: "
+
+#: dp_registry.src#RID_STR_ERROR_WHILE_REGISTERING.string.text
+msgid "An error occurred while enabling: "
+msgstr "Se ha producido un error al habilitar: "
+
+#: dp_registry.src#RID_STR_ERROR_WHILE_REVOKING.string.text
+msgid "An error occurred while disabling: "
+msgstr "Se ha producido un error al inhabilitar: "
diff --git a/source/es/desktop/source/deployment/registry/component.po b/source/es/desktop/source/deployment/registry/component.po
new file mode 100644
index 00000000000..50273deffd0
--- /dev/null
+++ b/source/es/desktop/source/deployment/registry/component.po
@@ -0,0 +1,40 @@
+#. extracted from desktop/source/deployment/registry/component.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fregistry%2Fcomponent.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-13 01:05+0200\n"
+"Last-Translator: sbosio <santiago.bosio@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dp_component.src#RID_STR_DYN_COMPONENT.string.text
+msgid "UNO Dynamic Library Component"
+msgstr "UNO Dynamic Library Component"
+
+#: dp_component.src#RID_STR_JAVA_COMPONENT.string.text
+msgid "UNO Java Component"
+msgstr "UNO Java Component"
+
+#: dp_component.src#RID_STR_PYTHON_COMPONENT.string.text
+msgid "UNO Python Component"
+msgstr "UNO Python Component"
+
+#: dp_component.src#RID_STR_COMPONENTS.string.text
+msgid "UNO Components"
+msgstr "Componentes UNO"
+
+#: dp_component.src#RID_STR_RDB_TYPELIB.string.text
+msgid "UNO RDB Type Library"
+msgstr "UNO RDB Type Library"
+
+#: dp_component.src#RID_STR_JAVA_TYPELIB.string.text
+msgid "UNO Java Type Library"
+msgstr "UNO Java Type Library"
diff --git a/source/es/desktop/source/deployment/registry/configuration.po b/source/es/desktop/source/deployment/registry/configuration.po
new file mode 100644
index 00000000000..f2751e6d270
--- /dev/null
+++ b/source/es/desktop/source/deployment/registry/configuration.po
@@ -0,0 +1,24 @@
+#. extracted from desktop/source/deployment/registry/configuration.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fregistry%2Fconfiguration.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 20:01+0200\n"
+"Last-Translator: Alexandro <jza@openoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dp_configuration.src#RID_STR_CONF_SCHEMA.string.text
+msgid "Configuration Schema"
+msgstr "Esquema de configuración"
+
+#: dp_configuration.src#RID_STR_CONF_DATA.string.text
+msgid "Configuration Data"
+msgstr "Datos de configuracion"
diff --git a/source/es/desktop/source/deployment/registry/help.po b/source/es/desktop/source/deployment/registry/help.po
new file mode 100644
index 00000000000..cf2c5ea4f5b
--- /dev/null
+++ b/source/es/desktop/source/deployment/registry/help.po
@@ -0,0 +1,28 @@
+#. extracted from desktop/source/deployment/registry/help.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fregistry%2Fhelp.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-05-14 02:00+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dp_help.src#RID_STR_HELP.string.text
+msgid "Help"
+msgstr "Ayuda"
+
+#: dp_help.src#RID_STR_HELPPROCESSING_GENERAL_ERROR.string.text
+msgid "The extension cannot be installed because:\n"
+msgstr "La extensión no puede instalarse porque:\n"
+
+#: dp_help.src#RID_STR_HELPPROCESSING_XMLPARSING_ERROR.string.text
+msgid "The extension will not be installed because an error occurred in the Help files:\n"
+msgstr "La extensión no se instalará por que ocurrió un error en los archivos de ayuda:\n"
diff --git a/source/es/desktop/source/deployment/registry/package.po b/source/es/desktop/source/deployment/registry/package.po
new file mode 100644
index 00000000000..c181e502849
--- /dev/null
+++ b/source/es/desktop/source/deployment/registry/package.po
@@ -0,0 +1,20 @@
+#. extracted from desktop/source/deployment/registry/package.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fregistry%2Fpackage.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 20:01+0200\n"
+"Last-Translator: Alexandro <jza@openoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dp_package.src#RID_STR_PACKAGE_BUNDLE.string.text
+msgid "Extension"
+msgstr "Extensión"
diff --git a/source/es/desktop/source/deployment/registry/script.po b/source/es/desktop/source/deployment/registry/script.po
new file mode 100644
index 00000000000..06d889e08b1
--- /dev/null
+++ b/source/es/desktop/source/deployment/registry/script.po
@@ -0,0 +1,32 @@
+#. extracted from desktop/source/deployment/registry/script.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fregistry%2Fscript.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2011-04-05 20:01+0200\n"
+"Last-Translator: Alexandro <jza@openoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dp_script.src#RID_STR_BASIC_LIB.string.text
+msgid "%PRODUCTNAME Basic Library"
+msgstr "Biblioteca básica de %PRODUCTNAME"
+
+#: dp_script.src#RID_STR_DIALOG_LIB.string.text
+msgid "Dialog Library"
+msgstr "Biblioteca de diálogo"
+
+#: dp_script.src#RID_STR_CANNOT_DETERMINE_LIBNAME.string.text
+msgid "The library name could not be determined."
+msgstr "No se ha podido determinar el nombre de la biblioteca."
+
+#: dp_script.src#RID_STR_LIBNAME_ALREADY_EXISTS.string.text
+msgid "This library name already exists. Please choose a different name."
+msgstr "Este nombre de biblioteca ya existe. Elija un nombre distinto."
diff --git a/source/es/desktop/source/deployment/registry/sfwk.po b/source/es/desktop/source/deployment/registry/sfwk.po
new file mode 100644
index 00000000000..5af488abfe7
--- /dev/null
+++ b/source/es/desktop/source/deployment/registry/sfwk.po
@@ -0,0 +1,20 @@
+#. extracted from desktop/source/deployment/registry/sfwk.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fregistry%2Fsfwk.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 20:01+0200\n"
+"Last-Translator: Alexandro <jza@openoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dp_sfwk.src#RID_STR_SFWK_LIB.string.text
+msgid "%MACROLANG Library"
+msgstr "Biblioteca %MACROLANG"
diff --git a/source/es/desktop/source/deployment/unopkg.po b/source/es/desktop/source/deployment/unopkg.po
new file mode 100644
index 00000000000..959e4c842ac
--- /dev/null
+++ b/source/es/desktop/source/deployment/unopkg.po
@@ -0,0 +1,56 @@
+#. extracted from desktop/source/deployment/unopkg.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Funopkg.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-08-14 06:11+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: unopkg.src#RID_STR_UNOPKG_ACCEPT_LIC_1.string.text
+msgid "Extension Software License Agreement of $NAME:"
+msgstr "Acuerdo de licencia de la extensión de software $NAME:"
+
+#: unopkg.src#RID_STR_UNOPKG_ACCEPT_LIC_2.string.text
+msgid "Read the complete License Agreement displayed above. Accept the License Agreement by typing \"yes\" on the console then press the Return key. Type \"no\" to decline and to abort the extension setup."
+msgstr "Lea todo el contrato de licencia que se muestra arriba. Acepte el contrato de licencia escribiendo \"sí\" en la consola y pulsado la tecla Intro. Escriba \"no\" para rechazarlo y cancelar la instalación de la extensión."
+
+#: unopkg.src#RID_STR_UNOPKG_ACCEPT_LIC_3.string.text
+msgid "[Enter \"yes\" or \"no\"]:"
+msgstr "[Escribir \"sí\" o \"no\"]:"
+
+#: unopkg.src#RID_STR_UNOPKG_ACCEPT_LIC_4.string.text
+msgid "Your input was not correct. Please enter \"yes\" or \"no\":"
+msgstr "La entrada es incorrecta. Escriba \"sí\" o \"no\":"
+
+#: unopkg.src#RID_STR_UNOPKG_ACCEPT_LIC_YES.string.text
+msgid "YES"
+msgstr "SÍ"
+
+#: unopkg.src#RID_STR_UNOPKG_ACCEPT_LIC_Y.string.text
+msgid "Y"
+msgstr "S"
+
+#: unopkg.src#RID_STR_UNOPKG_ACCEPT_LIC_NO.string.text
+msgid "NO"
+msgstr "NO"
+
+#: unopkg.src#RID_STR_UNOPKG_ACCEPT_LIC_N.string.text
+msgid "N"
+msgstr "N"
+
+#: unopkg.src#RID_STR_CONCURRENTINSTANCE.string.text
+msgid "unopkg cannot be started. The lock file indicates it as already running. If this does not apply, delete the lock file at:"
+msgstr "No se puede iniciar unopkg. El archivo de bloqueo indica que ya se está ejecutando. Si esto no es así, elimine el archivo de bloqueo ubicado en:"
+
+#: unopkg.src#RID_STR_UNOPKG_ERROR.string.text
+msgid "ERROR: "
+msgstr "ERROR: "
diff --git a/source/es/dictionaries/af_ZA.po b/source/es/dictionaries/af_ZA.po
new file mode 100644
index 00000000000..6e622595f2a
--- /dev/null
+++ b/source/es/dictionaries/af_ZA.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/af_ZA.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Faf_ZA.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-06-18 20:32+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Afrikaans spelling dictionary, and hyphenation rules"
+msgstr "Diccionario del afrikáans y reglas de separación silábica"
diff --git a/source/es/dictionaries/an_ES.po b/source/es/dictionaries/an_ES.po
new file mode 100644
index 00000000000..dfc912cc719
--- /dev/null
+++ b/source/es/dictionaries/an_ES.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/an_ES.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fan_ES.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-03-05 12:54+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Aragonese spelling dictionary"
+msgstr "Diccionario de ortografía en aragonés"
diff --git a/source/es/dictionaries/ar.po b/source/es/dictionaries/ar.po
new file mode 100644
index 00000000000..cdfd346f633
--- /dev/null
+++ b/source/es/dictionaries/ar.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/ar.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Far.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-03-05 12:54+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Arabic spelling dictionary, and thesaurus"
+msgstr "Diccionario y tesauro árabe"
diff --git a/source/es/dictionaries/be_BY.po b/source/es/dictionaries/be_BY.po
new file mode 100644
index 00000000000..5b0d10043ad
--- /dev/null
+++ b/source/es/dictionaries/be_BY.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/be_BY.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fbe_BY.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-03-05 12:54+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Belarusian spelling dictionary"
+msgstr "Diccionario de ortografía en bielorruso"
diff --git a/source/es/dictionaries/bg_BG.po b/source/es/dictionaries/bg_BG.po
new file mode 100644
index 00000000000..e4f6b1f8981
--- /dev/null
+++ b/source/es/dictionaries/bg_BG.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/bg_BG.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fbg_BG.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-03-05 12:56+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Bulgarian spelling dictionary, hyphenation rules, and thesaurus"
+msgstr "Diccionario, tesauro y reglas de separación silábica del búlgaro"
diff --git a/source/es/dictionaries/bn_BD.po b/source/es/dictionaries/bn_BD.po
new file mode 100644
index 00000000000..6af8e6a2084
--- /dev/null
+++ b/source/es/dictionaries/bn_BD.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/bn_BD.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fbn_BD.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-03-05 12:56+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Bengali spelling dictionary"
+msgstr "Diccionario de ortografía bengalí"
diff --git a/source/es/dictionaries/br_FR.po b/source/es/dictionaries/br_FR.po
new file mode 100644
index 00000000000..01438a62220
--- /dev/null
+++ b/source/es/dictionaries/br_FR.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/br_FR.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fbr_FR.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-03-05 12:56+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Breton spelling dictionary"
+msgstr "Diccionario de ortografía en bretón"
diff --git a/source/es/dictionaries/ca.po b/source/es/dictionaries/ca.po
new file mode 100644
index 00000000000..04611793243
--- /dev/null
+++ b/source/es/dictionaries/ca.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/ca.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fca.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-03-05 12:57+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Catalan spelling dictionary, hyphenation rules, and thesaurus"
+msgstr "Diccionario, tesauro y reglas de separación silábica del catalán"
diff --git a/source/es/dictionaries/cs_CZ.po b/source/es/dictionaries/cs_CZ.po
new file mode 100644
index 00000000000..3781879ce70
--- /dev/null
+++ b/source/es/dictionaries/cs_CZ.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/cs_CZ.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fcs_CZ.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-03-05 12:57+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Czech spelling dictionary, hyphenation rules, and thesaurus"
+msgstr "Diccionario, tesauro y reglas de separación silábica del checo"
diff --git a/source/es/dictionaries/da_DK.po b/source/es/dictionaries/da_DK.po
new file mode 100644
index 00000000000..43d212441e3
--- /dev/null
+++ b/source/es/dictionaries/da_DK.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/da_DK.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fda_DK.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-03-05 12:57+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Danish spelling dictionary, hyphenation rules, and thesaurus"
+msgstr "Diccionario, tesauro y reglas de separación silábica del danés"
diff --git a/source/es/dictionaries/de.po b/source/es/dictionaries/de.po
new file mode 100644
index 00000000000..9af68af30b0
--- /dev/null
+++ b/source/es/dictionaries/de.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/de.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fde.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-06-18 20:31+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "German (Austria, Germany, Switzerland) spelling dictionaries, hyphenation rules, and thesaurus"
+msgstr "Alemán (Austria, Alemania, Suiza) diccionarios, reglas de separación silábica y tesauro"
diff --git a/source/es/dictionaries/el_GR.po b/source/es/dictionaries/el_GR.po
new file mode 100644
index 00000000000..5059c5ae36b
--- /dev/null
+++ b/source/es/dictionaries/el_GR.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/el_GR.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fel_GR.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-03-05 12:59+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Greek spelling dictionary, and hyphenation rules"
+msgstr "Diccionario y reglas de separación silábica del griego"
diff --git a/source/es/dictionaries/en.po b/source/es/dictionaries/en.po
new file mode 100644
index 00000000000..aff61c58926
--- /dev/null
+++ b/source/es/dictionaries/en.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/en.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fen.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2012-03-05 13:00+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "English spelling dictionaries, hyphenation rules, thesaurus, and grammar checker"
+msgstr "Diccionarios, reglas de separación silábica, tesauro y comprobador gramatical del inglés"
diff --git a/source/es/dictionaries/en/dialog.po b/source/es/dictionaries/en/dialog.po
new file mode 100644
index 00000000000..53f946b450d
--- /dev/null
+++ b/source/es/dictionaries/en/dialog.po
@@ -0,0 +1,172 @@
+#. extracted from dictionaries/en/dialog.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fen%2Fdialog.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-10 23:59+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: en_en_US.properties#spelling.property.text
+msgid "Grammar checking"
+msgstr "Comprobación gramatical"
+
+#: en_en_US.properties#hlp_grammar.property.text
+msgid "Check more grammar errors."
+msgstr "Comprobar más errores gramaticales."
+
+#: en_en_US.properties#grammar.property.text
+msgid "Possible mistakes"
+msgstr "Errores posibles"
+
+#: en_en_US.properties#hlp_cap.property.text
+msgid "Check missing capitalization of sentences."
+msgstr "Comprobar la falta de capitalización en las frases."
+
+#: en_en_US.properties#cap.property.text
+msgid "Capitalization"
+msgstr "Capitalización"
+
+#: en_en_US.properties#hlp_dup.property.text
+msgid "Check repeated words."
+msgstr "Buscar palabras repetidas."
+
+#: en_en_US.properties#dup.property.text
+msgid "Word duplication"
+msgstr "Palabras duplicadas"
+
+#: en_en_US.properties#hlp_pair.property.text
+msgid "Check missing or extra parentheses and quotation marks."
+msgstr "Buscar paréntesis y comillas faltantes o duplicados."
+
+#: en_en_US.properties#pair.property.text
+msgid "Parentheses"
+msgstr "Paréntesis"
+
+#: en_en_US.properties#punctuation.property.text
+msgid "Punctuation"
+msgstr "Puntuación"
+
+#: en_en_US.properties#hlp_spaces.property.text
+msgid "Check single spaces between words."
+msgstr "Comprobar espacios simples entre palabras."
+
+#: en_en_US.properties#spaces.property.text
+msgid "Word spacing"
+msgstr "Espaciado entre palabras"
+
+#: en_en_US.properties#hlp_mdash.property.text
+msgid "Force unspaced em dash instead of spaced en dash."
+msgstr "Forzar raya sin espacios en lugar de semirraya con espacios."
+
+#: en_en_US.properties#mdash.property.text
+msgid "Em dash"
+msgstr "Raya"
+
+#: en_en_US.properties#hlp_ndash.property.text
+msgid "Force spaced en dash instead of unspaced em dash."
+msgstr "Forzar semirraya con espacios en lugar de raya sin espacios."
+
+#: en_en_US.properties#ndash.property.text
+msgid "En dash"
+msgstr "Semirraya"
+
+#: en_en_US.properties#hlp_quotation.property.text
+msgid "Check double quotation marks: \"x\" → “x”"
+msgstr "Comprobar comillas dobles: \"x\" → “x”"
+
+#: en_en_US.properties#quotation.property.text
+msgid "Quotation marks"
+msgstr "Comillas"
+
+#: en_en_US.properties#hlp_times.property.text
+msgid "Check true multiplication sign: 5x5 → 5×5"
+msgstr "Comprobar signos de multiplicación: 5x5 → 5×5"
+
+#: en_en_US.properties#times.property.text
+msgid "Multiplication sign"
+msgstr "Signo de multiplicación"
+
+#: en_en_US.properties#hlp_spaces2.property.text
+msgid "Check single spaces between sentences."
+msgstr "Comprobar espacios sencillos entre cada oración."
+
+#: en_en_US.properties#spaces2.property.text
+msgid "Sentence spacing"
+msgstr "Espaciado de oraciones"
+
+#: en_en_US.properties#hlp_spaces3.property.text
+msgid "Check more than two extra space characters between words and sentences."
+msgstr "Comprobar más de dos espacios adicionales entre palabras y frases."
+
+#: en_en_US.properties#spaces3.property.text
+msgid "More spaces"
+msgstr "Más espacios"
+
+#: en_en_US.properties#hlp_minus.property.text
+msgid "Change hyphen characters to real minus signs."
+msgstr "Cambiar guiones por signos reales de resta."
+
+#: en_en_US.properties#minus.property.text
+msgid "Minus sign"
+msgstr "Signo de resta"
+
+#: en_en_US.properties#hlp_apostrophe.property.text
+msgid "Change typewriter apostrophe, single quotation marks and correct double primes."
+msgstr "Cambiar apóstrofe de máquina de escribir, comillas sencillas y primas dobles."
+
+#: en_en_US.properties#apostrophe.property.text
+msgid "Apostrophe"
+msgstr "Apóstrofe"
+
+#: en_en_US.properties#hlp_ellipsis.property.text
+msgid "Change three dots with ellipsis."
+msgstr "Cambiar tres puntos por puntos suspensivos."
+
+#: en_en_US.properties#ellipsis.property.text
+msgid "Ellipsis"
+msgstr "Puntos suspensivos"
+
+#: en_en_US.properties#others.property.text
+msgid "Others"
+msgstr "Otros"
+
+#: en_en_US.properties#hlp_metric.property.text
+msgid "Measurement conversion from °F, mph, ft, in, lb, gal and miles."
+msgstr "Conversión de medidas desde °F, mph, ft, in, lb, gal y millas."
+
+#: en_en_US.properties#metric.property.text
+msgid "Convert to metric (°C, km/h, m, kg, l)"
+msgstr "Convertir a métricas (°C, km/h, m, kg, l)"
+
+#: en_en_US.properties#hlp_numsep.property.text
+msgid "Common (1000000 → 1,000,000) or ISO (1000000 → 1 000 000)."
+msgstr "Común (1000000 → 1,000,000) o ISO (1000000 → 1 000 000)."
+
+#: en_en_US.properties#numsep.property.text
+msgid "Thousand separation of large numbers"
+msgstr "Separación de millares en números grandes"
+
+#: en_en_US.properties#hlp_nonmetric.property.text
+msgid "Measurement conversion from °C; km/h; cm, m, km; kg; l."
+msgstr "Conversión de medidas desde °C; km/h; cm, m, km; kg; l."
+
+#: en_en_US.properties#nonmetric.property.text
+msgid "Convert to non-metric (°F, mph, ft, lb, gal)"
+msgstr "Convertir a imperiales (°F, mph, ft, lb, gal)"
+
+#: OptionsDialog.xcu#..OptionsDialog.Nodes.org.openoffice.lightproof.Label.value.text
+msgid "Dictionaries"
+msgstr "Diccionarios"
+
+#: OptionsDialog.xcu#..OptionsDialog.Nodes.org.openoffice.lightproof.Leaves.org.openoffice.lightproof.en.Label.value.text
+msgid "English sentence checking"
+msgstr "Comprobador de frases en inglés"
diff --git a/source/es/dictionaries/es_ES.po b/source/es/dictionaries/es_ES.po
new file mode 100644
index 00000000000..25652a90c63
--- /dev/null
+++ b/source/es/dictionaries/es_ES.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/es_ES.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fes_ES.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-03-05 13:12+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Spanish spelling dictionary"
+msgstr "Diccionario ortográfico para el español"
diff --git a/source/es/dictionaries/et_EE.po b/source/es/dictionaries/et_EE.po
new file mode 100644
index 00000000000..077f8104a09
--- /dev/null
+++ b/source/es/dictionaries/et_EE.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/et_EE.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fet_EE.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-04-17 16:05+0200\n"
+"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Estonian spelling dictionary, and hyphenation rules"
+msgstr "Diccionario ortográfico de Estonia, y las reglas de separación silábica"
diff --git a/source/es/dictionaries/fr_FR.po b/source/es/dictionaries/fr_FR.po
new file mode 100644
index 00000000000..be47cbfb775
--- /dev/null
+++ b/source/es/dictionaries/fr_FR.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/fr_FR.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Ffr_FR.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-04-17 16:54+0200\n"
+"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "French spelling dictionary, hyphenation rules, and thesaurus"
+msgstr "Diccionario ortográfico de francés, reglas de separación de sílabas, y de sinónimos"
diff --git a/source/es/dictionaries/gd_GB.po b/source/es/dictionaries/gd_GB.po
new file mode 100644
index 00000000000..fde2f4ac921
--- /dev/null
+++ b/source/es/dictionaries/gd_GB.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/gd_GB.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fgd_GB.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-04-17 16:54+0200\n"
+"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Scottish Gaelic spelling dictionary"
+msgstr "Diccionario de ortografía gaélica escocesa"
diff --git a/source/es/dictionaries/gl.po b/source/es/dictionaries/gl.po
new file mode 100644
index 00000000000..ddc0f68b1d4
--- /dev/null
+++ b/source/es/dictionaries/gl.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/gl.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fgl.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2012-04-17 16:55+0200\n"
+"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Galician spelling dictionary"
+msgstr "Diccionario ortográfico gallego"
diff --git a/source/es/dictionaries/gu_IN.po b/source/es/dictionaries/gu_IN.po
new file mode 100644
index 00000000000..c4d5c71202f
--- /dev/null
+++ b/source/es/dictionaries/gu_IN.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/gu_IN.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fgu_IN.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-04-17 16:55+0200\n"
+"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Gujarati spelling dictionary"
+msgstr "Diccionario ortográfico guyaratí"
diff --git a/source/es/dictionaries/he_IL.po b/source/es/dictionaries/he_IL.po
new file mode 100644
index 00000000000..0817809647a
--- /dev/null
+++ b/source/es/dictionaries/he_IL.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/he_IL.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fhe_IL.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-04-17 16:56+0200\n"
+"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Hebrew spelling dictionary"
+msgstr "Diccionario ortográfico hebreo"
diff --git a/source/es/dictionaries/hi_IN.po b/source/es/dictionaries/hi_IN.po
new file mode 100644
index 00000000000..31861b02971
--- /dev/null
+++ b/source/es/dictionaries/hi_IN.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/hi_IN.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fhi_IN.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-04-17 16:56+0200\n"
+"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Hindi spelling dictionary"
+msgstr "Diccionario ortográfico hindi"
diff --git a/source/es/dictionaries/hr_HR.po b/source/es/dictionaries/hr_HR.po
new file mode 100644
index 00000000000..af91b3d2355
--- /dev/null
+++ b/source/es/dictionaries/hr_HR.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/hr_HR.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fhr_HR.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-04-17 16:57+0200\n"
+"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Croatian spelling dictionary, and hyphenation rules"
+msgstr "Diccionario de ortografía croata, y las reglas de separación silábicas"
diff --git a/source/es/dictionaries/hu_HU.po b/source/es/dictionaries/hu_HU.po
new file mode 100644
index 00000000000..0abc64130ce
--- /dev/null
+++ b/source/es/dictionaries/hu_HU.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/hu_HU.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fhu_HU.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2012-04-17 16:58+0200\n"
+"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Hungarian spelling dictionary, hyphenation rules, thesaurus, and grammar checker"
+msgstr "Diccionario de ortografía húngara, reglas de división de palabras, diccionario de sinónimos y corrector gramatical"
diff --git a/source/es/dictionaries/hu_HU/dialog.po b/source/es/dictionaries/hu_HU/dialog.po
new file mode 100644
index 00000000000..42b38b1835e
--- /dev/null
+++ b/source/es/dictionaries/hu_HU/dialog.po
@@ -0,0 +1,154 @@
+#. extracted from dictionaries/hu_HU/dialog.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fhu_HU%2Fdialog.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-08-14 05:02+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: hu_HU_en_US.properties#spelling.property.text
+msgid "Spelling"
+msgstr "Ortografía"
+
+#: hu_HU_en_US.properties#cap.property.text
+msgid "Capitalization"
+msgstr "Capitalización"
+
+#: hu_HU_en_US.properties#par.property.text
+msgid "Parentheses"
+msgstr "Paréntesis"
+
+#: hu_HU_en_US.properties#wordpart.property.text
+msgid "Word parts of compounds"
+msgstr "Partes de palabras compuestas"
+
+#: hu_HU_en_US.properties#comma.property.text
+msgid "Comma usage"
+msgstr "Uso de comas"
+
+#: hu_HU_en_US.properties#proofreading.property.text
+msgid "Proofreading"
+msgstr "Revisión"
+
+#: hu_HU_en_US.properties#style.property.text
+msgid "Style checking"
+msgstr "Corrección de estilo"
+
+#: hu_HU_en_US.properties#compound.property.text
+msgid "Underline typo-like compound words"
+msgstr "Subrayar palabras compuestas que parezcan errores."
+
+#: hu_HU_en_US.properties#allcompound.property.text
+msgid "Underline all generated compound words"
+msgstr "Subrayar todas las palabras compuestas generadas"
+
+#: hu_HU_en_US.properties#grammar.property.text
+msgid "Possible mistakes"
+msgstr "Errores posibles"
+
+#: hu_HU_en_US.properties#money.property.text
+msgid "Consistency of money amounts"
+msgstr "Consistencia de cantidades de dinero"
+
+#: hu_HU_en_US.properties#duplication.property.text
+msgctxt "hu_HU_en_US.properties#duplication.property.text"
+msgid "Word duplication"
+msgstr "Duplicación de palabras"
+
+#: hu_HU_en_US.properties#dup0.property.text
+msgctxt "hu_HU_en_US.properties#dup0.property.text"
+msgid "Word duplication"
+msgstr "Duplicación de palabras"
+
+#: hu_HU_en_US.properties#dup.property.text
+msgid "Duplication within clauses"
+msgstr "Duplicación con cláusulas"
+
+#: hu_HU_en_US.properties#dup2.property.text
+msgid "Duplication within sentences"
+msgstr "Duplicación dentro de las frases"
+
+#: hu_HU_en_US.properties#dup3.property.text
+msgid "Allow previous checkings with affixes"
+msgstr "Permitir comprobaciones previas con afijos"
+
+#: hu_HU_en_US.properties#numpart.property.text
+msgid "Thousand separation of numbers"
+msgstr "Separación de millares en números"
+
+#: hu_HU_en_US.properties#typography.property.text
+msgid "Typography"
+msgstr "Tipografía"
+
+#: hu_HU_en_US.properties#quot.property.text
+msgid "Quotation marks"
+msgstr "Comillas"
+
+#: hu_HU_en_US.properties#apost.property.text
+msgid "Apostrophe"
+msgstr "Apóstrofe"
+
+#: hu_HU_en_US.properties#dash.property.text
+msgid "En dash"
+msgstr "Semirraya"
+
+#: hu_HU_en_US.properties#elli.property.text
+msgid "Ellipsis"
+msgstr "Puntos suspensivos"
+
+#: hu_HU_en_US.properties#ligature.property.text
+msgid "Ligature suggestion"
+msgstr "Sugerencia de ligadura"
+
+#: hu_HU_en_US.properties#noligature.property.text
+msgid "Underline ligatures"
+msgstr "Subrayar ligaduras"
+
+#: hu_HU_en_US.properties#frac.property.text
+msgid "Fractions"
+msgstr "Fracciones"
+
+#: hu_HU_en_US.properties#thin.property.text
+msgid "Thin space"
+msgstr "Espacio fino"
+
+#: hu_HU_en_US.properties#spaces.property.text
+msgid "Double spaces"
+msgstr "Espacios dobles"
+
+#: hu_HU_en_US.properties#spaces2.property.text
+msgid "More spaces"
+msgstr "Más espacios"
+
+#: hu_HU_en_US.properties#idx.property.text
+msgid "Indices"
+msgstr "Índices"
+
+#: hu_HU_en_US.properties#minus.property.text
+msgid "Minus"
+msgstr "Menos"
+
+#: hu_HU_en_US.properties#SI.property.text
+msgid "Measurements"
+msgstr "Mediciones"
+
+#: hu_HU_en_US.properties#hyphen.property.text
+msgid "Hyphenation of ambiguous words"
+msgstr "Guiones de palabras ambiguas"
+
+#: OptionsDialog.xcu#..OptionsDialog.Nodes.org.openoffice.lightproof.Label.value.text
+msgid "Dictionaries"
+msgstr "Diccionarios"
+
+#: OptionsDialog.xcu#..OptionsDialog.Nodes.org.openoffice.lightproof.Leaves.org.openoffice.lightproof.hu_HU.Label.value.text
+msgid "Hungarian sentence checking"
+msgstr "Comprobar oraciones húngaras"
diff --git a/source/es/dictionaries/it_IT.po b/source/es/dictionaries/it_IT.po
new file mode 100644
index 00000000000..e533a5dbe9e
--- /dev/null
+++ b/source/es/dictionaries/it_IT.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/it_IT.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fit_IT.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-04-17 17:01+0200\n"
+"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Italian spelling dictionary, hyphenation rules, and thesaurus"
+msgstr "Diccionario de ortografía italiana, normas de separación silábicas, diccionario de sinónimos"
diff --git a/source/es/dictionaries/ku_TR.po b/source/es/dictionaries/ku_TR.po
new file mode 100644
index 00000000000..1edb6813b68
--- /dev/null
+++ b/source/es/dictionaries/ku_TR.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/ku_TR.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fku_TR.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-04-17 16:18+0200\n"
+"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Kurdish (Turkey) spelling dictionary"
+msgstr "Kurdo (Turquía) diccionario ortográfico"
diff --git a/source/es/dictionaries/lt_LT.po b/source/es/dictionaries/lt_LT.po
new file mode 100644
index 00000000000..f704ea59e2f
--- /dev/null
+++ b/source/es/dictionaries/lt_LT.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/lt_LT.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Flt_LT.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-04-17 16:19+0200\n"
+"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Lithuanian spelling dictionary, and hyphenation rules"
+msgstr "Diccionario Lituano de ortografía, y las reglas de separación de sílabas"
diff --git a/source/es/dictionaries/lv_LV.po b/source/es/dictionaries/lv_LV.po
new file mode 100644
index 00000000000..49c7bd18eb8
--- /dev/null
+++ b/source/es/dictionaries/lv_LV.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/lv_LV.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Flv_LV.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-04-17 16:19+0200\n"
+"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Latvian spelling dictionary, and hyphenation rules"
+msgstr "Diccionario ortográfico de Letonia, y las reglas de separación silábica"
diff --git a/source/es/dictionaries/ne_NP.po b/source/es/dictionaries/ne_NP.po
new file mode 100644
index 00000000000..edf131068cc
--- /dev/null
+++ b/source/es/dictionaries/ne_NP.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/ne_NP.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fne_NP.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-04-17 16:27+0200\n"
+"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Nepali spelling dictionary, and thesaurus"
+msgstr "Diccionario ortográfico de Nepal, y de sinónimos"
diff --git a/source/es/dictionaries/nl_NL.po b/source/es/dictionaries/nl_NL.po
new file mode 100644
index 00000000000..20295683725
--- /dev/null
+++ b/source/es/dictionaries/nl_NL.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/nl_NL.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fnl_NL.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-04-17 16:21+0200\n"
+"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Dutch spelling dictionary, and hyphenation rules"
+msgstr "Diccionario ortográfico de holandés, y las reglas de separación silábica"
diff --git a/source/es/dictionaries/no.po b/source/es/dictionaries/no.po
new file mode 100644
index 00000000000..a17967d1f3d
--- /dev/null
+++ b/source/es/dictionaries/no.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/no.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fno.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-04-17 16:22+0200\n"
+"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Norwegian (Nynorsk and Bokmål) spelling dictionary, hyphenation rules, and thesaurus"
+msgstr "Diccionario ortográfico noruego (Nynorsk y Bokmål), reglas de separación silábica, y de sinónimos"
diff --git a/source/es/dictionaries/oc_FR.po b/source/es/dictionaries/oc_FR.po
new file mode 100644
index 00000000000..eee8e15561f
--- /dev/null
+++ b/source/es/dictionaries/oc_FR.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/oc_FR.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Foc_FR.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-04-17 16:22+0200\n"
+"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Occitan spelling dictionary"
+msgstr "Diccionario ortográfico occitano"
diff --git a/source/es/dictionaries/pl_PL.po b/source/es/dictionaries/pl_PL.po
new file mode 100644
index 00000000000..04ede7ff9b9
--- /dev/null
+++ b/source/es/dictionaries/pl_PL.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/pl_PL.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fpl_PL.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-04-17 16:26+0200\n"
+"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Polish spelling dictionary, hyphenation rules, and thesaurus"
+msgstr "Diccionario de ortografía polaca, normas de separación silábicas, y de sinónimos"
diff --git a/source/es/dictionaries/pt_BR.po b/source/es/dictionaries/pt_BR.po
new file mode 100644
index 00000000000..f37f145ea20
--- /dev/null
+++ b/source/es/dictionaries/pt_BR.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/pt_BR.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fpt_BR.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-04-17 21:36+0200\n"
+"Last-Translator: javicatala <javicatala@gmail.com>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Brazilian Portuguese spelling Dictionary (1990 Spelling Agreement), and hyphenation rules"
+msgstr "Diccionario ortográfico portugués brasileño (acuerdo ortográfico de 1990), y reglas de separación silábica"
diff --git a/source/es/dictionaries/pt_PT.po b/source/es/dictionaries/pt_PT.po
new file mode 100644
index 00000000000..480b48ab57a
--- /dev/null
+++ b/source/es/dictionaries/pt_PT.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/pt_PT.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fpt_PT.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-04-17 16:26+0200\n"
+"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "European Portuguese spelling dictionary, hyphenation rules, and thesaurus"
+msgstr "Diccionario de ortografía portugués europeo, normas de separación de sílabas, y de sinónimos"
diff --git a/source/es/dictionaries/ro.po b/source/es/dictionaries/ro.po
new file mode 100644
index 00000000000..adb31729e1d
--- /dev/null
+++ b/source/es/dictionaries/ro.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/ro.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fro.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-04-17 16:25+0200\n"
+"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Romanian spelling dictionary, hyphenation rules, and thesaurus"
+msgstr "Diccionario de ortografía rumano, reglas de separación silábica, y de sinónimos"
diff --git a/source/es/dictionaries/ru_RU.po b/source/es/dictionaries/ru_RU.po
new file mode 100644
index 00000000000..028fbbeccec
--- /dev/null
+++ b/source/es/dictionaries/ru_RU.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/ru_RU.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fru_RU.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-04-17 16:28+0200\n"
+"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Russian spelling dictionary, hyphenation rules, thesaurus, and grammar checker"
+msgstr "Diccionario ortográfico de Rusia, normas de separación de palabras, diccionario de sinónimos y corrector gramatical"
diff --git a/source/es/dictionaries/ru_RU/dialog.po b/source/es/dictionaries/ru_RU/dialog.po
new file mode 100644
index 00000000000..10aefd69ea4
--- /dev/null
+++ b/source/es/dictionaries/ru_RU/dialog.po
@@ -0,0 +1,84 @@
+#. extracted from dictionaries/ru_RU/dialog.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fru_RU%2Fdialog.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-05-08 14:23+0200\n"
+"Last-Translator: Santiago <santiago.bosio@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: ru_RU_en_US.properties#abbreviation.property.text
+msgid "Abbreviation"
+msgstr "Abreviatura"
+
+#: ru_RU_en_US.properties#grammar.property.text
+msgid "Grammar"
+msgstr "Gramática"
+
+#: ru_RU_en_US.properties#hyphen.property.text
+msgid "Compound words with hyphen"
+msgstr "Palabras compuestas con guión"
+
+#: ru_RU_en_US.properties#comma.property.text
+msgid "Comma usage"
+msgstr "Uso de comas"
+
+#: ru_RU_en_US.properties#common.property.text
+msgid "General error"
+msgstr "Error general"
+
+#: ru_RU_en_US.properties#multiword.property.text
+msgid "Multiword expressions"
+msgstr "Expresiones multipalabra"
+
+#: ru_RU_en_US.properties#together.property.text
+msgid "Together/separately"
+msgstr "Junto/separado"
+
+#: ru_RU_en_US.properties#proofreading.property.text
+msgid "Proofreading"
+msgstr "Corrección de pruebas"
+
+#: ru_RU_en_US.properties#space.property.text
+msgid "Space mistake"
+msgstr "Error de espaciado"
+
+#: ru_RU_en_US.properties#typographica.property.text
+msgid "Typographica"
+msgstr "Tipográfica"
+
+#: ru_RU_en_US.properties#dup.property.text
+msgid "Word duplication within clauses"
+msgstr "Duplicación de palabra dentro de las oraciones"
+
+#: ru_RU_en_US.properties#dup2.property.text
+msgid "Word duplication within sentences"
+msgstr "Duplicación de palabra dentro de las oraciones"
+
+#: ru_RU_en_US.properties#others.property.text
+msgid "Others"
+msgstr "Otros"
+
+#: ru_RU_en_US.properties#numsep.property.text
+msgid "Separation of large numbers (ISO)"
+msgstr "Separación de números grandes (ISO)"
+
+#: ru_RU_en_US.properties#quotation.property.text
+msgid "Quotation"
+msgstr "Cita"
+
+#: OptionsDialog.xcu#..OptionsDialog.Nodes.org.openoffice.lightproof.Label.value.text
+msgid "Dictionaries"
+msgstr "Diccionarios"
+
+#: OptionsDialog.xcu#..OptionsDialog.Nodes.org.openoffice.lightproof.Leaves.org.openoffice.lightproof.ru_RU.Label.value.text
+msgid "Grammar checking (Russian)"
+msgstr "Corrector gramatical (Ruso)"
diff --git a/source/es/dictionaries/si_LK.po b/source/es/dictionaries/si_LK.po
new file mode 100644
index 00000000000..a53b3f254a4
--- /dev/null
+++ b/source/es/dictionaries/si_LK.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/si_LK.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fsi_LK.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-04-17 21:33+0200\n"
+"Last-Translator: javicatala <javicatala@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Sinhala spelling dictionary"
+msgstr "Diccionario ortográfico cingalés"
diff --git a/source/es/dictionaries/sk_SK.po b/source/es/dictionaries/sk_SK.po
new file mode 100644
index 00000000000..3c2df079027
--- /dev/null
+++ b/source/es/dictionaries/sk_SK.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/sk_SK.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fsk_SK.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-04-17 21:32+0200\n"
+"Last-Translator: javicatala <javicatala@gmail.com>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Slovak spelling dictionary, hyphenation rules, and thesaurus"
+msgstr "Diccionario ortográfico eslovaco, reglas de separación silábica, y de sinónimos"
diff --git a/source/es/dictionaries/sl_SI.po b/source/es/dictionaries/sl_SI.po
new file mode 100644
index 00000000000..a4915786721
--- /dev/null
+++ b/source/es/dictionaries/sl_SI.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/sl_SI.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fsl_SI.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-04-17 21:32+0200\n"
+"Last-Translator: javicatala <javicatala@gmail.com>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Slovenian spelling dictionary, hyphenation rules, and thesaurus"
+msgstr "Diccionario ortográfico esloveno, reglas de separación silábica, y de sinónimos"
diff --git a/source/es/dictionaries/sr.po b/source/es/dictionaries/sr.po
new file mode 100644
index 00000000000..06e316b5463
--- /dev/null
+++ b/source/es/dictionaries/sr.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/sr.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fsr.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-04-17 21:31+0200\n"
+"Last-Translator: javicatala <javicatala@gmail.com>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Serbian (Cyrillic and Latin) spelling dictionary, and hyphenation rules"
+msgstr "Diccionario ortográfico serbio (cirílico y latino), y reglas de separación silábica"
diff --git a/source/es/dictionaries/sv_SE.po b/source/es/dictionaries/sv_SE.po
new file mode 100644
index 00000000000..8a49902673e
--- /dev/null
+++ b/source/es/dictionaries/sv_SE.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/sv_SE.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fsv_SE.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-04-17 21:30+0200\n"
+"Last-Translator: javicatala <javicatala@gmail.com>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Swedish spelling dictionary, and thesaurus"
+msgstr "Diccionario ortográfico sueco, y de sinónimos"
diff --git a/source/es/dictionaries/sw_TZ.po b/source/es/dictionaries/sw_TZ.po
new file mode 100644
index 00000000000..318f9628e41
--- /dev/null
+++ b/source/es/dictionaries/sw_TZ.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/sw_TZ.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fsw_TZ.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Swahili spelling dictionary"
+msgstr "Diccionario ortográfico para Suajili"
diff --git a/source/es/dictionaries/te_IN.po b/source/es/dictionaries/te_IN.po
new file mode 100644
index 00000000000..309f5b87b94
--- /dev/null
+++ b/source/es/dictionaries/te_IN.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/te_IN.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fte_IN.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-04-17 21:29+0200\n"
+"Last-Translator: javicatala <javicatala@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Telugu spelling dictionary, and hyphenation rules"
+msgstr "Diccionario ortográfico telugu y reglas de separación silábica."
diff --git a/source/es/dictionaries/th_TH.po b/source/es/dictionaries/th_TH.po
new file mode 100644
index 00000000000..f9846d3ec2b
--- /dev/null
+++ b/source/es/dictionaries/th_TH.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/th_TH.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fth_TH.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Thai spelling dictionary"
+msgstr "Diccionario ortográfico para Tailandés"
diff --git a/source/es/dictionaries/uk_UA.po b/source/es/dictionaries/uk_UA.po
new file mode 100644
index 00000000000..5d35aedb1e2
--- /dev/null
+++ b/source/es/dictionaries/uk_UA.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/uk_UA.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fuk_UA.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-04-17 21:28+0200\n"
+"Last-Translator: javicatala <javicatala@gmail.com>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Ukrainian spelling dictionary, hyphenation rules, and thesaurus"
+msgstr "Diccionario ortográfico ucraniano, reglas de separación silábica, y de sinónimos"
diff --git a/source/es/dictionaries/vi.po b/source/es/dictionaries/vi.po
new file mode 100644
index 00000000000..8aaaf80e2f4
--- /dev/null
+++ b/source/es/dictionaries/vi.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/vi.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fvi.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2012-04-17 21:23+0200\n"
+"Last-Translator: javicatala <javicatala@gmail.com>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Vietnamese spelling dictionary"
+msgstr "Diccionario ortográfico para Vietnamita"
diff --git a/source/es/dictionaries/zu_ZA.po b/source/es/dictionaries/zu_ZA.po
new file mode 100644
index 00000000000..96ec4af1b70
--- /dev/null
+++ b/source/es/dictionaries/zu_ZA.po
@@ -0,0 +1,20 @@
+#. extracted from dictionaries/zu_ZA.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fzu_ZA.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-04-17 21:27+0200\n"
+"Last-Translator: javicatala <javicatala@gmail.com>\n"
+"Language-Team: none\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Zulu hyphenation rules"
+msgstr "Reglas de separación silábica del zulú"
diff --git a/source/es/editeng/source/accessibility.po b/source/es/editeng/source/accessibility.po
new file mode 100644
index 00000000000..9678614848e
--- /dev/null
+++ b/source/es/editeng/source/accessibility.po
@@ -0,0 +1,24 @@
+#. extracted from editeng/source/accessibility.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+editeng%2Fsource%2Faccessibility.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 20:01+0200\n"
+"Last-Translator: Alexandro <jza@openoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: accessibility.src#RID_SVXSTR_A11Y_IMAGEBULLET_DESCRIPTION.string.text
+msgid "Image bullet in paragraph"
+msgstr "Viñeta de imagen en el párrafo"
+
+#: accessibility.src#RID_SVXSTR_A11Y_IMAGEBULLET_NAME.string.text
+msgid "Image bullet"
+msgstr "Viñeta de imagen"
diff --git a/source/es/editeng/source/editeng.po b/source/es/editeng/source/editeng.po
new file mode 100644
index 00000000000..31804bbbc5f
--- /dev/null
+++ b/source/es/editeng/source/editeng.po
@@ -0,0 +1,82 @@
+#. extracted from editeng/source/editeng.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+editeng%2Fsource%2Fediteng.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-07-13 08:42+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: editeng.src#RID_EDITUNDO_DEL.string.text
+msgid "Delete"
+msgstr "Eliminar"
+
+#: editeng.src#RID_EDITUNDO_MOVE.string.text
+msgid "Move"
+msgstr "Mover"
+
+#: editeng.src#RID_EDITUNDO_INSERT.string.text
+msgid "Insert"
+msgstr "Insertar"
+
+#: editeng.src#RID_EDITUNDO_REPLACE.string.text
+msgid "Replace"
+msgstr "Reemplazar"
+
+#: editeng.src#RID_EDITUNDO_SETATTRIBS.string.text
+msgid "Apply attributes"
+msgstr "Aplicar los atributos"
+
+#: editeng.src#RID_EDITUNDO_RESETATTRIBS.string.text
+msgid "Reset attributes"
+msgstr "Restablecer los atributos"
+
+#: editeng.src#RID_EDITUNDO_INDENT.string.text
+msgid "Indent"
+msgstr "Sangría"
+
+#: editeng.src#RID_EDITUNDO_SETSTYLE.string.text
+msgid "Apply Styles"
+msgstr "Aplicar los estilos"
+
+#: editeng.src#RID_EDITUNDO_TRANSLITERATE.string.text
+msgid "~Change Case"
+msgstr "Cambiar capitali~zación"
+
+#: editeng.src#RID_MENU_SPELL.MN_SPELLING.menuitem.text
+msgid "~Spellcheck..."
+msgstr "~Corrección ortográfica..."
+
+#: editeng.src#RID_MENU_SPELL.MN_INSERT.menuitem.text
+msgctxt "editeng.src#RID_MENU_SPELL.MN_INSERT.menuitem.text"
+msgid "~Add"
+msgstr "~Añadir"
+
+#: editeng.src#RID_MENU_SPELL.MN_INSERT_SINGLE.menuitem.text
+msgctxt "editeng.src#RID_MENU_SPELL.MN_INSERT_SINGLE.menuitem.text"
+msgid "~Add"
+msgstr "~Añadir"
+
+#: editeng.src#RID_MENU_SPELL.MN_IGNORE.menuitem.text
+msgid "Ignore All"
+msgstr "Ignorar todos"
+
+#: editeng.src#RID_MENU_SPELL.MN_AUTOCORR.menuitem.text
+msgid "AutoCorrect"
+msgstr "Autocorrección"
+
+#: editeng.src#RID_STR_WORD.string.text
+msgid "Word is %x"
+msgstr "La palabra es %x"
+
+#: editeng.src#RID_STR_PARAGRAPH.string.text
+msgid "Paragraph is %x"
+msgstr "El párrafo es %x"
diff --git a/source/es/editeng/source/items.po b/source/es/editeng/source/items.po
new file mode 100644
index 00000000000..1368852fb29
--- /dev/null
+++ b/source/es/editeng/source/items.po
@@ -0,0 +1,972 @@
+#. extracted from editeng/source/items.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+editeng%2Fsource%2Fitems.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-08-14 06:12+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: svxitems.src#RID_SVXITEMS_TRUE.string.text
+msgid "True"
+msgstr "Verdadero"
+
+#: svxitems.src#RID_SVXITEMS_FALSE.string.text
+msgid "False"
+msgstr "Falso"
+
+#: svxitems.src#RID_SVXITEMS_BREAK_NONE.string.text
+msgid "No break"
+msgstr "Sin saltos"
+
+#: svxitems.src#RID_SVXITEMS_BREAK_COLUMN_BEFORE.string.text
+msgid "Break before new column"
+msgstr "Salto antes de una nueva columna"
+
+#: svxitems.src#RID_SVXITEMS_BREAK_COLUMN_AFTER.string.text
+msgid "Break after new column"
+msgstr "Salto después de una nueva columna"
+
+#: svxitems.src#RID_SVXITEMS_BREAK_COLUMN_BOTH.string.text
+msgid "Break before and after new column"
+msgstr "Saltos antes y después de una nueva columna"
+
+#: svxitems.src#RID_SVXITEMS_BREAK_PAGE_BEFORE.string.text
+msgid "Break before new page"
+msgstr "Salto antes de una página nueva"
+
+#: svxitems.src#RID_SVXITEMS_BREAK_PAGE_AFTER.string.text
+msgid "Break after new page"
+msgstr "Salto después de una página nueva"
+
+#: svxitems.src#RID_SVXITEMS_BREAK_PAGE_BOTH.string.text
+msgid "Break before and after new page"
+msgstr "Salto antes y después de una página nueva"
+
+#: svxitems.src#RID_SVXITEMS_SHADOW_NONE.string.text
+msgid "No Shadow"
+msgstr "Sin sombra"
+
+#: svxitems.src#RID_SVXITEMS_SHADOW_TOPLEFT.string.text
+msgid "Shadow top left"
+msgstr "Sombra superior izquierda"
+
+#: svxitems.src#RID_SVXITEMS_SHADOW_TOPRIGHT.string.text
+msgid "Shadow top right"
+msgstr "Sombra superior derecha"
+
+#: svxitems.src#RID_SVXITEMS_SHADOW_BOTTOMLEFT.string.text
+msgid "Shadow bottom left"
+msgstr "Sombra inferior izquierda"
+
+#: svxitems.src#RID_SVXITEMS_SHADOW_BOTTOMRIGHT.string.text
+msgid "Shadow bottom right"
+msgstr "Sombra inferior derecha"
+
+#: svxitems.src#RID_SVXITEMS_COLOR.string.text
+msgid "Color "
+msgstr "Color "
+
+#: svxitems.src#RID_SVXITEMS_COLOR_BLACK.string.text
+msgid "Black"
+msgstr "Negro"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_BLUE.string.text
+msgid "Blue"
+msgstr "Azul"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_GREEN.string.text
+msgid "Green"
+msgstr "Verde"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_CYAN.string.text
+msgid "Cyan"
+msgstr "Cian"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_RED.string.text
+msgid "Red"
+msgstr "Rojo"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_MAGENTA.string.text
+msgid "Magenta"
+msgstr "Magenta"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_BROWN.string.text
+msgid "Brown"
+msgstr "Marrón"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_GRAY.string.text
+msgid "Gray"
+msgstr "Gris"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_LIGHTGRAY.string.text
+msgid "Light Gray"
+msgstr "Gris claro"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_LIGHTBLUE.string.text
+msgid "Light Blue"
+msgstr "Azul claro"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_LIGHTGREEN.string.text
+msgid "Light Green"
+msgstr "Verde claro"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_LIGHTCYAN.string.text
+msgid "Light Cyan"
+msgstr "Cian claro"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_LIGHTRED.string.text
+msgid "Light Red"
+msgstr "Rojo claro"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_LIGHTMAGENTA.string.text
+msgid "Light Magenta"
+msgstr "Magenta claro"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_YELLOW.string.text
+msgid "Yellow"
+msgstr "Amarillo"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_WHITE.string.text
+msgid "White"
+msgstr "Blanco"
+
+#: svxitems.src#RID_SVXITEMS_ITALIC_NONE.string.text
+msgid "Not Italic"
+msgstr "Sin cursiva"
+
+#: svxitems.src#RID_SVXITEMS_ITALIC_OBLIQUE.string.text
+msgid "Oblique italic"
+msgstr "Cursiva oblicua"
+
+#: svxitems.src#RID_SVXITEMS_ITALIC_NORMAL.string.text
+msgid "Italic"
+msgstr "Cursiva"
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_THIN.string.text
+msgid "thin"
+msgstr "fino"
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_ULTRALIGHT.string.text
+msgid "ultra thin"
+msgstr "ultrafino"
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_LIGHT.string.text
+msgid "light"
+msgstr "delgado"
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_SEMILIGHT.string.text
+msgid "semi light"
+msgstr "semidelgado"
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_NORMAL.string.text
+msgid "normal"
+msgstr "normal"
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_MEDIUM.string.text
+msgid "medium"
+msgstr "medio"
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_SEMIBOLD.string.text
+msgid "semi bold"
+msgstr "semigrueso"
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_BOLD.string.text
+msgid "bold"
+msgstr "grueso"
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_ULTRABOLD.string.text
+msgid "ultra bold"
+msgstr "ultragrueso"
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_BLACK.string.text
+msgid "black"
+msgstr "negro"
+
+#: svxitems.src#RID_SVXITEMS_UL_NONE.string.text
+msgid "No underline"
+msgstr "Sin subrayado"
+
+#: svxitems.src#RID_SVXITEMS_UL_SINGLE.string.text
+msgid "Single underline"
+msgstr "Subrayado simple"
+
+#: svxitems.src#RID_SVXITEMS_UL_DOUBLE.string.text
+msgid "Double underline"
+msgstr "Subrayado doble"
+
+#: svxitems.src#RID_SVXITEMS_UL_DOTTED.string.text
+msgid "Dotted underline"
+msgstr "Subrayado con puntos"
+
+#: svxitems.src#RID_SVXITEMS_UL_DONTKNOW.string.text
+msgid "Underline"
+msgstr "Subrayado"
+
+#: svxitems.src#RID_SVXITEMS_UL_DASH.string.text
+msgid "Underline (dashes)"
+msgstr "Subrayado (guiones)"
+
+#: svxitems.src#RID_SVXITEMS_UL_LONGDASH.string.text
+msgid "Underline (long dashes)"
+msgstr "Subrayado (guiones largos)"
+
+#: svxitems.src#RID_SVXITEMS_UL_DASHDOT.string.text
+msgid "Underline (dot dash)"
+msgstr "Subrayado (guiones cortos)"
+
+#: svxitems.src#RID_SVXITEMS_UL_DASHDOTDOT.string.text
+msgid "Underline (dot dot dash)"
+msgstr "Subrayado (punto - punto - guión)"
+
+#: svxitems.src#RID_SVXITEMS_UL_SMALLWAVE.string.text
+msgid "Underline (small wave)"
+msgstr "Subrayado (ondas pequeñas)"
+
+#: svxitems.src#RID_SVXITEMS_UL_WAVE.string.text
+msgid "Underline (Wave)"
+msgstr "Subrayado (ondas)"
+
+#: svxitems.src#RID_SVXITEMS_UL_DOUBLEWAVE.string.text
+msgid "Underline (Double wave)"
+msgstr "Subrayado (ondas dobles)"
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLD.string.text
+msgid "Underlined (Bold)"
+msgstr "Subrayado (grueso)"
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLDDOTTED.string.text
+msgid "Dotted underline (Bold)"
+msgstr "Subrayado con puntos (grueso)"
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLDDASH.string.text
+msgid "Underline (Dash bold)"
+msgstr "Subrayado (guión grueso)"
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLDLONGDASH.string.text
+msgid "Underline (long dash, bold)"
+msgstr "Subrayado (guión largo, grueso)"
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLDDASHDOT.string.text
+msgid "Underline (dot dash, bold)"
+msgstr "Subrayado (punto y guión, grueso)"
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLDDASHDOTDOT.string.text
+msgid "Underline (dot dot dash, bold)"
+msgstr "Subrayado (punto - punto - guión, grueso)"
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLDWAVE.string.text
+msgid "Underline (wave, bold)"
+msgstr "Subrayado (ondas, grueso)"
+
+#: svxitems.src#RID_SVXITEMS_OL_NONE.string.text
+msgid "No overline"
+msgstr "Sin subrayado superior"
+
+#: svxitems.src#RID_SVXITEMS_OL_SINGLE.string.text
+msgid "Single overline"
+msgstr "Subrayado superior simple"
+
+#: svxitems.src#RID_SVXITEMS_OL_DOUBLE.string.text
+msgid "Double overline"
+msgstr "Subrayado superior doble"
+
+#: svxitems.src#RID_SVXITEMS_OL_DOTTED.string.text
+msgid "Dotted overline"
+msgstr "Subrayado superior con puntos"
+
+#: svxitems.src#RID_SVXITEMS_OL_DONTKNOW.string.text
+msgid "Overline"
+msgstr "Subrayado superior"
+
+#: svxitems.src#RID_SVXITEMS_OL_DASH.string.text
+msgid "Overline (dashes)"
+msgstr "Subrayado superior (guiones)"
+
+#: svxitems.src#RID_SVXITEMS_OL_LONGDASH.string.text
+msgid "Overline (long dashes)"
+msgstr "Subrayado superior (guiones largos)"
+
+#: svxitems.src#RID_SVXITEMS_OL_DASHDOT.string.text
+msgid "Overline (dot dash)"
+msgstr "Subrayado superior (punto y guión)"
+
+#: svxitems.src#RID_SVXITEMS_OL_DASHDOTDOT.string.text
+msgid "Overline (dot dot dash)"
+msgstr "Subrayado superior (punto - punto -guión)"
+
+#: svxitems.src#RID_SVXITEMS_OL_SMALLWAVE.string.text
+msgid "Overline (small wave)"
+msgstr "Subrayado superior (ondas pequeñas)"
+
+#: svxitems.src#RID_SVXITEMS_OL_WAVE.string.text
+msgid "Overline (Wave)"
+msgstr "Subrayado superior (onda)"
+
+#: svxitems.src#RID_SVXITEMS_OL_DOUBLEWAVE.string.text
+msgid "Overline (Double wave)"
+msgstr "Subrayado superior (ondas dobles)"
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLD.string.text
+msgid "Overlined (Bold)"
+msgstr "Subrayado superior (grueso)"
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLDDOTTED.string.text
+msgid "Dotted overline (Bold)"
+msgstr "Subrayado superior con puntos (grueso)"
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLDDASH.string.text
+msgid "Overline (Dash bold)"
+msgstr "Subrayado superior (guión grueso)"
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLDLONGDASH.string.text
+msgid "Overline (long dash, bold)"
+msgstr "Subrayado superior (guión largo, grueso)"
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLDDASHDOT.string.text
+msgid "Overline (dot dash, bold)"
+msgstr "Subrayado superior (punto y guión, grueso)"
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLDDASHDOTDOT.string.text
+msgid "Overline (dot dot dash, bold)"
+msgstr "Subrayado superior (punto - punto - guión, grueso)"
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLDWAVE.string.text
+msgid "Overline (wave, bold)"
+msgstr "Subrayado superior (ondas, grueso)"
+
+#: svxitems.src#RID_SVXITEMS_STRIKEOUT_NONE.string.text
+msgid "No strikethrough"
+msgstr "Sin tachado"
+
+#: svxitems.src#RID_SVXITEMS_STRIKEOUT_SINGLE.string.text
+msgid "Single strikethrough"
+msgstr "Tachado simple"
+
+#: svxitems.src#RID_SVXITEMS_STRIKEOUT_DOUBLE.string.text
+msgid "Double strikethrough"
+msgstr "Tachado doble"
+
+#: svxitems.src#RID_SVXITEMS_STRIKEOUT_BOLD.string.text
+msgid "Bold strikethrough"
+msgstr "Tachado grueso"
+
+#: svxitems.src#RID_SVXITEMS_STRIKEOUT_SLASH.string.text
+msgid "Strike through with slash"
+msgstr "Tachado con barra diagonal"
+
+#: svxitems.src#RID_SVXITEMS_STRIKEOUT_X.string.text
+msgid "Strike through with Xes"
+msgstr "Tachado con equis"
+
+#: svxitems.src#RID_SVXITEMS_CASEMAP_NONE.string.text
+msgid "None"
+msgstr "Ninguno"
+
+#: svxitems.src#RID_SVXITEMS_CASEMAP_VERSALIEN.string.text
+msgid "Caps"
+msgstr "Mayúsculas"
+
+#: svxitems.src#RID_SVXITEMS_CASEMAP_GEMEINE.string.text
+msgid "Lowercase"
+msgstr "Minúsculas"
+
+#: svxitems.src#RID_SVXITEMS_CASEMAP_TITEL.string.text
+msgid "Title"
+msgstr "Título"
+
+#: svxitems.src#RID_SVXITEMS_CASEMAP_KAPITAELCHEN.string.text
+msgid "Small caps"
+msgstr "Mayúsculas pequeñas"
+
+#: svxitems.src#RID_SVXITEMS_ESCAPEMENT_OFF.string.text
+msgid "Normal position"
+msgstr "Posición normal"
+
+#: svxitems.src#RID_SVXITEMS_ESCAPEMENT_SUPER.string.text
+msgid "Superscript "
+msgstr "Superíndice "
+
+#: svxitems.src#RID_SVXITEMS_ESCAPEMENT_SUB.string.text
+msgid "Subscript "
+msgstr "Subíndice "
+
+#: svxitems.src#RID_SVXITEMS_ESCAPEMENT_AUTO.string.text
+msgid "automatic"
+msgstr "automático"
+
+#: svxitems.src#RID_SVXITEMS_ADJUST_LEFT.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_ADJUST_LEFT.string.text"
+msgid "Align left"
+msgstr "Alinear a la izqueirda"
+
+#: svxitems.src#RID_SVXITEMS_ADJUST_RIGHT.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_ADJUST_RIGHT.string.text"
+msgid "Align right"
+msgstr "Alinear a la derecha"
+
+#: svxitems.src#RID_SVXITEMS_ADJUST_BLOCK.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_ADJUST_BLOCK.string.text"
+msgid "Justify"
+msgstr "Justificar"
+
+#: svxitems.src#RID_SVXITEMS_ADJUST_CENTER.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_ADJUST_CENTER.string.text"
+msgid "Centered"
+msgstr "Centrado"
+
+#: svxitems.src#RID_SVXITEMS_ADJUST_BLOCKLINE.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_ADJUST_BLOCKLINE.string.text"
+msgid "Justify"
+msgstr "Justificar"
+
+#: svxitems.src#RID_SVXITEMS_TAB_DECIMAL_CHAR.string.text
+msgid "Decimal Symbol:"
+msgstr "Símbolo decimal:"
+
+#: svxitems.src#RID_SVXITEMS_TAB_FILL_CHAR.string.text
+msgid "Fill character:"
+msgstr "Carácter de relleno:"
+
+#: svxitems.src#RID_SVXITEMS_TAB_ADJUST_LEFT.string.text
+msgid "Left"
+msgstr "Izquierdo"
+
+#: svxitems.src#RID_SVXITEMS_TAB_ADJUST_RIGHT.string.text
+msgid "Right"
+msgstr "Derecho"
+
+#: svxitems.src#RID_SVXITEMS_TAB_ADJUST_DECIMAL.string.text
+msgid "Decimal"
+msgstr "Decimal"
+
+#: svxitems.src#RID_SVXITEMS_TAB_ADJUST_CENTER.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_TAB_ADJUST_CENTER.string.text"
+msgid "Centered"
+msgstr "Centrado"
+
+#: svxitems.src#RID_SVXITEMS_TAB_ADJUST_DEFAULT.string.text
+msgid "Default"
+msgstr "Predeterminado"
+
+#: svxitems.src#RID_SOLID.string.text
+msgid "Single, solid"
+msgstr "Simple, sólida"
+
+#: svxitems.src#RID_DOTTED.string.text
+msgid "Single, dotted"
+msgstr "Simple, punteada"
+
+#: svxitems.src#RID_DASHED.string.text
+msgid "Single, dashed"
+msgstr "Simple, con guiones"
+
+#: svxitems.src#RID_DOUBLE.string.text
+msgid "Double"
+msgstr "Doble"
+
+#: svxitems.src#RID_THINTHICK_SMALLGAP.string.text
+msgid "Double, inside: fine, outside: thick, spacing: small"
+msgstr "Doble, al interior: fina, al exterior: gruesa, espaciado: pequeño"
+
+#: svxitems.src#RID_THINTHICK_MEDIUMGAP.string.text
+msgid "Double, inside: fine, outside: thick, spacing: medium"
+msgstr "Doble, al interior: fina, al exterior: gruesa, espaciado: mediano"
+
+#: svxitems.src#RID_THINTHICK_LARGEGAP.string.text
+msgid "Double, inside: fine, outside: thick, spacing: large"
+msgstr "Doble, al interior: fina, al exterior: gruesa, espaciado: grande"
+
+#: svxitems.src#RID_THICKTHIN_SMALLGAP.string.text
+msgid "Double, inside: thick, outside: fine, spacing: small"
+msgstr "Doble, al interior: gruesa, al exterior: fina, espaciado: pequeño"
+
+#: svxitems.src#RID_THICKTHIN_MEDIUMGAP.string.text
+msgid "Double, inside: thick, outside: fine, spacing: medium"
+msgstr "Doble, al interior: gruesa, al exterior: fina, espaciado: mediano"
+
+#: svxitems.src#RID_THICKTHIN_LARGEGAP.string.text
+msgid "Double, inside: thick, outside: fine, spacing: large"
+msgstr "Doble, al interior: gruesa, al exterior: fina, espaciado: grande"
+
+#: svxitems.src#RID_EMBOSSED.string.text
+msgid "3D embossed"
+msgstr "Con relieve 3D"
+
+#: svxitems.src#RID_ENGRAVED.string.text
+msgid "3D engraved"
+msgstr "Con bajorrelieve en 3D"
+
+#: svxitems.src#RID_INSET.string.text
+msgid "Inset"
+msgstr "Recuadro interior"
+
+#: svxitems.src#RID_OUTSET.string.text
+msgid "Outset"
+msgstr "Recuadro exterior"
+
+#: svxitems.src#RID_SVXITEMS_METRIC_MM.string.text
+msgid "mm"
+msgstr "mm"
+
+#: svxitems.src#RID_SVXITEMS_METRIC_CM.string.text
+msgid "cm"
+msgstr "cm"
+
+#: svxitems.src#RID_SVXITEMS_METRIC_INCH.string.text
+msgid "inch"
+msgstr "pulgada"
+
+#: svxitems.src#RID_SVXITEMS_METRIC_POINT.string.text
+msgid "pt"
+msgstr "pt"
+
+#: svxitems.src#RID_SVXITEMS_METRIC_TWIP.string.text
+msgid "twip"
+msgstr "twip"
+
+#: svxitems.src#RID_SVXITEMS_METRIC_PIXEL.string.text
+msgid "pixel"
+msgstr "píxel"
+
+#: svxitems.src#RID_SVXITEMS_SHADOWED_TRUE.string.text
+msgid "Shadowed"
+msgstr "Con sombra"
+
+#: svxitems.src#RID_SVXITEMS_SHADOWED_FALSE.string.text
+msgid "Not Shadowed"
+msgstr "Sin sombra"
+
+#: svxitems.src#RID_SVXITEMS_BLINK_TRUE.string.text
+msgid "Blinking"
+msgstr "Centelleante"
+
+#: svxitems.src#RID_SVXITEMS_BLINK_FALSE.string.text
+msgid "Not Blinking"
+msgstr "Sin centellear"
+
+#: svxitems.src#RID_SVXITEMS_AUTOKERN_TRUE.string.text
+msgid "Pair Kerning"
+msgstr "Ajustar el espacio entre caracteres"
+
+#: svxitems.src#RID_SVXITEMS_AUTOKERN_FALSE.string.text
+msgid "No pair kerning"
+msgstr "No ajustar el espacio entre caracteres"
+
+#: svxitems.src#RID_SVXITEMS_WORDLINE_TRUE.string.text
+msgid "Individual words"
+msgstr "Palabras individuales"
+
+#: svxitems.src#RID_SVXITEMS_WORDLINE_FALSE.string.text
+msgid "Not Words Only"
+msgstr "No sólo las palabras"
+
+#: svxitems.src#RID_SVXITEMS_CONTOUR_TRUE.string.text
+msgid "Outline"
+msgstr "Contorno"
+
+#: svxitems.src#RID_SVXITEMS_CONTOUR_FALSE.string.text
+msgid "No Outline"
+msgstr "Sin contorno"
+
+#: svxitems.src#RID_SVXITEMS_PRINT_TRUE.string.text
+msgid "Print"
+msgstr "Imprimir"
+
+#: svxitems.src#RID_SVXITEMS_PRINT_FALSE.string.text
+msgid "Don't print"
+msgstr "No imprimir"
+
+#: svxitems.src#RID_SVXITEMS_OPAQUE_TRUE.string.text
+msgid "Opaque"
+msgstr "Opaco"
+
+#: svxitems.src#RID_SVXITEMS_OPAQUE_FALSE.string.text
+msgid "Not Opaque"
+msgstr "No opaco"
+
+#: svxitems.src#RID_SVXITEMS_FMTKEEP_TRUE.string.text
+msgid "Keep with next paragraph"
+msgstr "Mantener junto al próximo párrafo"
+
+#: svxitems.src#RID_SVXITEMS_FMTKEEP_FALSE.string.text
+msgid "Don't Keep Paragraphs Together"
+msgstr "No mantener los párrafos juntos"
+
+#: svxitems.src#RID_SVXITEMS_FMTSPLIT_TRUE.string.text
+msgid "Split paragraph"
+msgstr "Separar el párrafo"
+
+#: svxitems.src#RID_SVXITEMS_FMTSPLIT_FALSE.string.text
+msgid "Don't split paragraph"
+msgstr "No separar el párrafo"
+
+#: svxitems.src#RID_SVXITEMS_PROT_CONTENT_TRUE.string.text
+msgid "Contents protected"
+msgstr "Proteger el contenido"
+
+#: svxitems.src#RID_SVXITEMS_PROT_CONTENT_FALSE.string.text
+msgid "Contents not protected"
+msgstr "No proteger el contenido"
+
+#: svxitems.src#RID_SVXITEMS_PROT_SIZE_TRUE.string.text
+msgid "Size protected"
+msgstr "Proteger el tamaño"
+
+#: svxitems.src#RID_SVXITEMS_PROT_SIZE_FALSE.string.text
+msgid "Size not protected"
+msgstr "No proteger el tamaño"
+
+#: svxitems.src#RID_SVXITEMS_PROT_POS_TRUE.string.text
+msgid "Position protected"
+msgstr "Proteger la posición"
+
+#: svxitems.src#RID_SVXITEMS_PROT_POS_FALSE.string.text
+msgid "Position not protected"
+msgstr "No proteger la posición"
+
+#: svxitems.src#RID_SVXITEMS_TRANSPARENT_TRUE.string.text
+msgid "Transparent"
+msgstr "Transparente"
+
+#: svxitems.src#RID_SVXITEMS_TRANSPARENT_FALSE.string.text
+msgid "Not Transparent"
+msgstr "No transparente"
+
+#: svxitems.src#RID_SVXITEMS_HYPHEN_TRUE.string.text
+msgid "Hyphenation"
+msgstr "Separar en sílabas"
+
+#: svxitems.src#RID_SVXITEMS_HYPHEN_FALSE.string.text
+msgid "No hyphenation"
+msgstr "No separar en sílabas"
+
+#: svxitems.src#RID_SVXITEMS_PAGE_END_TRUE.string.text
+msgid "Page End"
+msgstr "Fin de página"
+
+#: svxitems.src#RID_SVXITEMS_PAGE_END_FALSE.string.text
+msgid "No Page End"
+msgstr "Sin fin de página"
+
+#: svxitems.src#RID_SVXITEMS_SIZE_WIDTH.string.text
+msgid "Width: "
+msgstr "Anchura: "
+
+#: svxitems.src#RID_SVXITEMS_SIZE_HEIGHT.string.text
+msgid "Height: "
+msgstr "Altura: "
+
+#: svxitems.src#RID_SVXITEMS_LRSPACE_LEFT.string.text
+msgid "Indent left "
+msgstr "Sangría izquierda "
+
+#: svxitems.src#RID_SVXITEMS_LRSPACE_FLINE.string.text
+msgid "First Line "
+msgstr "Primera línea "
+
+#: svxitems.src#RID_SVXITEMS_LRSPACE_RIGHT.string.text
+msgid "Indent right "
+msgstr "Sangría derecha "
+
+#: svxitems.src#RID_SVXITEMS_SHADOW_COMPLETE.string.text
+msgid "Shadow: "
+msgstr "Sombra: "
+
+#: svxitems.src#RID_SVXITEMS_BORDER_COMPLETE.string.text
+msgid "Borders "
+msgstr "Bordes "
+
+#: svxitems.src#RID_SVXITEMS_BORDER_NONE.string.text
+msgid "No border"
+msgstr "Sin bordes"
+
+#: svxitems.src#RID_SVXITEMS_BORDER_TOP.string.text
+msgid "top "
+msgstr "superior "
+
+#: svxitems.src#RID_SVXITEMS_BORDER_BOTTOM.string.text
+msgid "bottom "
+msgstr "inferior "
+
+#: svxitems.src#RID_SVXITEMS_BORDER_LEFT.string.text
+msgid "left "
+msgstr "izquierdo "
+
+#: svxitems.src#RID_SVXITEMS_BORDER_RIGHT.string.text
+msgid "right "
+msgstr "derecho "
+
+#: svxitems.src#RID_SVXITEMS_BORDER_DISTANCE.string.text
+msgid "Spacing "
+msgstr "Espaciado "
+
+#: svxitems.src#RID_SVXITEMS_ULSPACE_UPPER.string.text
+msgid "From top "
+msgstr "Desde arriba "
+
+#: svxitems.src#RID_SVXITEMS_ULSPACE_LOWER.string.text
+msgid "From bottom "
+msgstr "Desde abajo "
+
+#. pb: %1 == will be replaced by the number of lines
+#: svxitems.src#RID_SVXITEMS_LINES.string.text
+msgid "%1 Lines"
+msgstr "%1 líneas"
+
+#: svxitems.src#RID_SVXITEMS_WIDOWS_COMPLETE.string.text
+msgid "Widow control"
+msgstr "Control de viudas"
+
+#: svxitems.src#RID_SVXITEMS_ORPHANS_COMPLETE.string.text
+msgid "Orphan control"
+msgstr "Control de huérfanas"
+
+#: svxitems.src#RID_SVXITEMS_HYPHEN_MINLEAD.string.text
+msgid "Characters at end of line"
+msgstr "Caracteres al final de la línea"
+
+#: svxitems.src#RID_SVXITEMS_HYPHEN_MINTRAIL.string.text
+msgid "Characters at beginning of line"
+msgstr "Caracteres al principio de la línea"
+
+#: svxitems.src#RID_SVXITEMS_HYPHEN_MAX.string.text
+msgid "Hyphens"
+msgstr "Guiones"
+
+#: svxitems.src#RID_SVXITEMS_PAGEMODEL_COMPLETE.string.text
+msgid "Page Style: "
+msgstr "Estilo de página: "
+
+#: svxitems.src#RID_SVXITEMS_KERNING_COMPLETE.string.text
+msgid "Kerning "
+msgstr "Espaciado entre caracteres "
+
+#: svxitems.src#RID_SVXITEMS_KERNING_EXPANDED.string.text
+msgid "locked "
+msgstr "bloqueado "
+
+#: svxitems.src#RID_SVXITEMS_KERNING_CONDENSED.string.text
+msgid "Condensed "
+msgstr "Condensado "
+
+#: svxitems.src#RID_SVXITEMS_GRAPHIC.string.text
+msgid "Graphic"
+msgstr "Imagen"
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_NONE_STYLE.string.text
+msgid "none"
+msgstr "ninguno"
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_DOT_STYLE.string.text
+msgid "Dots "
+msgstr "Puntos "
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_CIRCLE_STYLE.string.text
+msgid "Circle "
+msgstr "Círculo "
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_DISC_STYLE.string.text
+msgid "Filled circle "
+msgstr "Círculo relleno "
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_ACCENT_STYLE.string.text
+msgid "Accent "
+msgstr "Acento "
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_ABOVE_POS.string.text
+msgid "Above"
+msgstr "Encima"
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_BELOW_POS.string.text
+msgid "Below"
+msgstr "Debajo"
+
+#: svxitems.src#RID_SVXITEMS_TWOLINES_OFF.string.text
+msgid "Double-lined off"
+msgstr "Terminar doble línea"
+
+#: svxitems.src#RID_SVXITEMS_TWOLINES.string.text
+msgid "Double-lined"
+msgstr "Doble línea"
+
+#: svxitems.src#RID_SVXITEMS_SCRPTSPC_OFF.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_SCRPTSPC_OFF.string.text"
+msgid "No automatic character spacing"
+msgstr "Sin espaciado automático de caracteres"
+
+#: svxitems.src#RID_SVXITEMS_SCRPTSPC_ON.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_SCRPTSPC_ON.string.text"
+msgid "No automatic character spacing"
+msgstr "Sin espaciado automático de caracteres"
+
+#: svxitems.src#RID_SVXITEMS_HNGPNCT_OFF.string.text
+msgid "No hanging punctuation at line end"
+msgstr "Sin signos de puntuación fuera del margen al final de la línea"
+
+#: svxitems.src#RID_SVXITEMS_HNGPNCT_ON.string.text
+msgid "Hanging punctuation at line end"
+msgstr "Signos de puntuación fuera del margen al final de la línea"
+
+#: svxitems.src#RID_SVXITEMS_FORBIDDEN_RULE_OFF.string.text
+msgid "Apply list of forbidden characters to beginning and end of lines"
+msgstr "Aplicar la lista de caracteres prohibidos al principio o final de las líneas"
+
+#: svxitems.src#RID_SVXITEMS_FORBIDDEN_RULE_ON.string.text
+msgid "Don't apply list of forbidden characters to beginning and end of lines"
+msgstr "No aplicar la lista de caracteres prohibidos al principio o final de las líneas"
+
+#: svxitems.src#RID_SVXITEMS_CHARROTATE_OFF.string.text
+msgid "No rotated characters"
+msgstr "Sin caracteres rotados"
+
+#: svxitems.src#RID_SVXITEMS_CHARROTATE.string.text
+msgid "Character rotated by $(ARG1)°"
+msgstr "Caracteres rotados por $(ARG1)°"
+
+#: svxitems.src#RID_SVXITEMS_CHARROTATE_FITLINE.string.text
+msgid "Fit to line"
+msgstr "Encajar en la línea"
+
+#: svxitems.src#RID_SVXITEMS_CHARSCALE.string.text
+msgid "Characters scaled $(ARG1)%"
+msgstr "Caracteres escalados al $(ARG1)%"
+
+#: svxitems.src#RID_SVXITEMS_CHARSCALE_OFF.string.text
+msgid "No scaled characters"
+msgstr "Sin escalar los caracteres"
+
+#: svxitems.src#RID_SVXITEMS_RELIEF_NONE.string.text
+msgid "No relief"
+msgstr "Sin relieve"
+
+#: svxitems.src#RID_SVXITEMS_RELIEF_EMBOSSED.string.text
+msgid "Relief"
+msgstr "Con relieve"
+
+#: svxitems.src#RID_SVXITEMS_RELIEF_ENGRAVED.string.text
+msgid "Engraved"
+msgstr "Bajorrelieve"
+
+#: svxitems.src#RID_SVXITEMS_PARAVERTALIGN_AUTO.string.text
+msgid "Automatic text alignment"
+msgstr "Alineación automática del texto"
+
+#: svxitems.src#RID_SVXITEMS_PARAVERTALIGN_BASELINE.string.text
+msgid "Text aligned to base line"
+msgstr "Texto alineado a la línea de base"
+
+#: svxitems.src#RID_SVXITEMS_PARAVERTALIGN_TOP.string.text
+msgid "Text aligned top"
+msgstr "Texto alineado arriba"
+
+#: svxitems.src#RID_SVXITEMS_PARAVERTALIGN_CENTER.string.text
+msgid "Text aligned middle"
+msgstr "Texto alineado al medio"
+
+#: svxitems.src#RID_SVXITEMS_PARAVERTALIGN_BOTTOM.string.text
+msgid "Text aligned bottom"
+msgstr "Texto alineado abajo"
+
+#: svxitems.src#RID_SVXITEMS_FRMDIR_HORI_LEFT_TOP.string.text
+msgid "Text direction left-to-right (horizontal)"
+msgstr "Dirección del texto de izquierda a derecha (horizontal)"
+
+#: svxitems.src#RID_SVXITEMS_FRMDIR_HORI_RIGHT_TOP.string.text
+msgid "Text direction right-to-left (horizontal)"
+msgstr "Dirección del texto de derecha a izquierda (horizontal)"
+
+#: svxitems.src#RID_SVXITEMS_FRMDIR_VERT_TOP_RIGHT.string.text
+msgid "Text direction right-to-left (vertical)"
+msgstr "Dirección del texto de dercha a izquierda (vertical)"
+
+#: svxitems.src#RID_SVXITEMS_FRMDIR_VERT_TOP_LEFT.string.text
+msgid "Text direction left-to-right (vertical)"
+msgstr "Dirección del texto de izquierda a derecha (vertical)"
+
+#: svxitems.src#RID_SVXITEMS_FRMDIR_ENVIRONMENT.string.text
+msgid "Use superordinate object text direction setting"
+msgstr "Usar la configuración de dirección del objeto al que está subordinado"
+
+#: svxitems.src#RID_SVXITEMS_PARASNAPTOGRID_ON.string.text
+msgid "Paragraph snaps to text grid (if active)"
+msgstr "El párrafo se adhiere a la grilla de texto (si está activa)"
+
+#: svxitems.src#RID_SVXITEMS_PARASNAPTOGRID_OFF.string.text
+msgid "Paragraph does not snap to text grid"
+msgstr "El párrafo no se adhiere a la grilla de texto"
+
+#: svxitems.src#RID_SVXITEMS_CHARHIDDEN_FALSE.string.text
+msgid "Not hidden"
+msgstr "Sin ocultar"
+
+#: svxitems.src#RID_SVXITEMS_CHARHIDDEN_TRUE.string.text
+msgid "Hidden"
+msgstr "Oculto"
+
+#: svxitems.src#RID_SVXITEMS_HORJUST_STANDARD.string.text
+msgid "Horizontal alignment default"
+msgstr "Alineación horizontal predeterminada"
+
+#: svxitems.src#RID_SVXITEMS_HORJUST_LEFT.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_HORJUST_LEFT.string.text"
+msgid "Align left"
+msgstr "Alinear a la izquierda"
+
+#: svxitems.src#RID_SVXITEMS_HORJUST_CENTER.string.text
+msgid "Centered horizontally"
+msgstr "Centrado horizontalmente"
+
+#: svxitems.src#RID_SVXITEMS_HORJUST_RIGHT.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_HORJUST_RIGHT.string.text"
+msgid "Align right"
+msgstr "Alinear a la derecha"
+
+#: svxitems.src#RID_SVXITEMS_HORJUST_BLOCK.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_HORJUST_BLOCK.string.text"
+msgid "Justify"
+msgstr "Justificar"
+
+#: svxitems.src#RID_SVXITEMS_HORJUST_REPEAT.string.text
+msgid "Repeat alignment"
+msgstr "Repetir la alineación"
+
+#: svxitems.src#RID_SVXITEMS_VERJUST_STANDARD.string.text
+msgid "Vertical alignment default"
+msgstr "Alineación vertical predeterminada"
+
+#: svxitems.src#RID_SVXITEMS_VERJUST_TOP.string.text
+msgid "Align to top"
+msgstr "Alinear arriba"
+
+#: svxitems.src#RID_SVXITEMS_VERJUST_CENTER.string.text
+msgid "Centered vertically"
+msgstr "Centrado verticalmente"
+
+#: svxitems.src#RID_SVXITEMS_VERJUST_BOTTOM.string.text
+msgid "Align to bottom"
+msgstr "Alinear abajo"
+
+#: svxitems.src#RID_SVXITEMS_JUSTMETHOD_AUTO.string.text
+msgid "Automatic"
+msgstr "Automática"
+
+#: svxitems.src#RID_SVXITEMS_JUSTMETHOD_DISTRIBUTE.string.text
+msgid "Distributed"
+msgstr "Distribuida"
+
+#: page.src#RID_SVXSTR_PAPERBIN.string.text
+msgid "Paper tray"
+msgstr "Alimentador de hojas"
+
+#: page.src#RID_SVXSTR_PAPERBIN_SETTINGS.string.text
+msgid "[From printer settings]"
+msgstr "[Según la configuración de la impresora]"
diff --git a/source/es/editeng/source/misc.po b/source/es/editeng/source/misc.po
new file mode 100644
index 00000000000..0fd96f5cc7d
--- /dev/null
+++ b/source/es/editeng/source/misc.po
@@ -0,0 +1,46 @@
+#. extracted from editeng/source/misc.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+editeng%2Fsource%2Fmisc.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-13 11:39+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: lingu.src#RID_SVXQB_CONTINUE.querybox.text
+msgid "Continue checking at beginning of document?"
+msgstr "¿Continuar comprobando desde el principio del documento?"
+
+#: lingu.src#RID_SVXQB_BW_CONTINUE.querybox.text
+msgid "Continue checking at end of document?"
+msgstr "¿Continuar revisando al final del documento?"
+
+#: lingu.src#RID_SVXSTR_HMERR_THESAURUS.string.text
+msgid ""
+"No thesaurus is available for the selected language. \n"
+"Please check your installation and install the desired language\n"
+msgstr ""
+"No hay un tesauro disponible para el idioma seleccionado. \n"
+"Por favor revise su instalación tenga el idioma deseado\n"
+
+#: lingu.src#RID_SVXSTR_DIC_ERR_UNKNOWN.string.text
+msgid ""
+"Word cannot be added to dictionary\n"
+"due to unknown reason."
+msgstr "La palabra no puede ser agregada al diccionariodebido a una razón desconocida."
+
+#: lingu.src#RID_SVXSTR_DIC_ERR_FULL.string.text
+msgid "The dictionary is already full."
+msgstr "El diccionario esta lleno."
+
+#: lingu.src#RID_SVXSTR_DIC_ERR_READONLY.string.text
+msgid "The dictionary is read-only."
+msgstr "El diccionario es de solo lectura."
diff --git a/source/es/editeng/source/outliner.po b/source/es/editeng/source/outliner.po
new file mode 100644
index 00000000000..5723faababd
--- /dev/null
+++ b/source/es/editeng/source/outliner.po
@@ -0,0 +1,40 @@
+#. extracted from editeng/source/outliner.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+editeng%2Fsource%2Foutliner.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2011-04-05 20:01+0200\n"
+"Last-Translator: Alexandro <jza@openoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: outliner.src#RID_OUTLUNDO_HEIGHT.string.text
+msgid "Move"
+msgstr "Mover"
+
+#: outliner.src#RID_OUTLUNDO_DEPTH.string.text
+msgid "Indent"
+msgstr "Sangría"
+
+#: outliner.src#RID_OUTLUNDO_EXPAND.string.text
+msgid "Show subpoints"
+msgstr "Mostrar los subpuntos"
+
+#: outliner.src#RID_OUTLUNDO_COLLAPSE.string.text
+msgid "Collapse"
+msgstr "Colapsar"
+
+#: outliner.src#RID_OUTLUNDO_ATTR.string.text
+msgid "Apply attributes"
+msgstr "Aplicar los atributos"
+
+#: outliner.src#RID_OUTLUNDO_INSERT.string.text
+msgid "Insert"
+msgstr "Insertar"
diff --git a/source/es/extensions/source/abpilot.po b/source/es/extensions/source/abpilot.po
new file mode 100644
index 00000000000..e8c9afda160
--- /dev/null
+++ b/source/es/extensions/source/abpilot.po
@@ -0,0 +1,228 @@
+#. extracted from extensions/source/abpilot.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+extensions%2Fsource%2Fabpilot.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-05-08 14:25+0200\n"
+"Last-Translator: Santiago <santiago.bosio@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: abspilot.src#RID_DLG_ADDRESSBOOKSOURCEPILOT.STR_SELECT_ABTYPE.string.text
+msgid "Address book type"
+msgstr "Tipo de libreta de direcciones"
+
+#: abspilot.src#RID_DLG_ADDRESSBOOKSOURCEPILOT.STR_INVOKE_ADMIN_DIALOG.string.text
+msgid "Connection Settings"
+msgstr "Configuración de conexión"
+
+#: abspilot.src#RID_DLG_ADDRESSBOOKSOURCEPILOT.STR_TABLE_SELECTION.string.text
+msgid "Table selection"
+msgstr "Selección de tabla"
+
+#: abspilot.src#RID_DLG_ADDRESSBOOKSOURCEPILOT.STR_MANUAL_FIELD_MAPPING.string.text
+msgctxt "abspilot.src#RID_DLG_ADDRESSBOOKSOURCEPILOT.STR_MANUAL_FIELD_MAPPING.string.text"
+msgid "Field Assignment"
+msgstr "Asignación de campo"
+
+#: abspilot.src#RID_DLG_ADDRESSBOOKSOURCEPILOT.STR_FINAL_CONFIRM.string.text
+msgid "Data Source Title"
+msgstr "Título de origen de datos"
+
+#: abspilot.src#RID_DLG_ADDRESSBOOKSOURCEPILOT.modaldialog.text
+msgid "Address Book Data Source Wizard"
+msgstr "Asistente: Origen de datos de libreta de direcciones"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.FT_TYPE_HINTS.fixedtext.text
+msgid ""
+"%PRODUCTNAME lets you access address data already present in your system. To do this, a %PRODUCTNAME data source will be created in which your address data is available in tabular form.\n"
+"\n"
+"This wizard helps you create the data source."
+msgstr ""
+"%PRODUCTNAME permite acceder a los datos de direcciones existentes en el sistema. Para ello, se creará un origen de datos de %PRODUCTNAME que contenga los datos de las direcciones en forma tabular.\n"
+"\n"
+"Este asistente facilita la creación del origen de datos."
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.FL_TYPE.fixedline.text
+msgid "Please select the type of your external address book:"
+msgstr "Seleccione el tipo de libreta de direcciones externa:"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_EVOLUTION.radiobutton.text
+msgid "Evolution"
+msgstr "Evolution"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_EVOLUTION_GROUPWISE.radiobutton.text
+msgid "Groupwise"
+msgstr "Todo el grupo"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_EVOLUTION_LDAP.radiobutton.text
+msgid "Evolution LDAP"
+msgstr "Evolución LDAP"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_MORK.radiobutton.text
+msgid "Mozilla / Netscape"
+msgstr "Mozilla / Netscape"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_THUNDERBIRD.radiobutton.text
+msgid "Thunderbird/Icedove"
+msgstr "Thunderbird/Icedove"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_KAB.radiobutton.text
+msgid "KDE address book"
+msgstr "Libreta de direcciones de KDE"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_MACAB.radiobutton.text
+msgid "Mac OS X address book"
+msgstr "Libreta de direcciones de Mac OS X"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_LDAP.radiobutton.text
+msgid "LDAP address data"
+msgstr "Datos de las direcciones LDAP"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_OUTLOOK.radiobutton.text
+msgid "Outlook address book"
+msgstr "Libreta de direcciones de Outlook"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_OUTLOOKEXPRESS.radiobutton.text
+msgid "Windows system address book"
+msgstr "Libreta de direcciones del sistema de Windows"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_OTHER.radiobutton.text
+msgid "Other external data source"
+msgstr "Otras fuentes de datos externas"
+
+#: abspilot.src#RID_PAGE_ADMININVOKATION.FT_ADMINEXPLANATION.fixedtext.text
+msgid ""
+"To set up the new data source, additional information is required.\n"
+"\n"
+"Click the following button to open another dialog in which you then enter the necessary information."
+msgstr ""
+"Para configurar la nueva fuente de datos se necesita otra información.\n"
+"\n"
+"Para ello, en cuanto pulse sobre el botón que se encuentra abajo se abrirá otro diálogo. Introduzca en él la información requerida."
+
+#: abspilot.src#RID_PAGE_ADMININVOKATION.PB_INVOKE_ADMIN_DIALOG.pushbutton.text
+msgid "Settings"
+msgstr "Configuración"
+
+#: abspilot.src#RID_PAGE_ADMININVOKATION.FT_ERROR.fixedtext.text
+msgid ""
+"The connection to the data source could not be established.\n"
+"Before you proceed, please check the settings made, or (on the previous page) choose another address data source type."
+msgstr ""
+"No se pudo efectuar la conexión a la fuente de datos.\n"
+"Antes de continuar, compruebe la configuración realizada o elija (en la ficha anterior) otro tipo para la fuente de datos de direcciones."
+
+#: abspilot.src#RID_PAGE_TABLESELECTION_AB.FL_TOOMUCHTABLES.fixedtext.text
+msgid ""
+"The external data source you have chosen contains more than one address book.\n"
+"Please select the one you mainly want to work with:"
+msgstr ""
+"El origen de datos externos elegido contiene más de una libreta de direcciones.\n"
+"Seleccione la que desee utilizar principalmente:"
+
+#: abspilot.src#RID_PAGE_FIELDMAPPING.FT_FIELDASSIGMENTEXPL.fixedtext.text
+msgid ""
+"To incorporate the address data in your templates, %PRODUCTNAME has to know which fields contain which data.\n"
+"\n"
+"For instance, you could have stored the e-mail addresses in a field named \"email\", or \"E-mail\" or \"EM\" - or something completely different.\n"
+"\n"
+"Click the button below to open another dialog where you can enter the settings for your data source."
+msgstr ""
+"Para poder incorporar los datos de las direcciones en las plantillas, %PRODUCTNAME debe saber qué campos contienen qué datos.\n"
+"\n"
+"Por ejemplo usted puede haber guardado las direcciones electrónicas en un campo con el nombre \"e-mail\", \"email\", o con otro nombre completamente distinto.\n"
+"\n"
+"Si pulsa el botón que se encuentra más abajo, se abre otro diálogo en el que podrá configurar la fuente de datos con los nuevos valores."
+
+#: abspilot.src#RID_PAGE_FIELDMAPPING.PB_INVOKE_FIELDS_DIALOG.pushbutton.text
+msgctxt "abspilot.src#RID_PAGE_FIELDMAPPING.PB_INVOKE_FIELDS_DIALOG.pushbutton.text"
+msgid "Field Assignment"
+msgstr "Asignación de campo"
+
+#: abspilot.src#RID_PAGE_FINAL.FT_FINISH_EXPL.fixedtext.text
+msgid ""
+"That was all the information necessary to integrate your address data into %PRODUCTNAME.\n"
+"\n"
+"Now, just enter the name under which you want to register the data source in %PRODUCTNAME."
+msgstr ""
+"Ahora dispone de la información necesaria para integrar los datos de las direcciones en %PRODUCTNAME.\n"
+"\n"
+"Indique ahora el nombre con el que desee registrar la fuente de datos en %PRODUCTNAME."
+
+#: abspilot.src#RID_PAGE_FINAL.FT_LOCATION.fixedtext.text
+msgid "Location"
+msgstr "Ubicación"
+
+#: abspilot.src#RID_PAGE_FINAL.PB_BROWSE.pushbutton.text
+msgid "Browse..."
+msgstr "Examinar..."
+
+#: abspilot.src#RID_PAGE_FINAL.CB_REGISTER_DS.checkbox.text
+msgid "Make this address book available to all modules in %PRODUCTNAME."
+msgstr "Hacer que esta libreta de direcciones esté disponible para todos los módulos de %PRODUCTNAME."
+
+#: abspilot.src#RID_PAGE_FINAL.FT_NAME_EXPL.fixedtext.text
+msgid "Address book name"
+msgstr "Nombre de libreta de direcciones"
+
+#: abspilot.src#RID_PAGE_FINAL.FT_DUPLICATENAME.fixedtext.text
+msgid "Another data source already has this name. As data sources have to have globally unique names, you need to choose another one."
+msgstr "Ya existe otra fuente de datos con este nombre. Debe elegir otro ya que el nombre de la fuente de datos debe ser globalmente único."
+
+#: abspilot.src#RID_ERR_NEEDTYPESELECTION.errorbox.text
+msgid "Please select a type of address book."
+msgstr "Seleccione un tipo de libreta de direcciones"
+
+#: abspilot.src#RID_QRY_NOTABLES.querybox.text
+msgid ""
+"The data source does not contain any tables.\n"
+"Do you want to set it up as an address data source, anyway?"
+msgstr ""
+"La fuente de datos no contiene tablas.\n"
+"¿Desea no obstante configurarla como fuente de datos de direcciones?"
+
+#: abspilot.src#RID_QRY_NO_EVO_GW.querybox.text
+msgid ""
+"You don't seem to have any GroupWise account configured in Evolution.\n"
+"Do you want to set it up as an address data source, anyway?"
+msgstr ""
+"No parece tener una cuenta de GroupWise configurada en Evolution.\n"
+"¿Desea configurarla como origen de datos igualmente?"
+
+#: abspilot.src#RID_STR_DEFAULT_NAME.string.text
+msgid "Addresses"
+msgstr "Direcciones"
+
+#: abspilot.src#RID_STR_ADMINDIALOGTITLE.string.text
+msgid "Create Address Data Source"
+msgstr "Crear fuente de datos de direcciones"
+
+#: abspilot.src#RID_STR_NOCONNECTION.string.text
+msgid "The connection could not be established."
+msgstr "No se pudo realizar la conexión."
+
+#: abspilot.src#RID_STR_PLEASECHECKSETTINGS.string.text
+msgid "Please check the settings made for the data source."
+msgstr "Compruebe la configuración para la fuente de datos."
+
+#: abspilot.src#RID_STR_FIELDDIALOGTITLE.string.text
+msgid "Address Data - Field Assignment"
+msgstr "Datos de direcciones - asignación de campo"
+
+#: abspilot.src#RID_STR_NOFIELDSASSIGNED.string.text
+msgid ""
+"There are no fields assigned at this time.\n"
+"You can either assign fields now or do so later by first choosing:\n"
+"\"File - Template - Address Book Source...\""
+msgstr ""
+"Actualmente no existen campos asignados.\n"
+"Si no puede llevar a cabo de momento ninguna asignación, lo puede hacer posteriormente en cualquier momento:\n"
+"Menú \"Archivo - Plantillas - Fuente de libreta de direcciones...\""
diff --git a/source/es/extensions/source/bibliography.po b/source/es/extensions/source/bibliography.po
new file mode 100644
index 00000000000..0a766cd9601
--- /dev/null
+++ b/source/es/extensions/source/bibliography.po
@@ -0,0 +1,315 @@
+#. extracted from extensions/source/bibliography.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+extensions%2Fsource%2Fbibliography.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-22 05:23+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: bib.src#RID_BIB_STR_FIELDSELECTION.string.text
+msgid "Field selection:"
+msgstr "Selección de campo:"
+
+#: bib.src#RID_BIB_STR_TABWIN_PREFIX.string.text
+msgid "Table;Query;Sql;Sql [Native]"
+msgstr "Tabla;Consulta;Sql;Sql [Native]"
+
+#: bib.src#RID_BIB_STR_FRAME_TITLE.string.text
+msgid "Bibliography Database"
+msgstr "Base de datos bibliográfica"
+
+#: bib.src#RID_MAP_QUESTION.string.text
+msgid "Do you want to edit the column arrangement?"
+msgstr "¿Desea modificar el orden de las columnas?"
+
+#: sections.src#RID_TP_GENERAL.ST_ERROR_PREFIX.string.text
+msgid "The following column names could not be assigned:\n"
+msgstr "No se pudieron asignar los siguientes nombres de columnas:\n"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_ARTICLE.string.text
+msgid "Article"
+msgstr "Artículo"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_BOOK.string.text
+msgid "Book"
+msgstr "Libro"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_BOOKLET.string.text
+msgid "Brochures"
+msgstr "Folleto"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_CONFERENCE.string.text
+msgctxt "sections.src#RID_TP_GENERAL.ST_TYPE_CONFERENCE.string.text"
+msgid "Conference proceedings"
+msgstr "Actas de conferencia"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_INBOOK.string.text
+msgid "Book excerpt"
+msgstr "Extracto de libro"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_INCOLLECTION.string.text
+msgid "Book excerpt with title"
+msgstr "Extracto de libro con título"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_INPROCEEDINGS.string.text
+msgctxt "sections.src#RID_TP_GENERAL.ST_TYPE_INPROCEEDINGS.string.text"
+msgid "Conference proceedings"
+msgstr "Informe de reunión"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_JOURNAL.string.text
+msgid "Journal"
+msgstr "Revista"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_MANUAL.string.text
+msgid "Techn. documentation"
+msgstr "Documentación técnica"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_MASTERSTHESIS.string.text
+msgid "Thesis"
+msgstr "Tesina"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_MISC.string.text
+msgid "Miscellaneous"
+msgstr "Diversos"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_PHDTHESIS.string.text
+msgid "Dissertation"
+msgstr "Tesis doctoral"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_PROCEEDINGS.string.text
+msgctxt "sections.src#RID_TP_GENERAL.ST_TYPE_PROCEEDINGS.string.text"
+msgid "Conference proceedings"
+msgstr "Informe de reunión"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_TECHREPORT.string.text
+msgid "Research report"
+msgstr "Informe de investigación"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_UNPUBLISHED.string.text
+msgid "Unpublished"
+msgstr "Inédito"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_EMAIL.string.text
+msgid "e-mail"
+msgstr "Mensaje electrónico"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_WWW.string.text
+msgid "WWW document"
+msgstr "Documento WWW"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_CUSTOM1.string.text
+msgid "User-defined1"
+msgstr "Usuario1"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_CUSTOM2.string.text
+msgid "User-defined2"
+msgstr "Usuario2"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_CUSTOM3.string.text
+msgid "User-defined3"
+msgstr "Usuario3"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_CUSTOM4.string.text
+msgid "User-defined4"
+msgstr "Usuario4"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_CUSTOM5.string.text
+msgid "User-defined5"
+msgstr "Usuario5"
+
+#: sections.src#RID_TP_GENERAL.tabpage.text
+msgid "General"
+msgstr "General"
+
+#: sections.src#RID_POPUP_ME_VIEW.PU_INSERT.menuitem.text
+msgid "Insert Section..."
+msgstr "Insertar sección..."
+
+#: sections.src#RID_POPUP_ME_VIEW.PU_REMOVE.menuitem.text
+msgid "Delete Section..."
+msgstr "Eliminar sección..."
+
+#: sections.src#RID_POPUP_ME_VIEW.PU_CHG_NAME.menuitem.text
+msgid "Modify Name..."
+msgstr "Modificar nombre..."
+
+#: sections.src#ST_IDENTIFIER.string.text
+msgid "~Short name"
+msgstr "~Abreviatura"
+
+#: sections.src#ST_AUTHTYPE.string.text
+msgid "~Type"
+msgstr "~Tipo"
+
+#: sections.src#ST_YEAR.string.text
+msgid "~Year"
+msgstr "~Año"
+
+#: sections.src#ST_AUTHOR.string.text
+msgid "Author(s)"
+msgstr "Autor(es)"
+
+#: sections.src#ST_TITLE.string.text
+msgid "Tit~le"
+msgstr "Títu~lo"
+
+#: sections.src#ST_PUBLISHER.string.text
+msgid "~Publisher"
+msgstr "Editorial"
+
+#: sections.src#ST_ADDRESS.string.text
+msgid "A~ddress"
+msgstr "~Dirección"
+
+#: sections.src#ST_ISBN.string.text
+msgid "~ISBN"
+msgstr "~ISBN"
+
+#: sections.src#ST_CHAPTER.string.text
+msgid "~Chapter"
+msgstr "~Capítulo"
+
+#: sections.src#ST_PAGE.string.text
+msgid "Pa~ge(s)"
+msgstr "~Página(s)"
+
+#: sections.src#ST_EDITOR.string.text
+msgid "Editor"
+msgstr "Editor"
+
+#: sections.src#ST_EDITION.string.text
+msgid "Ed~ition"
+msgstr "Ed~ición"
+
+#: sections.src#ST_BOOKTITLE.string.text
+msgid "~Book title"
+msgstr "Título del li~bro"
+
+#: sections.src#ST_VOLUME.string.text
+msgid "Volume"
+msgstr "~Tomo"
+
+#: sections.src#ST_HOWPUBLISHED.string.text
+msgid "Publication t~ype"
+msgstr "Tipo de p~ublicación"
+
+#: sections.src#ST_ORGANIZATION.string.text
+msgid "Organi~zation"
+msgstr "Organi~zación"
+
+#: sections.src#ST_INSTITUTION.string.text
+msgid "Instit~ution"
+msgstr "I~nstitución"
+
+#: sections.src#ST_SCHOOL.string.text
+msgid "University"
+msgstr "Universidad"
+
+#: sections.src#ST_REPORT.string.text
+msgid "Type of re~port"
+msgstr "Tipo de in~forme"
+
+#: sections.src#ST_MONTH.string.text
+msgid "~Month"
+msgstr "~Mes"
+
+#: sections.src#ST_JOURNAL.string.text
+msgid "~Journal"
+msgstr "~Revista"
+
+#: sections.src#ST_NUMBER.string.text
+msgid "Numb~er"
+msgstr "Núm~ero"
+
+#: sections.src#ST_SERIES.string.text
+msgid "Se~ries"
+msgstr "Se~rie"
+
+#: sections.src#ST_ANNOTE.string.text
+msgid "Ann~otation"
+msgstr "~Observación"
+
+#: sections.src#ST_NOTE.string.text
+msgid "~Note"
+msgstr "~Nota"
+
+#: sections.src#ST_URL.string.text
+msgid "URL"
+msgstr "URL"
+
+#: sections.src#ST_CUSTOM1.string.text
+msgid "User-defined field ~1"
+msgstr "Campo de usuario ~1"
+
+#: sections.src#ST_CUSTOM2.string.text
+msgid "User-defined field ~2"
+msgstr "Campo de usuario ~2"
+
+#: sections.src#ST_CUSTOM3.string.text
+msgid "User-defined field ~3"
+msgstr "Campo de usuario ~3"
+
+#: sections.src#ST_CUSTOM4.string.text
+msgid "User-defined field ~4"
+msgstr "Campo de usuario ~4"
+
+#: sections.src#ST_CUSTOM5.string.text
+msgid "User-defined field ~5"
+msgstr "Campo de usuario ~5"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_FT_SOURCE.toolboxitem.text
+msgid "Table"
+msgstr "Tabla"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_FT_QUERY.toolboxitem.text
+msgid "Search Key"
+msgstr "Expresión de búsqueda"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_BT_AUTOFILTER.toolboxitem.text
+msgid "AutoFilter"
+msgstr "AutoFiltro"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_BT_FILTERCRIT.toolboxitem.text
+msgid "Standard Filter"
+msgstr "Filtro predeterminado"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_BT_REMOVEFILTER.toolboxitem.text
+msgid "Remove Filter"
+msgstr "Eliminar filtro"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_BT_COL_ASSIGN.toolboxitem.text
+msgid "Column Arrangement"
+msgstr "Disposición de columnas"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_BT_CHANGESOURCE.toolboxitem.text
+msgid "Data Source"
+msgstr "Origen de datos"
+
+#: datman.src#RID_DLG_MAPPING.GB_MAPPING.fixedline.text
+msgid "Column names"
+msgstr "Nombres de columna"
+
+#: datman.src#RID_DLG_MAPPING.ST_NONE.string.text
+msgid "<none>"
+msgstr "<ninguno>"
+
+#: datman.src#RID_DLG_MAPPING.modaldialog.text
+msgid "Column Layout for Table %1"
+msgstr "Asignación de columnas para tabla %1"
+
+#: datman.src#RID_DLG_DBCHANGE.ST_ENTRY.string.text
+msgid "Entry"
+msgstr "Entrada"
+
+#: datman.src#RID_DLG_DBCHANGE.modaldialog.text
+msgid "Choose Data Source"
+msgstr "Elegir origen de datos"
diff --git a/source/es/extensions/source/dbpilots.po b/source/es/extensions/source/dbpilots.po
new file mode 100644
index 00000000000..aacaf248458
--- /dev/null
+++ b/source/es/extensions/source/dbpilots.po
@@ -0,0 +1,269 @@
+#. extracted from extensions/source/dbpilots.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+extensions%2Fsource%2Fdbpilots.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-08-14 05:07+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dbpilots.src#RID_DLG_GROUPBOXWIZARD.modaldialog.text
+msgid "Group Element Wizard"
+msgstr "Asistente: Elemento de grupo"
+
+#: dbpilots.src#RID_DLG_GRIDWIZARD.modaldialog.text
+msgid "Table Element Wizard"
+msgstr "Asistente: Elemento de tabla"
+
+#: dbpilots.src#RID_STR_LISTWIZARD_TITLE.string.text
+msgid "List Box Wizard"
+msgstr "Asistente: Cuadro de lista"
+
+#: dbpilots.src#RID_STR_COMBOWIZARD_TITLE.string.text
+msgid "Combo Box Wizard"
+msgstr "Asistente: Cuadro combinado"
+
+#: dbpilots.src#RID_STR_COULDNOTOPENTABLE.string.text
+msgid "The table connection to the data source could not be established."
+msgstr "No se pudo establecer la conexión al origen de datos."
+
+#: groupboxpages.src#RID_PAGE_GROUPRADIOSELECTION.FT_RADIOLABELS.fixedtext.text
+msgid "Which ~names do you want to give the option fields?"
+msgstr "¿Qué ~nombres deben contener los campos de opción?"
+
+#: groupboxpages.src#RID_PAGE_GROUPRADIOSELECTION.FT_RADIOBUTTONS.fixedtext.text
+msgctxt "groupboxpages.src#RID_PAGE_GROUPRADIOSELECTION.FT_RADIOBUTTONS.fixedtext.text"
+msgid "~Option fields"
+msgstr "~Campos de opción"
+
+#: groupboxpages.src#RID_PAGE_GROUPRADIOSELECTION.tabpage.text
+msgctxt "groupboxpages.src#RID_PAGE_GROUPRADIOSELECTION.tabpage.text"
+msgid "Data"
+msgstr "Datos"
+
+#: groupboxpages.src#RID_PAGE_DEFAULTFIELDSELECTION.FT_DEFAULTSELECTION.fixedtext.text
+msgid "Should one option field be selected as a default?"
+msgstr "¿Desea que se seleccione un botón de opción de forma predeterminada?"
+
+#: groupboxpages.src#RID_PAGE_DEFAULTFIELDSELECTION.RB_DEFSELECTION_YES.radiobutton.text
+msgid "~Yes, the following:"
+msgstr "~Sí, el siguiente:"
+
+#: groupboxpages.src#RID_PAGE_DEFAULTFIELDSELECTION.RB_DEFSELECTION_NO.radiobutton.text
+msgid "No, one particular field is not going to be selected."
+msgstr "No, no debe ser seleccionado ningún campo."
+
+#: groupboxpages.src#RID_PAGE_DEFAULTFIELDSELECTION.tabpage.text
+msgid "Default Field Selection"
+msgstr "Selección de campo predeterminado"
+
+#: groupboxpages.src#RID_PAGE_OPTIONVALUES.FT_OPTIONVALUES_EXPL.fixedtext.text
+msgid "When you select an option, the option group is given a specific value."
+msgstr "Si elige una opción, se le asignará al grupo de opciones un determinado valor."
+
+#: groupboxpages.src#RID_PAGE_OPTIONVALUES.FT_OPTIONVALUES.fixedtext.text
+msgid "Which ~value do you want to assign to each option?"
+msgstr "¿Qué valor desea asignarle a cada opción?"
+
+#: groupboxpages.src#RID_PAGE_OPTIONVALUES.FT_RADIOBUTTONS.fixedtext.text
+msgctxt "groupboxpages.src#RID_PAGE_OPTIONVALUES.FT_RADIOBUTTONS.fixedtext.text"
+msgid "~Option fields"
+msgstr "~Campos de opción"
+
+#: groupboxpages.src#RID_PAGE_OPTIONVALUES.tabpage.text
+msgid "Field Values"
+msgstr "Valores de campo"
+
+#: groupboxpages.src#RID_PAGE_OPTIONS_FINAL.FT_NAMEIT.fixedtext.text
+msgid "Which ~caption is to be given to your option group?"
+msgstr "¿Qué título debe tener su grupo de opciones?"
+
+#: groupboxpages.src#RID_PAGE_OPTIONS_FINAL.FT_THATSALL.fixedtext.text
+msgid "These were all details needed to create the option group."
+msgstr "Ya se dispone de las informaciones necesarias para crear el grupo de opciones."
+
+#: groupboxpages.src#RID_PAGE_OPTIONS_FINAL.tabpage.text
+msgid "Create Option Group"
+msgstr "Crear grupo de opciones"
+
+#: groupboxpages.src#RID_STR_GROUPWIZ_DBFIELD.string.text
+msgid "You can either save the value of the option group in a database field or use it for a later action."
+msgstr "Puede guardar el valor del grupo de opciones en un campo de base de datos o usarlo para una acción posterior."
+
+#: gridpages.src#RID_PAGE_GW_FIELDSELECTION.FL_FRAME.fixedline.text
+msgid "Table element"
+msgstr "Elemento de tabla"
+
+#: gridpages.src#RID_PAGE_GW_FIELDSELECTION.FT_EXISTING_FIELDS.fixedtext.text
+msgctxt "gridpages.src#RID_PAGE_GW_FIELDSELECTION.FT_EXISTING_FIELDS.fixedtext.text"
+msgid "Existing fields"
+msgstr "Campos existentes"
+
+#: gridpages.src#RID_PAGE_GW_FIELDSELECTION.FT_SELECTED_FIELDS.fixedtext.text
+msgid "Selected fields"
+msgstr "Campos seleccionados"
+
+#: gridpages.src#RID_PAGE_GW_FIELDSELECTION.tabpage.text
+msgctxt "gridpages.src#RID_PAGE_GW_FIELDSELECTION.tabpage.text"
+msgid "Field Selection"
+msgstr "Selección de campo"
+
+#: gridpages.src#RID_STR_DATEPOSTFIX.string.text
+msgid " (Date)"
+msgstr " (Fecha)"
+
+#: gridpages.src#RID_STR_TIMEPOSTFIX.string.text
+msgid " (Time)"
+msgstr " (Hora)"
+
+#: commonpagesdbp.src#RID_PAGE_TABLESELECTION.FL_DATA.fixedline.text
+msgctxt "commonpagesdbp.src#RID_PAGE_TABLESELECTION.FL_DATA.fixedline.text"
+msgid "Data"
+msgstr "Datos"
+
+#: commonpagesdbp.src#RID_PAGE_TABLESELECTION.FT_EXPLANATION.fixedtext.text
+msgid ""
+"Currently, the form the control belongs to is not (or not completely) bound to a data source.\n"
+"\n"
+"Please choose a data source and a table.\n"
+"\n"
+"\n"
+"Please note that the settings made on this page will take effect immediately upon leaving the page."
+msgstr ""
+"De momento, el formulario al que pertenece el campo de control no está (quizás no totalmente) conectado a una fuente de datos.\n"
+"\n"
+"Seleccione una fuente de datos y una tabla.\n"
+"\n"
+"\n"
+"No olvide que la configuración que realice en este registro tendrá validez inmediatamente después de que abandone el registro."
+
+#: commonpagesdbp.src#RID_PAGE_TABLESELECTION.FT_DATASOURCE.fixedtext.text
+msgid "~Data source:"
+msgstr "~Fuente de datos:"
+
+#: commonpagesdbp.src#RID_PAGE_TABLESELECTION.PB_FORMDATASOURCE.pushbutton.text
+msgid "~..."
+msgstr "~..."
+
+#: commonpagesdbp.src#RID_PAGE_TABLESELECTION.FT_TABLE.fixedtext.text
+msgid "~Table / Query:"
+msgstr "~Tabla / Consulta:"
+
+#: commonpagesdbp.src#RID_PAGE_TABLESELECTION.tabpage.text
+msgctxt "commonpagesdbp.src#RID_PAGE_TABLESELECTION.tabpage.text"
+msgid "Data"
+msgstr "Datos"
+
+#: commonpagesdbp.src#RID_PAGE_OPTION_DBFIELD.FT_DATABASEFIELD_QUEST.fixedtext.text
+msgid "Do you want to save the value in a database field?"
+msgstr "¿Desea guardar el valor en un campo de base de datos?"
+
+#: commonpagesdbp.src#RID_PAGE_OPTION_DBFIELD.RB_STOREINFIELD_YES.radiobutton.text
+msgid "~Yes, I want to save it in the following database field:"
+msgstr "Sí, en el siguiente campo :"
+
+#: commonpagesdbp.src#RID_PAGE_OPTION_DBFIELD.RB_STOREINFIELD_NO.radiobutton.text
+msgid "~No, I only want to save the value in the form."
+msgstr "No, deseo guardar el valor sólo en el formulario."
+
+#: commonpagesdbp.src#RID_PAGE_OPTION_DBFIELD.tabpage.text
+msgid "Database Field"
+msgstr "Campo de base de datos"
+
+#: commonpagesdbp.src#RID_PAGE_FORM_DATASOURCE_STATUS.FL_FORMSETINGS.fixedline.text
+msgid "Form"
+msgstr "Formulario"
+
+#: commonpagesdbp.src#RID_PAGE_FORM_DATASOURCE_STATUS.FT_FORMDATASOURCELABEL.fixedtext.text
+msgid "Data source"
+msgstr "Fuente de datos"
+
+#: commonpagesdbp.src#RID_PAGE_FORM_DATASOURCE_STATUS.FT_FORMCONTENTTYPELABEL.fixedtext.text
+msgid "Content type"
+msgstr "Tipo de contenido"
+
+#: commonpagesdbp.src#RID_PAGE_FORM_DATASOURCE_STATUS.FT_FORMTABLELABEL.fixedtext.text
+msgid "Content"
+msgstr "Contenido"
+
+#: commonpagesdbp.src#RID_STR_TYPE_TABLE.string.text
+msgid "Table"
+msgstr "Tabla"
+
+#: commonpagesdbp.src#RID_STR_TYPE_QUERY.string.text
+msgid "Query"
+msgstr "Consulta"
+
+#: commonpagesdbp.src#RID_STR_TYPE_COMMAND.string.text
+msgid "SQL command"
+msgstr "Comando SQL"
+
+#: listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_TABLE.FL_FRAME.fixedline.text
+msgid "Control"
+msgstr "Campo de control"
+
+#: listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_TABLE.FT_SELECTTABLE_LABEL.fixedtext.text
+msgid ""
+"On the right side, you see all the tables from the data source of the form.\n"
+"\n"
+"\n"
+"Choose the table from which the data should be used as basis for the list content:"
+msgstr ""
+"En la parte derecha puede ver todas las tablas de la base de datos del formulario.\n"
+"\n"
+"\n"
+"Seleccione la tabla de la que deban tomarse los datos para el contenido de la lista:"
+
+#: listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_TABLE.tabpage.text
+msgid "Table Selection"
+msgstr "Selección de tabla"
+
+#: listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_FIELD.FT_TABLEFIELDS.fixedtext.text
+msgctxt "listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_FIELD.FT_TABLEFIELDS.fixedtext.text"
+msgid "Existing fields"
+msgstr "~Campos existentes"
+
+#: listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_FIELD.FT_DISPLAYEDFIELD.fixedtext.text
+msgid "Display field"
+msgstr "~Campo de visualización"
+
+#: listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_FIELD.STR_FIELDINFO_COMBOBOX.string.text
+msgid "The contents of the field selected will be shown in the combo box list."
+msgstr "El contenido del campo seleccionado se mostrará en la lista del campo combinado."
+
+#: listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_FIELD.STR_FIELDINFO_LISTBOX.string.text
+msgid "The contents of the selected field will be shown in the list box if the linked fields are identical."
+msgstr "El contenido del campo seleccionado se mostrará en el listado si coinciden los campos vinculados."
+
+#: listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_FIELD.tabpage.text
+msgctxt "listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_FIELD.tabpage.text"
+msgid "Field Selection"
+msgstr "Selección de campo"
+
+#: listcombopages.src#RID_PAGE_LCW_FIELDLINK.FT_FIELDLINK_DESC.fixedtext.text
+msgid "This is where you select fields with matching contents so that the value from the display field will be shown."
+msgstr "Seleccione los campos cuyo contenido debe coincidir para que se muestre el valor en el campo de visualización."
+
+#: listcombopages.src#RID_PAGE_LCW_FIELDLINK.FT_VALUELISTFIELD.fixedtext.text
+msgid "Field from the ~Value Table"
+msgstr "Campo de la tabla de ~valores"
+
+#: listcombopages.src#RID_PAGE_LCW_FIELDLINK.FT_TABLEFIELD.fixedtext.text
+msgid "Field from the ~List Table"
+msgstr "Campo del listado"
+
+#: listcombopages.src#RID_PAGE_LCW_FIELDLINK.tabpage.text
+msgid "Field Link"
+msgstr "Vínculo de campo"
+
+#: listcombopages.src#RID_STR_COMBOWIZ_DBFIELD.string.text
+msgid "You can either save the value of the combo box in a database field or use it for display purposes."
+msgstr "Puede guardar el valor del campo combinado en un campo de base de datos o usarlo solo para mostrarlo."
diff --git a/source/es/extensions/source/propctrlr.po b/source/es/extensions/source/propctrlr.po
new file mode 100644
index 00000000000..cd107c7c8e7
--- /dev/null
+++ b/source/es/extensions/source/propctrlr.po
@@ -0,0 +1,1583 @@
+#. extracted from extensions/source/propctrlr.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+extensions%2Fsource%2Fpropctrlr.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-08-14 05:25+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: propres.src#RID_STR_STANDARD.string.text
+msgctxt "propres.src#RID_STR_STANDARD.string.text"
+msgid "Default"
+msgstr "Predeterminado"
+
+#: propres.src#RID_STR_PROPPAGE_DEFAULT.string.text
+msgid "General"
+msgstr "General"
+
+#: propres.src#RID_STR_PROPPAGE_DATA.string.text
+msgid "Data"
+msgstr "Datos"
+
+#: propres.src#RID_RSC_ENUM_YESNO.1.string.text
+msgctxt "propres.src#RID_RSC_ENUM_YESNO.1.string.text"
+msgid "No"
+msgstr "No"
+
+#: propres.src#RID_RSC_ENUM_YESNO.2.string.text
+msgctxt "propres.src#RID_RSC_ENUM_YESNO.2.string.text"
+msgid "Yes"
+msgstr "Sí"
+
+#: propres.src#RID_STR_HELP_SECTION_LABEL.string.text
+msgctxt "propres.src#RID_STR_HELP_SECTION_LABEL.string.text"
+msgid "Help"
+msgstr "Ayuda"
+
+#: propres.src#RID_EMBED_IMAGE_PLACEHOLDER.string.text
+msgid "<Embedded-Image>"
+msgstr "<Imagen-incrustada>"
+
+#: propres.src#RID_STR_TEXT_FORMAT.string.text
+msgctxt "propres.src#RID_STR_TEXT_FORMAT.string.text"
+msgid "Text"
+msgstr "Texto"
+
+#: newdatatype.src#RID_DLG_NEW_DATA_TYPE.FT_LABEL.fixedtext.text
+msgid "Type a name for the new data type:"
+msgstr "Escriba un nombre para el nuevo tipo de datos:"
+
+#: newdatatype.src#RID_DLG_NEW_DATA_TYPE.modaldialog.text
+msgid "New Data Type"
+msgstr "Nuevo tipo de datos"
+
+#: fontdialog.src#RID_TABDLG_FONTDIALOG.1.TABPAGE_CHARACTERS.pageitem.text
+msgctxt "fontdialog.src#RID_TABDLG_FONTDIALOG.1.TABPAGE_CHARACTERS.pageitem.text"
+msgid "Font"
+msgstr "Fuente"
+
+#: fontdialog.src#RID_TABDLG_FONTDIALOG.1.TABPAGE_CHARACTERS_EXT.pageitem.text
+msgid "Font Effects"
+msgstr "Efectos de fuente"
+
+#: fontdialog.src#RID_TABDLG_FONTDIALOG.tabdialog.text
+msgid "Character"
+msgstr "Caracteres"
+
+#: taborder.src#RID_DLG_TABORDER.FT_CONTROLS.fixedtext.text
+msgid "Controls"
+msgstr "Controles"
+
+#: taborder.src#RID_DLG_TABORDER.PB_MOVE_UP.pushbutton.text
+msgid "Move Up"
+msgstr "Mover hacia arriba"
+
+#: taborder.src#RID_DLG_TABORDER.PB_MOVE_DOWN.pushbutton.text
+msgid "Move Down"
+msgstr "Mover hacia abajo"
+
+#: taborder.src#RID_DLG_TABORDER.PB_AUTO_ORDER.pushbutton.text
+msgid "Automatic Sort"
+msgstr "Orden automático"
+
+#: taborder.src#RID_DLG_TABORDER.modaldialog.text
+msgid "Tab Order"
+msgstr "Orden de tabuladores"
+
+#: selectlabeldialog.src#RID_DLG_SELECTLABELCONTROL.1.fixedtext.text
+msgid "These are control fields that can be used as label fields for the $control_class$ $control_name$."
+msgstr "Estos son todos los campos de control que pueden asignarse al $control_class$ $control_name$ como campo de etiqueta."
+
+#: selectlabeldialog.src#RID_DLG_SELECTLABELCONTROL.1.checkbox.text
+msgid "~No assignment"
+msgstr "~sin asignación"
+
+#: selectlabeldialog.src#RID_DLG_SELECTLABELCONTROL.modaldialog.text
+msgid "Label Field Selection"
+msgstr "Selección campo de etiqueta"
+
+#: selectlabeldialog.src#RID_STR_FORMS.string.text
+msgid "Forms"
+msgstr "Formularios"
+
+#: pcrmiscres.src#RID_STR_CONFIRM_DELETE_DATA_TYPE.string.text
+msgid ""
+"Do you want to delete the data type '#type#' from the model?\n"
+"Please note that this will affect all controls which are bound to this data type."
+msgstr ""
+"¿Desea eliminar el tipo de datos '#type#' del modelo?\n"
+"Tenga en cuenta que esto afectará a todos los campos de control vinculados a este tipo de datos."
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_PUSHBUTTON.string.text
+msgid "Button"
+msgstr "Botón"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_RADIOBUTTON.string.text
+msgid "Option Button"
+msgstr "Campo de opción"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_CHECKBOX.string.text
+msgid "Check Box"
+msgstr "Casilla de verificación"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_FIXEDTEXT.string.text
+msgctxt "pcrmiscres.src#RID_STR_PROPTITLE_FIXEDTEXT.string.text"
+msgid "Label Field"
+msgstr "Campo de etiqueta"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_GROUPBOX.string.text
+msgid "Group Box"
+msgstr "Marco de grupo"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_EDIT.string.text
+msgid "Text Box"
+msgstr "Campo de texto"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_FORMATTED.string.text
+msgid "Formatted Field"
+msgstr "Campo formateado"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_LISTBOX.string.text
+msgid "List Box"
+msgstr "Listado"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_COMBOBOX.string.text
+msgid "Combo Box"
+msgstr "Campo combinado"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_IMAGEBUTTON.string.text
+msgid "Image Button"
+msgstr "Botón gráfico"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_HIDDENCONTROL.string.text
+msgid "Hidden Control"
+msgstr "Campo de control oculto"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_UNKNOWNCONTROL.string.text
+msgid "Control (unknown type)"
+msgstr "Campo de control (tipo desconocido)"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_IMAGECONTROL.string.text
+msgid "Image Control"
+msgstr "Control de imagen"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_FILECONTROL.string.text
+msgid "File Selection"
+msgstr "Selección de archivo"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_DATEFIELD.string.text
+msgid "Date Field"
+msgstr "Campo de fecha"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_TIMEFIELD.string.text
+msgid "Time Field"
+msgstr "Campo horario"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_NUMERICFIELD.string.text
+msgid "Numeric Field"
+msgstr "Campo numérico"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_CURRENCYFIELD.string.text
+msgid "Currency Field"
+msgstr "Campo de moneda"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_PATTERNFIELD.string.text
+msgid "Pattern Field"
+msgstr "Campo enmascarado"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_DBGRID.string.text
+msgid "Table Control "
+msgstr "Control de tablas "
+
+#: formlinkdialog.src#RID_DLG_FORMLINKS.FT_EXPLANATION.fixedtext.text
+msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
+msgstr "Pueden utilizarse subformularios para mostrar los detalles sobre el registro activo del formulario maestro. Para ello, puede especificar las columnas del subformulario que coinciden con las columnas del formulario maestro."
+
+#: formlinkdialog.src#RID_DLG_FORMLINKS.modaldialog.text
+msgid "Link fields"
+msgstr "Campos de vínculo"
+
+#: formlinkdialog.src#PB_SUGGEST.pushbutton.text
+msgid "Suggest"
+msgstr "Sugerir"
+
+#: formlinkdialog.src#STR_DETAIL_FORM.string.text
+msgid "Sub Form"
+msgstr "Subformulario"
+
+#: formlinkdialog.src#STR_MASTER_FORM.string.text
+msgid "Master Form"
+msgstr "Formulario maestro"
+
+#. # will be replace with a name.
+#: formlinkdialog.src#STR_ERROR_RETRIEVING_COLUMNS.string.text
+msgid "The columns of '#' could not be retrieved."
+msgstr "Las columnas de '#' no pueden ser recuperadas."
+
+#: formres.src#RID_STR_EDITMASK.string.text
+msgid "Edit mask"
+msgstr "Máscara de entrada"
+
+#: formres.src#RID_STR_LITERALMASK.string.text
+msgid "Literal mask"
+msgstr "Máscara de caracteres"
+
+#: formres.src#RID_STR_READONLY.string.text
+msgctxt "formres.src#RID_STR_READONLY.string.text"
+msgid "Read-only"
+msgstr "Sólo lectura"
+
+#: formres.src#RID_STR_ENABLED.string.text
+msgid "Enabled"
+msgstr "Activado"
+
+#: formres.src#RID_STR_ENABLE_VISIBLE.string.text
+msgid "Visible"
+msgstr "Visible"
+
+#: formres.src#RID_STR_AUTOCOMPLETE.string.text
+msgid "AutoFill"
+msgstr "Rellenar automáticamente"
+
+#: formres.src#RID_STR_LINECOUNT.string.text
+msgid "Line count"
+msgstr "Número de líneas"
+
+#: formres.src#RID_STR_MAXTEXTLEN.string.text
+msgid "Max. text length"
+msgstr "Longitud máx. del texto"
+
+#: formres.src#RID_STR_SPIN.string.text
+msgid "Spin Button"
+msgstr "Campo giratorio"
+
+#: formres.src#RID_STR_STRICTFORMAT.string.text
+msgid "Strict format"
+msgstr "Control de formato"
+
+#: formres.src#RID_STR_SHOWTHOUSANDSEP.string.text
+msgid "Thousands separator"
+msgstr "Delimitador decimal"
+
+#: formres.src#RID_STR_PRINTABLE.string.text
+msgid "Printable"
+msgstr "Imprimible"
+
+#: formres.src#RID_STR_TARGET_URL.string.text
+msgctxt "formres.src#RID_STR_TARGET_URL.string.text"
+msgid "URL"
+msgstr "URL"
+
+#: formres.src#RID_STR_TARGET_FRAME.string.text
+msgctxt "formres.src#RID_STR_TARGET_FRAME.string.text"
+msgid "Frame"
+msgstr "Frame"
+
+#: formres.src#RID_STR_HELPTEXT.string.text
+msgid "Help text"
+msgstr "Texto de ayuda"
+
+#: formres.src#RID_STR_HELPURL.string.text
+msgid "Help URL"
+msgstr "URL de la ayuda"
+
+#: formres.src#RID_STR_TAG.string.text
+msgid "Additional information"
+msgstr "Información adicional"
+
+#: formres.src#RID_STR_ECHO_CHAR.string.text
+msgid "Password character"
+msgstr "Carácter de contraseña"
+
+#: formres.src#RID_STR_TRISTATE.string.text
+msgid "Tristate"
+msgstr "Estado triple"
+
+#: formres.src#RID_STR_EMPTY_IS_NULL.string.text
+msgid "Empty string is NULL"
+msgstr "Serie de caracteres vacía es NULL"
+
+#: formres.src#RID_STR_DECIMAL_ACCURACY.string.text
+msgid "Decimal accuracy"
+msgstr "Decimales"
+
+#: formres.src#RID_STR_IMAGE_URL.string.text
+msgid "Graphics"
+msgstr "Imagen"
+
+#: formres.src#RID_STR_DEFAULT_SELECT_SEQ.string.text
+msgid "Default selection"
+msgstr "Selección predeterminada"
+
+#: formres.src#RID_STR_DEFAULT_BUTTON.string.text
+msgid "Default button"
+msgstr "Botón predeterminado"
+
+#: formres.src#RID_STR_LABELCONTROL.string.text
+msgctxt "formres.src#RID_STR_LABELCONTROL.string.text"
+msgid "Label Field"
+msgstr "Campo de etiqueta"
+
+#: formres.src#RID_STR_LABEL.string.text
+msgid "Label"
+msgstr "Título"
+
+#: formres.src#RID_STR_ALIGN.string.text
+msgid "Alignment"
+msgstr "Alineación"
+
+#: formres.src#RID_STR_VERTICAL_ALIGN.string.text
+msgid "Vert. Alignment"
+msgstr "Alineación vert."
+
+#: formres.src#RID_RSC_ENUM_VERTICAL_ALIGN.1.string.text
+msgid "Top"
+msgstr "Superior"
+
+#: formres.src#RID_RSC_ENUM_VERTICAL_ALIGN.2.string.text
+msgid "Middle"
+msgstr "Centrado"
+
+#: formres.src#RID_RSC_ENUM_VERTICAL_ALIGN.3.string.text
+msgid "Bottom"
+msgstr "Abajo"
+
+#: formres.src#RID_STR_IMAGEPOSITION.string.text
+msgid "Graphics alignment"
+msgstr "Alineación de gráficos"
+
+#: formres.src#RID_STR_FONT.string.text
+msgctxt "formres.src#RID_STR_FONT.string.text"
+msgid "Font"
+msgstr "Fuente"
+
+#: formres.src#RID_STR_BACKGROUNDCOLOR.string.text
+msgid "Background color"
+msgstr "Color de fondo"
+
+#: formres.src#RID_STR_BORDER.string.text
+msgid "Border"
+msgstr "Marco"
+
+#: formres.src#RID_STR_ICONSIZE.string.text
+msgid "Icon size"
+msgstr "Tamaño del icono"
+
+#: formres.src#RID_RSC_ENUM_ICONSIZE_TYPE.1.string.text
+msgid "Small"
+msgstr "Pequeño"
+
+#: formres.src#RID_RSC_ENUM_ICONSIZE_TYPE.2.string.text
+msgid "Large"
+msgstr "Grande"
+
+#: formres.src#RID_STR_SHOW_POSITION.string.text
+msgid "Positioning"
+msgstr "Posición"
+
+#: formres.src#RID_STR_SHOW_NAVIGATION.string.text
+msgid "Navigation"
+msgstr "Navegación"
+
+#: formres.src#RID_STR_SHOW_RECORDACTIONS.string.text
+msgid "Acting on a record"
+msgstr "Actuar en un registro"
+
+#: formres.src#RID_STR_SHOW_FILTERSORT.string.text
+msgid "Filtering / Sorting"
+msgstr "Filtrar / Ordenar"
+
+#: formres.src#RID_STR_HSCROLL.string.text
+msgid "Horizontal scroll bar"
+msgstr "Barra de deplazamiento horizontal"
+
+#: formres.src#RID_STR_VSCROLL.string.text
+msgid "Vertical scroll bar"
+msgstr "Barra de desplazamiento vertical"
+
+#: formres.src#RID_STR_WORDBREAK.string.text
+msgid "Word break"
+msgstr "División de palabras"
+
+#: formres.src#RID_STR_MULTILINE.string.text
+msgid "Multiline input"
+msgstr "Varias líneas"
+
+#: formres.src#RID_STR_MULTISELECTION.string.text
+msgid "Multiselection"
+msgstr "Selección múltiple"
+
+#: formres.src#RID_STR_NAME.string.text
+msgid "Name"
+msgstr "Nombre"
+
+#: formres.src#RID_STR_GROUP_NAME.string.text
+msgid "Group name"
+msgstr "Nombre del grupo"
+
+#: formres.src#RID_STR_TABINDEX.string.text
+msgid "Tab order"
+msgstr "Orden de tabuladores"
+
+#: formres.src#RID_STR_WHEEL_BEHAVIOR.string.text
+msgid "Mouse wheel scroll"
+msgstr "Rueda de desplazamiento del Ratón"
+
+#: formres.src#RID_STR_FILTER.string.text
+msgid "Filter"
+msgstr "Filtrar"
+
+#: formres.src#RID_STR_SORT_CRITERIA.string.text
+msgid "Sort"
+msgstr "Ordenar"
+
+#: formres.src#RID_STR_RECORDMARKER.string.text
+msgid "Record marker"
+msgstr "Marcador de registros"
+
+#: formres.src#RID_STR_FILTERPROPOSAL.string.text
+msgid "Filter proposal"
+msgstr "Propuesta de filtro"
+
+#: formres.src#RID_STR_NAVIGATION.string.text
+msgid "Navigation bar"
+msgstr "Barra de navegación"
+
+#: formres.src#RID_STR_CYCLE.string.text
+msgid "Cycle"
+msgstr "Ciclo"
+
+#: formres.src#RID_STR_TABSTOP.string.text
+msgid "Tabstop"
+msgstr "Tabstop"
+
+#: formres.src#RID_STR_CONTROLSOURCE.string.text
+msgid "Data field"
+msgstr "Campo de datos"
+
+#: formres.src#RID_STR_DROPDOWN.string.text
+msgid "Dropdown"
+msgstr "Desplegable"
+
+#: formres.src#RID_STR_BOUNDCOLUMN.string.text
+msgid "Bound field"
+msgstr "Campo ligado"
+
+#: formres.src#RID_STR_LISTSOURCE.string.text
+msgid "List content"
+msgstr "Contenido de lista"
+
+#: formres.src#RID_STR_LISTSOURCETYPE.string.text
+msgid "Type of list contents"
+msgstr "Tipo del contenido de lista"
+
+#: formres.src#RID_STR_CURSORSOURCE.string.text
+msgid "Content"
+msgstr "Contenido"
+
+#: formres.src#RID_STR_CURSORSOURCETYPE.string.text
+msgid "Content type"
+msgstr "Tipo de contenido"
+
+#: formres.src#RID_STR_ALLOW_ADDITIONS.string.text
+msgid "Allow additions"
+msgstr "Permitir adiciones"
+
+#: formres.src#RID_STR_ALLOW_DELETIONS.string.text
+msgid "Allow deletions"
+msgstr "Permitir eliminaciones"
+
+#: formres.src#RID_STR_ALLOW_EDITS.string.text
+msgid "Allow modifications"
+msgstr "Permitir modificaciones"
+
+#: formres.src#RID_STR_DATAENTRY.string.text
+msgid "Add data only"
+msgstr "Solo añadir datos"
+
+#: formres.src#RID_STR_DATASOURCE.string.text
+msgid "Data source"
+msgstr "Origen de datos"
+
+#: formres.src#RID_STR_MASTERFIELDS.string.text
+msgid "Link master fields"
+msgstr "Enlazar campos maestros"
+
+#: formres.src#RID_STR_SLAVEFIELDS.string.text
+msgid "Link slave fields"
+msgstr "Enlazar campos esclavos"
+
+#: formres.src#RID_STR_VALUEMIN.string.text
+msgid "Value min."
+msgstr "Valor mín."
+
+#: formres.src#RID_STR_VALUEMAX.string.text
+msgid "Value max."
+msgstr "Valor máx."
+
+#: formres.src#RID_STR_VALUESTEP.string.text
+msgid "Incr./decrement value"
+msgstr "Intervalo"
+
+#: formres.src#RID_STR_CURRENCYSYMBOL.string.text
+msgid "Currency symbol"
+msgstr "Símbolo de moneda"
+
+#: formres.src#RID_STR_DATEMIN.string.text
+msgid "Date min."
+msgstr "Fecha mín."
+
+#: formres.src#RID_STR_DATEMAX.string.text
+msgid "Date max."
+msgstr "Fecha máx."
+
+#: formres.src#RID_STR_DATEFORMAT.string.text
+msgid "Date format"
+msgstr "Formato de fecha"
+
+#: formres.src#RID_STR_SELECTEDITEMS.string.text
+msgid "Selection"
+msgstr "Selección"
+
+#: formres.src#RID_STR_TIMEMIN.string.text
+msgid "Time min."
+msgstr "Tiempo mín."
+
+#: formres.src#RID_STR_TIMEMAX.string.text
+msgid "Time max."
+msgstr "Tiempo máx."
+
+#: formres.src#RID_STR_TIMEFORMAT.string.text
+msgid "Time format"
+msgstr "Formato de hora"
+
+#: formres.src#RID_STR_CURRSYM_POSITION.string.text
+msgid "Prefix symbol"
+msgstr "Situar símbolo delante"
+
+#: formres.src#RID_STR_VALUE.string.text
+msgid "Value"
+msgstr "Valor"
+
+#: formres.src#RID_STR_FORMATKEY.string.text
+msgid "Formatting"
+msgstr "Formato"
+
+#: formres.src#RID_STR_CLASSID.string.text
+msgid "Class ID"
+msgstr "Índice de clase"
+
+#: formres.src#RID_STR_HEIGHT.string.text
+msgid "Height"
+msgstr "Altura"
+
+#: formres.src#RID_STR_WIDTH.string.text
+msgid "Width"
+msgstr "Ancho"
+
+#: formres.src#RID_STR_LISTINDEX.string.text
+msgid "List index"
+msgstr "Indice de listas"
+
+#: formres.src#RID_STR_ROWHEIGHT.string.text
+msgid "Row height"
+msgstr "Altura de fila"
+
+#: formres.src#RID_STR_FILLCOLOR.string.text
+msgid "Fill color"
+msgstr "Color de relleno"
+
+#: formres.src#RID_STR_LINECOLOR.string.text
+msgid "Line color"
+msgstr "Color de línea"
+
+#: formres.src#RID_STR_REFVALUE.string.text
+msgid "Reference value (on)"
+msgstr "Valor de referencia (activado)"
+
+#: formres.src#RID_STR_UNCHECKEDREFVALUE.string.text
+msgid "Reference value (off)"
+msgstr "Valor de referencia (desactivado)"
+
+#: formres.src#RID_STR_STRINGITEMLIST.string.text
+msgid "List entries"
+msgstr "Entradas de la lista"
+
+#: formres.src#RID_STR_BUTTONTYPE.string.text
+msgid "Action"
+msgstr "Acción"
+
+#: formres.src#RID_STR_SUBMIT_ACTION.string.text
+msgctxt "formres.src#RID_STR_SUBMIT_ACTION.string.text"
+msgid "URL"
+msgstr "URL"
+
+#: formres.src#RID_STR_SUBMIT_METHOD.string.text
+msgid "Type of submission"
+msgstr "Tipo de submit"
+
+#: formres.src#RID_STR_DEFAULT_STATE.string.text
+msgid "Default status"
+msgstr "Estado predeterminado"
+
+#: formres.src#RID_STR_SUBMIT_ENCODING.string.text
+msgid "Submission encoding"
+msgstr "Codificar submit"
+
+#: formres.src#RID_STR_DEFAULTVALUE.string.text
+msgid "Default value"
+msgstr "Valor predeterminado"
+
+#: formres.src#RID_STR_DEFAULTTEXT.string.text
+msgid "Default text"
+msgstr "Texto predeterminado"
+
+#: formres.src#RID_STR_DEFAULTDATE.string.text
+msgid "Default date"
+msgstr "Fecha predeterminada"
+
+#: formres.src#RID_STR_DEFAULTTIME.string.text
+msgid "Default time"
+msgstr "Hora predeterminada"
+
+#: formres.src#RID_STR_SUBMIT_TARGET.string.text
+msgctxt "formres.src#RID_STR_SUBMIT_TARGET.string.text"
+msgid "Frame"
+msgstr "Frame"
+
+#: formres.src#RID_RSC_ENUM_BORDER_TYPE.1.string.text
+msgid "Without frame"
+msgstr "Sin marco"
+
+#: formres.src#RID_RSC_ENUM_BORDER_TYPE.2.string.text
+msgid "3D look"
+msgstr "Vista 3D"
+
+#: formres.src#RID_RSC_ENUM_BORDER_TYPE.3.string.text
+msgctxt "formres.src#RID_RSC_ENUM_BORDER_TYPE.3.string.text"
+msgid "Flat"
+msgstr "Plano"
+
+#: formres.src#RID_RSC_ENUM_LISTSOURCE_TYPE.1.string.text
+msgid "Valuelist"
+msgstr "Lista de valores"
+
+#: formres.src#RID_RSC_ENUM_LISTSOURCE_TYPE.2.string.text
+msgctxt "formres.src#RID_RSC_ENUM_LISTSOURCE_TYPE.2.string.text"
+msgid "Table"
+msgstr "Tabla"
+
+#: formres.src#RID_RSC_ENUM_LISTSOURCE_TYPE.3.string.text
+msgctxt "formres.src#RID_RSC_ENUM_LISTSOURCE_TYPE.3.string.text"
+msgid "Query"
+msgstr "Pregunta"
+
+#: formres.src#RID_RSC_ENUM_LISTSOURCE_TYPE.4.string.text
+msgid "Sql"
+msgstr "Sql"
+
+#: formres.src#RID_RSC_ENUM_LISTSOURCE_TYPE.5.string.text
+msgid "Sql [Native]"
+msgstr "Sql [Native]"
+
+#: formres.src#RID_RSC_ENUM_LISTSOURCE_TYPE.6.string.text
+msgid "Tablefields"
+msgstr "Campo tabla"
+
+#: formres.src#RID_RSC_ENUM_ALIGNMENT.1.string.text
+msgid "Left"
+msgstr "Izquierda"
+
+#: formres.src#RID_RSC_ENUM_ALIGNMENT.2.string.text
+msgid "Center"
+msgstr "Centro"
+
+#: formres.src#RID_RSC_ENUM_ALIGNMENT.3.string.text
+msgid "Right"
+msgstr "Derecha"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_BUTTONTYPE.1.string.text"
+msgid "None"
+msgstr "Ninguno"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.2.string.text
+msgid "Submit form"
+msgstr "Enviar formulario"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.3.string.text
+msgid "Reset form"
+msgstr "Reiniciar formulario"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.4.string.text
+msgid "Open document/web page"
+msgstr "Abrir documento/página web"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.5.string.text
+msgid "First record"
+msgstr "Primer registro"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.6.string.text
+msgid "Previous record"
+msgstr "Registro anterior"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.7.string.text
+msgid "Next record"
+msgstr "Registro siguiente"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.8.string.text
+msgid "Last record"
+msgstr "Último registro"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.9.string.text
+msgid "Save record"
+msgstr "Guardar registro"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.10.string.text
+msgid "Undo data entry"
+msgstr "Deshacer entrada de datos"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.11.string.text
+msgid "New record"
+msgstr "Nuevo registro"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.12.string.text
+msgid "Delete record"
+msgstr "Eliminar registro"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.13.string.text
+msgid "Refresh form"
+msgstr "Refrescar formulario"
+
+#: formres.src#RID_RSC_ENUM_SUBMIT_METHOD.1.string.text
+msgid "Get"
+msgstr "Get"
+
+#: formres.src#RID_RSC_ENUM_SUBMIT_METHOD.2.string.text
+msgid "Post"
+msgstr "Enviar"
+
+#: formres.src#RID_RSC_ENUM_SUBMIT_ENCODING.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_SUBMIT_ENCODING.1.string.text"
+msgid "URL"
+msgstr "URL"
+
+#: formres.src#RID_RSC_ENUM_SUBMIT_ENCODING.2.string.text
+msgid "Multipart"
+msgstr "Multipart"
+
+#: formres.src#RID_RSC_ENUM_SUBMIT_ENCODING.3.string.text
+msgctxt "formres.src#RID_RSC_ENUM_SUBMIT_ENCODING.3.string.text"
+msgid "Text"
+msgstr "Texto"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.1.string.text
+msgid "Standard (short)"
+msgstr "Estándar (corto)"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.2.string.text
+msgid "Standard (short YY)"
+msgstr "Estándar (corto YY)"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.3.string.text
+msgid "Standard (short YYYY)"
+msgstr "Estándar (corto YYYY)"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.4.string.text
+msgid "Standard (long)"
+msgstr "Estándard (largo)"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.5.string.text
+msgid "DD/MM/YY"
+msgstr "DD/MM/YY"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.6.string.text
+msgid "MM/DD/YY"
+msgstr "MM/DD/YY"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.7.string.text
+msgid "YY/MM/DD"
+msgstr "YY/MM/DD"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.8.string.text
+msgid "DD/MM/YYYY"
+msgstr "DD/MM/YYYY"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.9.string.text
+msgid "MM/DD/YYYY"
+msgstr "MM/DD/YYYY"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.10.string.text
+msgid "YYYY/MM/DD"
+msgstr "YYYY/MM/DD"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.11.string.text
+msgid "YY-MM-DD"
+msgstr "YY-MM-DD"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.12.string.text
+msgid "YYYY-MM-DD"
+msgstr "YYYY-MM-DD"
+
+#: formres.src#RID_RSC_ENUM_TIMEFORMAT_LIST.1.string.text
+msgid "13:45"
+msgstr "13:45"
+
+#: formres.src#RID_RSC_ENUM_TIMEFORMAT_LIST.2.string.text
+msgid "13:45:00"
+msgstr "13:45:00"
+
+#: formres.src#RID_RSC_ENUM_TIMEFORMAT_LIST.3.string.text
+msgid "01:45 PM"
+msgstr "01:45 PM"
+
+#: formres.src#RID_RSC_ENUM_TIMEFORMAT_LIST.4.string.text
+msgid "01:45:00 PM"
+msgstr "01:45:00 PM"
+
+#: formres.src#RID_RSC_ENUM_CHECKED.1.string.text
+msgid "Not Selected"
+msgstr "No seleccionado"
+
+#: formres.src#RID_RSC_ENUM_CHECKED.2.string.text
+msgid "Selected"
+msgstr "Seleccionado"
+
+#: formres.src#RID_RSC_ENUM_CHECKED.3.string.text
+msgid "Not Defined"
+msgstr "No definido"
+
+#: formres.src#RID_RSC_ENUM_CYCLE.1.string.text
+msgid "All records"
+msgstr "Todos los registros"
+
+#: formres.src#RID_RSC_ENUM_CYCLE.2.string.text
+msgid "Active record"
+msgstr "Registro activo"
+
+#: formres.src#RID_RSC_ENUM_CYCLE.3.string.text
+msgid "Current page"
+msgstr "Página actual"
+
+#: formres.src#RID_RSC_ENUM_NAVIGATION.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_NAVIGATION.1.string.text"
+msgid "No"
+msgstr "No"
+
+#: formres.src#RID_RSC_ENUM_NAVIGATION.2.string.text
+msgctxt "formres.src#RID_RSC_ENUM_NAVIGATION.2.string.text"
+msgid "Yes"
+msgstr "Sí"
+
+#: formres.src#RID_RSC_ENUM_NAVIGATION.3.string.text
+msgid "Parent Form"
+msgstr "Formulario superior"
+
+#: formres.src#RID_RSC_ENUM_SELECTION_TYPE.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_SELECTION_TYPE.1.string.text"
+msgid "None"
+msgstr "Ninguno"
+
+#: formres.src#RID_RSC_ENUM_SELECTION_TYPE.2.string.text
+msgid "Single"
+msgstr "Sencillo"
+
+#: formres.src#RID_RSC_ENUM_SELECTION_TYPE.3.string.text
+msgid "Multi"
+msgstr "Múltiple"
+
+#: formres.src#RID_RSC_ENUM_SELECTION_TYPE.4.string.text
+msgid "Range"
+msgstr "Rango"
+
+#: formres.src#RID_STR_EVT_APPROVEPARAMETER.string.text
+msgid "Fill parameters"
+msgstr "Rellenar parámetros"
+
+#: formres.src#RID_STR_EVT_ACTIONPERFORMED.string.text
+msgid "Execute action"
+msgstr "Ejecutar una acción"
+
+#: formres.src#RID_STR_EVT_AFTERUPDATE.string.text
+msgid "After updating"
+msgstr "Después de actualizar"
+
+#: formres.src#RID_STR_EVT_BEFOREUPDATE.string.text
+msgid "Before updating"
+msgstr "Antes de actualizar"
+
+#: formres.src#RID_STR_EVT_APPROVEROWCHANGE.string.text
+msgid "Before record action"
+msgstr "Antes de la acción en el registro de datos"
+
+#: formres.src#RID_STR_EVT_ROWCHANGE.string.text
+msgid "After record action"
+msgstr "Después de la acción en el registro de datos"
+
+#: formres.src#RID_STR_EVT_CONFIRMDELETE.string.text
+msgid "Confirm deletion"
+msgstr "Confirmar eliminación"
+
+#: formres.src#RID_STR_EVT_ERROROCCURRED.string.text
+msgid "Error occurred"
+msgstr "Ha ocurrido un error"
+
+#: formres.src#RID_STR_EVT_FOCUSGAINED.string.text
+msgid "When receiving focus"
+msgstr "Recepción de foco"
+
+#: formres.src#RID_STR_EVT_FOCUSLOST.string.text
+msgid "When losing focus"
+msgstr "Al perder el foco"
+
+#: formres.src#RID_STR_EVT_ITEMSTATECHANGED.string.text
+msgid "Item status changed"
+msgstr "Estado modificado"
+
+#: formres.src#RID_STR_EVT_KEYTYPED.string.text
+msgid "Key pressed"
+msgstr "Tecla pulsada"
+
+#: formres.src#RID_STR_EVT_KEYUP.string.text
+msgid "Key released"
+msgstr "Después de haber pulsado la tecla"
+
+#: formres.src#RID_STR_EVT_LOADED.string.text
+msgid "When loading"
+msgstr "Al cargar"
+
+#: formres.src#RID_STR_EVT_RELOADING.string.text
+msgid "Before reloading"
+msgstr "Antes de recargar"
+
+#: formres.src#RID_STR_EVT_RELOADED.string.text
+msgid "When reloading"
+msgstr "Al recargar"
+
+#: formres.src#RID_STR_EVT_MOUSEDRAGGED.string.text
+msgid "Mouse moved while key pressed"
+msgstr "Mover ratón por medio del teclado"
+
+#: formres.src#RID_STR_EVT_MOUSEENTERED.string.text
+msgid "Mouse inside"
+msgstr "Ratón dentro"
+
+#: formres.src#RID_STR_EVT_MOUSEEXITED.string.text
+msgid "Mouse outside"
+msgstr "Ratón fuera"
+
+#: formres.src#RID_STR_EVT_MOUSEMOVED.string.text
+msgid "Mouse moved"
+msgstr "Movimiento de ratón"
+
+#: formres.src#RID_STR_EVT_MOUSEPRESSED.string.text
+msgid "Mouse button pressed"
+msgstr "Botón del ratón pulsado"
+
+#: formres.src#RID_STR_EVT_MOUSERELEASED.string.text
+msgid "Mouse button released"
+msgstr "Botón del ratón soltado"
+
+#: formres.src#RID_STR_EVT_POSITIONING.string.text
+msgid "Before record change"
+msgstr "Antes del cambio de registro de datos"
+
+#: formres.src#RID_STR_EVT_POSITIONED.string.text
+msgid "After record change"
+msgstr "Tras el cambio de registro de datos"
+
+#: formres.src#RID_STR_EVT_RESETTED.string.text
+msgid "After resetting"
+msgstr "Después de restablecer"
+
+#: formres.src#RID_STR_EVT_APPROVERESETTED.string.text
+msgid "Prior to reset"
+msgstr "Antes de restablecer"
+
+#: formres.src#RID_STR_EVT_APPROVEACTIONPERFORMED.string.text
+msgid "Approve action"
+msgstr "Aprobar acción"
+
+#: formres.src#RID_STR_EVT_SUBMITTED.string.text
+msgid "Before submitting"
+msgstr "Antes del envío"
+
+#: formres.src#RID_STR_EVT_TEXTCHANGED.string.text
+msgid "Text modified"
+msgstr "Texto modificado"
+
+#: formres.src#RID_STR_EVT_UNLOADING.string.text
+msgid "Before unloading"
+msgstr "Antes de descargar"
+
+#: formres.src#RID_STR_EVT_UNLOADED.string.text
+msgid "When unloading"
+msgstr "Al descargar"
+
+#: formres.src#RID_STR_EVT_CHANGED.string.text
+msgid "Changed"
+msgstr "Modificado"
+
+#: formres.src#RID_STR_EVENTS.string.text
+msgid "Events"
+msgstr "Eventos"
+
+#: formres.src#RID_STR_ESCAPE_PROCESSING.string.text
+msgid "Analyze SQL command"
+msgstr "Analizar comando SQL"
+
+#: formres.src#RID_STR_POSITIONX.string.text
+msgid "PositionX"
+msgstr "PosiciónX"
+
+#: formres.src#RID_STR_POSITIONY.string.text
+msgid "PositionY"
+msgstr "PosiciónY"
+
+#: formres.src#RID_STR_TITLE.string.text
+msgid "Title"
+msgstr "Título"
+
+#: formres.src#RID_STR_STEP.string.text
+msgid "Page (step)"
+msgstr "Página (Step)"
+
+#: formres.src#RID_STR_PROGRESSVALUE.string.text
+msgid "Progress value"
+msgstr "Valor de progreso"
+
+#: formres.src#RID_STR_PROGRESSVALUE_MIN.string.text
+msgid "Progress value min."
+msgstr "Valor mín. de progreso"
+
+#: formres.src#RID_STR_PROGRESSVALUE_MAX.string.text
+msgid "Progress value max."
+msgstr "Valor máx. de progreso"
+
+#: formres.src#RID_STR_SCROLLVALUE.string.text
+msgid "Scroll value"
+msgstr "Valor"
+
+#: formres.src#RID_STR_SCROLLVALUE_MAX.string.text
+msgid "Scroll value max."
+msgstr "Valor máximo"
+
+#: formres.src#RID_STR_SCROLLVALUE_MIN.string.text
+msgid "Scroll value min."
+msgstr "Valor mín. desplazamiento"
+
+#: formres.src#RID_STR_DEFAULT_SCROLLVALUE.string.text
+msgid "Default scroll value"
+msgstr "Valor predeterminado de desplazamiento"
+
+#: formres.src#RID_STR_LINEINCREMENT.string.text
+msgid "Small change"
+msgstr "Cambio pequeño"
+
+#: formres.src#RID_STR_BLOCKINCREMENT.string.text
+msgid "Large change"
+msgstr "Cambio grande"
+
+#: formres.src#RID_STR_REPEAT_DELAY.string.text
+msgid "Delay"
+msgstr "Retraso"
+
+#: formres.src#RID_STR_REPEAT.string.text
+msgid "Repeat"
+msgstr "Repetir"
+
+#: formres.src#RID_STR_VISIBLESIZE.string.text
+msgid "Visible size"
+msgstr "Tamaño visible"
+
+#: formres.src#RID_STR_ORIENTATION.string.text
+msgid "Orientation"
+msgstr "Orientación"
+
+#: formres.src#RID_RSC_ENUM_ORIENTATION.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_ORIENTATION.1.string.text"
+msgid "Horizontal"
+msgstr "Horizontal"
+
+#: formres.src#RID_RSC_ENUM_ORIENTATION.2.string.text
+msgctxt "formres.src#RID_RSC_ENUM_ORIENTATION.2.string.text"
+msgid "Vertical"
+msgstr "Vertical"
+
+#: formres.src#RID_STR_EVT_ADJUSTMENTVALUECHANGED.string.text
+msgid "While adjusting"
+msgstr "Al ajustar"
+
+#: formres.src#RID_STR_DATE.string.text
+msgid "Date"
+msgstr "Fecha"
+
+#: formres.src#RID_STR_STATE.string.text
+msgid "State"
+msgstr "Estado"
+
+#: formres.src#RID_STR_TIME.string.text
+msgid "Time"
+msgstr "Hora"
+
+#: formres.src#RID_STR_SCALEIMAGE.string.text
+msgid "Scale"
+msgstr "Escala"
+
+#: formres.src#RID_STR_PUSHBUTTONTYPE.string.text
+msgid "Button type"
+msgstr "Tipo de botón"
+
+#: formres.src#RID_RSC_ENUM_PUSHBUTTONTYPE.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_PUSHBUTTONTYPE.1.string.text"
+msgid "Default"
+msgstr "Predeterminado"
+
+#: formres.src#RID_RSC_ENUM_PUSHBUTTONTYPE.2.string.text
+msgid "OK"
+msgstr "Aceptar"
+
+#: formres.src#RID_RSC_ENUM_PUSHBUTTONTYPE.3.string.text
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: formres.src#RID_RSC_ENUM_PUSHBUTTONTYPE.4.string.text
+msgctxt "formres.src#RID_RSC_ENUM_PUSHBUTTONTYPE.4.string.text"
+msgid "Help"
+msgstr "Ayuda"
+
+#: formres.src#RID_STR_UNABLETOCONNECT.string.text
+msgid "The connection to the data source \"$name$\" could not be established."
+msgstr "No se pudo establecer la conexión al origen de datos «$name$»."
+
+#: formres.src#RID_STR_TEXT.string.text
+msgctxt "formres.src#RID_STR_TEXT.string.text"
+msgid "Text"
+msgstr "Texto"
+
+#: formres.src#RID_STR_BOUND_CELL.string.text
+msgid "Linked cell"
+msgstr "Celda vinculada"
+
+#: formres.src#RID_STR_LIST_CELL_RANGE.string.text
+msgid "Source cell range"
+msgstr "Rango de celdas de origen"
+
+#: formres.src#RID_STR_CELL_EXCHANGE_TYPE.string.text
+msgid "Contents of the linked cell"
+msgstr "Contenido de la celda vinculada"
+
+#: formres.src#RID_RSC_ENUM_CELL_EXCHANGE_TYPE.1.string.text
+msgid "The selected entry"
+msgstr "La entrada seleccionada"
+
+#: formres.src#RID_RSC_ENUM_CELL_EXCHANGE_TYPE.2.string.text
+msgid "Position of the selected entry"
+msgstr "Posición de la entrada seleccionada"
+
+#: formres.src#RID_STR_SHOW_SCROLLBARS.string.text
+msgid "Scrollbars"
+msgstr "Barras de desplazamiento"
+
+#: formres.src#RID_RSC_ENUM_TEXTTYPE.1.string.text
+msgid "Single-line"
+msgstr "Una línea"
+
+#: formres.src#RID_RSC_ENUM_TEXTTYPE.2.string.text
+msgid "Multi-line"
+msgstr "Múltiples líneas"
+
+#: formres.src#RID_RSC_ENUM_TEXTTYPE.3.string.text
+msgid "Multi-line with formatting"
+msgstr "Múltiples líneas con formato"
+
+#: formres.src#RID_STR_SYMBOLCOLOR.string.text
+msgid "Symbol color"
+msgstr "Color de símbolo"
+
+#: formres.src#RID_STR_LINEEND_FORMAT.string.text
+msgid "Text lines end with"
+msgstr "Las líneas de texto acaban con"
+
+#: formres.src#RID_RSC_ENUM_LINEEND_FORMAT.1.string.text
+msgid "LF (Unix)"
+msgstr "LF (Unix)"
+
+#: formres.src#RID_RSC_ENUM_LINEEND_FORMAT.2.string.text
+msgid "CR+LF (Windows)"
+msgstr "CR+LF (Windows)"
+
+#: formres.src#RID_RSC_ENUM_SCROLLBARS.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_SCROLLBARS.1.string.text"
+msgid "None"
+msgstr "Ninguna"
+
+#: formres.src#RID_RSC_ENUM_SCROLLBARS.2.string.text
+msgctxt "formres.src#RID_RSC_ENUM_SCROLLBARS.2.string.text"
+msgid "Horizontal"
+msgstr "Horizontal"
+
+#: formres.src#RID_RSC_ENUM_SCROLLBARS.3.string.text
+msgctxt "formres.src#RID_RSC_ENUM_SCROLLBARS.3.string.text"
+msgid "Vertical"
+msgstr "Vertical"
+
+#: formres.src#RID_RSC_ENUM_SCROLLBARS.4.string.text
+msgid "Both"
+msgstr "Ambas"
+
+#: formres.src#RID_RSC_ENUM_COMMAND_TYPE.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_COMMAND_TYPE.1.string.text"
+msgid "Table"
+msgstr "Tabla"
+
+#: formres.src#RID_RSC_ENUM_COMMAND_TYPE.2.string.text
+msgctxt "formres.src#RID_RSC_ENUM_COMMAND_TYPE.2.string.text"
+msgid "Query"
+msgstr "Consulta"
+
+#: formres.src#RID_RSC_ENUM_COMMAND_TYPE.3.string.text
+msgid "SQL command"
+msgstr "Comando SQL"
+
+#: formres.src#RID_STR_TOGGLE.string.text
+msgid "Toggle"
+msgstr "Alternar"
+
+#: formres.src#RID_STR_FOCUSONCLICK.string.text
+msgid "Take Focus on Click"
+msgstr "Activar al hacer clic"
+
+#: formres.src#RID_STR_HIDEINACTIVESELECTION.string.text
+msgid "Hide selection"
+msgstr "Ocultar selección"
+
+#: formres.src#RID_STR_VISUALEFFECT.string.text
+msgid "Style"
+msgstr "Estilo"
+
+#: formres.src#RID_RSC_ENUM_VISUALEFFECT.1.string.text
+msgid "3D"
+msgstr "3D"
+
+#: formres.src#RID_RSC_ENUM_VISUALEFFECT.2.string.text
+msgctxt "formres.src#RID_RSC_ENUM_VISUALEFFECT.2.string.text"
+msgid "Flat"
+msgstr "Plano"
+
+#: formres.src#RID_STR_BORDERCOLOR.string.text
+msgid "Border color"
+msgstr "Color de borde"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.1.string.text
+msgid "Left top"
+msgstr "Superior izquierda"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.2.string.text
+msgid "Left centered"
+msgstr "Centro izquierda"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.3.string.text
+msgid "Left bottom"
+msgstr "Inferior izquierda"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.4.string.text
+msgid "Right top"
+msgstr "Superior derecha"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.5.string.text
+msgid "Right centered"
+msgstr "Centro derecha"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.6.string.text
+msgid "Right bottom"
+msgstr "Inferior derecha"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.7.string.text
+msgid "Above left"
+msgstr "Encima izquierda"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.8.string.text
+msgid "Above centered"
+msgstr "Encima centro"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.9.string.text
+msgid "Above right"
+msgstr "Encima derecha"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.10.string.text
+msgid "Below left"
+msgstr "Debajo izquierda"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.11.string.text
+msgid "Below centered"
+msgstr "Debajo centro"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.12.string.text
+msgid "Below right"
+msgstr "Debajo derecha"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.13.string.text
+msgid "Centered"
+msgstr "Centro"
+
+#: formres.src#RID_STR_AUTOLINEBREAK.string.text
+msgid "Wrap text automatically"
+msgstr "Ajustar texto automáticamente"
+
+#: formres.src#RID_STR_TEXTTYPE.string.text
+msgid "Text type"
+msgstr "Tipo de texto"
+
+#: formres.src#RID_RSC_ENUM_SHOWHIDE.1.string.text
+msgid "Hide"
+msgstr "Ocultar"
+
+#: formres.src#RID_RSC_ENUM_SHOWHIDE.2.string.text
+msgid "Show"
+msgstr "Mostrar"
+
+#: formres.src#RID_STR_XML_DATA_MODEL.string.text
+msgid "XML data model"
+msgstr "Modelo de datos XML"
+
+#: formres.src#RID_STR_BIND_EXPRESSION.string.text
+msgid "Binding expression"
+msgstr "Expresión de enlace"
+
+#: formres.src#RID_STR_XSD_REQUIRED.string.text
+msgid "Required"
+msgstr "Requerido"
+
+#: formres.src#RID_STR_LIST_BINDING.string.text
+msgid "List entry source"
+msgstr "Origen de entrada de lista"
+
+#: formres.src#RID_STR_XSD_RELEVANT.string.text
+msgid "Relevant"
+msgstr "Relevante"
+
+#: formres.src#RID_STR_XSD_READONLY.string.text
+msgctxt "formres.src#RID_STR_XSD_READONLY.string.text"
+msgid "Read-only"
+msgstr "De sólo lectura"
+
+#: formres.src#RID_STR_XSD_CONSTRAINT.string.text
+msgid "Constraint"
+msgstr "Restricción"
+
+#: formres.src#RID_STR_XSD_CALCULATION.string.text
+msgid "Calculation"
+msgstr "Cálculo"
+
+#: formres.src#RID_STR_XSD_DATA_TYPE.string.text
+msgid "Data type"
+msgstr "Tipo de datos"
+
+#: formres.src#RID_STR_XSD_WHITESPACES.string.text
+msgid "Whitespaces"
+msgstr "Espacios en blanco"
+
+#: formres.src#RID_RSC_ENUM_WHITESPACE_HANDLING.1.string.text
+msgid "Preserve"
+msgstr "Conservar"
+
+#: formres.src#RID_RSC_ENUM_WHITESPACE_HANDLING.2.string.text
+msgid "Replace"
+msgstr "Reemplazar"
+
+#: formres.src#RID_RSC_ENUM_WHITESPACE_HANDLING.3.string.text
+msgid "Collapse"
+msgstr "Contraer"
+
+#: formres.src#RID_STR_XSD_PATTERN.string.text
+msgid "Pattern"
+msgstr "Trama"
+
+#: formres.src#RID_STR_XSD_LENGTH.string.text
+msgid "Length"
+msgstr "Longitud"
+
+#: formres.src#RID_STR_XSD_MIN_LENGTH.string.text
+msgid "Length (at least)"
+msgstr "Longitudo (como mínimo)"
+
+#: formres.src#RID_STR_XSD_MAX_LENGTH.string.text
+msgid "Length (at most)"
+msgstr "Longitudo (como máximo)"
+
+#: formres.src#RID_STR_XSD_TOTAL_DIGITS.string.text
+msgid "Digits (total)"
+msgstr "Dígitos (total)"
+
+#: formres.src#RID_STR_XSD_FRACTION_DIGITS.string.text
+msgid "Digits (fraction)"
+msgstr "Dígitos (fracción)"
+
+#: formres.src#RID_STR_XSD_MAX_INCLUSIVE.string.text
+msgid "Max. (inclusive)"
+msgstr "Máx. (incluido)"
+
+#: formres.src#RID_STR_XSD_MAX_EXCLUSIVE.string.text
+msgid "Max. (exclusive)"
+msgstr "Máx. (no incluido)"
+
+#: formres.src#RID_STR_XSD_MIN_INCLUSIVE.string.text
+msgid "Min. (inclusive)"
+msgstr "Mín. (incluido)"
+
+#: formres.src#RID_STR_XSD_MIN_EXCLUSIVE.string.text
+msgid "Min. (exclusive)"
+msgstr "Mín. (no incluido)"
+
+#: formres.src#RID_STR_SUBMISSION_ID.string.text
+msgid "Submission"
+msgstr "Envío"
+
+#: formres.src#RID_STR_BINDING_UI_NAME.string.text
+msgid "Binding"
+msgstr "Enlace"
+
+#: formres.src#RID_STR_SELECTION_TYPE.string.text
+msgid "Selection type"
+msgstr "Típo de selección"
+
+#: formres.src#RID_STR_ROOT_DISPLAYED.string.text
+msgid "Root displayed"
+msgstr "Raíz mostrada"
+
+#: formres.src#RID_STR_SHOWS_HANDLES.string.text
+msgid "Show handles"
+msgstr "Mostrar manillas"
+
+#: formres.src#RID_STR_SHOWS_ROOT_HANDLES.string.text
+msgid "Show root handles"
+msgstr "Mostrar manillas raíz"
+
+#: formres.src#RID_STR_EDITABLE.string.text
+msgid "Editable"
+msgstr "Editable"
+
+#: formres.src#RID_STR_INVOKES_STOP_NOT_EDITING.string.text
+msgid "Invokes stop node editing"
+msgstr "Alto en la edición del nodo"
+
+#: formres.src#RID_STR_DECORATION.string.text
+msgid "With title bar"
+msgstr "Con barra de título"
+
+#: formres.src#RID_STR_NOLABEL.string.text
+msgid "No Label"
+msgstr "Sin etiquetas"
+
+#: formres.src#RID_RSC_ENUM_SCALE_MODE.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_SCALE_MODE.1.string.text"
+msgid "No"
+msgstr "No"
+
+#: formres.src#RID_RSC_ENUM_SCALE_MODE.2.string.text
+msgid "Keep Ratio"
+msgstr "Mantener razón"
+
+#: formres.src#RID_RSC_ENUM_SCALE_MODE.3.string.text
+msgid "Fit to Size"
+msgstr "Ajustar al tamaño"
+
+#: formres.src#RID_STR_INPUT_REQUIRED.string.text
+msgid "Input required"
+msgstr "Entrada requerida"
+
+#: formres.src#RID_STR_WRITING_MODE.string.text
+msgid "Text direction"
+msgstr "Orientación del texto"
+
+#: formres.src#RID_RSC_ENUM_WRITING_MODE.1.string.text
+msgid "Left-to-right"
+msgstr "Izquierda a derecha"
+
+#: formres.src#RID_RSC_ENUM_WRITING_MODE.2.string.text
+msgid "Right-to-left"
+msgstr "Derecha a izquierda"
+
+#: formres.src#RID_RSC_ENUM_WRITING_MODE.3.string.text
+msgid "Use superordinate object settings"
+msgstr "De izquierda a derecha"
+
+#: formres.src#RID_RSC_ENUM_WHEEL_BEHAVIOR.1.string.text
+msgid "Never"
+msgstr "Nunca"
+
+#: formres.src#RID_RSC_ENUM_WHEEL_BEHAVIOR.2.string.text
+msgid "When focused"
+msgstr "Al enfocarse"
+
+#: formres.src#RID_RSC_ENUM_WHEEL_BEHAVIOR.3.string.text
+msgid "Always"
+msgstr "Siempre"
+
+#: formres.src#RID_STR_ANCHOR_TYPE.string.text
+msgid "Anchor"
+msgstr "Ancla"
+
+#: formres.src#RID_RSC_ENUM_TEXT_ANCHOR_TYPE.1.string.text
+msgid "To Paragraph"
+msgstr "Al párrafo"
+
+#: formres.src#RID_RSC_ENUM_TEXT_ANCHOR_TYPE.2.string.text
+msgid "As Character"
+msgstr "Como caracteres"
+
+#: formres.src#RID_RSC_ENUM_TEXT_ANCHOR_TYPE.3.string.text
+msgctxt "formres.src#RID_RSC_ENUM_TEXT_ANCHOR_TYPE.3.string.text"
+msgid "To Page"
+msgstr "A página"
+
+#: formres.src#RID_RSC_ENUM_TEXT_ANCHOR_TYPE.4.string.text
+msgid "To Frame"
+msgstr "Al capítulo"
+
+#: formres.src#RID_RSC_ENUM_TEXT_ANCHOR_TYPE.5.string.text
+msgid "To Character"
+msgstr "A caracteres"
+
+#: formres.src#RID_RSC_ENUM_SHEET_ANCHOR_TYPE.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_SHEET_ANCHOR_TYPE.1.string.text"
+msgid "To Page"
+msgstr "A página"
+
+#: formres.src#RID_RSC_ENUM_SHEET_ANCHOR_TYPE.2.string.text
+msgid "To Cell"
+msgstr "A celda"
+
+#. That's the 'Regular' as used for a font style (as opposed to 'italic' and 'bold'), so please use a consistent translation.
+#: formres.src#RID_STR_FONTSTYLE_REGULAR.string.text
+msgid "Regular"
+msgstr "Regular"
+
+#. That's the 'Bold Italic' as used for a font style, so please use a consistent translation.
+#: formres.src#RID_STR_FONTSTYLE_BOLD_ITALIC.string.text
+msgid "Bold Italic"
+msgstr "Negrita Cursiva"
+
+#. That's the 'Italic' as used for a font style, so please use a consistent translation.
+#: formres.src#RID_STR_FONTSTYLE_ITALIC.string.text
+msgid "Italic"
+msgstr "Cursiva"
+
+#. That's the 'Bold' as used for a font style, so please use a consistent translation.
+#: formres.src#RID_STR_FONTSTYLE_BOLD.string.text
+msgid "Bold"
+msgstr "Negrita"
+
+#: formres.src#RID_STR_FONT_DEFAULT.string.text
+msgid "(Default)"
+msgstr "(Predeterminado)"
diff --git a/source/es/extensions/source/scanner.po b/source/es/extensions/source/scanner.po
new file mode 100644
index 00000000000..734f60b0be0
--- /dev/null
+++ b/source/es/extensions/source/scanner.po
@@ -0,0 +1,134 @@
+#. extracted from extensions/source/scanner.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+extensions%2Fsource%2Fscanner.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 20:01+0200\n"
+"Last-Translator: Alexandro <jza@openoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: grid.src#GRID_DIALOG.GRID_DIALOG_RESET_BTN.pushbutton.text
+msgctxt "grid.src#GRID_DIALOG.GRID_DIALOG_RESET_BTN.pushbutton.text"
+msgid "Set"
+msgstr "Definir"
+
+#: grid.src#GRID_DIALOG.RESET_TYPE_LINEAR_ASCENDING.string.text
+msgid "Linear ascending"
+msgstr "Lineal ascendente"
+
+#: grid.src#GRID_DIALOG.RESET_TYPE_LINEAR_DESCENDING.string.text
+msgid "Linear descending"
+msgstr "Lineal descendente"
+
+#: grid.src#GRID_DIALOG.RESET_TYPE_RESET.string.text
+msgid "Original values"
+msgstr "Valores originales"
+
+#: grid.src#GRID_DIALOG.RESET_TYPE_EXPONENTIAL.string.text
+msgid "Exponential increasing"
+msgstr "Exponencial aumentando"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_DEVICEINFO_BTN.pushbutton.text
+msgid ""
+"About\n"
+" Dev~ice"
+msgstr ""
+"Información sobre\n"
+" ~dispositivo"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_PREVIEW_BTN.pushbutton.text
+msgid ""
+"Create\n"
+"Preview"
+msgstr ""
+"Crear\n"
+"~Previsualización"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_BTN.pushbutton.text
+msgid "Scan"
+msgstr "Escanear"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_PREVIEW_BOX.fixedline.text
+msgid "Preview"
+msgstr "Previsualización"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCANAREA_BOX.fixedline.text
+msgid "Scan area"
+msgstr "Área de escaneado"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_LEFT_TXT.fixedtext.text
+msgid "Left:"
+msgstr "I~zquierda:"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_TOP_TXT.fixedtext.text
+msgid "Top:"
+msgstr "~Arriba:"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_RIGHT_TXT.fixedtext.text
+msgid "Right:"
+msgstr "~Derecha:"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_BOTTOM_TXT.fixedtext.text
+msgid "Bottom:"
+msgstr "~Abajo:"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_DEVICE_BOX_TXT.fixedtext.text
+msgid "Device used:"
+msgstr "Dispositivo ~utilizado:"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_RESOLUTION_TXT.fixedtext.text
+msgid "Resolution [~DPI]"
+msgstr "Resolución [~DPI]:"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_ADVANCED_TXT.fixedtext.text
+msgid "Show advanced options"
+msgstr "Mostrar otras ~opciones"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_OPTION_TXT.fixedtext.text
+msgid "Options:"
+msgstr "Opciones:"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_NUMERIC_VECTOR_TXT.fixedtext.text
+msgid "Vector element"
+msgstr "Elemento vectorial"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_BUTTON_OPTION_BTN.pushbutton.text
+msgctxt "sanedlg.src#RID_SANE_DIALOG.RID_SCAN_BUTTON_OPTION_BTN.pushbutton.text"
+msgid "Set"
+msgstr "Definir"
+
+#: sanedlg.src#RID_SANE_DIALOG.modaldialog.text
+msgid "Scanner"
+msgstr "Escáner"
+
+#: sanedlg.src#RID_SANE_DEVICEINFO_TXT.string.text
+msgid ""
+"Device: %s\n"
+"Vendor: %s\n"
+"Model: %s\n"
+"Type: %s"
+msgstr ""
+"Dispositivo: %s\n"
+"Fabricante: %s\n"
+"Modelo: %s\n"
+"Tipo: %s"
+
+#: sanedlg.src#RID_SANE_SCANERROR_TXT.string.text
+msgid "An error occurred while scanning."
+msgstr "Se ha producido un error durante el escaneado."
+
+#: sanedlg.src#RID_SANE_NORESOLUTIONOPTION_TXT.string.text
+msgid "The device does not offer a preview option. Therefore, a normal scan will be used as a preview instead. This may take a considerable amount of time."
+msgstr "El dispositivo no está preparado para ofrecer opción de previsualización. En lugar de esta se utilizará un escaneado normal, que puede tardar considerablemente más."
+
+#: sanedlg.src#RID_SANE_NOSANELIB_TXT.string.text
+msgid "The SANE interface could not be initialized. Scanning is not possible."
+msgstr "La interfaz SANE no se pudo inicializar. No se puede realizar ningún proceso de digitalización."
diff --git a/source/es/extensions/source/update/check.po b/source/es/extensions/source/update/check.po
new file mode 100644
index 00000000000..07b18734f86
--- /dev/null
+++ b/source/es/extensions/source/update/check.po
@@ -0,0 +1,230 @@
+#. extracted from extensions/source/update/check.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+extensions%2Fsource%2Fupdate%2Fcheck.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2012-07-06 02:35+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: updatehdl.src#RID_UPDATE_STR_CHECKING.string.text
+msgid "Checking..."
+msgstr "Buscando..."
+
+#: updatehdl.src#RID_UPDATE_STR_CHECKING_ERR.string.text
+msgid "Checking for an update failed."
+msgstr "Falló la búsqueda de una actualización."
+
+#: updatehdl.src#RID_UPDATE_STR_NO_UPD_FOUND.string.text
+msgid "%PRODUCTNAME %PRODUCTVERSION is up to date."
+msgstr "%PRODUCTNAME %PRODUCTVERSION está actualizado."
+
+#: updatehdl.src#RID_UPDATE_STR_UPD_FOUND.string.text
+msgid ""
+"%PRODUCTNAME %NEXTVERSION is available.\n"
+"\n"
+"The installed version is %PRODUCTNAME %PRODUCTVERSION.\n"
+"\n"
+"Note: Before downloading an update, please ensure that you have sufficient access rights to install it.\n"
+"A password, usually the administrator's or root password, may be required."
+msgstr ""
+"%PRODUCTNAME %NEXTVERSION ya está disponible.\n"
+"\n"
+"La versión instalada es %PRODUCTNAME %PRODUCTVERSION.\n"
+"\n"
+"Nota: Antes de descargar una actualización, asegúrese que tiene los permisos de acceso necesarios para instalarla.\n"
+"Puede ser necesario ingresar una contraseña, usualmente del administrador del sistema o del usuario root."
+
+#: updatehdl.src#RID_UPDATE_STR_DLG_TITLE.string.text
+msgid "Check for Updates"
+msgstr "Buscar actualizaciones"
+
+#: updatehdl.src#RID_UPDATE_STR_DOWNLOAD_PAUSE.string.text
+msgid "Downloading %PRODUCTNAME %NEXTVERSION paused at..."
+msgstr "La descarga de %PRODUCTNAME %NEXTVERSION está pausada en..."
+
+#: updatehdl.src#RID_UPDATE_STR_DOWNLOAD_ERR.string.text
+msgid "Downloading %PRODUCTNAME %NEXTVERSION stalled at"
+msgstr "La descarga de %PRODUCTNAME %NEXTVERSION está detenida en"
+
+#: updatehdl.src#RID_UPDATE_STR_DOWNLOAD_WARN.string.text
+msgid ""
+"The download location is: %DOWNLOAD_PATH.\n"
+"\n"
+"Under Tools – Options... - %PRODUCTNAME – Online Update you can change the download location."
+msgstr ""
+"La ubicación de la descarga es: %DOWNLOAD_PATH.\n"
+"\n"
+"En Herramientas – Opciones... - %PRODUCTNAME – Actualización en línea, se puede cambiar la ubicación de la descarga."
+
+#: updatehdl.src#RID_UPDATE_STR_DOWNLOAD_DESCR.string.text
+msgid "%FILE_NAME has been downloaded to %DOWNLOAD_PATH."
+msgstr "%FILE_NAME ha sido descargado a %DOWNLOAD_PATH."
+
+#: updatehdl.src#RID_UPDATE_STR_DOWNLOAD_UNAVAIL.string.text
+msgid ""
+"The automatic download of the update is currently not available.\n"
+"\n"
+"Click 'Download...' to download %PRODUCTNAME %NEXTVERSION manually from the web site."
+msgstr ""
+"La descarga automática de las actualizaciones no está disponible actualmente.\n"
+"\n"
+"Haga clic en 'Descargar...' para descargar %PRODUCTNAME %NEXTVERSION manualmente de la página web."
+
+#: updatehdl.src#RID_UPDATE_STR_DOWNLOADING.string.text
+msgid "Downloading %PRODUCTNAME %NEXTVERSION..."
+msgstr "Descargando %PRODUCTNAME %NEXTVERSION..."
+
+#: updatehdl.src#RID_UPDATE_STR_READY_INSTALL.string.text
+msgid "Download of %PRODUCTNAME %NEXTVERSION completed. Ready for installation."
+msgstr "La descarga de %PRODUCTNAME %NEXTVERSION ha completado. Listo para la instalación."
+
+#: updatehdl.src#RID_UPDATE_STR_CANCEL_TITLE.string.text
+msgid "%PRODUCTNAME %PRODUCTVERSION"
+msgstr "%PRODUCTNAME %PRODUCTVERSION"
+
+#: updatehdl.src#RID_UPDATE_STR_CANCEL_DOWNLOAD.string.text
+msgid "Do you really want to cancel the download?"
+msgstr "¿Realmente desea cancelar la descarga?"
+
+#: updatehdl.src#RID_UPDATE_STR_BEGIN_INSTALL.string.text
+msgid "To install the update, %PRODUCTNAME %PRODUCTVERSION needs to be closed. Do you want to install the update now?"
+msgstr "Para instalar las actualizaciones, %PRODUCTNAME %PRODUCTVERSION necesita cerrarse. Quieres instalar las actualizaciones ahora?"
+
+#: updatehdl.src#RID_UPDATE_STR_INSTALL_NOW.string.text
+msgid "Install ~now"
+msgstr "Instalar ~ahora"
+
+#: updatehdl.src#RID_UPDATE_STR_INSTALL_LATER.string.text
+msgid "Install ~later"
+msgstr "Instalar ~después"
+
+#: updatehdl.src#RID_UPDATE_STR_INSTALL_ERROR.string.text
+msgid "Could not run the installer application, please run %FILE_NAME in %DOWNLOAD_PATH manually."
+msgstr "No se pudo correr el instalador de la aplicación, favor de correr manualmente %FILE_NAME dentro de %DOWNLOAD_PATH."
+
+#: updatehdl.src#RID_UPDATE_STR_OVERWRITE_WARNING.string.text
+msgid "A file with that name already exists! Do you want to overwrite the existing file?"
+msgstr "Ya existe un archivo con ese nombre. ¿Quiere sobreescribir el archivo existente?"
+
+#: updatehdl.src#RID_UPDATE_STR_RELOAD_WARNING.string.text
+msgid "A file with the name '%FILENAME' already exists in '%DOWNLOAD_PATH'! Do you want to continue with the download or delete and reload the file?"
+msgstr "¡Ya existe en '%DOWNLOAD_PATH' un archivo llamado '%FILENAME'! ¿Desea continuar la descarga o eliminar y volver a descargar el archivo?"
+
+#: updatehdl.src#RID_UPDATE_STR_RELOAD_RELOAD.string.text
+msgid "Reload File"
+msgstr "Recargar archivo"
+
+#: updatehdl.src#RID_UPDATE_STR_RELOAD_CONTINUE.string.text
+msgid "Continue"
+msgstr "Continuar"
+
+#: updatehdl.src#RID_UPDATE_STR_PERCENT.string.text
+msgid "%PERCENT%"
+msgstr "%PERCENT%"
+
+#: updatehdl.src#RID_UPDATE_FT_STATUS.string.text
+msgid "Status"
+msgstr "Estado"
+
+#: updatehdl.src#RID_UPDATE_FT_DESCRIPTION.string.text
+msgid "Description"
+msgstr "Descripción"
+
+#: updatehdl.src#RID_UPDATE_BTN_CLOSE.string.text
+msgid "Close"
+msgstr "~Cerrar"
+
+#: updatehdl.src#RID_UPDATE_BTN_DOWNLOAD.string.text
+msgid "~Download"
+msgstr "~Descargar"
+
+#: updatehdl.src#RID_UPDATE_BTN_INSTALL.string.text
+msgid "~Install"
+msgstr "~Instalar"
+
+#: updatehdl.src#RID_UPDATE_BTN_PAUSE.string.text
+msgid "~Pause"
+msgstr "Pausa"
+
+#: updatehdl.src#RID_UPDATE_BTN_RESUME.string.text
+msgid "~Resume"
+msgstr "~Continuar"
+
+#: updatehdl.src#RID_UPDATE_BTN_CANCEL.string.text
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_T_UPDATE_AVAIL.string.text
+msgctxt "updatehdl.src#RID_UPDATE_BUBBLE_T_UPDATE_AVAIL.string.text"
+msgid "%PRODUCTNAME update available"
+msgstr "Actualización disponible de %PRODUCTNAME"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_UPDATE_AVAIL.string.text
+msgid "Click the icon to start the download."
+msgstr "Pulse en el icono para iniciar la descarga."
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_T_UPDATE_NO_DOWN.string.text
+msgctxt "updatehdl.src#RID_UPDATE_BUBBLE_T_UPDATE_NO_DOWN.string.text"
+msgid "%PRODUCTNAME update available"
+msgstr "Actualización disponible de %PRODUCTNAME"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_UPDATE_NO_DOWN.string.text
+msgctxt "updatehdl.src#RID_UPDATE_BUBBLE_UPDATE_NO_DOWN.string.text"
+msgid "Click the icon for more information."
+msgstr "Pulse en el icono para más información."
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_T_AUTO_START.string.text
+msgctxt "updatehdl.src#RID_UPDATE_BUBBLE_T_AUTO_START.string.text"
+msgid "%PRODUCTNAME update available"
+msgstr "Actualización disponible de %PRODUCTNAME"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_AUTO_START.string.text
+msgid "Download of update begins."
+msgstr "Comienza la descarga de la actualización."
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_T_DOWNLOADING.string.text
+msgid "Download of update in progress"
+msgstr "Descarga de actualización en progreso"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_T_DOWNLOAD_PAUSED.string.text
+msgid "Download of update paused"
+msgstr "Descarga de la actualización en pausa"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_DOWNLOAD_PAUSED.string.text
+msgid "Click the icon to resume."
+msgstr "Pulse en el icono para continuar."
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_T_ERROR_DOWNLOADING.string.text
+msgid "Download of update stalled"
+msgstr "Descarga de la actualización en espera"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_ERROR_DOWNLOADING.string.text
+msgctxt "updatehdl.src#RID_UPDATE_BUBBLE_ERROR_DOWNLOADING.string.text"
+msgid "Click the icon for more information."
+msgstr "Pulse en el icono para más información."
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_T_DOWNLOAD_AVAIL.string.text
+msgid "Download of update completed"
+msgstr "Descarga de la actualización completa"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_DOWNLOAD_AVAIL.string.text
+msgid "Click the icon to start the installation."
+msgstr "Pulse en el icono para comenzar la instalación."
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_T_EXT_UPD_AVAIL.string.text
+msgid "Updates for extensions available"
+msgstr "Actualizaciones para extensiones disponibles"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_EXT_UPD_AVAIL.string.text
+msgctxt "updatehdl.src#RID_UPDATE_BUBBLE_EXT_UPD_AVAIL.string.text"
+msgid "Click the icon for more information."
+msgstr "Pulse en el icono para más información."
diff --git a/source/es/extensions/source/update/check/org/openoffice/Office.po b/source/es/extensions/source/update/check/org/openoffice/Office.po
new file mode 100644
index 00000000000..19fe9475ffa
--- /dev/null
+++ b/source/es/extensions/source/update/check/org/openoffice/Office.po
@@ -0,0 +1,20 @@
+#. extracted from extensions/source/update/check/org/openoffice/Office.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+extensions%2Fsource%2Fupdate%2Fcheck%2Forg%2Fopenoffice%2FOffice.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-06-13 19:07+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Addons.xcu#.Addons.AddonUI.OfficeHelp.UpdateCheckJob.Title.value.text
+msgid "Check for ~Updates..."
+msgstr "Buscar act~ualizaciones..."
diff --git a/source/es/filter/source/config/fragments/filters.po b/source/es/filter/source/config/fragments/filters.po
new file mode 100644
index 00000000000..90e0b01d39d
--- /dev/null
+++ b/source/es/filter/source/config/fragments/filters.po
@@ -0,0 +1,380 @@
+#. extracted from filter/source/config/fragments/filters.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+filter%2Fsource%2Fconfig%2Ffragments%2Ffilters.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-06-13 19:11+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: StarDraw_5_0_Vorlage__StarImpress__ui.xcu#StarDraw_5.0_Vorlage__StarImpress_.UIName.value.text
+msgid "StarDraw 5.0 Template (Impress)"
+msgstr "Plantilla de StarDraw 5.0 (Impress)"
+
+#: calc_OOXML_ui.xcu#Calc_Office_Open_XML.UIName.value.text
+msgid "Office Open XML Spreadsheet"
+msgstr "Hoja de cálculo Office Open XML"
+
+#: StarWriter_5_0_Vorlage_Template_ui.xcu#StarWriter_5.0_Vorlage/Template.UIName.value.text
+msgid "StarWriter 5.0 Template"
+msgstr "Plantilla de StarWriter 5.0"
+
+#: calc8_template_ui.xcu#calc8_template.UIName.value.text
+msgid "ODF Spreadsheet Template"
+msgstr "Plantilla de Hoja de cálculo ODF"
+
+#: impress8_draw_ui.xcu#impress8_draw.UIName.value.text
+msgid "ODF Drawing (Impress)"
+msgstr "Dibujo ODF (Impress)"
+
+#: writer_web_StarOffice_XML_Writer_Web_Template_ui.xcu#writer_web_StarOffice_XML_Writer_Web_Template.UIName.value.text
+msgid "%productname% %formatversion% HTML Template"
+msgstr "Plantilla HTML de %productname% %formatversion%"
+
+#: StarOffice_XML__Base__ui.xcu#StarOffice_XML__Base_.UIName.value.text
+msgid "ODF Database"
+msgstr "Base de datos ODF"
+
+#: writer8_ui.xcu#writer8.UIName.value.text
+msgctxt "writer8_ui.xcu#writer8.UIName.value.text"
+msgid "ODF Text Document"
+msgstr "Documento de texto ODF"
+
+#: StarDraw_3_0_Vorlage_ui.xcu#StarDraw_3.0_Vorlage.UIName.value.text
+msgid "StarDraw 3.0 Template"
+msgstr "Plantilla de StarDraw 3.0"
+
+#: Text__encoded___StarWriter_GlobalDocument__ui.xcu#Text__encoded___StarWriter/GlobalDocument_.UIName.value.text
+msgid "Text Encoded (Master Document)"
+msgstr "Texto codificado (documento maestro)"
+
+#: calc_MS_Excel_2007_Binary_ui.xcu#Calc_MS_Excel_2007_Binary.UIName.value.text
+msgid "Microsoft Excel 2007 Binary"
+msgstr "Microsoft Excel 2007 Binary"
+
+#: impress_OOXML_ui.xcu#Impress_Office_Open_XML.UIName.value.text
+msgid "Office Open XML Presentation"
+msgstr "Presentación Office Open XML"
+
+#: StarOffice_XML__Math__ui.xcu#StarOffice_XML__Math_.UIName.value.text
+msgid "%productname% %formatversion% Formula"
+msgstr "Fórmula de %productname% %formatversion%"
+
+#: MS_Word_2007_XML_ui.xcu#MS_Word_2007_XML.UIName.value.text
+msgid "Microsoft Word 2007/2010 XML"
+msgstr "Microsoft Word 2007/2010 XML"
+
+#: StarWriter_3_0_Vorlage_Template_ui.xcu#StarWriter_3.0_Vorlage/Template.UIName.value.text
+msgid "StarWriter 3.0 Template"
+msgstr "Plantilla de StarWriter 3.0"
+
+#: draw8_ui.xcu#draw8.UIName.value.text
+msgid "ODF Drawing"
+msgstr "Dibujo ODF"
+
+#: writer_web_StarOffice_XML_Writer_ui.xcu#writer_web_StarOffice_XML_Writer.UIName.value.text
+msgid "%productname% %formatversion% Text Document (Writer/Web)"
+msgstr "Documento de texto de %productname% %formatversion% (Writer/Web)"
+
+#: StarOffice_XML__Calc__ui.xcu#StarOffice_XML__Calc_.UIName.value.text
+msgid "%productname% %formatversion% Spreadsheet"
+msgstr "Hoja de cálculo de %productname% %formatversion%"
+
+#: draw8_template_ui.xcu#draw8_template.UIName.value.text
+msgid "ODF Drawing Template"
+msgstr "Plantillas de dibujo ODF"
+
+#: MS_Excel_4_0_Vorlage_Template_ui.xcu#MS_Excel_4.0_Vorlage/Template.UIName.value.text
+msgid "Microsoft Excel 4.0 Template"
+msgstr "Plantilla de Microsoft Excel 4.0"
+
+#: writer_StarOffice_XML_Writer_Template_ui.xcu#writer_StarOffice_XML_Writer_Template.UIName.value.text
+msgid "%productname% %formatversion% Text Document Template"
+msgstr "Plantilla de documento de texto de %productname% %formatversion%"
+
+#: impress_StarOffice_XML_Impress_Template_ui.xcu#impress_StarOffice_XML_Impress_Template.UIName.value.text
+msgid "%productname% %formatversion% Presentation Template"
+msgstr "Plantilla de presentación de %productname% %formatversion%"
+
+#: writerweb8_writer_template_ui.xcu#writerweb8_writer_template.UIName.value.text
+msgid "HTML Document Template"
+msgstr "Plantilla de documento HTML"
+
+#: impress_MS_PowerPoint_2007_XML_Template_ui.xcu#Impress_MS_PowerPoint_2007_XML_Template.UIName.value.text
+msgctxt "impress_MS_PowerPoint_2007_XML_Template_ui.xcu#Impress_MS_PowerPoint_2007_XML_Template.UIName.value.text"
+msgid "Microsoft PowerPoint 2007/2010 XML Template"
+msgstr "Plantilla de Microsoft PowerPoint 2007/2010 XML"
+
+#: MS_Excel_5_0_95_Vorlage_Template_ui.xcu#MS_Excel_5.0/95_Vorlage/Template.UIName.value.text
+msgid "Microsoft Excel 5.0 Template"
+msgstr "Plantilla de Microsoft Excel 5.0"
+
+#: MS_Word_2003_XML_ui.xcu#MS_Word_2003_XML.UIName.value.text
+msgid "Microsoft Word 2003 XML"
+msgstr "Microsoft Word 2003 XML"
+
+#: writer_globaldocument_StarOffice_XML_Writer_GlobalDocument_ui.xcu#writer_globaldocument_StarOffice_XML_Writer_GlobalDocument.UIName.value.text
+msgid "%productname% %formatversion% Master Document"
+msgstr "Documento maestro de %productname% %formatversion%"
+
+#: StarWriter_5_0_GlobalDocument_ui.xcu#StarWriter_5.0/GlobalDocument.UIName.value.text
+msgid "StarWriter 5.0 Master Document"
+msgstr "Documento maestro de StarWriter 5.0"
+
+#: MS_Excel_97_Vorlage_Template_ui.xcu#MS_Excel_97_Vorlage/Template.UIName.value.text
+msgid "Microsoft Excel 97/2000/XP/2003 Template"
+msgstr "Plantilla de Microsoft Excel 97/2000/XP/2003"
+
+#: impress_MS_PowerPoint_2007_XML_AutoPlay.xcu#Impress_MS_PowerPoint_2007_XML_AutoPlay.UIName.value.text
+msgid "Microsoft PowerPoint 2007/2010 XML AutoPlay"
+msgstr "Microsoft PowerPoint 2007/2010 XML (reproducción automática)"
+
+#: draw_html_Export_ui.xcu#draw_html_Export.UIName.value.text
+msgid "HTML Document (Draw)"
+msgstr "Documento HTML (Draw)"
+
+#: MS_Word_2007_XML_Template.xcu#MS_Word_2007_XML_Template.UIName.value.text
+msgctxt "MS_Word_2007_XML_Template.xcu#MS_Word_2007_XML_Template.UIName.value.text"
+msgid "Microsoft Word 2007/2010 XML Template"
+msgstr "Plantilla de Microsoft Word 2007 XML"
+
+#: StarCalc_5_0_Vorlage_Template_ui.xcu#StarCalc_5.0_Vorlage/Template.UIName.value.text
+msgid "StarCalc 5.0 Template"
+msgstr "Plantilla de StarCalc 5.0"
+
+#: calc8_ui.xcu#calc8.UIName.value.text
+msgid "ODF Spreadsheet"
+msgstr "Hoja de cálculo ODF"
+
+#: MS_Word_97_Vorlage_ui.xcu#MS_Word_97_Vorlage.UIName.value.text
+msgid "Microsoft Word 97/2000/XP/2003 Template"
+msgstr "Plantilla de Microsoft Word 97/2000/XP/2003"
+
+#: StarCalc_4_0_Vorlage_Template_ui.xcu#StarCalc_4.0_Vorlage/Template.UIName.value.text
+msgid "StarCalc 4.0 Template"
+msgstr "Plantilla de StarCalc 4.0"
+
+#: writerweb8_writer_ui.xcu#writerweb8_writer.UIName.value.text
+msgid "%productname% Text (Writer/Web)"
+msgstr "Texto de %productname% (Writer/Web)"
+
+#: impress8_template_ui.xcu#impress8_template.UIName.value.text
+msgid "ODF Presentation Template"
+msgstr "Plantilla de presentación ODF"
+
+#: Text_ui.xcu#Text.UIName.value.text
+msgid "Text"
+msgstr "Texto"
+
+#: writer_globaldocument_StarOffice_XML_Writer_ui.xcu#writer_globaldocument_StarOffice_XML_Writer.UIName.value.text
+msgctxt "writer_globaldocument_StarOffice_XML_Writer_ui.xcu#writer_globaldocument_StarOffice_XML_Writer.UIName.value.text"
+msgid "%productname% %formatversion% Text Document"
+msgstr "Documento de texto de %productname% %formatversion%"
+
+#: StarDraw_5_0_Vorlage_ui.xcu#StarDraw_5.0_Vorlage.UIName.value.text
+msgid "StarDraw 5.0 Template"
+msgstr "Plantilla deStarDraw 5.0"
+
+#: writerglobal8_writer_ui.xcu#writerglobal8_writer.UIName.value.text
+msgctxt "writerglobal8_writer_ui.xcu#writerglobal8_writer.UIName.value.text"
+msgid "ODF Text Document"
+msgstr "Documento de texto ODF"
+
+#: StarOffice_XML__Writer__ui.xcu#StarOffice_XML__Writer_.UIName.value.text
+msgctxt "StarOffice_XML__Writer__ui.xcu#StarOffice_XML__Writer_.UIName.value.text"
+msgid "%productname% %formatversion% Text Document"
+msgstr "Documento de texto de %productname% %formatversion%"
+
+#: impress_MS_PowerPoint_2007_XML_ui.xcu#Impress_MS_PowerPoint_2007_XML.UIName.value.text
+msgid "Microsoft PowerPoint 2007/2010 XML"
+msgstr "Microsoft PowerPoint 2007/2010 XML"
+
+#: HTML_MasterDoc_ui.xcu#HTML_MasterDoc.UIName.value.text
+msgid "HTML Document (Master Document)"
+msgstr "Documento HTML (documento maestro)"
+
+#: StarWriter_4_0_GlobalDocument_ui.xcu#StarWriter_4.0/GlobalDocument.UIName.value.text
+msgid "StarWriter 4.0 Master Document"
+msgstr "Documento maestro de StarWriter 4.0"
+
+#: StarWriter_Web_4_0_Vorlage_Template_ui.xcu#StarWriter/Web_4.0_Vorlage/Template.UIName.value.text
+msgid "StarWriter/Web 4.0 Template"
+msgstr "Plantilla de StarWriter/Web 4.0"
+
+#: StarImpress_5_0_Vorlage_ui.xcu#StarImpress_5.0_Vorlage.UIName.value.text
+msgid "StarImpress 5.0 Template"
+msgstr "Plantilla de StarImpress 5.0"
+
+#: writer8_template_ui.xcu#writer8_template.UIName.value.text
+msgid "ODF Text Document Template"
+msgstr "Plantilla de documento de texto ODF"
+
+#: OOXML_Text_Template_ui.xcu#Office_Open_XML_Text_Template.UIName.value.text
+msgid "Office Open XML Text Template"
+msgstr "Plantilla de texto Office Open XML"
+
+#: math8_ui.xcu#math8.UIName.value.text
+msgid "ODF Formula"
+msgstr "Formula ODF"
+
+#: calc_MS_Excel_2007_XML_ui.xcu#Calc_MS_Excel_2007_XML.UIName.value.text
+msgid "Microsoft Excel 2007/2010 XML"
+msgstr "Microsoft Excel 2007/2010 XML"
+
+#: StarOffice_XML__Chart__ui.xcu#StarOffice_XML__Chart_.UIName.value.text
+msgid "%productname% %formatversion% Chart"
+msgstr "%productname% %formatversion% Chart"
+
+#: MS_Word_2007_XML_Template_ui.xcu#MS_Word_2007_XML_Template.UIName.value.text
+msgctxt "MS_Word_2007_XML_Template_ui.xcu#MS_Word_2007_XML_Template.UIName.value.text"
+msgid "Microsoft Word 2007/2010 XML Template"
+msgstr "Plantilla de Microsoft Word 2007/2010 XML"
+
+#: HTML__StarWriter__ui.xcu#HTML__StarWriter_.UIName.value.text
+msgid "HTML Document (Writer)"
+msgstr "Documento HTML (Writer)"
+
+#: MS_Excel_2003_XML_ui.xcu#MS_Excel_2003_XML.UIName.value.text
+msgid "Microsoft Excel 2003 XML"
+msgstr "Microsoft Excel 2003 XML"
+
+#: UOF_spreadsheet_ui.xcu#UOF_spreadsheet.UIName.value.text
+msgid "Unified Office Format spreadsheet"
+msgstr "hoja de cálculo en Formato de Ofimática Unificado"
+
+#: StarDraw_3_0_Vorlage__StarImpress__ui.xcu#StarDraw_3.0_Vorlage__StarImpress_.UIName.value.text
+msgid "StarDraw 3.0 Template (Impress)"
+msgstr "Plantilla de StarDraw 3.0 (Impress)"
+
+#: StarImpress_4_0_Vorlage_ui.xcu#StarImpress_4.0_Vorlage.UIName.value.text
+msgid "StarImpress 4.0 Template"
+msgstr "Plantilla de StarImpress 4.0"
+
+#: calc_OOXML_Template_ui.xcu#Calc_Office_Open_XML_Template.UIName.value.text
+msgid "Office Open XML Spreadsheet Template"
+msgstr "Plantilla de hoja de cálculo Office Open XML"
+
+#: calc_MS_Excel_2007_XML_Template_ui.xcu#Calc_MS_Excel_2007_XML_Template.UIName.value.text
+msgid "Microsoft Excel 2007/2010 XML Template"
+msgstr "Plantilla de Microsoft Excel 2007/2010 XML"
+
+#: impress_MS_PowerPoint_2007_XML_Template.xcu#Impress_MS_PowerPoint_2007_XML_Template.UIName.value.text
+msgctxt "impress_MS_PowerPoint_2007_XML_Template.xcu#Impress_MS_PowerPoint_2007_XML_Template.UIName.value.text"
+msgid "Microsoft PowerPoint 2007/2010 XML Template"
+msgstr "Plantilla de Microsoft PowerPoint 2007/2010 XML"
+
+#: HTML_ui.xcu#HTML.UIName.value.text
+msgid "HTML Document"
+msgstr "Documento HTML"
+
+#: impress8_ui.xcu#impress8.UIName.value.text
+msgid "ODF Presentation"
+msgstr "Presentación ODF"
+
+#: impress_OOXML_Template_ui.xcu#Impress_Office_Open_XML_Template.UIName.value.text
+msgid "Office Open XML Presentation Template"
+msgstr "Plantilla de presentación Office Open XML"
+
+#: Text__StarWriter_Web__ui.xcu#Text__StarWriter/Web_.UIName.value.text
+msgid "Text (Writer/Web)"
+msgstr "Texto (Writer/Web)"
+
+#: calc_HTML_WebQuery_ui.xcu#calc_HTML_WebQuery.UIName.value.text
+msgid "Web Page Query (Calc)"
+msgstr "Consulta de página web (Calc)"
+
+#: StarOffice_XML__Impress__ui.xcu#StarOffice_XML__Impress_.UIName.value.text
+msgid "%productname% %formatversion% Presentation"
+msgstr "Presentación de %productname% %formatversion%"
+
+#: MS_PowerPoint_97_Vorlage_ui.xcu#MS_PowerPoint_97_Vorlage.UIName.value.text
+msgid "Microsoft PowerPoint 97/2000/XP/2003 Template"
+msgstr "Plantilla de Microsoft PowerPoint 97/2000/XP/2003"
+
+#: Text__encoded__ui.xcu#Text__encoded_.UIName.value.text
+msgid "Text Encoded"
+msgstr "Texto codificado"
+
+#: writerglobal8_ui.xcu#writerglobal8.UIName.value.text
+msgid "ODF Master Document"
+msgstr "Documento maestro ODF"
+
+#: UOF_text_ui.xcu#UOF_text.UIName.value.text
+msgid "Unified Office Format text"
+msgstr "texto en Formato de Ofimática Unificado"
+
+#: Text__encoded___StarWriter_Web__ui.xcu#Text__encoded___StarWriter/Web_.UIName.value.text
+msgid "Text Encoded (Writer/Web)"
+msgstr "Texto codificado (Writer/Web)"
+
+#: chart8_ui.xcu#chart8.UIName.value.text
+msgid "ODF Chart"
+msgstr "Gráficos ODF"
+
+#: StarWriter_Web_5_0_Vorlage_Template_ui.xcu#StarWriter/Web_5.0_Vorlage/Template.UIName.value.text
+msgid "StarWriter/Web 5.0 Template"
+msgstr "Plantilla de StarWriter/Web 5.0"
+
+#: OOXML_Text_ui.xcu#Office_Open_XML_Text.UIName.value.text
+msgid "Office Open XML Text"
+msgstr "Texto Office Open XML"
+
+#: draw_StarOffice_XML_Draw_Template_ui.xcu#draw_StarOffice_XML_Draw_Template.UIName.value.text
+msgid "%productname% %formatversion% Drawing Template"
+msgstr "Plantilla de dibujo de %productname% %formatversion%"
+
+#: StarOffice_XML__Draw__ui.xcu#StarOffice_XML__Draw_.UIName.value.text
+msgid "%productname% %formatversion% Drawing"
+msgstr "Dibujo de %productname% %formatversion%"
+
+#: impress_StarOffice_XML_Draw_ui.xcu#impress_StarOffice_XML_Draw.UIName.value.text
+msgid "%productname% %formatversion% Drawing (Impress)"
+msgstr "Dibujo de %productname% %formatversion% (Impress)"
+
+#: StarCalc_3_0_Vorlage_Template_ui.xcu#StarCalc_3.0_Vorlage/Template.UIName.value.text
+msgid "StarCalc 3.0 Template"
+msgstr "Plantilla de StarCalc 3.0"
+
+#: MS_Word_95_Vorlage_ui.xcu#MS_Word_95_Vorlage.UIName.value.text
+msgid "Microsoft Word 95 Template"
+msgstr "Plantilla de Microsoft Word 95"
+
+#: MS_Excel_95_Vorlage_Template_ui.xcu#MS_Excel_95_Vorlage/Template.UIName.value.text
+msgid "Microsoft Excel 95 Template"
+msgstr "Plantilla de Microsoft Excel 95"
+
+#: calc_StarOffice_XML_Calc_Template_ui.xcu#calc_StarOffice_XML_Calc_Template.UIName.value.text
+msgid "%productname% %formatversion% Spreadsheet Template"
+msgstr "Plantilla de hoja de cálculo de %productname% %formatversion%"
+
+#: UOF_presentation_ui.xcu#UOF_presentation.UIName.value.text
+msgid "Unified Office Format presentation"
+msgstr "Presentación en Formato de Ofimática Unificado"
+
+#: impress_html_Export_ui.xcu#impress_html_Export.UIName.value.text
+msgid "HTML Document (Impress)"
+msgstr "Documento HTML (Impress)"
+
+#: StarImpress_5_0__packed__ui.xcu#StarImpress_5.0__packed_.UIName.value.text
+msgid "StarImpress 5.0 Packed"
+msgstr "StarImpress 5.0 comprimido"
+
+#: StarWriter_4_0_Vorlage_Template_ui.xcu#StarWriter_4.0_Vorlage/Template.UIName.value.text
+msgid "StarWriter 4.0 Template"
+msgstr "Plantilla de StarWriter 4.0"
+
+#: Text___txt___csv__StarCalc__ui.xcu#Text___txt___csv__StarCalc_.UIName.value.text
+msgid "Text CSV"
+msgstr "Texto CSV"
+
+#: HTML__StarCalc__ui.xcu#HTML__StarCalc_.UIName.value.text
+msgid "HTML Document (Calc)"
+msgstr "Documento HTML (Calc)"
diff --git a/source/es/filter/source/config/fragments/internalgraphicfilters.po b/source/es/filter/source/config/fragments/internalgraphicfilters.po
new file mode 100644
index 00000000000..c68d8bc33b9
--- /dev/null
+++ b/source/es/filter/source/config/fragments/internalgraphicfilters.po
@@ -0,0 +1,226 @@
+#. extracted from filter/source/config/fragments/internalgraphicfilters.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+filter%2Fsource%2Fconfig%2Ffragments%2Finternalgraphicfilters.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-18 10:14+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: xpm_Import.xcu#xpm_Import.UIName.value.text
+msgctxt "xpm_Import.xcu#xpm_Import.UIName.value.text"
+msgid "XPM - X PixMap"
+msgstr "XPM - Mapa de píxeles X"
+
+#: wmf_Import.xcu#wmf_Import.UIName.value.text
+msgctxt "wmf_Import.xcu#wmf_Import.UIName.value.text"
+msgid "WMF - Windows Metafile"
+msgstr "WMF - Metarchivo de Windows"
+
+#: eps_Import.xcu#eps_Import.UIName.value.text
+msgctxt "eps_Import.xcu#eps_Import.UIName.value.text"
+msgid "EPS - Encapsulated PostScript"
+msgstr "EPS - PostScript encapsulado"
+
+#: tga_Import.xcu#tga_Import.UIName.value.text
+msgid "TGA - Truevision Targa"
+msgstr "TGA - Truevision Targa"
+
+#: met_Import.xcu#met_Import.UIName.value.text
+msgctxt "met_Import.xcu#met_Import.UIName.value.text"
+msgid "MET - OS/2 Metafile"
+msgstr "MET - Metarchivo de OS/2"
+
+#: bmp_Import.xcu#bmp_Import.UIName.value.text
+msgctxt "bmp_Import.xcu#bmp_Import.UIName.value.text"
+msgid "BMP - Windows Bitmap"
+msgstr "BMP - Mapa de bits de Windows"
+
+#: emf_Import.xcu#emf_Import.UIName.value.text
+msgctxt "emf_Import.xcu#emf_Import.UIName.value.text"
+msgid "EMF - Enhanced Metafile"
+msgstr "EMF - Metarchivo mejorado"
+
+#: ras_Import.xcu#ras_Import.UIName.value.text
+msgctxt "ras_Import.xcu#ras_Import.UIName.value.text"
+msgid "RAS - Sun Raster Image"
+msgstr "RAS - Imagen de Sun Raster"
+
+#: dxf_Import.xcu#dxf_Import.UIName.value.text
+msgid "DXF - AutoCAD Interchange Format"
+msgstr "DXF - Formato de intercambio de AutoCAD"
+
+#: pcd_Import_Base4.xcu#pcd_Import_Base4.UIName.value.text
+msgid "PCD - Kodak Photo CD (384x256)"
+msgstr "PCD - CD de fotos de Kodak (384×256)"
+
+#: ppm_Export.xcu#ppm_Export.UIName.value.text
+msgctxt "ppm_Export.xcu#ppm_Export.UIName.value.text"
+msgid "PPM - Portable Pixelmap"
+msgstr "PPM - Mapa de píxeles portátil"
+
+#: eps_Export.xcu#eps_Export.UIName.value.text
+msgctxt "eps_Export.xcu#eps_Export.UIName.value.text"
+msgid "EPS - Encapsulated PostScript"
+msgstr "EPS - PostScript encapsulado"
+
+#: pcx_Import.xcu#pcx_Import.UIName.value.text
+msgid "PCX - Zsoft Paintbrush"
+msgstr "PCX - Pincel de Zsoft"
+
+#: svg_Export.xcu#svg_Export.UIName.value.text
+msgctxt "svg_Export.xcu#svg_Export.UIName.value.text"
+msgid "SVG - Scalable Vector Graphics"
+msgstr "SVG - Gráficos vectoriales escalables"
+
+#: png_Export.xcu#png_Export.UIName.value.text
+msgctxt "png_Export.xcu#png_Export.UIName.value.text"
+msgid "PNG - Portable Network Graphic"
+msgstr "PNG - Gráfico de red portátil"
+
+#: pcd_Import_Base16.xcu#pcd_Import_Base16.UIName.value.text
+msgid "PCD - Kodak Photo CD (192x128)"
+msgstr "PCD - CD de fotos de Kodak (192x128)"
+
+#: pcd_Import_Base.xcu#pcd_Import_Base.UIName.value.text
+msgid "PCD - Kodak Photo CD (768x512)"
+msgstr "PCD - CD de fotos de Kodak (768x512)"
+
+#: tif_Export.xcu#tif_Export.UIName.value.text
+msgctxt "tif_Export.xcu#tif_Export.UIName.value.text"
+msgid "TIFF - Tagged Image File Format"
+msgstr "TIFF - Formato de archivo de imagen etiquetada"
+
+#: svm_Import.xcu#svm_Import.UIName.value.text
+msgctxt "svm_Import.xcu#svm_Import.UIName.value.text"
+msgid "SVM - StarView Metafile"
+msgstr "SVM - Metarchivo de StarView"
+
+#: tif_Import.xcu#tif_Import.UIName.value.text
+msgctxt "tif_Import.xcu#tif_Import.UIName.value.text"
+msgid "TIFF - Tagged Image File Format"
+msgstr "TIFF - Formato de archivo de imagen etiquetada"
+
+#: pbm_Import.xcu#pbm_Import.UIName.value.text
+msgctxt "pbm_Import.xcu#pbm_Import.UIName.value.text"
+msgid "PBM - Portable Bitmap"
+msgstr "PBM - Mapa de bits portátil"
+
+#: png_Import.xcu#png_Import.UIName.value.text
+msgctxt "png_Import.xcu#png_Import.UIName.value.text"
+msgid "PNG - Portable Network Graphic"
+msgstr "PNG - Gráfico de red portátil"
+
+#: xpm_Export.xcu#xpm_Export.UIName.value.text
+msgctxt "xpm_Export.xcu#xpm_Export.UIName.value.text"
+msgid "XPM - X PixMap"
+msgstr "XPM - Mapa de píxeles X"
+
+#: pct_Export.xcu#pct_Export.UIName.value.text
+msgctxt "pct_Export.xcu#pct_Export.UIName.value.text"
+msgid "PCT - Mac Pict"
+msgstr "PCT - Imagen de Mac"
+
+#: wmf_Export.xcu#wmf_Export.UIName.value.text
+msgctxt "wmf_Export.xcu#wmf_Export.UIName.value.text"
+msgid "WMF - Windows Metafile"
+msgstr "WMF - Metarchivo de Windows"
+
+#: svg_Import.xcu#svg_Import.UIName.value.text
+msgctxt "svg_Import.xcu#svg_Import.UIName.value.text"
+msgid "SVG - Scalable Vector Graphics"
+msgstr "SVG - Imagen vectorial escalable"
+
+#: sgv_Import.xcu#sgv_Import.UIName.value.text
+msgid "SGV - StarDraw 2.0"
+msgstr "SGV - StarDraw 2.0"
+
+#: emf_Export.xcu#emf_Export.UIName.value.text
+msgctxt "emf_Export.xcu#emf_Export.UIName.value.text"
+msgid "EMF - Enhanced Metafile"
+msgstr "EMF - Metarchivo mejorado"
+
+#: met_Export.xcu#met_Export.UIName.value.text
+msgctxt "met_Export.xcu#met_Export.UIName.value.text"
+msgid "MET - OS/2 Metafile"
+msgstr "MET - Metarchivo de OS/2"
+
+#: psd_Import.xcu#psd_Import.UIName.value.text
+msgid "PSD - Adobe Photoshop"
+msgstr "PSD - Adobe Photoshop"
+
+#: jpg_Import.xcu#jpg_Import.UIName.value.text
+msgctxt "jpg_Import.xcu#jpg_Import.UIName.value.text"
+msgid "JPEG - Joint Photographic Experts Group"
+msgstr "JPEG - Joint Photographic Experts Group"
+
+#: pct_Import.xcu#pct_Import.UIName.value.text
+msgctxt "pct_Import.xcu#pct_Import.UIName.value.text"
+msgid "PCT - Mac Pict"
+msgstr "PCT - Imagen de Mac"
+
+#: ppm_Import.xcu#ppm_Import.UIName.value.text
+msgctxt "ppm_Import.xcu#ppm_Import.UIName.value.text"
+msgid "PPM - Portable Pixelmap"
+msgstr "PPM - Mapa de píxeles portátil"
+
+#: ras_Export.xcu#ras_Export.UIName.value.text
+msgctxt "ras_Export.xcu#ras_Export.UIName.value.text"
+msgid "RAS - Sun Raster Image"
+msgstr "RAS - Imagen de Sun Raster"
+
+#: pgm_Export.xcu#pgm_Export.UIName.value.text
+msgctxt "pgm_Export.xcu#pgm_Export.UIName.value.text"
+msgid "PGM - Portable Graymap"
+msgstr "PGM - Mapa de grises portátil"
+
+#: jpg_Export.xcu#jpg_Export.UIName.value.text
+msgctxt "jpg_Export.xcu#jpg_Export.UIName.value.text"
+msgid "JPEG - Joint Photographic Experts Group"
+msgstr "JPEG - Joint Photographic Experts Group"
+
+#: sgf_Import.xcu#sgf_Import.UIName.value.text
+msgid "SGF - StarWriter Graphics Format"
+msgstr "SGF - Formato de gráficos de StarWriter"
+
+#: bmp_Export.xcu#bmp_Export.UIName.value.text
+msgctxt "bmp_Export.xcu#bmp_Export.UIName.value.text"
+msgid "BMP - Windows Bitmap"
+msgstr "BMP - Mapa de bits de Windows"
+
+#: svm_Export.xcu#svm_Export.UIName.value.text
+msgctxt "svm_Export.xcu#svm_Export.UIName.value.text"
+msgid "SVM - StarView Metafile"
+msgstr "SVM - Metarchivo de StarView"
+
+#: xbm_Import.xcu#xbm_Import.UIName.value.text
+msgid "XBM - X Bitmap"
+msgstr "XBM - Mapa de bits X"
+
+#: gif_Export.xcu#gif_Export.UIName.value.text
+msgctxt "gif_Export.xcu#gif_Export.UIName.value.text"
+msgid "GIF - Graphics Interchange Format"
+msgstr "GIF - Formato de Intercambio de Gráficos"
+
+#: pgm_Import.xcu#pgm_Import.UIName.value.text
+msgctxt "pgm_Import.xcu#pgm_Import.UIName.value.text"
+msgid "PGM - Portable Graymap"
+msgstr "PGM - Mapa de grises portátil"
+
+#: pbm_Export.xcu#pbm_Export.UIName.value.text
+msgctxt "pbm_Export.xcu#pbm_Export.UIName.value.text"
+msgid "PBM - Portable Bitmap"
+msgstr "PBM - Mapa de bits portátil"
+
+#: gif_Import.xcu#gif_Import.UIName.value.text
+msgctxt "gif_Import.xcu#gif_Import.UIName.value.text"
+msgid "GIF - Graphics Interchange Format"
+msgstr "GIF - Formato de Intercambio de Gráficos"
diff --git a/source/es/filter/source/config/fragments/types.po b/source/es/filter/source/config/fragments/types.po
new file mode 100644
index 00000000000..e66d63b5e4b
--- /dev/null
+++ b/source/es/filter/source/config/fragments/types.po
@@ -0,0 +1,110 @@
+#. extracted from filter/source/config/fragments/types.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+filter%2Fsource%2Fconfig%2Ffragments%2Ftypes.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-05-08 14:29+0200\n"
+"Last-Translator: Santiago <santiago.bosio@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: StarBase.xcu#StarBase.UIName.value.text
+msgid "OpenDocument Database"
+msgstr "Base de datos de OpenDocument"
+
+#: MS_PowerPoint_2007_XML_AutoPlay.xcu#MS_PowerPoint_2007_XML_AutoPlay.UIName.value.text
+msgctxt "MS_PowerPoint_2007_XML_AutoPlay.xcu#MS_PowerPoint_2007_XML_AutoPlay.UIName.value.text"
+msgid "Microsoft PowerPoint 2007/2010 XML"
+msgstr "Microsoft PowerPoint 2007/2010 XML"
+
+#: MS_Excel_2007_XML_Template.xcu#MS_Excel_2007_XML_Template.UIName.value.text
+msgid "Microsoft Excel 2007/2010 XML Template"
+msgstr "Plantilla de Microsoft Excel 2007/2010 XML"
+
+#: calc_MS_Excel_2003_XML.xcu#calc_MS_Excel_2003_XML.UIName.value.text
+msgid "Microsoft Excel 2003 XML"
+msgstr "Microsoft Excel 2003 XML"
+
+#: writer8.xcu#writer8.UIName.value.text
+msgid "Writer 8"
+msgstr "Writer 8"
+
+#: chart8.xcu#chart8.UIName.value.text
+msgid "Chart 8"
+msgstr "Chart 8"
+
+#: writerglobal8.xcu#writerglobal8.UIName.value.text
+msgid "Writer 8 Master Document"
+msgstr "Documento maestro de Writer 8"
+
+#: MS_Excel_2007_XML.xcu#MS_Excel_2007_XML.UIName.value.text
+msgid "Microsoft Excel 2007/2010 XML"
+msgstr "Microsoft Excel 2007/2010 XML"
+
+#: writer_MS_Word_2007_XML_Template.xcu#writer_MS_Word_2007_Template.UIName.value.text
+msgid "Microsoft Word 2007/2010 XML Template"
+msgstr "Plantilla de Microsoft Word 2007/2010 XML"
+
+#: MS_PowerPoint_2007_XML_Template.xcu#MS_PowerPoint_2007_XML_Template.UIName.value.text
+msgid "Microsoft PowerPoint 2007/2010 XML Template"
+msgstr "Plantilla de Microsoft PowerPoint 2007/2010 XML"
+
+#: impress8.xcu#impress8.UIName.value.text
+msgid "Impress 8"
+msgstr "Impress 8"
+
+#: writer_MS_Word_2007_XML.xcu#writer_MS_Word_2007.UIName.value.text
+msgid "Microsoft Word 2007/2010 XML"
+msgstr "Microsoft Word 2007/2010 XML"
+
+#: draw8.xcu#draw8.UIName.value.text
+msgid "Draw 8"
+msgstr "Draw 8"
+
+#: writerweb8_writer_template.xcu#writerweb8_writer_template.UIName.value.text
+msgid "Writer/Web 8 Template"
+msgstr "Plantilla de Writer/Web 8"
+
+#: impress8_template.xcu#impress8_template.UIName.value.text
+msgid "Impress 8 Template"
+msgstr "Plantilla de Impress 8"
+
+#: writer_MS_Word_2003_XML.xcu#writer_MS_Word_2003_XML.UIName.value.text
+msgid "Microsoft Word 2003 XML"
+msgstr "Microsoft Word 2003 XML"
+
+#: draw8_template.xcu#draw8_template.UIName.value.text
+msgid "Draw 8 Template"
+msgstr "Plantilla de Draw 8"
+
+#: math8.xcu#math8.UIName.value.text
+msgid "Math 8"
+msgstr "Math 8"
+
+#: writer8_template.xcu#writer8_template.UIName.value.text
+msgid "Writer 8 Template"
+msgstr "Plantilla de Writer 8"
+
+#: MS_Excel_2007_Binary.xcu#MS_Excel_2007_Binary.UIName.value.text
+msgid "Microsoft Excel 2007 Binary"
+msgstr "Microsoft Excel 2007 Binary"
+
+#: calc8.xcu#calc8.UIName.value.text
+msgid "Calc 8"
+msgstr "Calc 8"
+
+#: calc8_template.xcu#calc8_template.UIName.value.text
+msgid "Calc 8 Template"
+msgstr "Plantilla de Calc 8"
+
+#: MS_PowerPoint_2007_XML.xcu#MS_PowerPoint_2007_XML.UIName.value.text
+msgctxt "MS_PowerPoint_2007_XML.xcu#MS_PowerPoint_2007_XML.UIName.value.text"
+msgid "Microsoft PowerPoint 2007/2010 XML"
+msgstr "Microsoft PowerPoint 2007/2010 XML"
diff --git a/source/es/filter/source/flash.po b/source/es/filter/source/flash.po
new file mode 100644
index 00000000000..7cd701a3fad
--- /dev/null
+++ b/source/es/filter/source/flash.po
@@ -0,0 +1,28 @@
+#. extracted from filter/source/flash.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+filter%2Fsource%2Fflash.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 20:01+0200\n"
+"Last-Translator: Alexandro <jza@openoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: impswfdialog.src#DLG_OPTIONS.FI_DESCR.fixedtext.text
+msgid ""
+"1: min. quality\n"
+"100: max. quality"
+msgstr ""
+"1: calidad mín.\n"
+"100: calidad máx."
+
+#: impswfdialog.src#DLG_OPTIONS.modaldialog.text
+msgid "Macromedia Flash (SWF) Options"
+msgstr "Opciones Macromedia Flash (SWF)"
diff --git a/source/es/filter/source/graphicfilter/eps.po b/source/es/filter/source/graphicfilter/eps.po
new file mode 100644
index 00000000000..d96091b7b41
--- /dev/null
+++ b/source/es/filter/source/graphicfilter/eps.po
@@ -0,0 +1,24 @@
+#. extracted from filter/source/graphicfilter/eps.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+filter%2Fsource%2Fgraphicfilter%2Feps.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 20:01+0200\n"
+"Last-Translator: Alexandro <jza@openoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: epsstr.src#KEY_VERSION_CHECK.string.text
+msgid ""
+"Warning: Not all of the imported EPS graphics could be saved at level1\n"
+"as some are at a higher level!"
+msgstr ""
+"¡Atención: No han podido ser guardados en Level1 todos los gráficos EPS importados\n"
+"porque existen algunos en un nivel más alto!"
diff --git a/source/es/filter/source/pdf.po b/source/es/filter/source/pdf.po
new file mode 100644
index 00000000000..bcedbdfa0a6
--- /dev/null
+++ b/source/es/filter/source/pdf.po
@@ -0,0 +1,489 @@
+#. extracted from filter/source/pdf.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+filter%2Fsource%2Fpdf.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-08-17 07:51+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: pdf.src#PDF_PROGRESS_BAR.string.text
+msgid "Export as PDF"
+msgstr "Exportar en PDF"
+
+#: impdialog.src#STR_PDF_EXPORT.string.text
+msgid "E~xport"
+msgstr "E~xportar"
+
+#: impdialog.src#STR_PDF_EXPORT_UDPWD.string.text
+msgid "Set open password"
+msgstr "Establecer la contraseña para abrir"
+
+#: impdialog.src#STR_PDF_EXPORT_ODPWD.string.text
+msgid "Set permission password"
+msgstr "Establecer la contraseña de permisos"
+
+#: impdialog.src#RID_PDF_TAB_GENER.FL_PAGES.fixedline.text
+msgid "Range"
+msgstr "Intervalo"
+
+#: impdialog.src#RID_PDF_TAB_GENER.RB_ALL.radiobutton.text
+msgid "~All"
+msgstr "~Todo"
+
+#: impdialog.src#RID_PDF_TAB_GENER.RB_RANGE.radiobutton.text
+msgid "~Pages"
+msgstr "~Páginas"
+
+#: impdialog.src#RID_PDF_TAB_GENER.RB_SELECTION.radiobutton.text
+msgid "~Selection"
+msgstr "~Selección"
+
+#: impdialog.src#RID_PDF_TAB_GENER.FL_IMAGES.fixedline.text
+msgid "Images"
+msgstr "Imágenes"
+
+#: impdialog.src#RID_PDF_TAB_GENER.RB_LOSSLESSCOMPRESSION.radiobutton.text
+msgid "~Lossless compression"
+msgstr "~Compresión sin pérdida"
+
+#: impdialog.src#RID_PDF_TAB_GENER.RB_JPEGCOMPRESSION.radiobutton.text
+msgid "~JPEG compression"
+msgstr "~Compresión JPEG"
+
+#: impdialog.src#RID_PDF_TAB_GENER.FT_QUALITY.fixedtext.text
+msgid "~Quality"
+msgstr "~Calidad"
+
+#: impdialog.src#RID_PDF_TAB_GENER.CB_REDUCEIMAGERESOLUTION.checkbox.text
+msgid "~Reduce image resolution"
+msgstr "~Reducir resolución de imagen"
+
+#: impdialog.src#RID_PDF_TAB_GENER.tabpage.text
+msgctxt "impdialog.src#RID_PDF_TAB_GENER.tabpage.text"
+msgid "General"
+msgstr "General"
+
+#: impdialog.src#FL_WATERMARK.fixedline.text
+msgid "Watermark"
+msgstr "Marca de agua"
+
+#: impdialog.src#CB_WATERMARK.checkbox.text
+msgid "Sign with Watermark"
+msgstr "Firmar con marca de agua"
+
+#: impdialog.src#FT_WATERMARK.fixedtext.text
+msgid "Watermark Text"
+msgstr "Texto de marca de agua"
+
+#: impdialog.src#FL_GENERAL.fixedline.text
+msgctxt "impdialog.src#FL_GENERAL.fixedline.text"
+msgid "General"
+msgstr "General"
+
+#: impdialog.src#CB_ADDSTREAM.checkbox.text
+msgid "Em~bed OpenDocument file"
+msgstr "~Incrustar archivo OpenDocument"
+
+#: impdialog.src#FT_ADDSTREAMDESCRIPTION.fixedtext.text
+msgid "Makes this PDF easily editable in %PRODUCTNAME"
+msgstr "Hace que este PDF se pueda editar fácilmente en %PRODUCTNAME"
+
+#: impdialog.src#CB_PDFA_1B_SELECT.checkbox.text
+msgid "P~DF/A-1a"
+msgstr "P~DF/A-1"
+
+#: impdialog.src#CB_TAGGEDPDF.checkbox.text
+msgid "~Tagged PDF"
+msgstr "PDF con ~etiquetas"
+
+#: impdialog.src#CB_EXPORTFORMFIELDS.checkbox.text
+msgid "~Create PDF form"
+msgstr "~Crear formulario PDF"
+
+#: impdialog.src#FT_FORMSFORMAT.fixedtext.text
+msgid "Submit ~format"
+msgstr "Enviar ~formato"
+
+#: impdialog.src#CB_ALLOWDUPLICATEFIELDNAMES.checkbox.text
+msgid "Allow duplicate field ~names"
+msgstr "Permitir ~nombres de campos duplicados"
+
+#: impdialog.src#CB_EXPORTBOOKMARKS.checkbox.text
+msgid "Export ~bookmarks"
+msgstr "Exportar ~marcadores"
+
+#: impdialog.src#CB_EXPORTNOTES.checkbox.text
+msgid "~Export comments"
+msgstr "~Exportar comentarios"
+
+#: impdialog.src#CB_EXPORTNOTESPAGES.checkbox.text
+msgid "Export ~notes pages"
+msgstr "Exportar página de ~notas"
+
+#: impdialog.src#CB_EXPORTHIDDENSLIDES.checkbox.text
+msgid "Export ~hidden pages"
+msgstr "Exportar páginas ~ocultas"
+
+#: impdialog.src#CB_EXPORTEMPTYPAGES.checkbox.text
+msgid "Exp~ort automatically inserted blank pages"
+msgstr "Exp~ortar automáticamente páginas en blanco insertadas"
+
+#: impdialog.src#CB_EMBEDSTANDARDFONTS.checkbox.text
+msgid "E~mbed standard fonts"
+msgstr "E~mbedir fuentes estandar"
+
+#: impdialog.src#RID_PDF_WARNPDFAPASSWORD.warningbox.text
+msgid "PDF/A does not allow encryption. The exported PDF file will not be password protected."
+msgstr "El formato PDF/A no admite el cifrado. El archivo PDF exportado no estará protegido por contraseña."
+
+#: impdialog.src#RID_PDF_WARNPDFAPASSWORD.warningbox.title
+msgid "PDF/A Export"
+msgstr "Exportar a PDF/A"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.FL_INITVIEW.fixedline.text
+msgid "Panes"
+msgstr "Paneles"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_OPNMODE_PAGEONLY.radiobutton.text
+msgid "~Page only"
+msgstr "~Sólo página"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_OPNMODE_OUTLINE.radiobutton.text
+msgid "~Bookmarks and page"
+msgstr "~Marcadores y página"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_OPNMODE_THUMBS.radiobutton.text
+msgid "~Thumbnails and page"
+msgstr "~Miniaturas y página"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.FT_MAGNF_INITIAL_PAGE.fixedtext.text
+msgid "Open on page"
+msgstr "Abrir en página"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.FL_MAGNIFICATION.fixedline.text
+msgid "Magnification"
+msgstr "Ampliación"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_MAGNF_DEFAULT.radiobutton.text
+msgid "~Default"
+msgstr "~Predeterminado"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_MAGNF_WIND.radiobutton.text
+msgid "~Fit in window"
+msgstr "~Ajustar a ventana"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_MAGNF_WIDTH.radiobutton.text
+msgid "Fit ~width"
+msgstr "Ajustar a a~ncho"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_MAGNF_VISIBLE.radiobutton.text
+msgid "Fit ~visible"
+msgstr "Ajustar ~visible"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_MAGNF_ZOOM.radiobutton.text
+msgid "~Zoom factor"
+msgstr "~Factor de zoom"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.FL_PAGE_LAYOUT.fixedline.text
+msgid "Page layout"
+msgstr "Diseño de página"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_PGLY_DEFAULT.radiobutton.text
+msgid "D~efault"
+msgstr "Pr~edeterminado"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_PGLY_SINGPG.radiobutton.text
+msgid "~Single page"
+msgstr "~Una página"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_PGLY_CONT.radiobutton.text
+msgid "~Continuous"
+msgstr "~Continuo"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_PGLY_CONTFAC.radiobutton.text
+msgid "C~ontinuous facing"
+msgstr "Páginas a~biertas"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.CB_PGLY_FIRSTLEFT.checkbox.text
+msgid "First page is ~left"
+msgstr "Primera página a la ~izquierda"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.tabpage.text
+msgctxt "impdialog.src#RID_PDF_TAB_OPNFTR.tabpage.text"
+msgid "Initial View"
+msgstr "Vista inicial"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.FL_WINOPT.fixedline.text
+msgid "Window options"
+msgstr "Opciones de ventana"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_WNDOPT_RESINIT.checkbox.text
+msgid "~Resize window to initial page"
+msgstr "~Redimensionar ventana a la página inicial"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_WNDOPT_CNTRWIN.checkbox.text
+msgid "~Center window on screen"
+msgstr "~Centrar ventana en la pantalla"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_WNDOPT_OPNFULL.checkbox.text
+msgid "~Open in full screen mode"
+msgstr "~Abrir en modo de pantalla completa"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_DISPDOCTITLE.checkbox.text
+msgid "~Display document title"
+msgstr "~Mostrar título del documento"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.FL_USRIFOPT.fixedline.text
+msgid "User interface options"
+msgstr "Opciones de la interfaz del usuario"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_UOP_HIDEVMENUBAR.checkbox.text
+msgid "Hide ~menubar"
+msgstr "Ocultar barra de ~menús"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_UOP_HIDEVTOOLBAR.checkbox.text
+msgid "Hide ~toolbar"
+msgstr "Ocultar barra de ~herramientas"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_UOP_HIDEVWINCTRL.checkbox.text
+msgid "Hide ~window controls"
+msgstr "Ocultar controles de ~ventana"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.FL_TRANSITIONS.fixedline.text
+msgid "Transitions"
+msgstr "Transiciones"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_TRANSITIONEFFECTS.checkbox.text
+msgid "~Use transition effects"
+msgstr "~Usar efectos de transición"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.FL_BOOKMARKS.fixedline.text
+msgid "Bookmarks"
+msgstr "Marcadores"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.RB_ALLBOOKMARKLEVELS.radiobutton.text
+msgid "All bookmark levels"
+msgstr "Todos los niveles de marcadores"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.RB_VISIBLEBOOKMARKLEVELS.radiobutton.text
+msgid "Visible bookmark levels"
+msgstr "Niveles de marcadores visibles"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.tabpage.text
+msgctxt "impdialog.src#RID_PDF_TAB_VPREFER.tabpage.text"
+msgid "User Interface"
+msgstr "Interfaz del usuario"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.FL_PWD_GROUP.fixedline.text
+msgid "File encryption and permission"
+msgstr "Cifrado y permisos del archivo"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.BTN_SET_PWD.pushbutton.text
+msgid "Set ~passwords..."
+msgstr "Establecer ~contraseñas..."
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_SET_PWD.string.text
+msgid "Set passwords"
+msgstr "Establecer contraseñas"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_USER_PWD_SET.string.text
+msgid "Open password set"
+msgstr "Contraseña abierta configurada"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_USER_PWD_ENC.string.text
+msgid "PDF document will be encrypted"
+msgstr "Se cifrará el documento PDF"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_USER_PWD_UNSET.string.text
+msgid "No open password set"
+msgstr "Sin contraseña abierta configurada"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_USER_PWD_UNENC.string.text
+msgid "PDF document will not be encrypted"
+msgstr "No se cifrará el documento PDF"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_USER_PWD_PDFA.string.text
+msgid "PDF document will not be encrypted due to PDF/A export."
+msgstr "El documento PDF no se cifrará debido a la exportación como PDF/A."
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_OWNER_PWD_SET.string.text
+msgid "Permission password set"
+msgstr "Permisos de contraseña configurados"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_OWNER_PWD_REST.string.text
+msgid "PDF document will be restricted"
+msgstr "El documento PDF estará restringido"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_OWNER_PWD_UNSET.string.text
+msgid "No permission password set"
+msgstr "Permisos de contraseña no configurados"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_OWNER_PWD_UNREST.string.text
+msgid "PDF document will be unrestricted"
+msgstr "El documento PDF no estará restringido"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_OWNER_PWD_PDFA.string.text
+msgid "PDF document will not be restricted due to PDF/A export."
+msgstr "El documento PDF no se restringirá debido a la exportación como PDF/A."
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.FL_PRINT_PERMISSIONS.fixedline.text
+msgid "Printing"
+msgstr "Imprimiendo"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_PRINT_NONE.radiobutton.text
+msgid "~Not permitted"
+msgstr "~No permitido"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_PRINT_LOWRES.radiobutton.text
+msgid "~Low resolution (150 dpi)"
+msgstr "~Baja resolución (150 ppp)"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_PRINT_HIGHRES.radiobutton.text
+msgid "~High resolution"
+msgstr "~Alta resolución"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.FL_CHANGES_ALLOWED.fixedline.text
+msgid "Changes"
+msgstr "Cambios"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_CHANGES_NONE.radiobutton.text
+msgid "No~t permitted"
+msgstr "No ~permitido"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_CHANGES_INSDEL.radiobutton.text
+msgid "~Inserting, deleting, and rotating pages"
+msgstr "~Insertar, eliminar y girar páginas"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_CHANGES_FILLFORM.radiobutton.text
+msgid "~Filling in form fields"
+msgstr "~Rellenar campos de formulario"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_CHANGES_COMMENT.radiobutton.text
+msgid "~Commenting, filling in form fields"
+msgstr "~Comentar, rellenar campos de formulario"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_CHANGES_ANY_NOCOPY.radiobutton.text
+msgid "~Any except extracting pages"
+msgstr "~Cualquiera excepto páginas extraíbles"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.CB_ENDAB_COPY.checkbox.text
+msgid "Ena~ble copying of content"
+msgstr "~Habilitar copia de contenido"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.CB_ENAB_ACCESS.checkbox.text
+msgid "Enable text access for acce~ssibility tools"
+msgstr "Habilitar acceso de texto para herramientas de acce~sibilidad"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.tabpage.text
+msgctxt "impdialog.src#RID_PDF_TAB_SECURITY.tabpage.text"
+msgid "Security"
+msgstr "Seguridad"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.CB_EXP_BMRK_TO_DEST.checkbox.text
+msgid "Export bookmarks as named destinations"
+msgstr "Exportar marcadores como destinaciones nombrados"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.CB_CNV_OOO_DOCTOPDF.checkbox.text
+msgid "Convert document references to PDF targets"
+msgstr "Convertir referencia de documento a destinos PDF"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.CB_ENAB_RELLINKFSYS.checkbox.text
+msgid "Export URLs relative to file system"
+msgstr "Exportar URL relativas al sistema de archivos"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.FL_DEFAULT_LINK_ACTION.fixedline.text
+msgid "Cross-document links"
+msgstr "Vínculos de documentos cruzados"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.CB_VIEW_PDF_DEFAULT.radiobutton.text
+msgid "Default mode"
+msgstr "Modo predeterminado"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.CB_VIEW_PDF_APPLICATION.radiobutton.text
+msgid "Open with PDF reader application"
+msgstr "Abrir con la aplicación de lector de PDF"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.CB_VIEW_PDF_BROWSER.radiobutton.text
+msgid "Open with Internet browser"
+msgstr "Abrir con navegador de internet"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.tabpage.text
+msgid "---"
+msgstr "---"
+
+#: impdialog.src#RID_PDF_EXPORT_DLG.1.RID_PDF_TAB_GENER.pageitem.text
+msgctxt "impdialog.src#RID_PDF_EXPORT_DLG.1.RID_PDF_TAB_GENER.pageitem.text"
+msgid "General"
+msgstr "General"
+
+#: impdialog.src#RID_PDF_EXPORT_DLG.1.RID_PDF_TAB_OPNFTR.pageitem.text
+msgctxt "impdialog.src#RID_PDF_EXPORT_DLG.1.RID_PDF_TAB_OPNFTR.pageitem.text"
+msgid "Initial View"
+msgstr "Vista inicial"
+
+#: impdialog.src#RID_PDF_EXPORT_DLG.1.RID_PDF_TAB_VPREFER.pageitem.text
+msgctxt "impdialog.src#RID_PDF_EXPORT_DLG.1.RID_PDF_TAB_VPREFER.pageitem.text"
+msgid "User Interface"
+msgstr "Interfaz del usuario"
+
+#: impdialog.src#RID_PDF_EXPORT_DLG.1.RID_PDF_TAB_LINKS.pageitem.text
+msgid "Links"
+msgstr "Enlaces"
+
+#: impdialog.src#RID_PDF_EXPORT_DLG.1.RID_PDF_TAB_SECURITY.pageitem.text
+msgctxt "impdialog.src#RID_PDF_EXPORT_DLG.1.RID_PDF_TAB_SECURITY.pageitem.text"
+msgid "Security"
+msgstr "Seguridad"
+
+#: impdialog.src#RID_PDF_EXPORT_DLG.tabdialog.text
+msgid "PDF Options"
+msgstr "Opciones de PDF"
+
+#: impdialog.src#RID_PDF_ERROR_DLG.FT_PROCESS.fixedtext.text
+msgid "During PDF export the following problems occurred:"
+msgstr "Durante la exportación a PDF ocurrieron los siguientes problemas:"
+
+#: impdialog.src#RID_PDF_ERROR_DLG.STR_WARN_TRANSP_PDFA_SHORT.string.text
+msgid "PDF/A transparency"
+msgstr "Transparencia PDF/A"
+
+#: impdialog.src#RID_PDF_ERROR_DLG.STR_WARN_TRANSP_PDFA.string.text
+msgid "PDF/A forbids transparency. A transparent object was painted opaque instead."
+msgstr "Prohíbe la transparencia PDF/A. Un objeto transparente fue pintado en un lugar opaco."
+
+#: impdialog.src#RID_PDF_ERROR_DLG.STR_WARN_TRANSP_VERSION_SHORT.string.text
+msgid "PDF version conflict"
+msgstr "Conflicto de versiones PDF"
+
+#: impdialog.src#RID_PDF_ERROR_DLG.STR_WARN_TRANSP_VERSION.string.text
+msgid "Transparency is not supported in PDF versions earlier than PDF 1.4. A transparent object was painted opaque instead"
+msgstr "La transparencia no es soportada por versiones PDF anteriores a la 1.4. Un objeto transparente fue pintado en lugar opaco"
+
+#: impdialog.src#RID_PDF_ERROR_DLG.STR_WARN_FORMACTION_PDFA_SHORT.string.text
+msgid "PDF/A form action"
+msgstr "Acción del formato PDF/A"
+
+#: impdialog.src#RID_PDF_ERROR_DLG.STR_WARN_FORMACTION_PDFA.string.text
+msgid "A form control contained an action not supported by the PDF/A standard. The action was skipped"
+msgstr "Un formato de control contiene una acción no soportada por el estándar PDF/A. La acción fue saltada."
+
+#: impdialog.src#RID_PDF_ERROR_DLG.STR_WARN_TRANSP_CONVERTED.string.text
+msgid "Some objects were converted to an image in order to remove transparencies, because the target PDF format does not support transparencies. Possibly better results can be achieved if you remove the transparent objects before exporting."
+msgstr "Algunos objetos fueron convertidos a una imagen para quitar las transparencias, porque el formato PDF de destino no es compatible con las transparencias. Se pueden lograr mejores resultados si quita los objetos de transparencia antes de la exportación."
+
+#: impdialog.src#RID_PDF_ERROR_DLG.STR_WARN_TRANSP_CONVERTED_SHORT.string.text
+msgid "Transparencies removed"
+msgstr "Transparencias quitadas"
+
+#: impdialog.src#RID_PDF_ERROR_DLG.modaldialog.text
+msgid "Problems during PDF export"
+msgstr "Problemas durante la exportación a PDF"
diff --git a/source/es/filter/source/t602.po b/source/es/filter/source/t602.po
new file mode 100644
index 00000000000..46c6b2af972
--- /dev/null
+++ b/source/es/filter/source/t602.po
@@ -0,0 +1,60 @@
+#. extracted from filter/source/t602.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+filter%2Fsource%2Ft602.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 20:01+0200\n"
+"Last-Translator: Alexandro <jza@openoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: t602filter.src#T602FILTER_STR_IMPORT_DIALOG_TITLE.string.text
+msgid "Settings for T602 import"
+msgstr "Configurar para importar T602"
+
+#: t602filter.src#T602FILTER_STR_ENCODING_LABEL.string.text
+msgid "Encoding"
+msgstr "Codificación"
+
+#: t602filter.src#T602FILTER_STR_ENCODING_AUTO.string.text
+msgid "Automatic"
+msgstr "Automático"
+
+#: t602filter.src#T602FILTER_STR_ENCODING_CP852.string.text
+msgid "CP852 (Latin2)"
+msgstr "CP852 (Latin2)"
+
+#: t602filter.src#T602FILTER_STR_ENCODING_CP895.string.text
+msgid "CP895 (KEYB2CS, Kamenicky)"
+msgstr "CP895 (KEYB2CS, Kamenicky)"
+
+#: t602filter.src#T602FILTER_STR_ENCODING_KOI8CS2.string.text
+msgid "KOI8 CS2"
+msgstr "KOI8 CS2"
+
+#: t602filter.src#T602FILTER_STR_CYRILLIC_MODE.string.text
+msgid "Mode for Russian language (Cyrillic)"
+msgstr "Modo de idioma Ruso (Cirílico)"
+
+#: t602filter.src#T602FILTER_STR_REFORMAT_TEXT.string.text
+msgid "Reformat the text"
+msgstr "Cambiar el formato del texto"
+
+#: t602filter.src#T602FILTER_STR_DOT_COMMANDS.string.text
+msgid "Display dot commands"
+msgstr "Mostrar comandos"
+
+#: t602filter.src#T602FILTER_STR_CANCEL_BUTTON.string.text
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: t602filter.src#T602FILTER_STR_OK_BUTTON.string.text
+msgid "OK"
+msgstr "Aceptar"
diff --git a/source/es/filter/source/xsltdialog.po b/source/es/filter/source/xsltdialog.po
new file mode 100644
index 00000000000..630f2fc5869
--- /dev/null
+++ b/source/es/filter/source/xsltdialog.po
@@ -0,0 +1,316 @@
+#. extracted from filter/source/xsltdialog.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+filter%2Fsource%2Fxsltdialog.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2012-07-13 09:50+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: xmlfilterdialogstrings.src#STR_COLUMN_HEADER_NAME.string.text
+msgid "Name"
+msgstr "Nombre"
+
+#: xmlfilterdialogstrings.src#STR_COLUMN_HEADER_TYPE.string.text
+msgid "Type"
+msgstr "Tipo"
+
+#: xmlfilterdialogstrings.src#STR_UNKNOWN_APPLICATION.string.text
+msgid "Unknown"
+msgstr "Desconocido"
+
+#: xmlfilterdialogstrings.src#STR_IMPORT_ONLY.string.text
+msgid "import filter"
+msgstr "Importar filtro"
+
+#: xmlfilterdialogstrings.src#STR_IMPORT_EXPORT.string.text
+msgid "import/export filter"
+msgstr "Importar/exportar filtro"
+
+#: xmlfilterdialogstrings.src#STR_EXPORT_ONLY.string.text
+msgid "export filter"
+msgstr "Exportar filtro"
+
+#: xmlfilterdialogstrings.src#STR_WARN_DELETE.string.text
+msgid "Do you really want to delete the XML Filter '%s'? This action cannot be undone."
+msgstr "¿Quiere realmente eliminar el filtro XML «%s»? Esta acción no se puede deshacer."
+
+#: xmlfilterdialogstrings.src#STR_ERROR_FILTER_NAME_EXISTS.string.text
+msgid "An XML filter with the name '%s' already exists. Please enter a different name."
+msgstr "Ya existe un filtro XML de nombre '%s'. Introduzca otro nombre."
+
+#: xmlfilterdialogstrings.src#STR_ERROR_TYPE_NAME_EXISTS.string.text
+msgid "The name for the user interface '%s1' is already used by the XML filter '%s2'. Please enter a different name."
+msgstr "El nombre para la interfaz de usuario '%s1' ya fue utilizado por el filtro XML '%s2'. Introduzca otro nombre."
+
+#: xmlfilterdialogstrings.src#STR_ERROR_DTD_NOT_FOUND.string.text
+msgid "The DTD could not be found. Please enter a valid path."
+msgstr "No se puede encontrar la DTD (definición del tipo de documento). Introduzca una ruta válida."
+
+#: xmlfilterdialogstrings.src#STR_ERROR_EXPORT_XSLT_NOT_FOUND.string.text
+msgid "The XSLT for export cannot be found. Please enter a valid path."
+msgstr "No se encuentra el XSLT para la exportación. Introduzca una ruta válida."
+
+#: xmlfilterdialogstrings.src#STR_ERROR_IMPORT_XSLT_NOT_FOUND.string.text
+msgid "The XSLT for import cannot be found. Please enter a valid path."
+msgstr "Imposible encontrar un XSLT para la importación. Introduzca una ruta válida."
+
+#: xmlfilterdialogstrings.src#STR_ERROR_IMPORT_TEMPLATE_NOT_FOUND.string.text
+msgid "The given import template cannot be found. Please enter a valid path."
+msgstr "La plantilla de importación especificada no se encuentra. Introduzca una ruta válida."
+
+#: xmlfilterdialogstrings.src#STR_NOT_SPECIFIED.string.text
+msgid "Not specified"
+msgstr "No especificado"
+
+#: xmlfilterdialogstrings.src#STR_DEFAULT_FILTER_NAME.string.text
+msgid "New Filter"
+msgstr "Filtro nuevo"
+
+#: xmlfilterdialogstrings.src#STR_DEFAULT_UI_NAME.string.text
+msgid "Untitled"
+msgstr "Sin nombre"
+
+#: xmlfilterdialogstrings.src#STR_UNDEFINED_FILTER.string.text
+msgid "undefined filter"
+msgstr "Filtro no definido"
+
+#: xmlfilterdialogstrings.src#STR_FILTER_HAS_BEEN_SAVED.string.text
+msgid "The XML filter '%s' has been saved as package '%s'. "
+msgstr "El filtro XML '%s' se ha guardado como paquete '%s'. "
+
+#: xmlfilterdialogstrings.src#STR_FILTERS_HAVE_BEEN_SAVED.string.text
+msgid "%s XML filters have been saved in the package '%s'."
+msgstr "Se han guardado %s filtros XML en el paquete '%s'."
+
+#: xmlfilterdialogstrings.src#STR_FILTER_PACKAGE.string.text
+msgid "XSLT filter package"
+msgstr "Paquete de filtros XSLT"
+
+#: xmlfilterdialogstrings.src#STR_FILTER_INSTALLED.string.text
+msgid "The XML filter '%s' has been installed successfully."
+msgstr "La instalación del filtro XML '%s' ha finalizado."
+
+#: xmlfilterdialogstrings.src#STR_FILTERS_INSTALLED.string.text
+msgid "%s XML filters have been installed successfully."
+msgstr "La instalación de %s filtros XML ha finalizado."
+
+#: xmlfilterdialogstrings.src#STR_NO_FILTERS_FOUND.string.text
+msgid "No XML filter could be installed because the package '%s' does not contain any XML filters."
+msgstr "No se ha podido instalar ningún filtro XML porque el paquete '%s' no contiene ningún filtro XML."
+
+#: xmlfiltertabdialog.src#DLG_XML_FILTER_TABDIALOG.1.RID_XML_FILTER_TABPAGE_BASIC.pageitem.text
+msgctxt "xmlfiltertabdialog.src#DLG_XML_FILTER_TABDIALOG.1.RID_XML_FILTER_TABPAGE_BASIC.pageitem.text"
+msgid "General"
+msgstr "General"
+
+#: xmlfiltertabdialog.src#DLG_XML_FILTER_TABDIALOG.1.RID_XML_FILTER_TABPAGE_XSLT.pageitem.text
+msgctxt "xmlfiltertabdialog.src#DLG_XML_FILTER_TABDIALOG.1.RID_XML_FILTER_TABPAGE_XSLT.pageitem.text"
+msgid "Transformation"
+msgstr "Transformación"
+
+#: xmlfiltertabdialog.src#DLG_XML_FILTER_TABDIALOG.tabdialog.text
+msgid "XML Filter: %s"
+msgstr "Filtro XML: %s"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FL_EXPORT.fixedline.text
+msgid "Export"
+msgstr "Exportar"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FT_EXPORT_XSLT.fixedtext.text
+msgctxt "xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FT_EXPORT_XSLT.fixedtext.text"
+msgid "XSLT for export"
+msgstr "XSLT para exportación"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FT_TRANSFORM_DOCUMENT.fixedtext.text
+msgid "Transform document"
+msgstr "Transformar documento"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.PB_EXPORT_BROWSE.pushbutton.text
+msgid "~Browse..."
+msgstr "~Buscar..."
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.PB_CURRENT_DOCUMENT.pushbutton.text
+msgid "~Current Document"
+msgstr "~Documento actual"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FL_IMPORT.fixedline.text
+msgid "Import"
+msgstr "Importar"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FT_IMPORT_XSLT.fixedtext.text
+msgctxt "xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FT_IMPORT_XSLT.fixedtext.text"
+msgid "XSLT for import"
+msgstr "XSLT para importación"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FT_IMPORT_TEMPLATE.fixedtext.text
+msgctxt "xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FT_IMPORT_TEMPLATE.fixedtext.text"
+msgid "Template for import"
+msgstr "Plantilla para importación"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FT_TRANSFORM_FILE.fixedtext.text
+msgid "Transform file"
+msgstr "Transformar archivo"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.CBX_DISPLAY_SOURCE.checkbox.text
+msgid "~Display source"
+msgstr "~Visualizar fuente"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.PB_IMPORT_BROWSE.pushbutton.text
+msgid "B~rowse..."
+msgstr "~Buscar..."
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.PB_RECENT_DOCUMENT.pushbutton.text
+msgid "~Recent File"
+msgstr "~Archivo reciente"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.PB_CLOSE.pushbutton.text
+msgctxt "xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.PB_CLOSE.pushbutton.text"
+msgid "~Close"
+msgstr "~Cerrar"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.modaldialog.text
+msgid "Test XML Filter: %s"
+msgstr "Prueba del filtro XML: %s"
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_NEW.pushbutton.text
+msgid "~New..."
+msgstr "~Nuevo..."
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_EDIT.pushbutton.text
+msgid "~Edit..."
+msgstr "E~ditar..."
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_TEST.pushbutton.text
+msgid "~Test XSLTs..."
+msgstr "~Probar los XSLTs..."
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_DELETE.pushbutton.text
+msgid "~Delete..."
+msgstr "~Eliminar..."
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_SAVE.pushbutton.text
+msgid "~Save as Package..."
+msgstr "~Guardar como paquete..."
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_OPEN.pushbutton.text
+msgid "~Open Package..."
+msgstr "~Abrir paquete..."
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_CLOSE.pushbutton.text
+msgctxt "xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_CLOSE.pushbutton.text"
+msgid "~Close"
+msgstr "~Cerrar"
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.STR_XML_FILTER_LISTBOX.string.text
+msgid "XML Filter List"
+msgstr "Lista de filtros XML"
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.workwindow.text
+msgid "XML Filter Settings"
+msgstr "Configuración del filtro XML"
+
+#: xmlfileview.src#DLG_XML_SOURCE_FILE_DIALOG.PB_VALIDATE.pushbutton.text
+msgid "~Validate"
+msgstr "~Confirmar"
+
+#: xmlfileview.src#DLG_XML_SOURCE_FILE_DIALOG.workwindow.text
+msgid "XML Filter output"
+msgstr "Salida filtro XML"
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.FT_XML_DOCTYPE.fixedtext.text
+msgid "DocType"
+msgstr "DocType"
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.FT_XML_DTD_SCHEMA.fixedtext.text
+msgid "DTD"
+msgstr "DTD"
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.ED_XML_DTD_SCHEMA_BROWSE.pushbutton.text
+msgctxt "xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.ED_XML_DTD_SCHEMA_BROWSE.pushbutton.text"
+msgid "Browse..."
+msgstr "Buscar..."
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.FT_XML_EXPORT_XSLT.fixedtext.text
+msgctxt "xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.FT_XML_EXPORT_XSLT.fixedtext.text"
+msgid "XSLT for export"
+msgstr "XSLT para exportación"
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.PB_XML_EXPORT_XSLT_BROWSE.pushbutton.text
+msgctxt "xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.PB_XML_EXPORT_XSLT_BROWSE.pushbutton.text"
+msgid "Browse..."
+msgstr "Buscar..."
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.FT_XML_IMPORT_XSLT.fixedtext.text
+msgctxt "xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.FT_XML_IMPORT_XSLT.fixedtext.text"
+msgid "XSLT for import"
+msgstr "XSLT para importación"
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.PB_XML_IMPORT_XSLT_BROWSE.pushbutton.text
+msgctxt "xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.PB_XML_IMPORT_XSLT_BROWSE.pushbutton.text"
+msgid "Browse..."
+msgstr "Buscar..."
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.FT_XML_IMPORT_TEMPLATE.fixedtext.text
+msgctxt "xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.FT_XML_IMPORT_TEMPLATE.fixedtext.text"
+msgid "Template for import"
+msgstr "Plantilla para importación"
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.PB_XML_IMPORT_TEMPLATE_BROWSE.pushbutton.text
+msgctxt "xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.PB_XML_IMPORT_TEMPLATE_BROWSE.pushbutton.text"
+msgid "Browse..."
+msgstr "Buscar..."
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.FT_XML_TRANSFORM_SERVICE.fixedtext.text
+msgid "XSLT Transformation Service"
+msgstr "Servicio de transformación XSLT"
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.RB_XML_TRANSFORM_SERVICE_LIBXSLT.radiobutton.text
+msgid "~Builtin (LibXSLT)"
+msgstr "~Incorporado (LibXSLT)"
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.RB_XML_TRANSFORM_SERVICE_SAXON_J.radiobutton.text
+msgid "~Saxon/J"
+msgstr "~Saxon/J"
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.tabpage.text
+msgctxt "xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.tabpage.text"
+msgid "Transformation"
+msgstr "Transformación"
+
+#: xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.FT_XML_FILTER_NAME.fixedtext.text
+msgid "Filter name"
+msgstr "Nombre del filtro"
+
+#: xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.FT_XML_APPLICATION.fixedtext.text
+msgid "Application"
+msgstr "Aplicación"
+
+#: xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.FT_XML_INTERFACE_NAME.fixedtext.text
+msgid ""
+"Name of\n"
+"file type"
+msgstr ""
+"Nombre del\n"
+"tipo de archivo"
+
+#: xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.FT_XML_EXTENSION.fixedtext.text
+msgid "File extension"
+msgstr "Extensión del archivo"
+
+#: xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.FT_XML_DESCRIPTION.fixedtext.text
+msgid "Comments"
+msgstr "Observaciones"
+
+#: xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.tabpage.text
+msgctxt "xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.tabpage.text"
+msgid "General"
+msgstr "General"
diff --git a/source/es/forms/source/resource.po b/source/es/forms/source/resource.po
new file mode 100644
index 00000000000..f40124d04c8
--- /dev/null
+++ b/source/es/forms/source/resource.po
@@ -0,0 +1,260 @@
+#. extracted from forms/source/resource.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+forms%2Fsource%2Fresource.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2012-08-17 07:51+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: xforms.src#RID_STR_XFORMS_NO_BINDING_EXPRESSION.string.text
+msgid "Please enter a binding expression."
+msgstr "Escriba una expresión de enlace."
+
+#: xforms.src#RID_STR_XFORMS_INVALID_BINDING_EXPRESSION.string.text
+msgid "This is an invalid binding expression."
+msgstr "Ésta es una expresión de enlace no válida."
+
+#: xforms.src#RID_STR_XFORMS_INVALID_VALUE.string.text
+msgid "Value is invalid."
+msgstr "El valor no es válido."
+
+#: xforms.src#RID_STR_XFORMS_REQUIRED.string.text
+msgid "A value is required."
+msgstr "Se necesita un valor."
+
+#: xforms.src#RID_STR_XFORMS_INVALID_CONSTRAINT.string.text
+msgid "The constraint '$1' not validated."
+msgstr "La limitación '$1' no está validada."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_IS_NOT_A.string.text
+msgid "The value is not of the type '$2'."
+msgstr "El valor no es del tipo '$2'."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_MAX_INCL.string.text
+msgid "The value must be smaller than or equal to $2."
+msgstr "El valor debe ser menor que o igual a $2."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_MAX_EXCL.string.text
+msgid "The value must be smaller than $2."
+msgstr "El valor debe ser menor que $2."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_MIN_INCL.string.text
+msgid "The value must be greater than or equal to $2."
+msgstr "El valor debe ser mayor o igual que $2."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_MIN_EXCL.string.text
+msgid "The value must be greater than $2."
+msgstr "El valor debe ser mayor que $2."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_PATTERN.string.text
+msgid "The value does not match the pattern '$2'."
+msgstr "El valor no coincide con la trama '$2'."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_TOTAL_DIGITS.string.text
+msgid "$2 digits allowed at most."
+msgstr "$2 dígitos permitidos como máximo."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_FRACTION_DIGITS.string.text
+msgid "$2 fraction digits allowed at most."
+msgstr "$2 dígitos de fracción permitidos como máximo."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_LENGTH.string.text
+msgid "The string must be $2 characters long."
+msgstr "La cadena debe tener $2 caracteres de longitud."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_MIN_LENGTH.string.text
+msgid "The string must be at least $2 characters long."
+msgstr "La cadena debe tener como mínimo $2 caracteres de longitud."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_MAX_LENGTH.string.text
+msgid "The string can only be $2 characters long at most."
+msgstr "La cadena sólo puede tener $2 caracteres de longitud como máximo."
+
+#: xforms.src#RID_STR_DATATYPE_STRING.string.text
+msgid "String"
+msgstr "Cadena"
+
+#: xforms.src#RID_STR_DATATYPE_URL.string.text
+msgid "Hyperlink"
+msgstr "Hiperenlace"
+
+#: xforms.src#RID_STR_DATATYPE_BOOLEAN.string.text
+msgid "True/False (Boolean)"
+msgstr "Verdadero/Falso (booleano)"
+
+#: xforms.src#RID_STR_DATATYPE_DECIMAL.string.text
+msgid "Decimal"
+msgstr "Decimal"
+
+#: xforms.src#RID_STR_DATATYPE_FLOAT.string.text
+msgid "Floating point"
+msgstr "Coma flotante"
+
+#: xforms.src#RID_STR_DATATYPE_DOUBLE.string.text
+msgid "Double"
+msgstr "Doble"
+
+#: xforms.src#RID_STR_DATATYPE_DATE.string.text
+msgid "Date"
+msgstr "Fecha"
+
+#: xforms.src#RID_STR_DATATYPE_TIME.string.text
+msgid "Time"
+msgstr "Hora"
+
+#: xforms.src#RID_STR_DATATYPE_DATETIME.string.text
+msgid "Date and Time"
+msgstr "Fecha y hora"
+
+#: xforms.src#RID_STR_DATATYPE_YEARMONTH.string.text
+msgid "Month and year"
+msgstr "Mes y año"
+
+#: xforms.src#RID_STR_DATATYPE_YEAR.string.text
+msgid "Year"
+msgstr "Año"
+
+#: xforms.src#RID_STR_DATATYPE_MONTHDAY.string.text
+msgid "Month and day"
+msgstr "Mes y día"
+
+#: xforms.src#RID_STR_DATATYPE_MONTH.string.text
+msgid "Month"
+msgstr "Mes"
+
+#: xforms.src#RID_STR_DATATYPE_DAY.string.text
+msgid "Day"
+msgstr "Día"
+
+#: xforms.src#RID_STR_XFORMS_CANT_EVALUATE.string.text
+msgid "Error during evaluation"
+msgstr "Error durante la evaluación"
+
+#: xforms.src#RID_STR_XFORMS_PATTERN_DOESNT_MATCH.string.text
+msgid "The string '$1' does not match the required regular expression '$2'."
+msgstr "La cadena '$1' no coincide con la expresión regular requerida '$2'."
+
+#: xforms.src#RID_STR_XFORMS_BINDING_UI_NAME.string.text
+msgid "Binding"
+msgstr "Enlaces"
+
+#: strings.src#RID_BASELISTBOX_ERROR_FILLLIST.string.text
+msgid "The contents of a combo box or list field could not be determined."
+msgstr "No se pudo determinar el contenido de un campo combinado o un listado."
+
+#: strings.src#RID_STR_IMPORT_GRAPHIC.string.text
+msgid "Insert graphics"
+msgstr "Insertar imagen"
+
+#: strings.src#RID_STR_CONTROL_SUBSTITUTED_NAME.string.text
+msgid "substituted"
+msgstr "reemplazado"
+
+#: strings.src#RID_STR_CONTROL_SUBSTITUTED_EPXPLAIN.string.text
+msgid "An error occurred while this control was being loaded. It was therefore replaced with a placeholder."
+msgstr "Ha ocurrido un error al cargar este Control. Por ello se ha reemplazado con un comodín."
+
+#: strings.src#RID_STR_READERROR.string.text
+msgid "Error reading data from database"
+msgstr "Error al leer datos de la base de datos"
+
+#: strings.src#RID_STR_CONNECTERROR.string.text
+msgid "Connection failed"
+msgstr "No se pudo efectuar la conexión."
+
+#: strings.src#RID_ERR_LOADING_FORM.string.text
+msgid "The data content could not be loaded."
+msgstr "No se pudieron cargar los contenidos de los datos."
+
+#: strings.src#RID_ERR_REFRESHING_FORM.string.text
+msgid "The data content could not be updated"
+msgstr "No se pudieron actualizar los contenidos de los datos."
+
+#: strings.src#RID_STR_ERR_INSERTRECORD.string.text
+msgid "Error inserting the new record"
+msgstr "Error al insertar un nuevo registro de datos."
+
+#: strings.src#RID_STR_ERR_UPDATERECORD.string.text
+msgid "Error updating the current record"
+msgstr "Error al escribir el registro actual de datos."
+
+#: strings.src#RID_STR_ERR_DELETERECORD.string.text
+msgid "Error deleting the current record"
+msgstr "Error al eliminar el registro actual de datos."
+
+#: strings.src#RID_STR_ERR_DELETERECORDS.string.text
+msgid "Error deleting the specified records"
+msgstr "Error al eliminar los registros de datos indicados."
+
+#: strings.src#RID_STR_NEED_NON_NULL_OBJECT.string.text
+msgid "The object cannot be NULL."
+msgstr "El objeto no puede ser NULL."
+
+#: strings.src#RID_STR_OPEN_GRAPHICS.string.text
+msgid "Insert graphics from..."
+msgstr "Insertar imagen de..."
+
+#: strings.src#RID_STR_CLEAR_GRAPHICS.string.text
+msgid "Remove graphics"
+msgstr "Eliminar imagen"
+
+#: strings.src#RID_STR_INVALIDSTREAM.string.text
+msgid "The given stream is invalid."
+msgstr "La secuencia indicada no es válida."
+
+#: strings.src#RID_STR_SYNTAXERROR.string.text
+msgid "Syntax error in query expression"
+msgstr "Ha ocurrido un error al analizar la expresión de la consulta"
+
+#: strings.src#RID_STR_INCOMPATIBLE_TYPES.string.text
+msgid "The value types supported by the binding cannot be used for exchanging data with this control."
+msgstr "Los tipos de valores que admite la vinculación no se pueden utilizar para intercambiar datos con este control."
+
+#: strings.src#RID_STR_LABEL_RECORD.string.text
+msgid "Record"
+msgstr "Registro"
+
+#: strings.src#RID_STR_INVALID_VALIDATOR.string.text
+msgid "The control is connected to an external value binding, which at the same time acts as validator. You need to revoke the value binding, before you can set a new validator."
+msgstr "El control se conecta a una vinculación de valor externa, que actúa a la vez como validador. Es necesario revocar la vinculación de valor antes de configurar un nuevo validador."
+
+#: strings.src#RID_STR_LABEL_OF.string.text
+msgid "of"
+msgstr "de"
+
+#: strings.src#RID_STR_QUERY_SAVE_MODIFIED_ROW.string.text
+msgid ""
+"The content of the current form has been modified.\n"
+"Do you want to save your changes?"
+msgstr ""
+"El contenido de este formulario se ha modificado.\n"
+"¿Desea guardar los cambios?"
+
+#: strings.src#RID_STR_COULD_NOT_SET_ORDER.string.text
+msgid "Error setting the sort criteria"
+msgstr "Error al establecer los criterios de ordenación"
+
+#: strings.src#RID_STR_COULD_NOT_SET_FILTER.string.text
+msgid "Error setting the filter criteria"
+msgstr "Error al establecer los criterios de filtro"
+
+#: strings.src#RID_STR_FEATURE_REQUIRES_PARAMETERS.string.text
+msgid "To execute this function, parameters are needed."
+msgstr "Para ejecutar esta función hacen falta parámetros."
+
+#: strings.src#RID_STR_FEATURE_NOT_EXECUTABLE.string.text
+msgid "This function cannot be executed, but is only for status queries."
+msgstr "Esta función no se puede ejecutar, sólo es para consultas de estado."
+
+#: strings.src#RID_STR_FEATURE_UNKNOWN.string.text
+msgid "Unknown function."
+msgstr "Función desconocida."
diff --git a/source/es/formula/source/core/resource.po b/source/es/formula/source/core/resource.po
new file mode 100644
index 00000000000..8c61d6df81f
--- /dev/null
+++ b/source/es/formula/source/core/resource.po
@@ -0,0 +1,1216 @@
+#. extracted from formula/source/core/resource.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+formula%2Fsource%2Fcore%2Fresource.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-06-13 19:12+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IF.string.text
+msgid "IF"
+msgstr "SI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CHOSE.string.text
+msgid "CHOOSE"
+msgstr "ELEGIR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_AND.string.text
+msgid "AND"
+msgstr "Y"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_OR.string.text
+msgid "OR"
+msgstr "O"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NOT.string.text
+msgid "NOT"
+msgstr "NO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NEG.string.text
+msgid "NEG"
+msgstr "NEG"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PI.string.text
+msgid "PI"
+msgstr "PI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_RANDOM.string.text
+msgid "RAND"
+msgstr "ALEATORIO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TRUE.string.text
+msgid "TRUE"
+msgstr "VERDADERO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FALSE.string.text
+msgid "FALSE"
+msgstr "FALSO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_ACT_DATE.string.text
+msgid "TODAY"
+msgstr "HOY"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_ACT_TIME.string.text
+msgid "NOW"
+msgstr "AHORA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NO_VALUE.string.text
+msgid "NA"
+msgstr "NOD"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CURRENT.string.text
+msgid "CURRENT"
+msgstr "ACTUAL"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DEG.string.text
+msgid "DEGREES"
+msgstr "GRADOS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_RAD.string.text
+msgid "RADIANS"
+msgstr "RADIANES"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SIN.string.text
+msgid "SIN"
+msgstr "SENO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COS.string.text
+msgid "COS"
+msgstr "COS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TAN.string.text
+msgid "TAN"
+msgstr "TAN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COT.string.text
+msgid "COT"
+msgstr "COT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARC_SIN.string.text
+msgid "ASIN"
+msgstr "ASENO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARC_COS.string.text
+msgid "ACOS"
+msgstr "ACOS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARC_TAN.string.text
+msgid "ATAN"
+msgstr "ATAN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARC_COT.string.text
+msgid "ACOT"
+msgstr "ACOT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SIN_HYP.string.text
+msgid "SINH"
+msgstr "SENOH"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COS_HYP.string.text
+msgid "COSH"
+msgstr "COSH"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TAN_HYP.string.text
+msgid "TANH"
+msgstr "TANH"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COT_HYP.string.text
+msgid "COTH"
+msgstr "COTH"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARC_SIN_HYP.string.text
+msgid "ASINH"
+msgstr "ASENOH"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARC_COS_HYP.string.text
+msgid "ACOSH"
+msgstr "ACOSH"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARC_TAN_HYP.string.text
+msgid "ATANH"
+msgstr "ATANH"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARC_COT_HYP.string.text
+msgid "ACOTH"
+msgstr "ACOTH"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COSECANT.string.text
+msgid "CSC"
+msgstr "CSC"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SECANT.string.text
+msgid "SEC"
+msgstr "SEC"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COSECANT_HYP.string.text
+msgid "CSCH"
+msgstr "CSCH"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SECANT_HYP.string.text
+msgid "SECH"
+msgstr "SECH"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_EXP.string.text
+msgid "EXP"
+msgstr "EXP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LN.string.text
+msgid "LN"
+msgstr "LN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SQRT.string.text
+msgid "SQRT"
+msgstr "RAIZ"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FACT.string.text
+msgid "FACT"
+msgstr "FACT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_YEAR.string.text
+msgid "YEAR"
+msgstr "AÑO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_MONTH.string.text
+msgid "MONTH"
+msgstr "MES"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_DAY.string.text
+msgid "DAY"
+msgstr "DÍA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_HOUR.string.text
+msgid "HOUR"
+msgstr "HORA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_MIN.string.text
+msgid "MINUTE"
+msgstr "MINUTO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_SEC.string.text
+msgid "SECOND"
+msgstr "SEGUNDO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PLUS_MINUS.string.text
+msgid "SIGN"
+msgstr "SIGNO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ABS.string.text
+msgid "ABS"
+msgstr "ABS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_INT.string.text
+msgid "INT"
+msgstr "ENTERO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PHI.string.text
+msgid "PHI"
+msgstr "PHI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GAUSS.string.text
+msgid "GAUSS"
+msgstr "GAUSS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_EMPTY.string.text
+msgid "ISBLANK"
+msgstr "ESBLANCO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_STRING.string.text
+msgid "ISTEXT"
+msgstr "ESTEXTO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_NON_STRING.string.text
+msgid "ISNONTEXT"
+msgstr "ESNOTEXTO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_LOGICAL.string.text
+msgid "ISLOGICAL"
+msgstr "ESLOGICO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TYPE.string.text
+msgid "TYPE"
+msgstr "TIPO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CELL.string.text
+msgid "CELL"
+msgstr "CELDA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_REF.string.text
+msgid "ISREF"
+msgstr "ESREF"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_VALUE.string.text
+msgid "ISNUMBER"
+msgstr "ESNÚMERO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_FORMULA.string.text
+msgid "ISFORMULA"
+msgstr "ESFÓRMULA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_NV.string.text
+msgid "ISNA"
+msgstr "ESNOD"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_ERR.string.text
+msgid "ISERR"
+msgstr "ESERR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_ERROR.string.text
+msgid "ISERROR"
+msgstr "ESERROR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_EVEN.string.text
+msgid "ISEVEN"
+msgstr "ESPAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_ODD.string.text
+msgid "ISODD"
+msgstr "ESIMPAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_N.string.text
+msgid "N"
+msgstr "N"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_DATE_VALUE.string.text
+msgid "DATEVALUE"
+msgstr "FECHANÚMERO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_TIME_VALUE.string.text
+msgid "TIMEVALUE"
+msgstr "HORANÚMERO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CODE.string.text
+msgid "CODE"
+msgstr "CÓDIGO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TRIM.string.text
+msgid "TRIM"
+msgstr "REDUCIR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_UPPER.string.text
+msgid "UPPER"
+msgstr "MAYÚSC"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PROPPER.string.text
+msgid "PROPER"
+msgstr "NOMPROPIO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LOWER.string.text
+msgid "LOWER"
+msgstr "MINÚSC"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LEN.string.text
+msgid "LEN"
+msgstr "LARGO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_T.string.text
+msgid "T"
+msgstr "T"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_VALUE.string.text
+msgid "VALUE"
+msgstr "VALOR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CLEAN.string.text
+msgid "CLEAN"
+msgstr "LIMPIAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CHAR.string.text
+msgid "CHAR"
+msgstr "CARÁCTER"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_JIS.string.text
+msgid "JIS"
+msgstr "JIS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ASC.string.text
+msgid "ASC"
+msgstr "ASC"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_UNICODE.string.text
+msgid "UNICODE"
+msgstr "UNICODE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_UNICHAR.string.text
+msgid "UNICHAR"
+msgstr "UNICHAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LOG10.string.text
+msgid "LOG10"
+msgstr "LOG10"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_EVEN.string.text
+msgid "EVEN"
+msgstr "REDONDEA.PAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ODD.string.text
+msgid "ODD"
+msgstr "REDONDEA.IMPAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_STD_NORM_DIST.string.text
+msgid "NORMSDIST"
+msgstr "DISTR.NORM.ESTAND"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FISHER.string.text
+msgid "FISHER"
+msgstr "FISHER"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FISHER_INV.string.text
+msgid "FISHERINV"
+msgstr "PRUEBA.FISHER.INV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_S_NORM_INV.string.text
+msgid "NORMSINV"
+msgstr "DISTR.NORM.ESTAND.INV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GAMMA_LN.string.text
+msgid "GAMMALN"
+msgstr "GAMMA.LN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ERROR_TYPE.string.text
+msgid "ERRORTYPE"
+msgstr "TIPO.DE.ERROR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FORMULA.string.text
+msgid "FORMULA"
+msgstr "FÓRMULA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARABIC.string.text
+msgid "ARABIC"
+msgstr "ÁRABE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARC_TAN_2.string.text
+msgid "ATAN2"
+msgstr "ATAN2"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CEIL.string.text
+msgid "CEILING"
+msgstr "MÚLTIPLO.SUPERIOR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FLOOR.string.text
+msgid "FLOOR"
+msgstr "MÚLTIPLO.INFERIOR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ROUND.string.text
+msgid "ROUND"
+msgstr "REDONDEAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ROUND_UP.string.text
+msgid "ROUNDUP"
+msgstr "REDONDEAR.MAS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ROUND_DOWN.string.text
+msgid "ROUNDDOWN"
+msgstr "REDONDEAR.MENOS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TRUNC.string.text
+msgid "TRUNC"
+msgstr "TRUNCAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LOG.string.text
+msgid "LOG"
+msgstr "LOG"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_POWER.string.text
+msgid "POWER"
+msgstr "POTENCIA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GGT.string.text
+msgid "GCD"
+msgstr "M.C.D"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KGV.string.text
+msgid "LCM"
+msgstr "M.C.M"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MOD.string.text
+msgid "MOD"
+msgstr "RESIDUO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUM_PRODUCT.string.text
+msgid "SUMPRODUCT"
+msgstr "SUMA.PRODUCTO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUM_SQ.string.text
+msgid "SUMSQ"
+msgstr "SUMA.CUADRADOS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUM_X2MY2.string.text
+msgid "SUMX2MY2"
+msgstr "SUMAX2MENOSY2"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUM_X2DY2.string.text
+msgid "SUMX2PY2"
+msgstr "SUMAX2MASY2"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUM_XMY2.string.text
+msgid "SUMXMY2"
+msgstr "SUMAXMENOSY2"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_DATE.string.text
+msgid "DATE"
+msgstr "FECHA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_TIME.string.text
+msgid "TIME"
+msgstr "TIEMPO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_DIFF_DATE.string.text
+msgid "DAYS"
+msgstr "DIAS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_DIFF_DATE_360.string.text
+msgid "DAYS360"
+msgstr "DIAS360"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_DATEDIF.string.text
+msgid "DATEDIF"
+msgstr "FECHADIF"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MIN.string.text
+msgid "MIN"
+msgstr "MÍN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MIN_A.string.text
+msgid "MINA"
+msgstr "MÍNA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MAX.string.text
+msgid "MAX"
+msgstr "MÁX"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MAX_A.string.text
+msgid "MAXA"
+msgstr "MÁXA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUM.string.text
+msgid "SUM"
+msgstr "SUMA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PRODUCT.string.text
+msgid "PRODUCT"
+msgstr "PRODUCTO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_AVERAGE.string.text
+msgid "AVERAGE"
+msgstr "PROMEDIO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_AVERAGE_A.string.text
+msgid "AVERAGEA"
+msgstr "PROMEDIOA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COUNT.string.text
+msgid "COUNT"
+msgstr "CONTAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COUNT_2.string.text
+msgid "COUNTA"
+msgstr "CONTARA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NBW.string.text
+msgid "NPV"
+msgstr "VNA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IKV.string.text
+msgid "IRR"
+msgstr "TIR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MIRR.string.text
+msgid "MIRR"
+msgstr "MIRR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ISPMT.string.text
+msgid "ISPMT"
+msgstr "INT.PAGO.DIR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_VAR.string.text
+msgid "VAR"
+msgstr "VAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_VAR_A.string.text
+msgid "VARA"
+msgstr "VARA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_VAR_P.string.text
+msgid "VARP"
+msgstr "VARP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_VAR_P_A.string.text
+msgid "VARPA"
+msgstr "VARPA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ST_DEV.string.text
+msgid "STDEV"
+msgstr "DESVEST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ST_DEV_A.string.text
+msgid "STDEVA"
+msgstr "DESVESTA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ST_DEV_P.string.text
+msgid "STDEVP"
+msgstr "DESVESTP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ST_DEV_P_A.string.text
+msgid "STDEVPA"
+msgstr "DESVESTPA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_B.string.text
+msgid "B"
+msgstr "B"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NORM_DIST.string.text
+msgid "NORMDIST"
+msgstr "DISTR.NORM"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_EXP_DIST.string.text
+msgid "EXPONDIST"
+msgstr "DISTR.EXP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BINOM_DIST.string.text
+msgid "BINOMDIST"
+msgstr "DISTR.BINOM"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_POISSON_DIST.string.text
+msgid "POISSON"
+msgstr "POISSON"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KOMBIN.string.text
+msgid "COMBIN"
+msgstr "COMBINAT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KOMBIN_2.string.text
+msgid "COMBINA"
+msgstr "COMBINATA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_VARIATIONEN.string.text
+msgid "PERMUT"
+msgstr "PERMUTACIONES"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_VARIATIONEN_2.string.text
+msgid "PERMUTATIONA"
+msgstr "PERMUTACIONESA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BW.string.text
+msgid "PV"
+msgstr "VA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DIA.string.text
+msgid "SYD"
+msgstr "SYD"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GDA.string.text
+msgid "DDB"
+msgstr "DDB"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GDA_2.string.text
+msgid "DB"
+msgstr "DB"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_VBD.string.text
+msgid "VDB"
+msgstr "DVS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LAUFZ.string.text
+msgid "DURATION"
+msgstr "DURACIÓN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LIA.string.text
+msgid "SLN"
+msgstr "SLN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_RMZ.string.text
+msgid "PMT"
+msgstr "PAGO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COLUMNS.string.text
+msgid "COLUMNS"
+msgstr "COLUMNAS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ROWS.string.text
+msgid "ROWS"
+msgstr "FILAS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TABLES.string.text
+msgid "SHEETS"
+msgstr "HOJAS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COLUMN.string.text
+msgid "COLUMN"
+msgstr "COLUMNA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ROW.string.text
+msgid "ROW"
+msgstr "FILA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TABLE.string.text
+msgid "SHEET"
+msgstr "HOJA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ZGZ.string.text
+msgid "RRI"
+msgstr "INT.RENDIMIENTO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ZW.string.text
+msgid "FV"
+msgstr "VF"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ZZR.string.text
+msgid "NPER"
+msgstr "NPER"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ZINS.string.text
+msgid "RATE"
+msgstr "TASA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ZINS_Z.string.text
+msgid "IPMT"
+msgstr "PAGOINT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KAPZ.string.text
+msgid "PPMT"
+msgstr "PAGOPRIN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KUM_ZINS_Z.string.text
+msgid "CUMIPMT"
+msgstr "PAGO.INT.ENTRE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KUM_KAP_Z.string.text
+msgid "CUMPRINC"
+msgstr "PAGO.PRINC.ENTRE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_EFFEKTIV.string.text
+msgid "EFFECTIVE"
+msgstr "INT.EFECTIVO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NOMINAL.string.text
+msgid "NOMINAL"
+msgstr "TASA.NOMINAL"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUB_TOTAL.string.text
+msgid "SUBTOTAL"
+msgstr "SUBTOTALES"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_SUM.string.text
+msgid "DSUM"
+msgstr "BDSUMA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_COUNT.string.text
+msgid "DCOUNT"
+msgstr "BDCONTAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_COUNT_2.string.text
+msgid "DCOUNTA"
+msgstr "BDCONTARA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_AVERAGE.string.text
+msgid "DAVERAGE"
+msgstr "BDPROMEDIO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_GET.string.text
+msgid "DGET"
+msgstr "BDEXTRAER"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_MAX.string.text
+msgid "DMAX"
+msgstr "BDMÁX"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_MIN.string.text
+msgid "DMIN"
+msgstr "BDMÍN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_PRODUCT.string.text
+msgid "DPRODUCT"
+msgstr "BDPRODUCTO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_STD_DEV.string.text
+msgid "DSTDEV"
+msgstr "BDDESVEST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_STD_DEV_P.string.text
+msgid "DSTDEVP"
+msgstr "BDDESVESTP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_VAR.string.text
+msgid "DVAR"
+msgstr "BDVAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_VAR_P.string.text
+msgid "DVARP"
+msgstr "BDVARP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_INDIRECT.string.text
+msgid "INDIRECT"
+msgstr "INDIRECTO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ADDRESS.string.text
+msgid "ADDRESS"
+msgstr "DIRECCIÓN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MATCH.string.text
+msgid "MATCH"
+msgstr "COINCIDIR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COUNT_EMPTY_CELLS.string.text
+msgid "COUNTBLANK"
+msgstr "CONTAR.BLANCO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COUNT_IF.string.text
+msgid "COUNTIF"
+msgstr "CONTAR.SI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUM_IF.string.text
+msgid "SUMIF"
+msgstr "SUMAR.SI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LOOKUP.string.text
+msgid "LOOKUP"
+msgstr "BUSCAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_V_LOOKUP.string.text
+msgid "VLOOKUP"
+msgstr "BUSCARV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_H_LOOKUP.string.text
+msgid "HLOOKUP"
+msgstr "BUSCARH"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MULTI_AREA.string.text
+msgid "MULTIRANGE"
+msgstr "MULTIRANGO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_OFFSET.string.text
+msgid "OFFSET"
+msgstr "DESREF"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_INDEX.string.text
+msgid "INDEX"
+msgstr "ÍNDICE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_AREAS.string.text
+msgid "AREAS"
+msgstr "ÁREAS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CURRENCY.string.text
+msgid "DOLLAR"
+msgstr "MONEDA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_REPLACE.string.text
+msgid "REPLACE"
+msgstr "REEMPLAZAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FIXED.string.text
+msgid "FIXED"
+msgstr "FIJO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FIND.string.text
+msgid "FIND"
+msgstr "ENCONTRAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_EXACT.string.text
+msgid "EXACT"
+msgstr "IGUAL"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LEFT.string.text
+msgid "LEFT"
+msgstr "IZQUIERDA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_RIGHT.string.text
+msgid "RIGHT"
+msgstr "DERECHA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SEARCH.string.text
+msgid "SEARCH"
+msgstr "HALLAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MID.string.text
+msgid "MID"
+msgstr "MID"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TEXT.string.text
+msgid "TEXT"
+msgstr "TEXTO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUBSTITUTE.string.text
+msgid "SUBSTITUTE"
+msgstr "SUSTITUIR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_REPT.string.text
+msgid "REPT"
+msgstr "REPETIR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CONCAT.string.text
+msgid "CONCATENATE"
+msgstr "CONCATENAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MAT_VALUE.string.text
+msgid "MVALUE"
+msgstr "MVALOR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MAT_DET.string.text
+msgid "MDETERM"
+msgstr "MDETERM"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MAT_INV.string.text
+msgid "MINVERSE"
+msgstr "MINVERSA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MAT_MULT.string.text
+msgid "MMULT"
+msgstr "MMULT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MAT_TRANS.string.text
+msgid "TRANSPOSE"
+msgstr "TRANSPONER"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MATRIX_UNIT.string.text
+msgid "MUNIT"
+msgstr "MUNITARIA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BACK_SOLVER.string.text
+msgid "GOALSEEK"
+msgstr "VALORPRETENDIDO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_HYP_GEOM_DIST.string.text
+msgid "HYPGEOMDIST"
+msgstr "DISTR.HIPERGEOM"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LOG_NORM_DIST.string.text
+msgid "LOGNORMDIST"
+msgstr "DISTR.LOG.NORM"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_T_DIST.string.text
+msgid "TDIST"
+msgstr "DISTR.T"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_F_DIST.string.text
+msgid "FDIST"
+msgstr "DISTR.F"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CHI_DIST.string.text
+msgid "CHIDIST"
+msgstr "DISTR.CHI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_WEIBULL.string.text
+msgid "WEIBULL"
+msgstr "DIST.WEIBULL"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NEG_BINOM_VERT.string.text
+msgid "NEGBINOMDIST"
+msgstr "NEGBINOMDIST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KRIT_BINOM.string.text
+msgid "CRITBINOM"
+msgstr "BINOM.CRIT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KURT.string.text
+msgid "KURT"
+msgstr "CURTOSIS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_HAR_MEAN.string.text
+msgid "HARMEAN"
+msgstr "MEDIA.ARMO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GEO_MEAN.string.text
+msgid "GEOMEAN"
+msgstr "MEDIA.GEOM"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_STANDARD.string.text
+msgid "STANDARDIZE"
+msgstr "NORMALIZACIÓN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_AVE_DEV.string.text
+msgid "AVEDEV"
+msgstr "DESVPROM"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SCHIEFE.string.text
+msgid "SKEW"
+msgstr "COEFICIENTE.ASIMETRIA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DEV_SQ.string.text
+msgid "DEVSQ"
+msgstr "DESVIA2"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MEDIAN.string.text
+msgid "MEDIAN"
+msgstr "MEDIANA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MODAL_VALUE.string.text
+msgid "MODE"
+msgstr "MODO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_Z_TEST.string.text
+msgid "ZTEST"
+msgstr "PRUEBA.Z"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_T_TEST.string.text
+msgid "TTEST"
+msgstr "PRUEBA.T"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_RANK.string.text
+msgid "RANK"
+msgstr "JERARQUÍA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PERCENTILE.string.text
+msgid "PERCENTILE"
+msgstr "PERCENTIL"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PERCENT_RANK.string.text
+msgid "PERCENTRANK"
+msgstr "RANGO.PERCENTIL"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LARGE.string.text
+msgid "LARGE"
+msgstr "K.ESIMO.MAYOR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SMALL.string.text
+msgid "SMALL"
+msgstr "K.ESIMO.MENOR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FREQUENCY.string.text
+msgid "FREQUENCY"
+msgstr "FRECUENCIA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_QUARTILE.string.text
+msgid "QUARTILE"
+msgstr "CUARTIL"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NORM_INV.string.text
+msgid "NORMINV"
+msgstr "DISTR.NORM.INV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CONFIDENCE.string.text
+msgid "CONFIDENCE"
+msgstr "CONFIANZA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_F_TEST.string.text
+msgid "FTEST"
+msgstr "PRUEBA.F"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TRIM_MEAN.string.text
+msgid "TRIMMEAN"
+msgstr "MEDIA.ACOTADA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PROB.string.text
+msgid "PROB"
+msgstr "PROBABILIDAD"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CORREL.string.text
+msgid "CORREL"
+msgstr "COEF.DE.CORREL"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COVAR.string.text
+msgid "COVAR"
+msgstr "COVAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PEARSON.string.text
+msgid "PEARSON"
+msgstr "PEARSON"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_RSQ.string.text
+msgid "RSQ"
+msgstr "COEFICIENTE.R2"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_STEYX.string.text
+msgid "STEYX"
+msgstr "ERROR.TÍPICO.XY"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SLOPE.string.text
+msgid "SLOPE"
+msgstr "PENDIENTE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_INTERCEPT.string.text
+msgid "INTERCEPT"
+msgstr "INTERSECCIÓN.EJE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TREND.string.text
+msgid "TREND"
+msgstr "TENDENCIA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GROWTH.string.text
+msgid "GROWTH"
+msgstr "CRECIMIENTO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_RGP.string.text
+msgid "LINEST"
+msgstr "ESTIMACIÓN.LINEAL"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_RKP.string.text
+msgid "LOGEST"
+msgstr "ESTIMACIÓN.LOGARÍTMICA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FORECAST.string.text
+msgid "FORECAST"
+msgstr "PRONÓSTICO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CHI_INV.string.text
+msgid "CHIINV"
+msgstr "PRUEBA.CHI.INV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GAMMA_DIST.string.text
+msgid "GAMMADIST"
+msgstr "DISTR.GAMMA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GAMMA_INV.string.text
+msgid "GAMMAINV"
+msgstr "DISTR.GAMMA.INV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_T_INV.string.text
+msgid "TINV"
+msgstr "DISTR.T.INV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_F_INV.string.text
+msgid "FINV"
+msgstr "DISTR.F.INV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CHI_TEST.string.text
+msgid "CHITEST"
+msgstr "PRUEBA.CHI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LOG_INV.string.text
+msgid "LOGINV"
+msgstr "INV.LOG"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TABLE_OP.string.text
+msgid "MULTIPLE.OPERATIONS"
+msgstr "OPERACIÓN.MÚLTIPLE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BETA_DIST.string.text
+msgid "BETADIST"
+msgstr "DISTR.BETA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BETA_INV.string.text
+msgid "BETAINV"
+msgstr "DISTR.BETA.INV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_WEEK.string.text
+msgid "WEEKNUM"
+msgstr "SEM.DEL.AÑO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_EASTERSUNDAY.string.text
+msgid "EASTERSUNDAY"
+msgstr "DOMINGOPASCUA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_DAY_OF_WEEK.string.text
+msgid "WEEKDAY"
+msgstr "DÍASEM"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NO_NAME.string.text
+msgid "#NAME!"
+msgstr "#NOMBRE!"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_STYLE.string.text
+msgid "STYLE"
+msgstr "ESTILO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DDE.string.text
+msgid "DDE"
+msgstr "DDE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BASE.string.text
+msgid "BASE"
+msgstr "BASE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DECIMAL.string.text
+msgid "DECIMAL"
+msgstr "DECIMAL"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CONVERT.string.text
+msgid "CONVERT"
+msgstr "CONVERTIR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ROMAN.string.text
+msgid "ROMAN"
+msgstr "ROMANO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_HYPERLINK.string.text
+msgid "HYPERLINK"
+msgstr "HIPERVÍNCULO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_INFO.string.text
+msgid "INFO"
+msgstr "INFO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BAHTTEXT.string.text
+msgid "BAHTTEXT"
+msgstr "BAHTTEXT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_PIVOT_DATA.string.text
+msgid "GETPIVOTDATA"
+msgstr "GETPIVOTDATA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_EUROCONVERT.string.text
+msgid "EUROCONVERT"
+msgstr "EUROCONVERT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NUMBERVALUE.string.text
+msgid "NUMBERVALUE"
+msgstr "VALOR.NÚMERO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GAMMA.string.text
+msgid "GAMMA"
+msgstr "GAMMA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CHISQ_DIST.string.text
+msgid "CHISQDIST"
+msgstr "CHISQDIST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CHISQ_INV.string.text
+msgid "CHISQINV"
+msgstr "CHISQINV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BITAND.string.text
+msgid "BITAND"
+msgstr "BITAND"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BITOR.string.text
+msgid "BITOR"
+msgstr "BITOR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BITXOR.string.text
+msgid "BITXOR"
+msgstr "BITXOR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BITRSHIFT.string.text
+msgid "BITRSHIFT"
+msgstr "BITRSHIFT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BITLSHIFT.string.text
+msgid "BITLSHIFT"
+msgstr "BITLSHIFT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ERROR_NULL.string.text
+msgid "#NULL!"
+msgstr "#NULO!"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ERROR_DIVZERO.string.text
+msgid "#DIV/0!"
+msgstr "#DIV/0!"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ERROR_VALUE.string.text
+msgid "#VALUE!"
+msgstr "#VALOR!"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ERROR_REF.string.text
+msgid "#REF!"
+msgstr "#REF!"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ERROR_NAME.string.text
+msgid "#NAME?"
+msgstr "#NOMBRE?"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ERROR_NUM.string.text
+msgid "#NUM!"
+msgstr "#NUM!"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ERROR_NA.string.text
+msgid "#N/A"
+msgstr "#N/D"
diff --git a/source/es/formula/source/ui/dlg.po b/source/es/formula/source/ui/dlg.po
new file mode 100644
index 00000000000..9856b5361d2
--- /dev/null
+++ b/source/es/formula/source/ui/dlg.po
@@ -0,0 +1,195 @@
+#. extracted from formula/source/ui/dlg.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+formula%2Fsource%2Fui%2Fdlg.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-08-14 05:26+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: parawin.src#RB_ARGBLOCK__y__.#define.text
+msgctxt "parawin.src#RB_ARGBLOCK__y__.#define.text"
+msgid "-"
+msgstr "-"
+
+#: parawin.src#RB_ARGBLOCK__y__.#define.quickhelptext
+msgid "Select"
+msgstr "Seleccionar"
+
+#: parawin.src#RID_FORMULATAB_PARAMETER.FT_EDITDESC.fixedtext.text
+msgid "Function not known"
+msgstr "Función desconocida"
+
+#: parawin.src#RID_FORMULATAB_PARAMETER.STR_OPTIONAL.string.text
+msgid "(optional)"
+msgstr "(opcional)"
+
+#: parawin.src#RID_FORMULATAB_PARAMETER.STR_REQUIRED.string.text
+msgid "(required)"
+msgstr "(requerido)"
+
+#: formdlgs.src#RID_FORMULATAB_FUNCTION.LB_CATEGORY.1.stringlist.text
+msgid "Last Used"
+msgstr "Último usado"
+
+#: formdlgs.src#RID_FORMULATAB_FUNCTION.LB_CATEGORY.2.stringlist.text
+msgid "All"
+msgstr "Todos"
+
+#: formdlgs.src#RID_FORMULATAB_FUNCTION.FT_CATEGORY.fixedtext.text
+msgid "~Category"
+msgstr "~Categoría"
+
+#: formdlgs.src#RID_FORMULATAB_FUNCTION.FT_FUNCTION.fixedtext.text
+msgid "~Function"
+msgstr "~Función"
+
+#: formdlgs.src#RID_FORMULATAB_STRUCT.FT_STRUCT.fixedtext.text
+msgid "~Structure"
+msgstr "~Estructura"
+
+#: formdlgs.src#RID_FORMULATAB_STRUCT.STR_STRUCT_ERR1.string.text
+msgid "=?"
+msgstr "=?"
+
+#: formdlgs.src#RID_FORMULATAB_STRUCT.STR_STRUCT_ERR2.string.text
+msgid "Error"
+msgstr "Error"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.TC_FUNCTION.TP_FUNCTION.pageitem.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.TC_FUNCTION.TP_FUNCTION.pageitem.text"
+msgid "Functions"
+msgstr "Funciones"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.TC_FUNCTION.TP_STRUCT.pageitem.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.TC_FUNCTION.TP_STRUCT.pageitem.text"
+msgid "Structure"
+msgstr "Estructura"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.FT_FORMULA.fixedtext.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.FT_FORMULA.fixedtext.text"
+msgid "For~mula"
+msgstr "Fór~mula"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.FT_RESULT.fixedtext.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.FT_RESULT.fixedtext.text"
+msgid "Function result"
+msgstr "Resultado de Función"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.FT_FORMULA_RESULT.fixedtext.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.FT_FORMULA_RESULT.fixedtext.text"
+msgid "Result"
+msgstr "Resultado"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.BTN_MATRIX.checkbox.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.BTN_MATRIX.checkbox.text"
+msgid "Array"
+msgstr "Matríz"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.RB_REF.imagebutton.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.RB_REF.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.RB_REF.imagebutton.quickhelptext
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.RB_REF.imagebutton.quickhelptext"
+msgid "Maximize"
+msgstr "Maximizar"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.BTN_BACKWARD.pushbutton.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.BTN_BACKWARD.pushbutton.text"
+msgid "<< ~Back"
+msgstr "<< ~Volver"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.BTN_FORWARD.pushbutton.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.BTN_FORWARD.pushbutton.text"
+msgid "~Next >>"
+msgstr "~Siguiente >>"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.STR_TITLE1.string.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.STR_TITLE1.string.text"
+msgid "Function Wizard"
+msgstr "Asistente de Funciones"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.STR_TITLE2.string.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.STR_TITLE2.string.text"
+msgid "Function Wizard -"
+msgstr "Asistente de Función -"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.STR_END.string.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.STR_END.string.text"
+msgid "~End"
+msgstr "~Fin"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.TC_FUNCTION.TP_FUNCTION.pageitem.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.TC_FUNCTION.TP_FUNCTION.pageitem.text"
+msgid "Functions"
+msgstr "Funciones"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.TC_FUNCTION.TP_STRUCT.pageitem.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.TC_FUNCTION.TP_STRUCT.pageitem.text"
+msgid "Structure"
+msgstr "Estructura"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.FT_FORMULA.fixedtext.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.FT_FORMULA.fixedtext.text"
+msgid "For~mula"
+msgstr "For~mula"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.FT_RESULT.fixedtext.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.FT_RESULT.fixedtext.text"
+msgid "Function result"
+msgstr "Resultado de función"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.FT_FORMULA_RESULT.fixedtext.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.FT_FORMULA_RESULT.fixedtext.text"
+msgid "Result"
+msgstr "Resultado"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.BTN_MATRIX.checkbox.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.BTN_MATRIX.checkbox.text"
+msgid "Array"
+msgstr "Arreglo"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.RB_REF.imagebutton.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.RB_REF.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.RB_REF.imagebutton.quickhelptext
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.RB_REF.imagebutton.quickhelptext"
+msgid "Maximize"
+msgstr "Maximizar"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.BTN_BACKWARD.pushbutton.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.BTN_BACKWARD.pushbutton.text"
+msgid "<< ~Back"
+msgstr "<< ~Anterior"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.BTN_FORWARD.pushbutton.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.BTN_FORWARD.pushbutton.text"
+msgid "~Next >>"
+msgstr "~Siguiente >>"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.STR_TITLE1.string.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.STR_TITLE1.string.text"
+msgid "Function Wizard"
+msgstr "Asistente de función"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.STR_TITLE2.string.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.STR_TITLE2.string.text"
+msgid "Function Wizard -"
+msgstr "Asistente de función -"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.STR_END.string.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.STR_END.string.text"
+msgid "~End"
+msgstr "~Fín"
diff --git a/source/es/fpicker/source/office.po b/source/es/fpicker/source/office.po
new file mode 100644
index 00000000000..0f39885457b
--- /dev/null
+++ b/source/es/fpicker/source/office.po
@@ -0,0 +1,309 @@
+#. extracted from fpicker/source/office.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+fpicker%2Fsource%2Foffice.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-06-22 00:57+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_NEWFOLDER.imagebutton.text
+msgctxt "iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_NEWFOLDER.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_NEWFOLDER.imagebutton.quickhelptext
+msgid "Create New Directory"
+msgstr "Crear directorio nuevo"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_UP.menubutton.text
+msgctxt "iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_UP.menubutton.text"
+msgid "-"
+msgstr "-"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_UP.menubutton.quickhelptext
+msgid "Up One Level"
+msgstr "Subir un nivel"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_CONNECT_TO_SERVER.pushbutton.text
+msgid "..."
+msgstr "..."
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_CONNECT_TO_SERVER.pushbutton.quickhelptext
+msgid "Connect To Server"
+msgstr "Conectar al servidor"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_ADD_PLACE.pushbutton.text
+msgid "+"
+msgstr "+"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_ADD_PLACE.pushbutton.quickhelptext
+msgid "Bookmark This Place"
+msgstr "Añadir este lugar a marcadores"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_REMOVE_PLACE.pushbutton.text
+msgctxt "iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_REMOVE_PLACE.pushbutton.text"
+msgid "-"
+msgstr "-"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_REMOVE_PLACE.pushbutton.quickhelptext
+msgid "Remove Selected Bookmark"
+msgstr "Quitar el marcador seleccionado"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.FT_EXPLORERFILE_FILENAME.fixedtext.text
+msgid "File ~name:"
+msgstr "~Nombre del archivo:"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.FT_EXPLORERFILE_FILETYPE.fixedtext.text
+msgctxt "iodlg.src#DLG_FPICKER_EXPLORERFILE.FT_EXPLORERFILE_FILETYPE.fixedtext.text"
+msgid "File ~type:"
+msgstr "~Tipo de archivo:"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.CB_EXPLORERFILE_READONLY.checkbox.text
+msgctxt "iodlg.src#DLG_FPICKER_EXPLORERFILE.CB_EXPLORERFILE_READONLY.checkbox.text"
+msgid "~Read-only"
+msgstr "Solo ~lectura"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.CB_EXPLORERFILE_PASSWORD.checkbox.text
+msgid "Save with password"
+msgstr "Guardar con contraseña"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.CB_AUTO_EXTENSION.checkbox.text
+msgctxt "iodlg.src#DLG_FPICKER_EXPLORERFILE.CB_AUTO_EXTENSION.checkbox.text"
+msgid "~Automatic file name extension"
+msgstr "Extensión de archivo ~automática"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.CB_OPTIONS.checkbox.text
+msgid "Edit ~filter settings"
+msgstr "Editar ~configuración de filtros"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_OPEN.pushbutton.text
+msgid "~Open"
+msgstr "~Abrir"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_EXPLORERFILE_OPEN.string.text
+msgid "Open"
+msgstr "Abrir"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_EXPLORERFILE_SAVE.string.text
+msgid "Save as"
+msgstr "Guardar como"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_EXPLORERFILE_BUTTONSAVE.string.text
+msgid "~Save"
+msgstr "~Guardar"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_PATHNAME.string.text
+msgid "~Path:"
+msgstr "~Ruta:"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_PATHSELECT.string.text
+msgid "Select path"
+msgstr "Seleccionar ruta"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_BUTTONSELECT.string.text
+msgid "~Select"
+msgstr "~Seleccionar"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_ACTUALVERSION.string.text
+msgid "Current version"
+msgstr "Versión actual"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_PREVIEW.string.text
+msgid "File Preview"
+msgstr "Previsualización del archivo"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_DEFAULT_DIRECTORY.string.text
+msgid "Default Directory"
+msgstr "Directorio predeterminado"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_PLACES_TITLE.string.text
+msgid "Places"
+msgstr "Lugares"
+
+#: iodlg.src#DLG_FPICKER_QUERYFOLDERNAME.FT_SVT_QUERYFOLDERNAME_DLG_NAME.fixedtext.text
+msgid "Na~me"
+msgstr "No~mbre"
+
+#: iodlg.src#DLG_FPICKER_QUERYFOLDERNAME.FL_SVT_QUERYFOLDERNAME_DLG_NAME.fixedline.text
+msgid "Create new folder"
+msgstr "Crear carpeta nueva"
+
+#: iodlg.src#RID_FILEOPEN_INVALIDFOLDER.string.text
+msgid "$name$ does not exist."
+msgstr "$name$ no existe."
+
+#: iodlg.src#RID_FILEOPEN_NOTEXISTENTFILE.string.text
+msgid ""
+"The file $name$ does not exist.\n"
+"Make sure you have entered the correct file name."
+msgstr ""
+"No existe el archivo $name$.\n"
+"Asegúrese de haber introducido el nombre correcto."
+
+#: iodlg.src#STR_FILTERNAME_ALL.string.text
+msgid "All files"
+msgstr "Todos los archivos"
+
+#: iodlg.src#STR_SVT_ALREADYEXISTOVERWRITE.string.text
+msgid ""
+"A file named \"$filename$\" already exists.\n"
+"\n"
+"Do you want to replace it?"
+msgstr ""
+"Ya existe un archivo llamado «$filename$».\n"
+"\n"
+"¿Quiere reemplazarlo?"
+
+#: iodlg.src#STR_SVT_NEW_FOLDER.string.text
+msgid "Folder"
+msgstr "Carpeta"
+
+#: iodlg.src#STR_SVT_NOREMOVABLEDEVICE.string.text
+msgid ""
+"No removable storage device detected.\n"
+"Make sure it is plugged in properly and try again."
+msgstr ""
+"No se ha detectado un dispositivo de almacenamiento extraíble.\n"
+"Asegúrese de que esté conectado correctamente y vuelva a intentarlo."
+
+#: iodlg.src#STR_SVT_ALLFORMATS.string.text
+msgid "All Formats"
+msgstr "Todos los formatos"
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_SERVERNAME.fixedtext.text
+msgid "Name"
+msgstr "Nombre"
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_SERVERTYPE.fixedtext.text
+msgid "Type"
+msgstr "Tipo"
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_HOST.fixedtext.text
+msgid "Host"
+msgstr "Host"
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_PORT.fixedtext.text
+msgid "Port"
+msgstr "Puerto"
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_PATH.fixedtext.text
+msgctxt "PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_PATH.fixedtext.text"
+msgid "Path"
+msgstr "Ruta"
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.CB_ADDPLACE_DAVS.checkbox.text
+msgid "Secured WebDAV (HTTPS)"
+msgstr "WebDAV seguro (HTTPS)"
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_SHARE.fixedtext.text
+msgid "Share"
+msgstr "Compartir"
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_SMBPATH.fixedtext.text
+msgctxt "PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_SMBPATH.fixedtext.text"
+msgid "Path"
+msgstr "Ruta"
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_CMIS_BINDING.fixedtext.text
+msgid "Binding URL"
+msgstr "URL vinculante"
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_CMIS_REPOSITORY.fixedtext.text
+msgid "Repository"
+msgstr "Repositorio"
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.LB_ADDPLACE_SERVERTYPE.1.stringlist.text
+msgid "WebDAV"
+msgstr "WebDAV"
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.LB_ADDPLACE_SERVERTYPE.2.stringlist.text
+msgid "FTP"
+msgstr "FTP"
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.LB_ADDPLACE_SERVERTYPE.3.stringlist.text
+msgid "SSH"
+msgstr "SSH"
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.LB_ADDPLACE_SERVERTYPE.4.stringlist.text
+msgid "Windows Share"
+msgstr "Recurso compartido de Windows"
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.LB_ADDPLACE_SERVERTYPE.5.stringlist.text
+msgid "CMIS (Atom Binding)"
+msgstr "CMIS (vinculación Atom)"
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_USERNAME.fixedtext.text
+msgid "Login"
+msgstr "Iniciar sesión"
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.BT_ADDPLACE_DELETE.pushbutton.text
+msgid "Delete"
+msgstr "Eliminar"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_AUTO_EXTENSION.string.text
+msgctxt "OfficeFilePicker.src#STR_SVT_FILEPICKER_AUTO_EXTENSION.string.text"
+msgid "~Automatic file name extension"
+msgstr "Extensión de archivo ~automática"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_PASSWORD.string.text
+msgid "Save with pass~word"
+msgstr "Guardar con c~ontraseña"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_FILTER_OPTIONS.string.text
+msgid "~Edit filter settings"
+msgstr "~Editar configuración de filtros"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_READONLY.string.text
+msgctxt "OfficeFilePicker.src#STR_SVT_FILEPICKER_READONLY.string.text"
+msgid "~Read-only"
+msgstr "Solo ~lectura"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_INSERT_AS_LINK.string.text
+msgid "~Link"
+msgstr "~Enlazar"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_SHOW_PREVIEW.string.text
+msgid "Pr~eview"
+msgstr "~Previsualizar"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_PLAY.string.text
+msgid "~Play"
+msgstr "~Reproducir"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_VERSION.string.text
+msgid "~Version:"
+msgstr "~Versión:"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_TEMPLATES.string.text
+msgid "S~tyles:"
+msgstr "Es~tilos:"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_IMAGE_TEMPLATE.string.text
+msgid "Style:"
+msgstr "Estilo:"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_SELECTION.string.text
+msgid "~Selection"
+msgstr "~Selección"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_FILTER_TITLE.string.text
+msgctxt "OfficeFilePicker.src#STR_SVT_FILEPICKER_FILTER_TITLE.string.text"
+msgid "File ~type:"
+msgstr "~Tipo de archivo:"
+
+#: OfficeFilePicker.src#STR_SVT_FOLDERPICKER_DEFAULT_TITLE.string.text
+msgid "Select Path"
+msgstr "Seleccionar ruta"
+
+#: OfficeFilePicker.src#STR_SVT_FOLDERPICKER_DEFAULT_DESCRIPTION.string.text
+msgid "Please select a folder."
+msgstr "Seleccione una carpeta."
diff --git a/source/es/framework/source/classes.po b/source/es/framework/source/classes.po
new file mode 100644
index 00000000000..3df2c2a40d3
--- /dev/null
+++ b/source/es/framework/source/classes.po
@@ -0,0 +1,194 @@
+#. extracted from framework/source/classes.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+framework%2Fsource%2Fclasses.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-06-14 01:07+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: resource.src#STR_MENU_ADDONS.string.text
+msgid "Add-Ons"
+msgstr "Complementos"
+
+#: resource.src#STR_MENU_ADDONHELP.string.text
+msgid "Add-~On Help"
+msgstr "Ayuda de c~omplementos"
+
+#: resource.src#STR_MENU_HEADFOOTALL.string.text
+msgid "All"
+msgstr "Todo"
+
+#: resource.src#STR_UPDATEDOC.string.text
+msgid "~Update"
+msgstr "Actuali~zar"
+
+#: resource.src#STR_CLOSEDOC_ANDRETURN.string.text
+msgid "~Close & Return to "
+msgstr "C~errar y volver a "
+
+#: resource.src#POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION.MENUITEM_TOOLBAR_VISIBLEBUTTON.menuitem.text
+msgid "Visible ~Buttons"
+msgstr "~Botones visibles"
+
+#: resource.src#POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION.MENUITEM_TOOLBAR_CUSTOMIZETOOLBAR.menuitem.text
+msgid "~Customize Toolbar..."
+msgstr "~Personalizar barra de herramientas..."
+
+#: resource.src#POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION.MENUITEM_TOOLBAR_DOCKTOOLBAR.menuitem.text
+msgid "~Dock Toolbar"
+msgstr "~Acoplar barra de herramientas"
+
+#: resource.src#POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION.MENUITEM_TOOLBAR_DOCKALLTOOLBAR.menuitem.text
+msgid "Dock ~All Toolbars"
+msgstr "Acoplar ~todas las barras de herramientas"
+
+#: resource.src#POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION.MENUITEM_TOOLBAR_LOCKTOOLBARPOSITION.menuitem.text
+msgid "~Lock Toolbar Position"
+msgstr "~Bloquear posición de la barra de herramientas"
+
+#: resource.src#POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION.MENUITEM_TOOLBAR_CLOSE.menuitem.text
+msgid "Close ~Toolbar"
+msgstr "Cerrar ~barra de herramientas"
+
+#: resource.src#STR_SAVECOPYDOC.string.text
+msgid "Save Copy ~as..."
+msgstr "Guardar copia ~como..."
+
+#: resource.src#STR_NODOCUMENT.string.text
+msgid "No Documents"
+msgstr "Sin documentos"
+
+#: resource.src#STR_TOOLBAR_TITLE_ADDON.string.text
+msgid "Add-On %num%"
+msgstr "Complemento %num%"
+
+#: resource.src#STR_STATUSBAR_LOGOTEXT.string.text
+msgid "A %PRODUCTNAME product by %OOOVENDOR"
+msgstr "%PRODUCTNAME es un producto de %OOOVENDOR"
+
+#: resource.src#DLG_LICENSE.FT_INFO1.fixedtext.text
+msgid "Please follow these steps to proceed with the installation:"
+msgstr "Siga estos pasos para completar la instalación:"
+
+#: resource.src#DLG_LICENSE.FT_INFO2_1.fixedtext.text
+msgid "1."
+msgstr "1."
+
+#: resource.src#DLG_LICENSE.FT_INFO2.fixedtext.text
+msgid "View the complete License Agreement. Please use the scroll bar or the '%PAGEDOWN' button in this dialog to view the entire license text."
+msgstr "Lea el Acuerdo de licencia completo. Utilice la barra de desplazamiento o el botón '%PAGEDOWN' de este diálogo para leer el texto completo de la licencia."
+
+#: resource.src#DLG_LICENSE.PB_PAGEDOWN.pushbutton.text
+msgid "Scroll Down"
+msgstr "Desplazamiento hacia abajo"
+
+#: resource.src#DLG_LICENSE.FT_INFO3_1.fixedtext.text
+msgid "2."
+msgstr "2."
+
+#: resource.src#DLG_LICENSE.FT_INFO3.fixedtext.text
+msgid "Accept the License Agreement."
+msgstr "Acepte el acuerdo de licencia."
+
+#: resource.src#DLG_LICENSE.LICENSE_ACCEPT.string.text
+msgid "~Accept"
+msgstr "~Aceptar"
+
+#: resource.src#DLG_LICENSE.LICENSE_NOTACCEPT.string.text
+msgid "Decline"
+msgstr "Declinar"
+
+#: resource.src#DLG_LICENSE.modaldialog.text
+msgid "License Agreement"
+msgstr "Acuerdo de licencia"
+
+#: resource.src#STR_FULL_DISC_RETRY_BUTTON.string.text
+msgid "Retry"
+msgstr "Reintentar"
+
+#: resource.src#STR_FULL_DISC_MSG.string.text
+msgid ""
+"%PRODUCTNAME could not save important internal information due to insufficient free disk space at the following location:\n"
+"%PATH\n"
+"\n"
+"You will not be able to continue working with %PRODUCTNAME without allocating more free disk space at that location.\n"
+"\n"
+"Press the 'Retry' button after you have allocated more free disk space to retry saving the data.\n"
+"\n"
+msgstr ""
+"%PRODUCTNAME no ha podido guardar información interna importante por falta de espacio suficiente en disco en la ubicación siguiente:\n"
+"%PATH\n"
+"\n"
+"A menos que asigne más espacio libre en dicha ubicación, no podrá seguir trabajando con %PRODUCTNAME.\n"
+"\n"
+"Pulse el botón 'Reintentar' cuando haya asignado más espacio libre para intentar guardar de nuevo los datos.\n"
+"\n"
+
+#: resource.src#STR_RESTORE_TOOLBARS.string.text
+msgid "~Reset"
+msgstr "~Restablecer"
+
+#: resource.src#STR_CORRUPT_UICFG_SHARE.string.text
+msgid ""
+"An error occurred while loading the user interface configuration data. The application will be terminated now.\n"
+"Please try to reinstall the application."
+msgstr ""
+"Ocurrió un error mientras se cargaban los datos de configuración de la interfaz de usuario. La aplicación se cerrará ahora.\n"
+"Pruebe a reinstalar la aplicación."
+
+#: resource.src#STR_CORRUPT_UICFG_USER.string.text
+msgid ""
+"An error occurred while loading the user interface configuration data. The application will be terminated now.\n"
+"Please try to remove your user profile for the application."
+msgstr ""
+"Ocurrió un error mientras se cargaban los datos de configuración de la interfaz de usuario. La aplicación se cerrará ahora.\n"
+"Intente eliminar su perfil de usuario para la aplicación."
+
+#: resource.src#STR_CORRUPT_UICFG_GENERAL.string.text
+msgid ""
+"An error occurred while loading the user interface configuration data. The application will be terminated now.\n"
+"Please try to remove your user profile for the application first or try to reinstall the application."
+msgstr ""
+"Ocurrió un error mientras se cargaban los datos de configuración de la interfaz de usuario. La aplicación se cerrará ahora.\n"
+"Intente eliminar su perfil de usuario para la aplicación o pruebe a reinstalar la aplicación."
+
+#: resource.src#STR_UNTITLED_DOCUMENT.string.text
+msgid "Untitled"
+msgstr "Sin título"
+
+#: resource.src#STR_LANGSTATUS_MULTIPLE_LANGUAGES.string.text
+msgid "Multiple Languages"
+msgstr "Idiomas múltiples"
+
+#: resource.src#STR_LANGSTATUS_NONE.string.text
+msgid "None (Do not check spelling)"
+msgstr "Ninguno (No corregir la ortografía)"
+
+#: resource.src#STR_RESET_TO_DEFAULT_LANGUAGE.string.text
+msgid "Reset to Default Language"
+msgstr "Restablecer al idioma predeterminado"
+
+#: resource.src#STR_LANGSTATUS_MORE.string.text
+msgid "More..."
+msgstr "Más..."
+
+#: resource.src#STR_SET_LANGUAGE_FOR_SELECTION.string.text
+msgid "Set Language for Selection"
+msgstr "Definir idioma para selección"
+
+#: resource.src#STR_SET_LANGUAGE_FOR_PARAGRAPH.string.text
+msgid "Set Language for Paragraph"
+msgstr "Definir idioma para parrafos"
+
+#: resource.src#STR_SET_LANGUAGE_FOR_ALL_TEXT.string.text
+msgid "Set Language for all Text"
+msgstr "Definir idioma para todo el texto"
diff --git a/source/es/framework/source/services.po b/source/es/framework/source/services.po
new file mode 100644
index 00000000000..96c30ab4927
--- /dev/null
+++ b/source/es/framework/source/services.po
@@ -0,0 +1,40 @@
+#. extracted from framework/source/services.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+framework%2Fsource%2Fservices.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-06-14 01:01+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: fwk_services.src#DLG_BACKING.STR_BACKING_CREATE.string.text
+msgid "Create a new document"
+msgstr "Crear un documento nuevo"
+
+#: fwk_services.src#DLG_BACKING.STR_BACKING_TEMPLATE.string.text
+msgid "~Templates..."
+msgstr "~Plantillas..."
+
+#: fwk_services.src#DLG_BACKING.STR_BACKING_FILE.string.text
+msgid "~Open..."
+msgstr "Ab~rir..."
+
+#: fwk_services.src#DLG_BACKING.STR_BACKING_EXTHELP.string.text
+msgid "Add new features to %PRODUCTNAME"
+msgstr "Añadir funciones nuevas a %PRODUCTNAME"
+
+#: fwk_services.src#DLG_BACKING.STR_BACKING_INFOHELP.string.text
+msgid "Get more information about %PRODUCTNAME"
+msgstr "Obtener más información sobre %PRODUCTNAME"
+
+#: fwk_services.src#DLG_BACKING.STR_BACKING_TPLREP.string.text
+msgid "Get more templates for %PRODUCTNAME"
+msgstr "Obtener más plantillas para %PRODUCTNAME"
diff --git a/source/es/helpcontent2/source/text/sbasic/guide.po b/source/es/helpcontent2/source/text/sbasic/guide.po
new file mode 100644
index 00000000000..f405c35d898
--- /dev/null
+++ b/source/es/helpcontent2/source/text/sbasic/guide.po
@@ -0,0 +1,614 @@
+#. extracted from helpcontent2/source/text/sbasic/guide.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsbasic%2Fguide.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"PO-Revision-Date: 2011-04-05 19:48+0200\n"
+"Last-Translator: Alexandro <jza@openoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: translation.xhp#tit.help.text
+msgid "Translation of Controls in the Dialog Editor"
+msgstr "Traducción de controles en el diálogo del editor."
+
+#: translation.xhp#bm_id8915372.help.text
+msgid "<bookmark_value>dialogs;translating</bookmark_value><bookmark_value>localizing dialogs</bookmark_value><bookmark_value>translating dialogs</bookmark_value>"
+msgstr "<bookmark_value>dialogos;traduciendo</bookmark_value><bookmark_value>diálogos de localización </bookmark_value><bookmark_value>diálogos de traducción</bookmark_value>"
+
+#: translation.xhp#hd_id3574896.help.text
+msgid "<variable id=\"translation\"><link href=\"text/sbasic/guide/translation.xhp\">Translation of Controls in the Dialog Editor</link></variable>"
+msgstr "<variable id=\"translation\"><link href=\"text/sbasic/guide/translation.xhp\">Traducción de controles en el diálogo del editor</link></variable>"
+
+#: translation.xhp#par_id4601940.help.text
+msgid "<ahelp hid=\".\">The Language toolbar in the Basic IDE dialog editor shows controls to enable and manage localizable dialogs.</ahelp>"
+msgstr "<ahelp hid=\".\">La barra de herramienta dentro del diálogo del editor en el IDE de Basic muestra controles para activar y administrar los diálogos localizados.</ahelp>"
+
+#: translation.xhp#par_id9538560.help.text
+msgid "By default, any dialog that you create only contains string resources for one language. You may want to create dialogs that automatically show localized strings according to the user's language settings."
+msgstr "Predeterminado, cualquier diálogo que creas solo contiene cadenas de recursos por un idioma. Quizas quieras crear diálogos que automaticamente muestra cadenas localizadas de acuerdo a la configuración del idioma por el usuario."
+
+#: translation.xhp#par_id6998809.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the language for the strings that you want to edit. Click the Manage Languages icon to add languages.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selecciona el idioma para la cadena que quieres editar. Haz clic en el icono de administrar idiomas para agregar un idioma.</ahelp>"
+
+#: translation.xhp#par_id71413.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click a language, then click Default to set the language as default, or click Delete to remove the language from the list.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Haz clic en el idioma, despues haz clic en el idioma como predeterminado, o haz clic en borrar para eliminar el idioma de la lista.</ahelp>"
+
+#: translation.xhp#par_id2924283.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog where you can add a language to the list.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abre un diálogo donde puedes agregar un idioma a la lista.</ahelp>"
+
+#: translation.xhp#par_id5781731.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a language in the list and click Delete to remove that language. When you remove all languages, the string resources for localizable dialogs are removed from all dialogs in the current library.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selecciona un idioma dentro de la lista y haz clic en borrar para eliminar ese lenguaje. Cuando eliminas todos los idiomas, la cadena de recursos para localizar los diálogo son eliminado de todo los diálogos dentro de la biblioteca actual.</ahelp>"
+
+#: translation.xhp#par_id6942045.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a language in the list and click Default to set the language as default language.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selecciona el idioma de la lista y haz clic en predeterminado para definir el idioma como predeterminado.</ahelp>"
+
+#: translation.xhp#par_id4721823.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">The default language will be used as a source for all other language strings.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Los idiomas predeterminado sera usado como fuente para otras cadenas de idiomas.</ahelp>"
+
+#: translation.xhp#par_id5806756.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Add UI languages for your dialog strings.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Agrega idiomas a la interfaz para tus cadenas en los diálogos.</ahelp>"
+
+#: translation.xhp#hd_id6596881.help.text
+msgid "To enable localizable dialogs"
+msgstr "Para habilitar la localización de diálogos "
+
+#: translation.xhp#par_id8750572.help.text
+msgid "In the Basic IDE dialog editor, open the Language toolbar choosing <item type=\"menuitem\">View - Toolbars - Language</item>. "
+msgstr "En el editor de diálogo en el IDE de Basic, abre la barra de idioma escogiendo <item type=\"menuitem\">Ver - Barra de Herramientas - Idiomas</item>."
+
+#: translation.xhp#par_id2224494.help.text
+msgid "If the current library already contains a localizable dialog, the Language toolbar is shown automatically."
+msgstr "Si la biblioteca actual ya tiene un diálogo localizado, la barra de idiomas es seleccionado automaticamente."
+
+#: translation.xhp#par_id7359233.help.text
+msgid "Click the <emph>Manage Languages</emph> icon <image id=\"img_id2526017\" src=\"cmd/sc_managelanguage.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2526017\">Manage Language icon</alt></image> on the Language toolbar or on the Toolbox bar."
+msgstr "Haz clic en el ícono de <emph>Administrar idiomas</emph> <image id=\"img_id2526017\" src=\"cmd/sc_managelanguage.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2526017\">ícono de administrar idiomas</alt></image> en la barra de idiomas o en la barra de herramientas."
+
+#: translation.xhp#par_id6549272.help.text
+msgid "You see the Manage User Interface Language dialog. The dialog manages languages for the current library. The name of the current library is shown on the title bar."
+msgstr "Si vez que en el diálogo de administracion de los idiomas para la interfaz de usuario. El diálogo administra idiomas para la biblioteca actual. El nombre de las bibliotecas actuales esta mostrada en la barra de título."
+
+#: translation.xhp#par_id6529740.help.text
+msgid "Click Add in the dialog to add a language entry. "
+msgstr "Haz clic en Agregar para agregar una entrada de idioma. "
+
+#: translation.xhp#par_id7811822.help.text
+msgid "This step enables all new dialogs to contain localizable string resources."
+msgstr "Estos pasos permite a todos los nuevos diálogos contener recursos de cadenas localizables,"
+
+#: translation.xhp#par_id9121982.help.text
+msgid "The first time you click Add, you see the Set Default User Interface Language dialog. The following times you click Add, this dialog has the name Add User Interface Language."
+msgstr "La primera vez que haga clic en Agregar, verá que el diálogo de Configurar la interfaz predeterminada de usuario. Las siguientes veces que haga clic en Agregar, este diálogo tendrá el nombre de Agregar idioma a la interfaz de usuario."
+
+#: translation.xhp#par_id3640247.help.text
+msgid "You can also change the default language in the Manage User Interface Language dialog."
+msgstr "Puedes tambien cambiar el idioma predeterminado en el diálogo de Administrar idioma de interfaz de usuario."
+
+#: translation.xhp#par_id3808404.help.text
+msgid "Select a language. "
+msgstr "Selecciona un idioma."
+
+#: translation.xhp#par_id4585100.help.text
+msgid "This adds string resources to contain the translated versions of all strings to the dialog properties. The set of dialog strings of the default language is copied to the new set of strings. Later, you can switch to the new language and then translate the strings."
+msgstr "Para agregar recursos de cadena que contienen las versiones traducidas de todas las cadeans en el diálogo de propiedades. Para configurar el diálogo de cadenas en el idioma predeterminado este es copiado en un nuevo set de cadenas. Despues podras cambiar al nuevo idioma y despues traducir la cadena."
+
+#: translation.xhp#par_id2394482.help.text
+msgid "Close the dialog or add additional languages."
+msgstr "Cierra el diálogo o agrega idiomas adicionales."
+
+#: translation.xhp#hd_id631733.help.text
+msgid "To edit localizable controls in your dialog"
+msgstr "Para editar los controles de localizacion en tu diálogo."
+
+#: translation.xhp#par_id2334665.help.text
+msgid "Once you have added the resources for localizable strings in your dialogs, you can select the current language from the Current Language listbox on the Language toolbar."
+msgstr "Una vez que hayas agregado los recursos a las cadenas localizadas en tus diálogos, podrás seleccionar el idioma actual de la lista de idiomas actuales en la barra de idiomas."
+
+#: translation.xhp#par_id8956572.help.text
+msgid "Switch the Current Language listbox to display the default language."
+msgstr "Cambia la lista actual de idiomas a los idiomas predeterminados."
+
+#: translation.xhp#par_id500808.help.text
+msgid "Insert any number of controls to your dialog and enter all strings you want."
+msgstr "Inserta cualquier numero de controlds para tu diálogo e ingresa todas las cadenas que quieras."
+
+#: translation.xhp#par_id8366649.help.text
+msgid "Select another language in the Current Language listbox."
+msgstr "Selecciona otro idioma en la lista de idiomas actuales."
+
+#: translation.xhp#par_id476393.help.text
+msgid "Using the control's property dialogs, edit all strings to the other language."
+msgstr "Usando el diálogo de propiedades de control, edita todas las cadenas a otros idiomas."
+
+#: translation.xhp#par_id2655720.help.text
+msgid "Repeat for all languages that you added."
+msgstr "Repite todos los idiomas que has agregado."
+
+#: translation.xhp#par_id3682058.help.text
+msgid "The user of your dialog will see the strings of the user interface language of the user's version of %PRODUCTNAME, if you did provide strings in that language. "
+msgstr "El usuario de tus diálogos verá las cadenas del idioma de interfaz de usaurio en la versión del usuario de %PRODUCTNAME, siempre y cuando hayas provisto la cadena para ese idioma. "
+
+#: translation.xhp#par_id5977965.help.text
+msgid "If no language matches the user's version, the user will see the default language strings. "
+msgstr "Si no hay un idioma que este en la versión del usuario, el usuario verá el idioma predeterminado. "
+
+#: translation.xhp#par_id3050325.help.text
+msgid "If the user has an older version of %PRODUCTNAME that does not know localizable string resources for Basic dialogs, the user will see the default language strings."
+msgstr "Si el usuario tiene una versión antigua de %PRODUCTNAME que no reconosca los recursos de cadeanas localizables para el diálogo de Basic, el usuario verá las cadenas en el idioma predeterminado."
+
+#: sample_code.xhp#tit.help.text
+msgid "Programming Examples for Controls in the Dialog Editor"
+msgstr "Ejemplos de programación de campos de control en el Editor de diálogos"
+
+#: sample_code.xhp#bm_id3155338.help.text
+msgid "<bookmark_value>programming examples for controls</bookmark_value><bookmark_value>dialogs;loading (example)</bookmark_value><bookmark_value>dialogs;displaying (example)</bookmark_value><bookmark_value>controls;reading or editing properties (example)</bookmark_value><bookmark_value>list boxes;removing entries from (example)</bookmark_value><bookmark_value>list boxes;adding entries to (example)</bookmark_value><bookmark_value>examples; programming controls</bookmark_value><bookmark_value>dialog editor;programming examples for controls</bookmark_value>"
+msgstr "<bookmark_value>ejemplos de programación;campos de control en el editor de diálogo</bookmark_value>"
+
+#: sample_code.xhp#hd_id3155338.1.help.text
+msgid "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Programming Examples for Controls in the Dialog Editor\">Programming Examples for Controls in the Dialog Editor</link></variable>"
+msgstr "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Programming Examples for Controls in the Dialog Editor\">Ejemplos de programación de campos de control en el Editor de diálogos</link></variable>"
+
+#: sample_code.xhp#par_id3153031.2.help.text
+msgid "The following examples are for a new <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"dialog\">dialog</link> called \"Dialog1\". Use the tools on the <emph>Toolbox</emph> bar in the dialog editor to create the dialog and add the following controls: a <emph>Check Box</emph> called \"CheckBox1\", a <emph>Label Field</emph> called \"Label1\", a <emph>Button</emph> called \"CommandButton1\", and a <emph>List Box</emph> called \"ListBox1\"."
+msgstr "Los siguientes ejemplos se aplican a un nuevo <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"diálogo\">diálogo</link> llamado \"Dialog1\". Utilice las herramientas de la barra <emph>Cuadro de herramientas</emph> del editor de diálogos para crear el diálogo y agregar los controles siguientes: una <emph>casilla de verificación</emph> denominada \"Casillaverificación1\", un <emph>campo de etiqueta</emph> denominado \"Etiqueta1\", un <emph>botón</emph> denominado \"Botóncomando1\" y un <emph>cuadro de lista</emph> denominado \"Cuadrolista1\"."
+
+#: sample_code.xhp#par_id3154141.3.help.text
+msgid "Be consistent with uppercase and lowercase letter when you attach a control to an object variable."
+msgstr "Utilice siempre el mismo patrón de mayúsculas y minúsculas cuando adjunte un campo de control a una variable de objeto."
+
+#: sample_code.xhp#hd_id3154909.4.help.text
+msgid "Global Function for Loading Dialogs"
+msgstr "Función global para cargar diálogos"
+
+#: sample_code.xhp#par_id3153193.73.help.text
+msgid "Function LoadDialog(Libname as String, DialogName as String, Optional oLibContainer)"
+msgstr "Function LoadDialog(NombreLib as String, NombreDiálogo as String, Opcional oLibContainer)"
+
+#: sample_code.xhp#par_id3145787.74.help.text
+msgid "Dim oLib as Object"
+msgstr "Dim oLib as Object"
+
+#: sample_code.xhp#par_id3148576.75.help.text
+msgid "Dim oLibDialog as Object"
+msgstr "Dim oLibDialog as Object"
+
+#: sample_code.xhp#par_id3153726.76.help.text
+msgid "Dim oRuntimeDialog as Object"
+msgstr "Dim oRuntimeDialog as Object"
+
+#: sample_code.xhp#par_id3149261.77.help.text
+msgid "If IsMissing(oLibContainer ) then"
+msgstr "If IsMissing(oLibContainer ) then"
+
+#: sample_code.xhp#par_id3148646.78.help.text
+msgid "oLibContainer = DialogLibraries"
+msgstr "oLibContainer = DialogLibraries"
+
+#: sample_code.xhp#par_id3151115.79.help.text
+msgid "End If"
+msgstr "End If"
+
+#: sample_code.xhp#par_id3146986.80.help.text
+msgid "oLibContainer.LoadLibrary(LibName)"
+msgstr "oLibContainer.LoadLibrary(NombLib)"
+
+#: sample_code.xhp#par_id3145366.81.help.text
+msgid "oLib = oLibContainer.GetByName(Libname)"
+msgstr "oLib = oLibContainer.GetByName(NombLib)"
+
+#: sample_code.xhp#par_id3145271.82.help.text
+msgid "oLibDialog = oLib.GetByName(DialogName)"
+msgstr "oLibDialog = oLib.GetByName(NombreDiálogo)"
+
+#: sample_code.xhp#par_id3144764.83.help.text
+msgid "oRuntimeDialog = CreateUnoDialog(oLibDialog)"
+msgstr "oRuntimeDialog = CreateUnoDialog(oLibDialog)"
+
+#: sample_code.xhp#par_id3153876.84.help.text
+msgid "LoadDialog() = oRuntimeDialog"
+msgstr "LoadDialog() = oRuntimeDialog"
+
+#: sample_code.xhp#par_id3156286.85.help.text
+msgid "End Function"
+msgstr "End Function"
+
+#: sample_code.xhp#hd_id3149412.18.help.text
+msgid "Displaying a Dialog"
+msgstr "Mostrar un diálogo"
+
+#: sample_code.xhp#par_id3145801.86.help.text
+msgid "rem global definition of variables"
+msgstr "rem definición global de variables"
+
+#: sample_code.xhp#par_id3150716.87.help.text
+msgid "Dim oDialog1 AS Object"
+msgstr "Dim oDialog1 AS Object"
+
+#: sample_code.xhp#par_id3154510.88.help.text
+msgid "Sub StartDialog1"
+msgstr "Sub StartDialog1"
+
+#: sample_code.xhp#par_id3146913.162.help.text
+msgctxt "sample_code.xhp#par_id3146913.162.help.text"
+msgid "BasicLibraries.LoadLibrary(\"Tools\")"
+msgstr "BasicLibraries.LoadLibrary(\"Tools\")"
+
+#: sample_code.xhp#par_id3150327.89.help.text
+msgctxt "sample_code.xhp#par_id3150327.89.help.text"
+msgid "oDialog1 = LoadDialog(\"Standard\", \"Dialog1\")"
+msgstr "oDialog1 = LoadDialog(\"Standard\", \"Dialog1\")"
+
+#: sample_code.xhp#par_id3155767.92.help.text
+msgctxt "sample_code.xhp#par_id3155767.92.help.text"
+msgid "oDialog1.Execute()"
+msgstr "oDialog1.Execute()"
+
+#: sample_code.xhp#par_id3149019.93.help.text
+msgctxt "sample_code.xhp#par_id3149019.93.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: sample_code.xhp#hd_id3150042.27.help.text
+msgid "Read or Edit Properties of Controls in the Program"
+msgstr "Leer o editar propiedades de los campos de control en el programa"
+
+#: sample_code.xhp#par_id3159267.136.help.text
+msgid "Sub Sample1"
+msgstr "Sub Sample1"
+
+#: sample_code.xhp#par_id3155335.163.help.text
+msgctxt "sample_code.xhp#par_id3155335.163.help.text"
+msgid "BasicLibraries.LoadLibrary(\"Tools\")"
+msgstr "BasicLibraries.LoadLibrary(\"Tools\")"
+
+#: sample_code.xhp#par_id3163808.137.help.text
+msgctxt "sample_code.xhp#par_id3163808.137.help.text"
+msgid "oDialog1 = LoadDialog(\"Standard\", \"Dialog1\")"
+msgstr "oDialog1 = LoadDialog(\"Standard\", \"Dialog1\")"
+
+#: sample_code.xhp#par_id3145232.138.help.text
+msgid "REM get dialog model"
+msgstr "REM obtener modelo de diálogo"
+
+#: sample_code.xhp#par_id3146316.139.help.text
+msgctxt "sample_code.xhp#par_id3146316.139.help.text"
+msgid "oDialog1Model = oDialog1.Model"
+msgstr "oDialog1Model = oDialog1.Model"
+
+#: sample_code.xhp#par_id3154021.140.help.text
+msgid "REM display text of Label1"
+msgstr "REM mostrar texto de Label1"
+
+#: sample_code.xhp#par_id3150301.141.help.text
+msgid "oLabel1 = oDialog1.GetControl(\"Label1\")"
+msgstr "oLabel1 = oDialog1.GetControl(\"Label1\")"
+
+#: sample_code.xhp#par_id3152584.142.help.text
+msgid "MsgBox oLabel1.Text"
+msgstr "MsgBox oLabel1.Text"
+
+#: sample_code.xhp#par_id3151277.143.help.text
+msgid "REM set new text for control Label1"
+msgstr "REM establecer texto nuevo para el campo de control Label1"
+
+#: sample_code.xhp#par_id3154119.144.help.text
+msgid "oLabel1.Text = \"New Files\""
+msgstr "oLabel1.Text = \"New Files\""
+
+#: sample_code.xhp#par_id3155115.145.help.text
+msgid "REM display model properties for the control CheckBox1"
+msgstr "REM mostrar propiedades de modelo para el campo de control CheckBox1"
+
+#: sample_code.xhp#par_id3166426.146.help.text
+msgid "oCheckBox1Model = oDialog1Model.CheckBox1"
+msgstr "oCheckBox1Model = oDialog1Model.CheckBox1"
+
+#: sample_code.xhp#par_id3153270.147.help.text
+msgid "MsgBox oCheckBox1Model.Dbg_Properties"
+msgstr "MsgBox oCheckBox1Model.Dbg_Properties"
+
+#: sample_code.xhp#par_id3149817.148.help.text
+msgid "REM set new state for CheckBox1 for model of control"
+msgstr "REM establecer estado nuevo para CheckBox1 para modelo del campo de control"
+
+#: sample_code.xhp#par_id3145134.149.help.text
+msgid "oCheckBox1Model.State = 1"
+msgstr "oCheckBox1Model.State = 1"
+
+#: sample_code.xhp#par_id3159102.150.help.text
+msgid "REM display model properties for control CommandButton1"
+msgstr "REM mostrar propiedades de modelo para el campo de control CommandButton1"
+
+#: sample_code.xhp#par_id3152777.151.help.text
+msgid "oCMD1Model = oDialog1Model.CommandButton1"
+msgstr "oCMD1Model = oDialog1Model.CommandButton1"
+
+#: sample_code.xhp#par_id3149209.152.help.text
+msgid "MsgBox oCMD1Model.Dbg_Properties"
+msgstr "MsgBox oCMD1Model.Dbg_Properties"
+
+#: sample_code.xhp#par_id3150368.153.help.text
+msgid "REM display properties of control CommandButton1"
+msgstr "REM mostrar propiedades del campo de control CommandButton1"
+
+#: sample_code.xhp#par_id3150883.154.help.text
+msgid "oCMD1 = oDialog1.GetControl(\"CommandButton1\")"
+msgstr "oCMD1 = oDialog1.GetControl(\"CommandButton1\")"
+
+#: sample_code.xhp#par_id3155380.155.help.text
+msgid "MsgBox oCMD1.Dbg_Properties"
+msgstr "MsgBox oCMD1.Dbg_Properties"
+
+#: sample_code.xhp#par_id3150201.156.help.text
+msgid "REM execute dialog"
+msgstr "REM ejecutar diálogo"
+
+#: sample_code.xhp#par_id3154485.157.help.text
+msgctxt "sample_code.xhp#par_id3154485.157.help.text"
+msgid "oDialog1.Execute()"
+msgstr "oDialog1.Execute()"
+
+#: sample_code.xhp#par_id3146115.158.help.text
+msgctxt "sample_code.xhp#par_id3146115.158.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: sample_code.xhp#hd_id3145387.55.help.text
+msgid "Add an Entry to a ListBox"
+msgstr "Añadir una entrada a un cuadro de lista"
+
+#: sample_code.xhp#par_id3155088.122.help.text
+msgid "Sub AddEntry"
+msgstr "Sub AddEntry"
+
+#: sample_code.xhp#par_id3154528.164.help.text
+msgctxt "sample_code.xhp#par_id3154528.164.help.text"
+msgid "BasicLibraries.LoadLibrary(\"Tools\")"
+msgstr "BasicLibraries.LoadLibrary(\"Tools\")"
+
+#: sample_code.xhp#par_id3159222.159.help.text
+msgctxt "sample_code.xhp#par_id3159222.159.help.text"
+msgid "oDialog1 = LoadDialog(\"Standard\", \"Dialog1\")"
+msgstr "oDialog1 = LoadDialog(\"Standard\", \"Dialog1\")"
+
+#: sample_code.xhp#par_id3148700.123.help.text
+msgid "REM adds a new entry to the ListBox"
+msgstr "REM añade una entrada nueva al cuadro de lista"
+
+#: sample_code.xhp#par_id3159173.124.help.text
+msgctxt "sample_code.xhp#par_id3159173.124.help.text"
+msgid "oDialog1Model = oDialog1.Model"
+msgstr "oDialog1Model = oDialog1.Model"
+
+#: sample_code.xhp#par_id3153305.125.help.text
+msgctxt "sample_code.xhp#par_id3153305.125.help.text"
+msgid "oListBox = oDialog1.GetControl(\"ListBox1\")"
+msgstr "oListBox = oDialog1.GetControl(\"ListBox1\")"
+
+#: sample_code.xhp#par_id3153914.126.help.text
+msgid "dim iCount as integer"
+msgstr "dim iContador as Integer"
+
+#: sample_code.xhp#par_id3151243.127.help.text
+msgid "iCount = oListbox.ItemCount"
+msgstr "iContador = oListbox.ItemCount"
+
+#: sample_code.xhp#par_id3144504.128.help.text
+msgid "oListbox.additem(\"New Item\" & iCount,0)"
+msgstr "oListbox.additem(\"New Item\" & iCount,0)"
+
+#: sample_code.xhp#par_id3149328.129.help.text
+msgctxt "sample_code.xhp#par_id3149328.129.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: sample_code.xhp#hd_id3147071.64.help.text
+msgid "Remove an Entry from a ListBox"
+msgstr "Eliminar una entrada de un cuadro de lista"
+
+#: sample_code.xhp#par_id3159095.130.help.text
+msgid "Sub RemoveEntry"
+msgstr "Sub EliminarEntrada"
+
+#: sample_code.xhp#par_id3154958.165.help.text
+msgctxt "sample_code.xhp#par_id3154958.165.help.text"
+msgid "BasicLibraries.LoadLibrary(\"Tools\")"
+msgstr "BasicLibraries.LoadLibrary(\"Tools\")"
+
+#: sample_code.xhp#par_id3149443.160.help.text
+msgctxt "sample_code.xhp#par_id3149443.160.help.text"
+msgid "oDialog1 = LoadDialog(\"Standard\", \"Dialog1\")"
+msgstr "oDialog1 = LoadDialog(\"Standard\", \"Dialog1\")"
+
+#: sample_code.xhp#par_id3153247.131.help.text
+msgid "REM remove the first entry from the ListBox"
+msgstr "REM eliminar la primera entrada del cuadro de lista"
+
+#: sample_code.xhp#par_id3151302.132.help.text
+msgctxt "sample_code.xhp#par_id3151302.132.help.text"
+msgid "oDialog1Model = oDialog1.Model"
+msgstr "oDialog1Model = oDialog1.Model"
+
+#: sample_code.xhp#par_id3153976.133.help.text
+msgctxt "sample_code.xhp#par_id3153976.133.help.text"
+msgid "oListBox = oDialog1.GetControl(\"ListBox1\")"
+msgstr "oListBox = oDialog1.GetControl(\"ListBox1\")"
+
+#: sample_code.xhp#par_id3155383.134.help.text
+msgid "oListbox.removeitems(0,1)"
+msgstr "oListbox.removeitems(0,1)"
+
+#: sample_code.xhp#par_id3150892.135.help.text
+msgctxt "sample_code.xhp#par_id3150892.135.help.text"
+msgid "end sub"
+msgstr "End Sub"
+
+#: show_dialog.xhp#tit.help.text
+msgid "Opening a Dialog With Program Code"
+msgstr "Mostrar un diálogo usando código de programa"
+
+#: show_dialog.xhp#bm_id3154140.help.text
+msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
+msgstr "<bookmark_value>activar-desactivar modulo/diálogo</bookmark_value><bookmark_value>diálogos;usando código del programa para mostrar (ejemplo)</bookmark_value><bookmark_value>ejemplos;mostrando diálogo usando código del programa</bookmark_value>"
+
+#: show_dialog.xhp#hd_id3154140.1.help.text
+msgid "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Opening a Dialog With Program Code\">Opening a Dialog With Program Code</link></variable>"
+msgstr "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Opening a Dialog With Program Code\">Mostrar un diálogo usando código de programa</link></variable>"
+
+#: show_dialog.xhp#par_id3145171.2.help.text
+msgid "In the <item type=\"productname\">%PRODUCTNAME</item> BASIC window for a dialog that you created, leave the dialog editor by clicking the name tab of the Module that the dialog is assigned to. The name tab is at the bottom of the window."
+msgstr "En la ventana de $[officename] BASIC de un diálogo que haya creado, salga del editor de diálogos pulsando la ficha del nombre del módulo al que está asignado el diálogo. La ficha de nombre se encuentra en la parte inferior de la ventana."
+
+#: show_dialog.xhp#par_id3153968.6.help.text
+msgid "Enter the following code for a subroutine called <emph>Dialog1Show</emph>. In this example, the name of the dialog that you created is \"Dialog1\":"
+msgstr "Escriba el código siguiente para una subrutina llamada <emph>MostrarDiálogo1</emph>. En este ejemplo, el nombre del diálogo que se ha creado es \"Diálogo1\":"
+
+#: show_dialog.xhp#par_id3156443.7.help.text
+msgctxt "show_dialog.xhp#par_id3156443.7.help.text"
+msgid "Sub Dialog1Show"
+msgstr "Sub Dialog1Show"
+
+#: show_dialog.xhp#par_id3148575.24.help.text
+msgctxt "show_dialog.xhp#par_id3148575.24.help.text"
+msgid "BasicLibraries.LoadLibrary(\"Tools\")"
+msgstr "BasicLibraries.LoadLibrary(\"Tools\")"
+
+#: show_dialog.xhp#par_id3152463.8.help.text
+msgid "oDialog1 = <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"LoadDialog\">LoadDialog</link>(\"Standard\", \"Dialog1\")"
+msgstr "oDialog1 = <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"LoadDialog\">LoadDialog</link>(\"Standard\", \"Dialog1\")"
+
+#: show_dialog.xhp#par_id3148646.14.help.text
+msgctxt "show_dialog.xhp#par_id3148646.14.help.text"
+msgid "oDialog1.Execute()"
+msgstr "oDialog1.Execute()"
+
+#: show_dialog.xhp#par_id3147349.15.help.text
+msgctxt "show_dialog.xhp#par_id3147349.15.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: show_dialog.xhp#par_id3152596.18.help.text
+msgid "Without using \"LoadDialog\" you can call the code as follows:"
+msgstr "Sin utilizar \"LoadDialog\" puede llamar al código de la manera siguiente:"
+
+#: show_dialog.xhp#par_id3163710.19.help.text
+msgctxt "show_dialog.xhp#par_id3163710.19.help.text"
+msgid "Sub Dialog1Show"
+msgstr "Sub Dialog1Show"
+
+#: show_dialog.xhp#par_id3146985.20.help.text
+msgid "DialogLibraries.LoadLibrary( \"Standard\" )"
+msgstr "DialogLibraries.LoadLibrary( \"Standard\" )"
+
+#: show_dialog.xhp#par_id3155418.21.help.text
+msgid "oDialog1 = CreateUnoDialog( DialogLibraries.Standard.Dialog1 )"
+msgstr "oDialog1 = CreateUnoDialog( DialogLibraries.Standard.Dialog1 )"
+
+#: show_dialog.xhp#par_id3154944.22.help.text
+msgctxt "show_dialog.xhp#par_id3154944.22.help.text"
+msgid "oDialog1.Execute()"
+msgstr "oDialog1.Execute()"
+
+#: show_dialog.xhp#par_id3145800.23.help.text
+msgctxt "show_dialog.xhp#par_id3145800.23.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: show_dialog.xhp#par_id3153157.16.help.text
+msgid "When you execute this code, \"Dialog1\" opens. To close the dialog, click the close button (x) on its title bar."
+msgstr "Cuando se ejecuta este código, se abre \"Dialog1\". Para cerrar el diálogo, haga clic en el icono de cierre (x) de esta barra de título."
+
+#: create_dialog.xhp#tit.help.text
+msgid "Creating a Basic Dialog"
+msgstr "Crear un diálogo de Basic"
+
+#: create_dialog.xhp#bm_id3149346.help.text
+msgid "<bookmark_value>dialogs;creating Basic dialogs</bookmark_value>"
+msgstr "<bookmark_value>diálogos;creando diálogos básicas</bookmark_value>"
+
+#: create_dialog.xhp#hd_id3149346.1.help.text
+msgid "<variable id=\"create_dialog\"><link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Creating a Basic Dialog\">Creating a Basic Dialog</link></variable>"
+msgstr "<variable id=\"create_dialog\"><link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Creating a Basic Dialog\">Crear un diálogo de Basic</link></variable>"
+
+#: create_dialog.xhp#par_id3163802.3.help.text
+msgid "Choose <emph>Tools - Macros - Organize Dialogs</emph>, and then click <emph>New</emph>."
+msgstr "Seleccione <emph>Herramientas - Macros - Organizar diálogos</emph> y haga clic en <emph>Nuevo</emph>."
+
+#: create_dialog.xhp#par_id3150447.11.help.text
+msgid "Enter a name for the dialog, and click OK. To rename the dialog later, right-click the name on the tab, and choose <emph>Rename</emph>. "
+msgstr "Escriba un nombre para el diálogo y haga clic en Aceptar. Para cambiar el nombre del diálogo posteriormente, con el botón derecho haga clic en el nombre de la ficha y seleccione <emph>Cambiar nombre</emph>. "
+
+#: create_dialog.xhp#par_idN1065F.help.text
+msgid "Click <emph>Edit</emph>. The Basic dialog editor opens and contains a blank dialog."
+msgstr "Haga clic en <emph>Editar</emph>. El editor de diálogos de Basic se abre con un diálogo vacío."
+
+#: create_dialog.xhp#par_id3153726.6.help.text
+msgid "If you do not see the <emph>Toolbox</emph> bar, click the arrow next to the <emph>Insert Controls </emph>icon to open the <emph>Toolbox</emph> bar."
+msgstr "Si no ve en pantalla la barra <emph>Cuadro de herramientas</emph>, para abrirla haga clic en la flecha junto al icono <emph>Insertar campos de control</emph><emph></emph>."
+
+#: create_dialog.xhp#par_id3148455.12.help.text
+msgid "Click a tool and then drag in the dialog to create the control."
+msgstr "Pulse en una herramienta y después arrastre el diálogo para crear el control."
+
+#: control_properties.xhp#tit.help.text
+msgid "Changing the Properties of Controls in the Dialog Editor"
+msgstr "Cambio de las propiedades de los campos de control en el Editor de diálogos"
+
+#: control_properties.xhp#bm_id3145786.help.text
+msgid "<bookmark_value>properties; controls in dialog editor</bookmark_value><bookmark_value>changing;control properties</bookmark_value><bookmark_value>controls;changing properties</bookmark_value><bookmark_value>dialog editor;changing control properties</bookmark_value>"
+msgstr "<bookmark_value>propiedades;controles del editor de diálogos</bookmark_value><bookmark_value>cambiar;propiedades de controles</bookmark_value><bookmark_value>controles;cambiar propiedades</bookmark_value><bookmark_value>editor de diálogos;cambiar propiedades de controles</bookmark_value>"
+
+#: control_properties.xhp#hd_id3145786.1.help.text
+msgid "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Changing the Properties of Controls in the Dialog Editor\">Changing the Properties of Controls in the Dialog Editor</link></variable>"
+msgstr "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Changing the Properties of Controls in the Dialog Editor\">Cambio de las propiedades de los campos de control en el Editor de diálogos</link></variable>"
+
+#: control_properties.xhp#par_id3147317.2.help.text
+msgid "You can set the properties of control that you add to a dialog. For example, you can change the color, name, and size of a button that you added. You can change most control properties when you create or edit a dialog. However, you can only change some properties at runtime."
+msgstr "Pueden establecerse las propiedades de los campos de control que se añaden a un diálogo. Por ejemplo, puede cambiar el color, nombre y tamaño de un botón. Cuando se crean o editan diálogos se pueden cambiar muchas propiedades del campo de control. Sin embargo, algunas propiedades sólo pueden cambiarse en tiempo de ejecución."
+
+#: control_properties.xhp#par_id3145749.3.help.text
+msgid "To change the properties of a control in design mode, right-click the control, and then choose <emph>Properties</emph>."
+msgstr "Para cambiar las propiedades de un campo de control en tiempo de diseño, pulse con el botón derecho en el campo de control y elija <emph>Propiedades</emph>."
+
+#: insert_control.xhp#tit.help.text
+msgid "Creating Controls in the Dialog Editor"
+msgstr "Creación de campos de control en el Editor de diálogos "
+
+#: insert_control.xhp#bm_id3149182.help.text
+msgid "<bookmark_value>controls; creating in the dialog editor</bookmark_value><bookmark_value>dialog editor;creating controls</bookmark_value>"
+msgstr "<bookmark_value>campos de control;crear en el editor de diálogos</bookmark_value><bookmark_value>editor de diálogos;crear campos de control</bookmark_value>"
+
+#: insert_control.xhp#hd_id3149182.1.help.text
+msgid "<variable id=\"insert_control\"><link href=\"text/sbasic/guide/insert_control.xhp\" name=\"Creating Controls in the Dialog Editor\">Creating Controls in the Dialog Editor</link></variable>"
+msgstr "<variable id=\"insert_control\"><link href=\"text/sbasic/guide/insert_control.xhp\" name=\"Creating Controls in the Dialog Editor\">Creación de campos de control en el Editor de diálogos </link></variable>"
+
+#: insert_control.xhp#par_id3146797.2.help.text
+msgid "Use the tools on the <emph>Toolbox </emph>of the BASIC dialog editor to add controls to your dialog."
+msgstr "Utilice las herramientas del <emph>Cuadro de herramientas </emph>del editor de diálogos BASIC para agregar controles al diálogo."
+
+#: insert_control.xhp#par_id3150276.7.help.text
+msgid "To open the <emph>Toolbox</emph>, click the arrow next to the <emph>Insert Controls</emph> icon on the <emph>Macro</emph> toolbar."
+msgstr "Para abrir el <emph>Cuadro de herramientas</emph>, haga clic en la flecha que hay junto al icono <emph>Insertar campos de control</emph> en la barra de herramientas <emph>Macro</emph>."
+
+#: insert_control.xhp#par_id3145068.3.help.text
+msgid "Click a tool on the toolbar, for example, <emph>Button</emph>."
+msgstr "Pulse una herramienta de la barra, por ejemplo <emph>Botón</emph>."
+
+#: insert_control.xhp#par_id3153360.4.help.text
+msgid "On the dialog, drag the button to the size you want."
+msgstr "Arrastre el botón hasta el tamaño que desee en el diálogo."
diff --git a/source/es/helpcontent2/source/text/sbasic/shared.po b/source/es/helpcontent2/source/text/sbasic/shared.po
new file mode 100644
index 00000000000..d9e41737574
--- /dev/null
+++ b/source/es/helpcontent2/source/text/sbasic/shared.po
@@ -0,0 +1,24818 @@
+#. extracted from helpcontent2/source/text/sbasic/shared.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsbasic%2Fshared.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"PO-Revision-Date: 2012-08-07 08:52+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 03120103.xhp#tit.help.text
+msgid "Str Function [Runtime]"
+msgstr "Función Str [Ejecución]"
+
+#: 03120103.xhp#bm_id3143272.help.text
+msgid "<bookmark_value>Str function</bookmark_value>"
+msgstr "<bookmark_value>Str;función</bookmark_value>"
+
+#: 03120103.xhp#hd_id3143272.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120103.xhp\" name=\"Str Function [Runtime]\">Str Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120103.xhp\" name=\"Str Function [Runtime]\">Función Str [Ejecución]</link>"
+
+#: 03120103.xhp#par_id3155100.2.help.text
+msgid "Converts a numeric expression into a string."
+msgstr "Convierte una expresión numérica en una cadena."
+
+#: 03120103.xhp#hd_id3109850.3.help.text
+msgctxt "03120103.xhp#hd_id3109850.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03120103.xhp#par_id3149497.4.help.text
+msgid "Str (Expression)"
+msgstr "Str (Expresión)"
+
+#: 03120103.xhp#hd_id3150040.5.help.text
+msgctxt "03120103.xhp#hd_id3150040.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03120103.xhp#par_id3146117.6.help.text
+msgctxt "03120103.xhp#par_id3146117.6.help.text"
+msgid "String"
+msgstr "Cadena"
+
+#: 03120103.xhp#hd_id3155805.7.help.text
+msgctxt "03120103.xhp#hd_id3155805.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03120103.xhp#par_id3149178.8.help.text
+msgid "<emph>Expression: </emph>Any numeric expression."
+msgstr "<emph>Expresión: </emph>Cualquier expresión numérica."
+
+#: 03120103.xhp#par_id3146958.9.help.text
+msgid "The <emph>Str</emph> function converts a numeric variable, or the result of a calculation into a string. Negative numbers are preceded by a minus sign. Positive numbers are preceded by a space (instead of the plus sign)."
+msgstr "La función <emph>Str</emph> convierte una variable numérica o el resultado de un cálculo en una cadena. Los números negativos están precedidos por un signo menos. Los números positivos están precedidos por un espacio (en lugar del signo más)."
+
+#: 03120103.xhp#hd_id3155419.10.help.text
+msgctxt "03120103.xhp#hd_id3155419.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03120103.xhp#par_id3149514.11.help.text
+msgid "Sub ExampleStr"
+msgstr "Sub EjemploStr"
+
+#: 03120103.xhp#par_id3150771.12.help.text
+msgctxt "03120103.xhp#par_id3150771.12.help.text"
+msgid "Dim iVar As Single"
+msgstr "Dim iVar As Single"
+
+#: 03120103.xhp#par_id3153626.13.help.text
+msgctxt "03120103.xhp#par_id3153626.13.help.text"
+msgid "Dim sVar As String"
+msgstr "Dim sVar As String"
+
+#: 03120103.xhp#par_id3145069.14.help.text
+msgctxt "03120103.xhp#par_id3145069.14.help.text"
+msgid "iVar = 123.123"
+msgstr "iVar = 123.123"
+
+#: 03120103.xhp#par_id3153897.15.help.text
+msgid "sVar = LTrim(Str(iVar))"
+msgstr "sVar = LTrim(Str(iVar))"
+
+#: 03120103.xhp#par_id3154924.16.help.text
+msgid "Msgbox sVar & chr(13) & Str(iVar)"
+msgstr "Msgbox sVar & chr(13) & Str(iVar)"
+
+#: 03120103.xhp#par_id3152811.17.help.text
+msgctxt "03120103.xhp#par_id3152811.17.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03100060.xhp#tit.help.text
+msgid "CDec Function [Runtime]"
+msgstr "Función CDec [Ejecución]"
+
+#: 03100060.xhp#bm_id863979.help.text
+msgid "<bookmark_value>CDec function</bookmark_value>"
+msgstr "<bookmark_value>Función CDec</bookmark_value>"
+
+#: 03100060.xhp#par_idN10548.help.text
+msgid "<link href=\"text/sbasic/shared/03100060.xhp\">CDec Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100060.xhp\">Función CDec [Ejecución]</link>"
+
+#: 03100060.xhp#par_idN10558.help.text
+msgid "Converts a string expression or numeric expression to a decimal expression."
+msgstr "Convierte una expresión de cadena o una expresión numérica en una expresión decimal."
+
+#: 03100060.xhp#par_idN1055B.help.text
+msgctxt "03100060.xhp#par_idN1055B.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03100060.xhp#par_idN105EA.help.text
+msgid "CDec(Expression)"
+msgstr "CDec(Expression)"
+
+#: 03100060.xhp#par_idN105ED.help.text
+msgctxt "03100060.xhp#par_idN105ED.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03100060.xhp#par_idN105F1.help.text
+msgid "Decimal number."
+msgstr "número decimal."
+
+#: 03100060.xhp#par_idN105F4.help.text
+msgctxt "03100060.xhp#par_idN105F4.help.text"
+msgid "Parameter:"
+msgstr "Parámetro:"
+
+#: 03100060.xhp#par_idN105F8.help.text
+msgctxt "03100060.xhp#par_idN105F8.help.text"
+msgid "Expression: Any string or numeric expression that you want to convert."
+msgstr "Expression: cualquier cadena o expresión numérica que desee convertir."
+
+#: 03103450.xhp#tit.help.text
+msgid "Global Statement [Runtime]"
+msgstr "Instrucción Global [Ejecución]"
+
+#: 03103450.xhp#bm_id3159201.help.text
+msgid "<bookmark_value>Global statement</bookmark_value>"
+msgstr "<bookmark_value>Global;instrucción</bookmark_value>"
+
+#: 03103450.xhp#hd_id3159201.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103450.xhp\" name=\"Global Statement [Runtime]\">Global Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103450.xhp\" name=\"Global Statement [Runtime]\">Instrucción Global [Ejecución]</link>"
+
+#: 03103450.xhp#par_id3149177.2.help.text
+msgid "Dimensions a variable or an array at the global level (that is, not within a subroutine or function), so that the variable and the array are valid in all libraries and modules for the current session."
+msgstr "Dimensiona una variable o una matriz a nivel global (es decir, no dentro de una subrutina o función) a fin de que sean válidas en todas las bibliotecas y módulos de la sesión actual."
+
+#: 03103450.xhp#hd_id3143270.3.help.text
+msgctxt "03103450.xhp#hd_id3143270.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03103450.xhp#par_id3150771.4.help.text
+msgid "Global VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
+msgstr "Global NombreVar[(inicio To final)] [As TipoVar][, NombreVar2[(inicio To final)] [As TipoVar][,...]]"
+
+#: 03103450.xhp#hd_id3156152.5.help.text
+msgctxt "03103450.xhp#hd_id3156152.5.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03103450.xhp#par_id3145315.6.help.text
+msgid "Global iGlobalVar As Integer"
+msgstr "Global iGlobalVar As Integer"
+
+#: 03103450.xhp#par_id3147531.7.help.text
+msgid "Sub ExampleGlobal"
+msgstr "Sub EjemploGlobal"
+
+#: 03103450.xhp#par_id3149670.8.help.text
+msgid "iGlobalVar = iGlobalVar + 1"
+msgstr "iGlobalVar = iGlobalVar + 1"
+
+#: 03103450.xhp#par_id3148552.9.help.text
+msgid "MsgBox iGlobalVar"
+msgstr "MsgBox iGlobalVar"
+
+#: 03103450.xhp#par_id3149457.10.help.text
+msgctxt "03103450.xhp#par_id3149457.10.help.text"
+msgid "End sub"
+msgstr "End sub"
+
+#: 03060200.xhp#tit.help.text
+msgid "Eqv Operator [Runtime]"
+msgstr "Operador Eqv [Ejecución]"
+
+#: 03060200.xhp#bm_id3156344.help.text
+msgid "<bookmark_value>Eqv operator (logical)</bookmark_value>"
+msgstr "<bookmark_value>Eqv;operadores lógicos</bookmark_value>"
+
+#: 03060200.xhp#hd_id3156344.1.help.text
+msgid "<link href=\"text/sbasic/shared/03060200.xhp\" name=\"Eqv Operator [Runtime]\">Eqv Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03060200.xhp\" name=\"Operador Eqv [Runtime]\">Operador Eqv [Ejecución]</link>"
+
+#: 03060200.xhp#par_id3149656.2.help.text
+msgid "Calculates the logical equivalence of two expressions."
+msgstr "Calcula la equivalencia lógica de dos expresiones."
+
+#: 03060200.xhp#hd_id3154367.3.help.text
+msgctxt "03060200.xhp#hd_id3154367.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03060200.xhp#par_id3154910.4.help.text
+msgid "Result = Expression1 Eqv Expression2"
+msgstr "Resultado = Expresión1 Eqv Expresión2"
+
+#: 03060200.xhp#hd_id3151043.5.help.text
+msgctxt "03060200.xhp#hd_id3151043.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03060200.xhp#par_id3150869.6.help.text
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the comparison."
+msgstr "<emph>Resultado:</emph> Cualquier variable numérica que contenga el resultado de la comparación."
+
+#: 03060200.xhp#par_id3150448.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to compare."
+msgstr "<emph>Expresión1, Expresión2:</emph> Las expresiones que desee comparar."
+
+#: 03060200.xhp#par_id3149562.8.help.text
+msgid "When testing for equivalence between Boolean expressions, the result is <emph>True</emph> if both expressions are either <emph>True</emph> or <emph>False</emph>."
+msgstr "Al comprobar la equivalencia entre expresiones lógicas, el resultado es <emph>True</emph> si éstas son ambas <emph>True</emph> o <emph>False</emph>."
+
+#: 03060200.xhp#par_id3154319.9.help.text
+msgid "In a bit-wise comparison, the Eqv operator only sets the corresponding bit in the result if a bit is set in both expressions, or in neither expression."
+msgstr "En una comparación entre bits, el operador Eqv sólo activa el bit correspondiente del resultado si éste se encuentra activado o desactivado en ambas expresiones."
+
+#: 03060200.xhp#hd_id3159154.10.help.text
+msgctxt "03060200.xhp#hd_id3159154.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03060200.xhp#par_id3147426.11.help.text
+msgid "Sub ExampleEqv"
+msgstr "Sub EjemploEqv"
+
+#: 03060200.xhp#par_id3155308.12.help.text
+msgctxt "03060200.xhp#par_id3155308.12.help.text"
+msgid "Dim A as Variant, B as Variant, C as Variant, D as Variant"
+msgstr "Dim A as Variant, B as Variant, C as Variant, D as Variant"
+
+#: 03060200.xhp#par_id3146986.13.help.text
+msgctxt "03060200.xhp#par_id3146986.13.help.text"
+msgid "Dim vOut as Variant"
+msgstr "Dim vOut as Variant"
+
+#: 03060200.xhp#par_id3147434.14.help.text
+msgctxt "03060200.xhp#par_id3147434.14.help.text"
+msgid "A = 10: B = 8: C = 6: D = Null"
+msgstr "A = 10: B = 8: C = 6: D = Null"
+
+#: 03060200.xhp#par_id3152462.15.help.text
+msgid "vOut = A > B Eqv B > C REM returns -1"
+msgstr "vOut = A > B Eqv B > C REM devuelve -1"
+
+#: 03060200.xhp#par_id3153191.16.help.text
+msgid "vOut = B > A Eqv B > C REM returns 0"
+msgstr "vOut = B > A Eqv B > C REM devuelve 0"
+
+#: 03060200.xhp#par_id3145799.17.help.text
+msgid "vOut = A > B Eqv B > D REM returns 0"
+msgstr "vOut = A > B Eqv B > D REM devuelve 0"
+
+#: 03060200.xhp#par_id3149412.18.help.text
+msgid "vOut = (B > D Eqv B > A) REM returns -1"
+msgstr "vOut = (B > D Eqv B > A) REM devuelve -1"
+
+#: 03060200.xhp#par_id3149959.19.help.text
+msgid "vOut = B Eqv A REM returns -3"
+msgstr "vOut = B Eqv A REM devuelve -3"
+
+#: 03060200.xhp#par_id3145646.20.help.text
+msgctxt "03060200.xhp#par_id3145646.20.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03020401.xhp#tit.help.text
+msgid "ChDir Statement [Runtime]"
+msgstr "Declaración ChDir [Ejecución]"
+
+#: 03020401.xhp#bm_id3150178.help.text
+msgid "<bookmark_value>ChDir statement</bookmark_value>"
+msgstr "<bookmark_value>sentencia ChDir</bookmark_value>"
+
+#: 03020401.xhp#hd_id3150178.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020401.xhp\" name=\"ChDir Statement [Runtime]\">ChDir Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020401.xhp\" name=\"Declaración ChDir [Runtime]\">Declaración ChDir [Runtime]</link>"
+
+#: 03020401.xhp#par_id3153126.2.help.text
+msgid "Changes the current directory or drive."
+msgstr "Cambia el directorio o unidad actuales."
+
+#: 03020401.xhp#par_id9783013.help.text
+msgid "This runtime statement currently does not work as documented. See <link href=\"http://www.openoffice.org/issues/show_bug.cgi?id=30692\">this issue</link> for more information."
+msgstr "Esta instrucción de ejecución no está funcionando como se indica en la documentación. Consulte <link href=\"http://www.openoffice.org/issues/show_bug.cgi?id=30692\">este problema</link> para obtener más información."
+
+#: 03020401.xhp#hd_id3154347.3.help.text
+msgctxt "03020401.xhp#hd_id3154347.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03020401.xhp#par_id3153897.4.help.text
+msgid "ChDir Text As String"
+msgstr "ChDir Texto As String"
+
+#: 03020401.xhp#hd_id3148664.5.help.text
+msgctxt "03020401.xhp#hd_id3148664.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03020401.xhp#par_id3150543.6.help.text
+msgid "<emph>Text:</emph> Any string expression that specifies the directory path or drive."
+msgstr "Texto: Cualquier expresión de cadena que especifique la ruta de acceso o unidad del directorio."
+
+#: 03020401.xhp#par_id3152598.7.help.text
+msgid "If you only want to change the current drive, enter the drive letter followed by a colon."
+msgstr "Si sólo desea cambiar la unidad actual, escriba la letra de la unidad seguida de un carácter de dos puntos."
+
+#: 03020401.xhp#hd_id3151116.8.help.text
+msgctxt "03020401.xhp#hd_id3151116.8.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03020401.xhp#par_id3153364.9.help.text
+msgid "Sub ExampleChDir"
+msgstr "Sub EjemploChDir"
+
+#: 03020401.xhp#par_id3147348.10.help.text
+msgctxt "03020401.xhp#par_id3147348.10.help.text"
+msgid "Dim sDir1 as String , sDir2 as String"
+msgstr "Dim sDir1 as String , sDir2 as String"
+
+#: 03020401.xhp#par_id3155308.11.help.text
+msgctxt "03020401.xhp#par_id3155308.11.help.text"
+msgid "sDir1 = \"c:\\Test\""
+msgstr "sDir1 = \"c:\\Test\""
+
+#: 03020401.xhp#par_id3154319.12.help.text
+msgctxt "03020401.xhp#par_id3154319.12.help.text"
+msgid "sDir2 = \"d:\\private\""
+msgstr "sDir2 = \"d:\\private\""
+
+#: 03020401.xhp#par_id3154944.13.help.text
+msgctxt "03020401.xhp#par_id3154944.13.help.text"
+msgid "ChDir( sDir1 )"
+msgstr "ChDir( sDir1 )"
+
+#: 03020401.xhp#par_id3151074.14.help.text
+msgctxt "03020401.xhp#par_id3151074.14.help.text"
+msgid "msgbox CurDir"
+msgstr "msgbox CurDir"
+
+#: 03020401.xhp#par_id3147124.15.help.text
+msgctxt "03020401.xhp#par_id3147124.15.help.text"
+msgid "ChDir( sDir2 )"
+msgstr "ChDir( sDir2 )"
+
+#: 03020401.xhp#par_id3148456.16.help.text
+msgctxt "03020401.xhp#par_id3148456.16.help.text"
+msgid "msgbox CurDir"
+msgstr "msgbox CurDir"
+
+#: 03020401.xhp#par_id3149581.17.help.text
+msgctxt "03020401.xhp#par_id3149581.17.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03100400.xhp#tit.help.text
+msgid "CDbl Function [Runtime]"
+msgstr "Función CDbl [Ejecución]"
+
+#: 03100400.xhp#bm_id3153750.help.text
+msgid "<bookmark_value>CDbl function</bookmark_value>"
+msgstr "<bookmark_value>CDbl;función</bookmark_value>"
+
+#: 03100400.xhp#hd_id3153750.1.help.text
+msgid "<link href=\"text/sbasic/shared/03100400.xhp\" name=\"CDbl Function [Runtime]\">CDbl Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100400.xhp\" name=\"CDbl Function [Runtime]\">Función CDbl [Ejecución]</link>"
+
+#: 03100400.xhp#par_id3149233.2.help.text
+msgid "Converts any numerical expression or string expression to a double type."
+msgstr "Convierte cualquier expresión de cadena o numérica en un tipo doble."
+
+#: 03100400.xhp#hd_id3149516.3.help.text
+msgctxt "03100400.xhp#hd_id3149516.3.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 03100400.xhp#par_id3156152.4.help.text
+msgid "CDbl (Expression)"
+msgstr "CDbl (Expresión)"
+
+#: 03100400.xhp#hd_id3153061.5.help.text
+msgctxt "03100400.xhp#hd_id3153061.5.help.text"
+msgid "Return value"
+msgstr "Valor de retorno:"
+
+#: 03100400.xhp#par_id3145068.6.help.text
+msgctxt "03100400.xhp#par_id3145068.6.help.text"
+msgid "Double"
+msgstr "Doble"
+
+#: 03100400.xhp#hd_id3154760.7.help.text
+msgctxt "03100400.xhp#hd_id3154760.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03100400.xhp#par_id3153897.8.help.text
+msgctxt "03100400.xhp#par_id3153897.8.help.text"
+msgid "<emph>Expression:</emph> Any string or numeric expression that you want to convert. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
+msgstr "<emph>Expresión:</emph> Cualquier expresión de cadena o numérica que desee convertir. Para convertir una expresión de cadena, el número debe introducirse como texto normal (\"123,5\") usando el formato numérico predeterminado del sistema operativo."
+
+#: 03100400.xhp#hd_id3148797.9.help.text
+msgctxt "03100400.xhp#hd_id3148797.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03100400.xhp#par_id3154217.10.help.text
+msgctxt "03100400.xhp#par_id3154217.10.help.text"
+msgid "Sub ExampleCountryConvert"
+msgstr "Sub EjemploConvPais"
+
+#: 03100400.xhp#par_id3147229.11.help.text
+msgctxt "03100400.xhp#par_id3147229.11.help.text"
+msgid "Msgbox CDbl(1234.5678)"
+msgstr "Msgbox CDbl(1234,5678)"
+
+#: 03100400.xhp#par_id3151042.12.help.text
+msgctxt "03100400.xhp#par_id3151042.12.help.text"
+msgid "Msgbox CInt(1234.5678)"
+msgstr "Msgbox CInt(1234,5678)"
+
+#: 03100400.xhp#par_id3150616.13.help.text
+msgctxt "03100400.xhp#par_id3150616.13.help.text"
+msgid "Msgbox CLng(1234.5678)"
+msgstr "Msgbox CLng(1234,5678)"
+
+#: 03100400.xhp#par_id3153969.14.help.text
+msgctxt "03100400.xhp#par_id3153969.14.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03131500.xhp#tit.help.text
+msgid "CreateUnoStruct Function [Runtime]"
+msgstr "Función CreateUnoStruct [Ejecución]"
+
+#: 03131500.xhp#bm_id3150499.help.text
+msgid "<bookmark_value>CreateUnoStruct function</bookmark_value>"
+msgstr "<bookmark_value>CreateUnoStruct;función</bookmark_value>"
+
+#: 03131500.xhp#hd_id3150499.1.help.text
+msgid "<link href=\"text/sbasic/shared/03131500.xhp\" name=\"CreateUnoStruct Function [Runtime]\">CreateUnoStruct Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131500.xhp\" name=\"CreateUnoStruct Function [Runtime]\">Función CreateUnoStruct [Ejecución]</link>"
+
+#: 03131500.xhp#par_id3150713.2.help.text
+msgid "<ahelp hid=\".\">Creates an instance of a Uno structure type.</ahelp>"
+msgstr "<ahelp hid=\".\">Crea un ejemplo de estructura de tipo Uno.</ahelp>"
+
+#: 03131500.xhp#par_id3147226.3.help.text
+msgid "Use the following structure for your statement:"
+msgstr "Use la estructura siguiente para la instrucción:"
+
+#: 03131500.xhp#par_id3149177.4.help.text
+msgid "Dim oStruct as new com.sun.star.beans.Property"
+msgstr "Dim oStruct as new com.sun.star.beans.Property"
+
+#: 03131500.xhp#hd_id3156153.5.help.text
+msgctxt "03131500.xhp#hd_id3156153.5.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03131500.xhp#par_id3155341.6.help.text
+msgid "oStruct = CreateUnoStruct( Uno type name )"
+msgstr "oStruct = CreateUnoStruct( nombre de tipo Uno )"
+
+#: 03131500.xhp#hd_id3145316.7.help.text
+msgctxt "03131500.xhp#hd_id3145316.7.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03131500.xhp#par_id3149762.8.help.text
+msgid "oStruct = CreateUnoStruct( \"com.sun.star.beans.Property\" )"
+msgstr "oStruct = CreateUnoStruct( \"com.sun.star.beans.Property\" )"
+
+#: 03090403.xhp#tit.help.text
+msgid "Declare Statement [Runtime]"
+msgstr "Instrucción Declare [Ejecución]"
+
+#: 03090403.xhp#bm_id3148473.help.text
+msgid "<bookmark_value>Declare statement</bookmark_value>"
+msgstr "<bookmark_value>Declare;instrucción</bookmark_value>"
+
+#: 03090403.xhp#hd_id3148473.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare Statement [Runtime]\">Declare Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare Statement [Runtime]\">Instrucción Declare [Ejecución]</link>"
+
+#: 03090403.xhp#bm_id3145316.help.text
+msgid "<bookmark_value>DLL (Dynamic Link Library)</bookmark_value>"
+msgstr "<bookmark_value>DLL (Biblioteca de enlace dinámico)</bookmark_value>"
+
+#: 03090403.xhp#par_id3145316.2.help.text
+msgid "Declares and defines a subroutine in a DLL file that you want to execute from $[officename] Basic."
+msgstr "Declara y define una subrutina en un archivo DLL que se desee ejecutar desde $[officename] Basic."
+
+#: 03090403.xhp#par_id3146795.3.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary\">FreeLibrary</link>"
+msgstr "Consulte también: <link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary\">FreeLibrary</link>"
+
+#: 03090403.xhp#hd_id3156344.4.help.text
+msgctxt "03090403.xhp#hd_id3156344.4.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03090403.xhp#par_id3148664.5.help.text
+msgid "Declare {Sub | Function} Name Lib \"Libname\" [Alias \"Aliasname\"] [Parameter] [As Type]"
+msgstr "Declare {Sub | Function} Nombre Lib \"NombreBiblioteca\" [Alias \"NombreAlias\"] [Parámetro] [As Tipo]"
+
+#: 03090403.xhp#hd_id3153360.6.help.text
+msgctxt "03090403.xhp#hd_id3153360.6.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03090403.xhp#par_id3154140.8.help.text
+msgid "<emph>Name:</emph> A different name than defined in the DLL, to call the subroutine from $[officename] Basic."
+msgstr "<emph>Nombre:</emph> nombre distinto al definido en la DLL para llamar a la subrutina desde $[officename] Basic."
+
+#: 03090403.xhp#par_id3150870.9.help.text
+msgid "<emph>Aliasname</emph>: Name of the subroutine as defined in the DLL."
+msgstr "<emph>NombreAlias</emph>: Nombre de la subrutina como se define en la DLL."
+
+#: 03090403.xhp#par_id3154684.10.help.text
+msgid "<emph>Libname:</emph> File or system name of the DLL. This library is automatically loaded the first time the function is used."
+msgstr "<emph>NombreBiblioteca:</emph> Archivo o nombre del sistema de la DLL. Esta biblioteca se carga automáticamente la primera vez que se utiliza la función."
+
+#: 03090403.xhp#par_id3148452.11.help.text
+msgid "<emph>Argumentlist:</emph> List of parameters representing arguments that are passed to the procedure when it is called. The type and number of parameters is dependent on the executed procedure."
+msgstr "<emph>ListaArgumentos:</emph> lista de parámetros que representan argumentos que se pasan al procedimiento cuando se accede a él. El tipo y número de parámetros depende del procedimiento que se ejecute."
+
+#: 03090403.xhp#par_id3147289.12.help.text
+msgid "<emph>Type:</emph> Defines the data type of the value that is returned by a function procedure. You can exclude this parameter if a type-declaration character is entered after the name."
+msgstr "<emph>Tipo:</emph> define el tipo de datos del valor que devuelve un procedimiento de función. Puede excluir este parámetro si se introduce un carácter de declaración de tipo después del nombre."
+
+#: 03090403.xhp#par_id3146922.13.help.text
+msgid "To pass a parameter to a subroutine as a value instead of as a reference, the parameter must be indicated by the keyword <emph>ByVal</emph>."
+msgstr "Para pasar un parámetro a una subrutina como valor en lugar de como referencia, el parámetro debe estar indicado con la palabra clave <emph>ByVal</emph>."
+
+#: 03090403.xhp#hd_id3153951.14.help.text
+msgctxt "03090403.xhp#hd_id3153951.14.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03090403.xhp#par_id3154320.15.help.text
+msgctxt "03090403.xhp#par_id3154320.15.help.text"
+msgid "Declare Sub MyMessageBeep Lib \"user32.dll\" Alias \"MessageBeep\" ( long )"
+msgstr "Declare Sub MyMessageBeep Lib \"user32.dll\" Alias \"PitidoMensaje\" ( long )"
+
+#: 03090403.xhp#par_id3150417.17.help.text
+msgctxt "03090403.xhp#par_id3150417.17.help.text"
+msgid "Sub ExampleDeclare"
+msgstr "Sub EjemploDeclare"
+
+#: 03090403.xhp#par_id3149959.18.help.text
+msgctxt "03090403.xhp#par_id3149959.18.help.text"
+msgid "Dim lValue As Long"
+msgstr "Dim lValor As Long"
+
+#: 03090403.xhp#par_id3145647.19.help.text
+msgctxt "03090403.xhp#par_id3145647.19.help.text"
+msgid "lValue = 5000"
+msgstr "lValor = 5000"
+
+#: 03090403.xhp#par_id3145801.20.help.text
+msgctxt "03090403.xhp#par_id3145801.20.help.text"
+msgid "MyMessageBeep( lValue )"
+msgstr "MiPitidoMensaje( lValor )"
+
+#: 03090403.xhp#par_id3145253.21.help.text
+msgctxt "03090403.xhp#par_id3145253.21.help.text"
+msgid "FreeLibrary(\"user32.dll\" )"
+msgstr "FreeLibrary(\"user32.dll\" )"
+
+#: 03090403.xhp#par_id3149402.22.help.text
+msgctxt "03090403.xhp#par_id3149402.22.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03100300.xhp#tit.help.text
+msgid "CDate Function [Runtime]"
+msgstr "Función CDate [Ejecución]"
+
+#: 03100300.xhp#bm_id3150772.help.text
+msgid "<bookmark_value>CDate function</bookmark_value>"
+msgstr "<bookmark_value>CDate;función</bookmark_value>"
+
+#: 03100300.xhp#hd_id3150772.1.help.text
+msgid "<link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate Function [Runtime]\">CDate Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate Function [Runtime]\">Función CDate [Ejecución]</link>"
+
+#: 03100300.xhp#par_id3150986.2.help.text
+msgid "Converts any string or numeric expression to a date value."
+msgstr "Convierte cualquier cadena de caracteres o expresión numérica en un valor de fecha."
+
+#: 03100300.xhp#hd_id3148944.3.help.text
+msgctxt "03100300.xhp#hd_id3148944.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03100300.xhp#par_id3148947.4.help.text
+msgid "CDate (Expression)"
+msgstr "CDate (Expresión)"
+
+#: 03100300.xhp#hd_id3148552.5.help.text
+msgctxt "03100300.xhp#hd_id3148552.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03100300.xhp#par_id3159414.6.help.text
+msgctxt "03100300.xhp#par_id3159414.6.help.text"
+msgid "Date"
+msgstr "Fecha"
+
+#: 03100300.xhp#hd_id3153525.7.help.text
+msgctxt "03100300.xhp#hd_id3153525.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03100300.xhp#par_id3150359.8.help.text
+msgid "<emph>Expression:</emph> Any string or numeric expression that you want to convert."
+msgstr "<emph>Expresión:</emph> Cualquier expresión de cadena o numérica que desee convertir."
+
+#: 03100300.xhp#par_id3125864.9.help.text
+msgid "When you convert a string expression, the date and time must be entered in the format MM.DD.YYYY HH.MM.SS, as defined by the <emph>DateValue</emph> and <emph>TimeValue</emph> function conventions. In numeric expressions, values to the left of the decimal represent the date, beginning from December 31, 1899. Values to the right of the decimal represent the time."
+msgstr "Cuando se convierte una expresión de cadena la fecha y la hora deben introducirse en el formato MM.DD.AAAA HH.MM.SS, como lo definen las convenciones de las funciones <emph>DateValue</emph> y <emph>TimeValue</emph>. En las expresiones numéricas, los valores a la izquierda del decimal representan la fecha, empezando desde el 31 de diciembre de 1899. Los valores a la derecha del decimal representan la hora."
+
+#: 03100300.xhp#hd_id3156422.10.help.text
+msgctxt "03100300.xhp#hd_id3156422.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03100300.xhp#par_id3153969.11.help.text
+msgid "sub ExampleCDate"
+msgstr "sub EjemploCDate"
+
+#: 03100300.xhp#par_id3159254.12.help.text
+msgid "MsgBox cDate(1000.25) REM 09.26.1902 06:00:00"
+msgstr "MsgBox cDate(1000.25) REM 09.26.1902 06:00:00"
+
+#: 03100300.xhp#par_id3155133.13.help.text
+msgid "MsgBox cDate(1001.26) REM 09.27.1902 06:14:24"
+msgstr "MsgBox cDate(1001.26) REM 09.27.1902 06:14:24"
+
+#: 03100300.xhp#par_id3153140.14.help.text
+msgctxt "03100300.xhp#par_id3153140.14.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03103900.xhp#tit.help.text
+msgid "FindPropertyObject Function [Runtime]"
+msgstr "Función FindPropertyObject [Ejecución]"
+
+#: 03103900.xhp#bm_id3146958.help.text
+msgid "<bookmark_value>FindPropertyObject function</bookmark_value>"
+msgstr "<bookmark_value>FindPropertyObject;función</bookmark_value>"
+
+#: 03103900.xhp#hd_id3146958.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject Function [Runtime]\">FindPropertyObject Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject Function [Runtime]\">Función FindPropertyObject [Ejecución]</link>"
+
+#: 03103900.xhp#par_id3154285.2.help.text
+msgid "Enables objects to be addressed at run-time as a string parameter using the object name."
+msgstr "Permite direccionar los objetos en tiempo de ejecución como parámetros de cadena usando el nombre del objeto."
+
+#: 03103900.xhp#par_id3147573.3.help.text
+msgid "For instance, the command:"
+msgstr "Por ejemplo, el comando:"
+
+#: 03103900.xhp#par_id3145610.4.help.text
+msgctxt "03103900.xhp#par_id3145610.4.help.text"
+msgid "MyObj.Prop1.Command = 5"
+msgstr "MiObj.Prop1.Comando = 5"
+
+#: 03103900.xhp#par_id3147265.5.help.text
+msgid "corresponds to the following command block:"
+msgstr "corresponde al siguiente bloque de comando:"
+
+#: 03103900.xhp#par_id3153896.6.help.text
+msgctxt "03103900.xhp#par_id3153896.6.help.text"
+msgid "Dim ObjVar as Object"
+msgstr "Dim VarObj as Object"
+
+#: 03103900.xhp#par_id3148664.7.help.text
+msgctxt "03103900.xhp#par_id3148664.7.help.text"
+msgid "Dim ObjProp as Object"
+msgstr "Dim PropObj as Object"
+
+#: 03103900.xhp#par_id3150792.8.help.text
+msgctxt "03103900.xhp#par_id3150792.8.help.text"
+msgid "ObjName As String = \"MyObj\""
+msgstr "NombreObj As String = \"MiObj\""
+
+#: 03103900.xhp#par_id3154365.9.help.text
+msgctxt "03103900.xhp#par_id3154365.9.help.text"
+msgid "ObjVar = FindObject( ObjName As String )"
+msgstr "VarObj = FindObject( NombreObj As String )"
+
+#: 03103900.xhp#par_id3148453.10.help.text
+msgctxt "03103900.xhp#par_id3148453.10.help.text"
+msgid "PropName As String = \"Prop1\""
+msgstr "NombreProp As String = \"Prop1\""
+
+#: 03103900.xhp#par_id3150449.11.help.text
+msgctxt "03103900.xhp#par_id3150449.11.help.text"
+msgid "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
+msgstr "PropObj = FindPropertyObject( VarObj, NombreProp As String )"
+
+#: 03103900.xhp#par_id3159152.12.help.text
+msgctxt "03103900.xhp#par_id3159152.12.help.text"
+msgid "ObjProp.Command = 5"
+msgstr "PropObj.Comando = 5"
+
+#: 03103900.xhp#par_id3156214.13.help.text
+msgid "To dynamically create Names at run-time, use:"
+msgstr "Para crear nombres dinámicamente en tiempo de ejecución, use:"
+
+#: 03103900.xhp#par_id3154686.14.help.text
+msgid "\"TextEdit1\" to TextEdit5\" in a loop to create five names."
+msgstr "\"TextEdit1\" to TextEdit5\" en un bucle para crear cinco nombres."
+
+#: 03103900.xhp#par_id3150868.15.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject\">FindObject</link>"
+msgstr "Consulte también: <link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject\">FindObject</link>"
+
+#: 03103900.xhp#hd_id3147287.16.help.text
+msgctxt "03103900.xhp#hd_id3147287.16.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03103900.xhp#par_id3149560.17.help.text
+msgid "FindPropertyObject( ObjVar, PropName As String )"
+msgstr "FindPropertyObject( VarObj, NombreProp As String )"
+
+#: 03103900.xhp#hd_id3150012.18.help.text
+msgctxt "03103900.xhp#hd_id3150012.18.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03103900.xhp#par_id3109839.19.help.text
+msgid "<emph>ObjVar:</emph> Object variable that you want to dynamically define at run-time."
+msgstr "<emph>VarObj:</emph> Variable de object que se desea definir dinámicamente en tiempo de ejecución."
+
+#: 03103900.xhp#par_id3153363.20.help.text
+msgid "<emph>PropName:</emph> String that specifies the name of the property that you want to address at run-time."
+msgstr "<emph>NombreProp:</emph> Cadena que especifica el nombre de la propiedad que se desea direccionar en tiempo de ejecución."
+
+#: 03103800.xhp#tit.help.text
+msgid "FindObject Function [Runtime]"
+msgstr "Función FindObject [Ejecución]"
+
+#: 03103800.xhp#bm_id3145136.help.text
+msgid "<bookmark_value>FindObject function</bookmark_value>"
+msgstr "<bookmark_value>FindObject;función</bookmark_value>"
+
+#: 03103800.xhp#hd_id3145136.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject Function [Runtime]\">FindObject Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject Function [Runtime]\">Función FindObject [Ejecución]</link>"
+
+#: 03103800.xhp#par_id3155341.2.help.text
+msgid "Enables an object to be addressed at run-time as a string parameter through the object name."
+msgstr "Permite direccionar un objeto en tiempo de ejecución como parámetro de cadena usando su nombre."
+
+#: 03103800.xhp#par_id3150669.3.help.text
+msgid "For example, the following command:"
+msgstr "Por ejemplo, el comando siguiente:"
+
+#: 03103800.xhp#par_id3148473.4.help.text
+msgctxt "03103800.xhp#par_id3148473.4.help.text"
+msgid "MyObj.Prop1.Command = 5"
+msgstr "MiObj.Prop1.Comando = 5"
+
+#: 03103800.xhp#par_id3156023.5.help.text
+msgid "corresponds to the command block:"
+msgstr "corresponde al bloque de comando:"
+
+#: 03103800.xhp#par_id3153896.6.help.text
+msgctxt "03103800.xhp#par_id3153896.6.help.text"
+msgid "Dim ObjVar as Object"
+msgstr "Dim VarObj as Object"
+
+#: 03103800.xhp#par_id3154760.7.help.text
+msgctxt "03103800.xhp#par_id3154760.7.help.text"
+msgid "Dim ObjProp as Object"
+msgstr "Dim PropObj as Object"
+
+#: 03103800.xhp#par_id3145069.8.help.text
+msgctxt "03103800.xhp#par_id3145069.8.help.text"
+msgid "ObjName As String = \"MyObj\""
+msgstr "NombreObj As String = \"MiObj\""
+
+#: 03103800.xhp#par_id3154939.9.help.text
+msgctxt "03103800.xhp#par_id3154939.9.help.text"
+msgid "ObjVar = FindObject( ObjName As String )"
+msgstr "VarObj = FindObject( NombreObj As String )"
+
+#: 03103800.xhp#par_id3150793.10.help.text
+msgctxt "03103800.xhp#par_id3150793.10.help.text"
+msgid "PropName As String = \"Prop1\""
+msgstr "NombreProp As String = \"Prop1\""
+
+#: 03103800.xhp#par_id3154141.11.help.text
+msgctxt "03103800.xhp#par_id3154141.11.help.text"
+msgid "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
+msgstr "PropObj = FindPropertyObject( VarObj, NombreProp As String )"
+
+#: 03103800.xhp#par_id3156424.12.help.text
+msgctxt "03103800.xhp#par_id3156424.12.help.text"
+msgid "ObjProp.Command = 5"
+msgstr "PropObj.Comando = 5"
+
+#: 03103800.xhp#par_id3145420.13.help.text
+msgid "This allows names to be dynamically created at run-time. For example:"
+msgstr "Esto permite crear nombres dinámicamente en tiempo de ejecución. Por ejemplo:"
+
+#: 03103800.xhp#par_id3153104.14.help.text
+msgid "\"TextEdit1\" to TextEdit5\" in a loop to create five control names."
+msgstr "\"TextEdit1\" to TextEdit5\" en un bucle para crear cinco nombres de control."
+
+#: 03103800.xhp#par_id3150767.15.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject\">FindPropertyObject</link>"
+msgstr "Consulte también: <link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject\">FindPropertyObject</link>"
+
+#: 03103800.xhp#hd_id3150868.16.help.text
+msgctxt "03103800.xhp#hd_id3150868.16.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03103800.xhp#par_id3151042.17.help.text
+msgid "FindObject( ObjName As String )"
+msgstr "FindObject( NombreObj As String )"
+
+#: 03103800.xhp#hd_id3159254.18.help.text
+msgctxt "03103800.xhp#hd_id3159254.18.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03103800.xhp#par_id3150439.19.help.text
+msgid "<emph>ObjName: </emph>String that specifies the name of the object that you want to address at run-time."
+msgstr "<emph>NombreObj:</emph> Cadena que especifica el nombre del objeto que se desea direccionar en tiempo de ejecución."
+
+#: 03050300.xhp#tit.help.text
+msgid "Error Function [Runtime]"
+msgstr "Función Error [Ejecución]"
+
+#: 03050300.xhp#bm_id3159413.help.text
+msgid "<bookmark_value>Error function</bookmark_value>"
+msgstr "<bookmark_value>Función error;función</bookmark_value>"
+
+#: 03050300.xhp#hd_id3159413.1.help.text
+msgid "<link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error Function [Runtime]\">Error Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03050300.xhp\" name=\"Función Error [Runtime]\">Función Error [Ejecución]</link>"
+
+#: 03050300.xhp#par_id3148663.2.help.text
+msgid "Returns the error message that corresponds to a given error code."
+msgstr "Devuelve el mensaje de error que corresponde a un código de error dado."
+
+#: 03050300.xhp#hd_id3153379.3.help.text
+msgctxt "03050300.xhp#hd_id3153379.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03050300.xhp#par_id3154366.4.help.text
+msgid "Error (Expression)"
+msgstr "Error (Expresión)"
+
+#: 03050300.xhp#hd_id3145173.5.help.text
+msgctxt "03050300.xhp#hd_id3145173.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03050300.xhp#par_id3154125.6.help.text
+msgctxt "03050300.xhp#par_id3154125.6.help.text"
+msgid "String"
+msgstr "Cadena"
+
+#: 03050300.xhp#hd_id3150869.7.help.text
+msgctxt "03050300.xhp#hd_id3150869.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03050300.xhp#par_id3153193.8.help.text
+msgid "<emph>Expression:</emph> Any numeric expression that contains the error code of the error message that you want to return."
+msgstr "<emph>Expresión:</emph> Cualquier expresión numérica que contenga el código de error del mensaje que se desea devolver."
+
+#: 03050300.xhp#par_id3159254.9.help.text
+msgid "If no parameters are passed, the Error function returns the error message of the most recent error that occurred during program execution."
+msgstr "Si no se pasa ningún parámetro; la función Error devuelve el mensaje de error más reciente que se haya producido durante la ejecución del programa."
+
+#: 03120300.xhp#tit.help.text
+msgid "Editing String Contents"
+msgstr "Edición del contenido de cadenas"
+
+#: 03120300.xhp#bm_id7499008.help.text
+msgid "<bookmark_value>ampersand symbol in StarBasic</bookmark_value>"
+msgstr "<bookmark_value>simbolo de ampersand en StarBasic</bookmark_value>"
+
+#: 03120300.xhp#hd_id3153894.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120300.xhp\" name=\"Editing String Contents\">Editing String Contents</link>"
+msgstr "<link href=\"text/sbasic/shared/03120300.xhp\" name=\"Editing String Contents\">Edición del contenido de cadenas</link>"
+
+#: 03120300.xhp#par_id3149178.2.help.text
+msgid "The following functions edit, format, and align the contents of strings. Use the & operator to concatenate strings."
+msgstr "Las funciones siguientes se usan para editar, dar formato y alinear contenidos de cadenas."
+
+#: 03102100.xhp#tit.help.text
+msgid "Dim Statement [Runtime]"
+msgstr "Instrucción Dim [Ejecución]"
+
+#: 03102100.xhp#bm_id3149812.help.text
+msgid "<bookmark_value>Dim statement</bookmark_value><bookmark_value>arrays; dimensioning</bookmark_value><bookmark_value>dimensioning arrays</bookmark_value>"
+msgstr "<bookmark_value>Dim;instrucción</bookmark_value><bookmark_value>matrices;dimensionamiento</bookmark_value><bookmark_value>dimensionamiento;matrices</bookmark_value>"
+
+#: 03102100.xhp#hd_id3149812.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102100.xhp\" name=\"Dim Statement [Runtime]\">Dim Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102100.xhp\" name=\"Dim Statement [Runtime]\">Instrucción Dim [Ejecución]</link>"
+
+#: 03102100.xhp#par_id3143271.2.help.text
+msgctxt "03102100.xhp#par_id3143271.2.help.text"
+msgid "Declares a variable or an array."
+msgstr "Declara una variable o una matriz."
+
+#: 03102100.xhp#par_id3154686.3.help.text
+msgid "If the variables are separated by commas (for example, DIM sPar1, sPar2, sPar3 AS STRING), only Variant variables can be defined. Use a separate definition line for each variable."
+msgstr "Si las variables están separadas por comas (por ejemplo, DIM sPar1, sPar2, sPar3 AS STRING), sólo pueden definirse variables variantes. Use una línea de definición separada para cada variable."
+
+#: 03102100.xhp#par_id3156422.4.help.text
+msgid "DIM sPar1 AS STRING"
+msgstr "DIM sPar1 AS STRING"
+
+#: 03102100.xhp#par_id3159252.5.help.text
+msgid "DIM sPar2 AS STRING"
+msgstr "DIM sPar2 AS STRING"
+
+#: 03102100.xhp#par_id3153142.6.help.text
+msgid "DIM sPar3 AS STRING"
+msgstr "DIM sPar3 AS STRING"
+
+#: 03102100.xhp#par_id3152576.7.help.text
+msgid "Dim declares local variables within subroutines. Global variables are declared with the PUBLIC or the PRIVATE statement."
+msgstr "Dim declara variables locales dentro de subrutinas. Las variables globales se declaran con la instrucción PUBLIC o PRIVATE."
+
+#: 03102100.xhp#hd_id3156443.8.help.text
+msgctxt "03102100.xhp#hd_id3156443.8.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03102100.xhp#par_id3149412.9.help.text
+msgctxt "03102100.xhp#par_id3149412.9.help.text"
+msgid "[ReDim]Dim VarName [(start To end)] [As VarType][, VarName2 [(start To end)] [As VarType][,...]]"
+msgstr "[ReDim]Dim NombreVar [(inicio To final)] [As TipoVar][, NombreVar2 [(inicio To final)] [As TipoVar][,...]]"
+
+#: 03102100.xhp#hd_id3147397.10.help.text
+msgctxt "03102100.xhp#hd_id3147397.10.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03102100.xhp#par_id3154730.11.help.text
+msgctxt "03102100.xhp#par_id3154730.11.help.text"
+msgid "<emph>VarName:</emph> Any variable or array name."
+msgstr "<emph>NombreVar:</emph> Cualquier nombre de variable o de matriz."
+
+#: 03102100.xhp#par_id3147125.12.help.text
+msgctxt "03102100.xhp#par_id3147125.12.help.text"
+msgid "<emph>Start, End:</emph> Numerical values or constants that define the number of elements (NumberElements=(end-start)+1) and the index range."
+msgstr "<emph>Inicio, Final:</emph> Valores numéricos o constantes que definen el número de elementos (NúmeroElementos=(final-inicio)+1) y el rango del índice."
+
+#: 03102100.xhp#par_id3153877.13.help.text
+msgid "Start and End can be numerical expressions if ReDim is applied at the procedure level."
+msgstr "Inicio y Final pueden ser expresiones numéricas si se aplica ReDim a nivel de prodecimiento."
+
+#: 03102100.xhp#par_id3153510.14.help.text
+msgid "<emph>VarType:</emph> Key word that declares the data type of a variable."
+msgstr "<emph>TipoVar:</emph> Palabra clave que declara el tipo de datos de una variable."
+
+#: 03102100.xhp#par_id3154015.15.help.text
+msgctxt "03102100.xhp#par_id3154015.15.help.text"
+msgid "<emph>Keyword:</emph> Variable type"
+msgstr "<emph>Palabra clave:</emph> Tipo de variable"
+
+#: 03102100.xhp#par_id3153949.16.help.text
+msgid "<emph>Bool:</emph> Boolean variable (True, False)"
+msgstr "<emph>Lógico:</emph> Variable lógica (True, False)"
+
+#: 03102100.xhp#par_id3156275.17.help.text
+msgid "<emph>Currency:</emph> Currency-Variable (Currency with 4 Decimal places)"
+msgstr "<emph>Moneda:</emph> Variable de moneda (Moneda con 4 posiciones decimales)"
+
+#: 03102100.xhp#par_id3156057.18.help.text
+msgctxt "03102100.xhp#par_id3156057.18.help.text"
+msgid "<emph>Date:</emph> Date variable"
+msgstr "<emph>Fecha:</emph> Variable de fecha"
+
+#: 03102100.xhp#par_id3148405.19.help.text
+msgid "<emph>Double:</emph> Double-precision floating-point variable (1,79769313486232 x 10E308 - 4,94065645841247 x 10E-324)"
+msgstr "<emph>Doble:</emph> Variable de precisión doble y coma flotante (1,79769313486232 x 10E308 - 4,94065645841247 x 10E-324)"
+
+#: 03102100.xhp#par_id3148916.20.help.text
+msgctxt "03102100.xhp#par_id3148916.20.help.text"
+msgid "<emph>Integer:</emph> Integer variable (-32768 - 32767)"
+msgstr "<emph>Entero:</emph> Variable entera (-32768 - 32767)"
+
+#: 03102100.xhp#par_id3150045.21.help.text
+msgid "<emph>Long:</emph> Long integer variable (-2.147.483.648 - 2.147.483.647)"
+msgstr "<emph>Largo:</emph> Variable larga (-2.147.483.648 -2.147.483.647)"
+
+#: 03102100.xhp#par_id3149255.22.help.text
+msgid "<emph>Object:</emph> Object variable (Note: this variable can only subsequently be defined with Set!)"
+msgstr "<emph>Objeto:</emph> Variable de objeto (Nota: esta variable sólo puede definirse a partir de este momento con la instrucción Set)."
+
+#: 03102100.xhp#par_id3155937.23.help.text
+msgid "<emph>Single:</emph> Single-precision floating-point variable (3,402823 x 10E38 - 1,401298 x 10E-45)."
+msgstr "<emph>Simple:</emph> Variable de precisión simple y coma flotante (3,402823 x 10E308 -1,401298 x 10E-45)."
+
+#: 03102100.xhp#par_id3151251.24.help.text
+msgid "<emph>String:</emph> String variable consisting of a maximum of 64,000 ASCII characters."
+msgstr "<emph>Cadena:</emph> Variable de cadena que se compone de un máximo de 64.000 caracteres ASCII."
+
+#: 03102100.xhp#par_id3154704.25.help.text
+msgid "<emph>[Variant]:</emph> Variant variable type (contains all types, specified by definition). If a key word is not specified, variables are automatically defined as Variant Type, unless a statement from DefBool to DefVar is used."
+msgstr "<emph>[Variante]:</emph> Tipo de variable variante (contiene todos los tipos, especificada por definición). Si no se especifica ninguna palabra clave, las variables se definen automáticamente como de tipo variante, a menos que se use una instrucción desde DefBool a DefVar."
+
+#: 03102100.xhp#par_id3146316.26.help.text
+msgctxt "03102100.xhp#par_id3146316.26.help.text"
+msgid "In $[officename] Basic, you do not need to declare variables explicitly. However, you need to declare an array before you can use them. You can declare a variable with the Dim statement, using commas to separate multiple declarations. To declare a variable type, enter a type-declaration character following the name or use a corresponding key word."
+msgstr "En $[officename] Basic no es necesario declarar variables explícitamente. Sin embargo, es necesario declarar las matrices antes de poder usarlas. Puede declarar una variable con la instrucción Dim, usando comas para separar múltiples declaraciones. Para declarar un tipo de variable, escriba un carácter de declaración de tipo seguido del nombre o use la palabra clave correspondiente."
+
+#: 03102100.xhp#par_id3149924.27.help.text
+msgctxt "03102100.xhp#par_id3149924.27.help.text"
+msgid "$[officename] Basic supports single or multi-dimensional arrays that are defined by a specified variable type. Arrays are suitable if the program contains lists or tables that you want to edit. The advantage of arrays is that it is possible to address individual elements according to indexes, which can be formulated as numeric expressions or variables."
+msgstr "$[officename] Basic admite matrices de una o varias dimensiones, definidas por un tipo de variable especificado, que resultan útiles si el programa contiene listas o tablas que se desea editar. La ventaja de las matrices es que es posible acceder a elementos individuales utilizando índices, los cuales pueden formularse como expresiones o variables numéricas."
+
+#: 03102100.xhp#par_id3148488.28.help.text
+msgid "Arrays are declared with the Dim statement. There are two methods to define the index range:"
+msgstr "Las matrices se declaran con la instrucción Dim. Existen dos métodos para definir el rango de índices:"
+
+#: 03102100.xhp#par_id3154662.29.help.text
+msgid "DIM text(20) as String REM 21 elements numbered from 0 to 20"
+msgstr "DIM texto(20) as String REM 21 elementos numerados del 0 al 20"
+
+#: 03102100.xhp#par_id3155604.30.help.text
+msgid "DIM text(5 to 25) as String REM 21 elements numbered from 5 to 25"
+msgstr "DIM texto(5 to 25) as String REM 21 elementos numerados del 5 al 25"
+
+#: 03102100.xhp#par_id3151274.31.help.text
+msgid "DIM text(-15 to 5) as String REM 21 elements (including 0)"
+msgstr "DIM texto(-15 to 5) as String REM 21 elementos (incluido el 0)"
+
+#: 03102100.xhp#par_id3152774.32.help.text
+msgid "REM numbered from -15 to 5"
+msgstr "REM numerados del -15 al 5"
+
+#: 03102100.xhp#par_id3150829.33.help.text
+msgid "Two-dimensional data field"
+msgstr "Campos de datos bidimensionales"
+
+#: 03102100.xhp#par_id3149529.34.help.text
+msgid "DIM text(20,2) as String REM 63 elements; form 0 to 20 level 1, from 0 to 20 level 2 and from 0 to 20 level 3."
+msgstr "DIM texto(20,2) as String REM 63 elementos; del 0 al 20 en el nivel 1, de 0 al 20 en el nivel 2 y de 0 al 20 en el nivel 3."
+
+#: 03102100.xhp#par_id3159239.35.help.text
+msgid "You can declare an array types as dynamic if a ReDim statement defines the number of dimensions in the subroutine or the function that contains the array. Generally, you can only define an array dimension once, and you cannot modify it. Within a subroutine, you can declare an array with ReDim. You can only define dimensions with numeric expressions. This ensures that the fields are only as large as necessary."
+msgstr "Puede declarar un tipo de matriz como dinámica si una instrucción ReDim define el número de dimensiones en la subrutina o la función que contenga la matriz. Normalmente las dimensiones de la matriz sólo se pueden definir una vez y posteriormente ya no pueden modificarse. Dentro de una subrutina las matrices pueden declararse con ReDim. Las dimensiones sólo pueden definirse con expresiones numéricas. Ello asegura que los campos no superen la magnitud necesaria."
+
+#: 03102100.xhp#hd_id3150344.36.help.text
+msgctxt "03102100.xhp#hd_id3150344.36.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03102100.xhp#par_id3150206.37.help.text
+msgid "Sub ExampleDim1"
+msgstr "Sub EjemploDim1"
+
+#: 03102100.xhp#par_id3154201.38.help.text
+msgctxt "03102100.xhp#par_id3154201.38.help.text"
+msgid "Dim sVar As String"
+msgstr "Dim sVar As String"
+
+#: 03102100.xhp#par_id3146134.39.help.text
+msgctxt "03102100.xhp#par_id3146134.39.help.text"
+msgid "Dim iVar As Integer"
+msgstr "Dim iVar As Integer"
+
+#: 03102100.xhp#par_id3154657.40.help.text
+msgctxt "03102100.xhp#par_id3154657.40.help.text"
+msgid "sVar = \"Office\""
+msgstr "sVar = \"Star Office\""
+
+#: 03102100.xhp#par_id3148459.41.help.text
+msgctxt "03102100.xhp#par_id3148459.41.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03102100.xhp#par_id3166424.43.help.text
+msgid "Sub ExampleDim2"
+msgstr "Sub EjemploDim2"
+
+#: 03102100.xhp#par_id3149036.44.help.text
+msgid "REM Two-dimensional data field"
+msgstr "REM Campo de datos bidimensional"
+
+#: 03102100.xhp#par_id3149737.45.help.text
+msgid "Dim stext(20,2) as String"
+msgstr "Dim stexto(20,2) as String"
+
+#: 03102100.xhp#par_id3153782.46.help.text
+msgid "Const sDim as String = \" Dimension:\""
+msgstr "Const sDim as String = \" Dimensión:\""
+
+#: 03102100.xhp#par_id3150518.48.help.text
+msgctxt "03102100.xhp#par_id3150518.48.help.text"
+msgid "for i = 0 to 20"
+msgstr "for i = 0 to 20"
+
+#: 03102100.xhp#par_id3166428.49.help.text
+msgctxt "03102100.xhp#par_id3166428.49.help.text"
+msgid "for ii = 0 to 2"
+msgstr "for ii = 0 to 2"
+
+#: 03102100.xhp#par_id3152994.50.help.text
+msgid "stext(i,ii) = str(i) & sDim & str(ii)"
+msgstr "stexto(i,ii) = str(i) & sDim & str(ii)"
+
+#: 03102100.xhp#par_id3150202.51.help.text
+msgctxt "03102100.xhp#par_id3150202.51.help.text"
+msgid "next ii"
+msgstr "next ii"
+
+#: 03102100.xhp#par_id3154370.52.help.text
+msgctxt "03102100.xhp#par_id3154370.52.help.text"
+msgid "next i"
+msgstr "next i"
+
+#: 03102100.xhp#par_id3156166.54.help.text
+msgctxt "03102100.xhp#par_id3156166.54.help.text"
+msgid "for i = 0 to 20"
+msgstr "for i = 0 to 20"
+
+#: 03102100.xhp#par_id3148815.55.help.text
+msgctxt "03102100.xhp#par_id3148815.55.help.text"
+msgid "for ii = 0 to 2"
+msgstr "for ii = 0 to 2"
+
+#: 03102100.xhp#par_id3146981.56.help.text
+msgid "msgbox stext(i,ii)"
+msgstr "msgbox stexto(i,ii)"
+
+#: 03102100.xhp#par_id3155125.57.help.text
+msgctxt "03102100.xhp#par_id3155125.57.help.text"
+msgid "next ii"
+msgstr "next ii"
+
+#: 03102100.xhp#par_id3154528.58.help.text
+msgctxt "03102100.xhp#par_id3154528.58.help.text"
+msgid "next i"
+msgstr "next i"
+
+#: 03102100.xhp#par_id3155087.59.help.text
+msgctxt "03102100.xhp#par_id3155087.59.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03010102.xhp#tit.help.text
+msgid "MsgBox Function [Runtime]"
+msgstr "Función MsgBox [Ejecución]"
+
+#: 03010102.xhp#bm_id3153379.help.text
+msgid "<bookmark_value>MsgBox function</bookmark_value>"
+msgstr "<bookmark_value>MsgBox;función</bookmark_value>"
+
+#: 03010102.xhp#hd_id3153379.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010102.xhp\" name=\"MsgBox Function [Runtime]\">MsgBox Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010102.xhp\" name=\"Función MsgBox [Runtime]\">Función MsgBox [Runtime]</link>"
+
+#: 03010102.xhp#par_id3145171.2.help.text
+msgid "Displays a dialog box containing a message and returns a value."
+msgstr "Muestra un cuadro de diálogo que contiene un mensaje y devuelve un valor."
+
+#: 03010102.xhp#hd_id3156281.3.help.text
+msgctxt "03010102.xhp#hd_id3156281.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03010102.xhp#par_id3154685.4.help.text
+msgid "MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]])"
+msgstr "MsgBox (Texto As String [,Tipo As Integer [,TítuloDiálogo As String]])"
+
+#: 03010102.xhp#hd_id3153771.5.help.text
+msgctxt "03010102.xhp#hd_id3153771.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03010102.xhp#par_id3146985.6.help.text
+msgctxt "03010102.xhp#par_id3146985.6.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03010102.xhp#hd_id3153363.7.help.text
+msgctxt "03010102.xhp#hd_id3153363.7.help.text"
+msgid "Parameter:"
+msgstr "<emph>Parámetros</emph>:"
+
+#: 03010102.xhp#par_id3153727.8.help.text
+msgctxt "03010102.xhp#par_id3153727.8.help.text"
+msgid "<emph>Text</emph>: String expression displayed as a message in the dialog box. Line breaks can be inserted with Chr$(13)."
+msgstr "<emph>Texto</emph>: Expresión de cadena que se muestra como mensaje en el cuadro de diálogo. Los saltos de línea se pueden insertar con Chr$(13)."
+
+#: 03010102.xhp#par_id3147317.9.help.text
+msgid "<emph>DialogTitle</emph>: String expression displayed in the title bar of the dialog. If omitted, the name of the respective application is displayed."
+msgstr "<emph>TítuloDiálogo</emph>: Expresión de cadena que se muestra en la barra de título del diálogo. Si se omite, se muestra el nombre de la aplicación correspondiente."
+
+#: 03010102.xhp#par_id3153954.10.help.text
+msgid "<emph>Type</emph>: Any integer expression that specifies the dialog type and defines the number and type of buttons or icons displayed. <emph>Type</emph> represents a combination of bit patterns (dialog elements defined by adding the respective values):"
+msgstr "Tipo: Cualquier expresión entera que especifique el tipo de diálogo y defina el número y tipo de botones o iconos que se muestran. <emph>Tipo</emph> representa una combinación de patrones de bits (elementos de diálogo definidos al añadir los valores correspondientes):"
+
+#: 03010102.xhp#par_id3154319.11.help.text
+msgid "<emph>Values</emph>"
+msgstr "<emph>Valores</emph>"
+
+#: 03010102.xhp#par_id3147397.12.help.text
+msgctxt "03010102.xhp#par_id3147397.12.help.text"
+msgid "0 : Display OK button only."
+msgstr "0 : Mostrar sólo el botón Aceptar."
+
+#: 03010102.xhp#par_id3145646.13.help.text
+msgctxt "03010102.xhp#par_id3145646.13.help.text"
+msgid "1 : Display OK and Cancel buttons."
+msgstr "1 : Mostrar los botones Aceptar y Cancelar."
+
+#: 03010102.xhp#par_id3149410.14.help.text
+msgctxt "03010102.xhp#par_id3149410.14.help.text"
+msgid "2 : Display Abort, Retry, and Ignore buttons."
+msgstr "2 : Muestre los botones Cancelar, Reintentar y Cancelar."
+
+#: 03010102.xhp#par_id3151075.15.help.text
+msgid "3 : Display Yes, No, and Cancel buttons."
+msgstr "3 : Mostrar los botones Sí, No y Cancelar."
+
+#: 03010102.xhp#par_id3153878.16.help.text
+msgctxt "03010102.xhp#par_id3153878.16.help.text"
+msgid "4 : Display Yes and No buttons."
+msgstr "4 : Mostrar los botones Sí y No."
+
+#: 03010102.xhp#par_id3155601.17.help.text
+msgctxt "03010102.xhp#par_id3155601.17.help.text"
+msgid "5 : Display Retry and Cancel buttons."
+msgstr "5 : Mostrar los botones Reintentar y Cancelar."
+
+#: 03010102.xhp#par_id3150716.18.help.text
+msgctxt "03010102.xhp#par_id3150716.18.help.text"
+msgid "16 : Add the Stop icon to the dialog."
+msgstr "16 : Añadir el icono de Stop al diálogo."
+
+#: 03010102.xhp#par_id3153837.19.help.text
+msgctxt "03010102.xhp#par_id3153837.19.help.text"
+msgid "32 : Add the Question icon to the dialog."
+msgstr "32 : Añadir el icono de Pregunta al diálogo."
+
+#: 03010102.xhp#par_id3150751.20.help.text
+msgid "48 : Add the Exclamation Point icon to the dialog."
+msgstr "48 : Añadir el punto de Exclamación al diálogo."
+
+#: 03010102.xhp#par_id3146915.21.help.text
+msgctxt "03010102.xhp#par_id3146915.21.help.text"
+msgid "64 : Add the Information icon to the dialog."
+msgstr "64 : Añadir el icono de Información al diálogo."
+
+#: 03010102.xhp#par_id3145640.22.help.text
+msgctxt "03010102.xhp#par_id3145640.22.help.text"
+msgid "128 : First button in the dialog as default button."
+msgstr "128 : El primer botón del diálogo es el predeterminado."
+
+#: 03010102.xhp#par_id3153765.23.help.text
+msgctxt "03010102.xhp#par_id3153765.23.help.text"
+msgid "256 : Second button in the dialog as default button."
+msgstr "256 : El segundo botón del diálogo es el predeterminado."
+
+#: 03010102.xhp#par_id3153715.24.help.text
+msgctxt "03010102.xhp#par_id3153715.24.help.text"
+msgid "512 : Third button in the dialog as default button."
+msgstr "512 : El tercer botón del diálogo es el predeterminado."
+
+#: 03010102.xhp#par_id3159267.25.help.text
+msgid "<emph>Return value:</emph>"
+msgstr "<emph>Valores de retorno:</emph>"
+
+#: 03010102.xhp#par_id3145230.26.help.text
+msgid "1 : OK"
+msgstr "1 : Aceptar"
+
+#: 03010102.xhp#par_id3149567.27.help.text
+msgid "2 : Cancel"
+msgstr "2 : Cancelar"
+
+#: 03010102.xhp#par_id4056825.help.text
+msgid "3 : Abort"
+msgstr "3 : Cancelar"
+
+#: 03010102.xhp#par_id3155335.28.help.text
+msgid "4 : Retry"
+msgstr "4 : Reintentar"
+
+#: 03010102.xhp#par_id3146918.29.help.text
+msgid "5 : Ignore"
+msgstr "5 : Ignorar"
+
+#: 03010102.xhp#par_id3155961.30.help.text
+msgid "6 : Yes"
+msgstr "6 : Sí"
+
+#: 03010102.xhp#par_id3148488.31.help.text
+msgid "7 : No"
+msgstr "7 : No"
+
+#: 03010102.xhp#hd_id3150090.40.help.text
+msgctxt "03010102.xhp#hd_id3150090.40.help.text"
+msgid "Example:"
+msgstr "<emph>Ejemplo:</emph>"
+
+#: 03010102.xhp#par_id3154120.41.help.text
+msgctxt "03010102.xhp#par_id3154120.41.help.text"
+msgid "Sub ExampleMsgBox"
+msgstr "Sub EjemploMsgBox"
+
+#: 03010102.xhp#par_id3145131.42.help.text
+msgid "Dim sVar as Integer"
+msgstr "Dim sVar As Integer"
+
+#: 03010102.xhp#par_id3151278.43.help.text
+msgid "sVar = MsgBox(\"Las Vegas\")"
+msgstr "sVar = MsgBox(\"Las Vegas\")"
+
+#: 03010102.xhp#par_id3149034.44.help.text
+msgid "sVar = MsgBox(\"Las Vegas\",1)"
+msgstr "sVar = MsgBox(\"Las Vegas\",1)"
+
+#: 03010102.xhp#par_id3166424.45.help.text
+msgid "sVar = MsgBox( \"Las Vegas\",256 + 16 + 2,\"Dialog title\")"
+msgstr "sVar = MsgBox( \"Las Vegas\",256 + 16 + 2,\"Título de diálogo\")"
+
+#: 03010102.xhp#par_id3152581.46.help.text
+msgctxt "03010102.xhp#par_id3152581.46.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03010100.xhp#tit.help.text
+msgid "Display Functions"
+msgstr "Funciones de visualización"
+
+#: 03010100.xhp#hd_id3151384.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010100.xhp\" name=\"Display Functions\">Display Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03010100.xhp\" name=\"Funciones de visualización\">Funciones de visualización</link>"
+
+#: 03010100.xhp#par_id3149346.2.help.text
+msgid "This section describes Runtime functions used to output information to the screen display."
+msgstr "Esta sección describe las funciones de tiempo de ejecución usadas para enviar información a la pantalla."
+
+#: 03010301.xhp#tit.help.text
+msgid "Blue Function [Runtime]"
+msgstr "Función Blue [Ejecución]"
+
+#: 03010301.xhp#bm_id3149180.help.text
+msgid "<bookmark_value>Blue function</bookmark_value>"
+msgstr "<bookmark_value>Blue;función</bookmark_value>"
+
+#: 03010301.xhp#hd_id3149180.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010301.xhp\" name=\"Blue Function [Runtime]\">Blue Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010301.xhp\" name=\"Función Blue [Runtime]\">Función Blue [Runtime]</link>"
+
+#: 03010301.xhp#par_id3156343.2.help.text
+msgid "Returns the blue component of the specified color code."
+msgstr "Devuelve el componente azul del código de color dado."
+
+#: 03010301.xhp#hd_id3149670.3.help.text
+msgctxt "03010301.xhp#hd_id3149670.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03010301.xhp#par_id3149457.4.help.text
+msgid "Blue (Color As Long)"
+msgstr "Blue (Color As Long)"
+
+#: 03010301.xhp#hd_id3149656.5.help.text
+msgctxt "03010301.xhp#hd_id3149656.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03010301.xhp#par_id3154365.6.help.text
+msgctxt "03010301.xhp#par_id3154365.6.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03010301.xhp#hd_id3156423.7.help.text
+msgctxt "03010301.xhp#hd_id3156423.7.help.text"
+msgid "Parameter:"
+msgstr "Parámetros:"
+
+#: 03010301.xhp#par_id3150448.8.help.text
+msgid "<emph>Color value</emph>: Long integer expression that specifies any <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">color code</link> for which to return the blue component."
+msgstr "<emph>Valor de color</emph>: Expresión de número entero largo que especifica un <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"código de color\">código de color</link> para el que devolver el componente azul."
+
+#: 03010301.xhp#hd_id3153091.9.help.text
+msgctxt "03010301.xhp#hd_id3153091.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03010301.xhp#par_id3153143.10.help.text
+msgctxt "03010301.xhp#par_id3153143.10.help.text"
+msgid "Sub ExampleColor"
+msgstr "Sub EjemploColor"
+
+#: 03010301.xhp#par_id3149664.11.help.text
+msgctxt "03010301.xhp#par_id3149664.11.help.text"
+msgid "Dim lVar As Long"
+msgstr "Dim lVar As Long"
+
+#: 03010301.xhp#par_id3148576.12.help.text
+msgctxt "03010301.xhp#par_id3148576.12.help.text"
+msgid "lVar = rgb(128,0,200)"
+msgstr "lVar = rgb(128,0,200)"
+
+#: 03010301.xhp#par_id3154012.13.help.text
+msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
+msgstr "MsgBox \"El color \" & lVar & \" contiene los componentes:\" & Chr(13) &_"
+
+#: 03010301.xhp#par_id3148645.14.help.text
+msgid "\"red= \" & Red(lVar) & Chr(13)&_"
+msgstr "\"rojo = \" & Red(lVar) & Chr(13)&_"
+
+#: 03010301.xhp#par_id3159155.15.help.text
+msgid "\"green= \" & Green(lVar) & Chr(13)&_"
+msgstr "\"verde= \" & Green(lVar) & Chr(13)&_"
+
+#: 03010301.xhp#par_id3147319.16.help.text
+msgid "\"blue= \" & Blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr "\"azul= \" & Blue(lVar) & Chr(13) , 64,\"colores\""
+
+#: 03010301.xhp#par_id3147434.17.help.text
+msgctxt "03010301.xhp#par_id3147434.17.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03132500.xhp#tit.help.text
+msgid "GetDefaultContext Function [Runtime]"
+msgstr "Función GetDefaultContext [Ejecución]"
+
+#: 03132500.xhp#bm_id4761192.help.text
+msgid "<bookmark_value>GetDefaultContext function</bookmark_value>"
+msgstr "<bookmark_value>función GetDefaultContext</bookmark_value>"
+
+#: 03132500.xhp#par_idN10580.help.text
+msgid "<link href=\"text/sbasic/shared/03132500.xhp\">GetDefaultContext Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03132500.xhp\">Función GetDefaultContext [Ejecución]</link>"
+
+#: 03132500.xhp#par_idN10590.help.text
+msgid "Returns the default context of the process service factory, if existent, else returns a null reference. "
+msgstr "Devuelve el contexto predeterminado del servicio de procesos de fábrica, si lo hay; de lo contrario, devuelve una referencia nula. "
+
+#: 03132500.xhp#par_idN10593.help.text
+msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
+msgstr "Esta función en tiempo de ejecución devuelve el contexto del componente predeterminado a usar, si se crean instancias de servicios a través de XmultiServiceFactory. Consulte el capítulo <item type=\"literal\">Professional UNO</item> en la <item type=\"literal\">Developer's Guide</item> en <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> para más información."
+
+#: 03104200.xhp#tit.help.text
+msgid "Array Function [Runtime]"
+msgstr "Función Array [Ejecución]"
+
+#: 03104200.xhp#bm_id3150499.help.text
+msgid "<bookmark_value>Array function</bookmark_value>"
+msgstr "<bookmark_value>Array;función</bookmark_value>"
+
+#: 03104200.xhp#hd_id3150499.1.help.text
+msgid "<link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array Function [Runtime]\">Array Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array Function [Runtime]\">Función Array [Ejecución]</link>"
+
+#: 03104200.xhp#par_id3155555.2.help.text
+msgid "Returns the type Variant with a data field."
+msgstr "Devuelve el tipo Variante con un campo de datos."
+
+#: 03104200.xhp#hd_id3148538.3.help.text
+msgctxt "03104200.xhp#hd_id3148538.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03104200.xhp#par_id3153126.4.help.text
+msgid "Array ( Argument list)"
+msgstr "Array (Lista de argumentos)"
+
+#: 03104200.xhp#par_id3155419.5.help.text
+msgid "See also <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link>"
+msgstr "Consulte también <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link>"
+
+#: 03104200.xhp#hd_id3150669.6.help.text
+msgctxt "03104200.xhp#hd_id3150669.6.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03104200.xhp#par_id3145609.7.help.text
+msgctxt "03104200.xhp#par_id3145609.7.help.text"
+msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
+msgstr "<emph>Lista de argumentos:</emph> Una lista de cualquier número de argumentos que estén separados por comas."
+
+#: 03104200.xhp#hd_id3156343.8.help.text
+msgctxt "03104200.xhp#hd_id3156343.8.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03104200.xhp#par_id3153897.9.help.text
+msgid "Dim A As Variant"
+msgstr "Dim A As Variant"
+
+#: 03104200.xhp#par_id3153525.10.help.text
+msgid "A = Array(\"Fred\",\"Tom\",\"Bill\")"
+msgstr "A = Array(\"Luis\",\"Tomás\",\"Guille\")"
+
+#: 03104200.xhp#par_id3150792.11.help.text
+msgid "Msgbox A(2)"
+msgstr "Msgbox A(2)"
+
+#: 03120400.xhp#tit.help.text
+msgid "Editing String Length"
+msgstr "Edición de longitud de cadena"
+
+#: 03120400.xhp#hd_id3155150.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"Editing String Length\">Editing String Length</link>"
+msgstr "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"Editing String Length\">Edición de longitud de cadena</link>"
+
+#: 03120400.xhp#par_id3159201.2.help.text
+msgid "The following functions determine string lengths and compare strings."
+msgstr "Las funciones siguientes determinan las longitudes y comparan cadenas."
+
+#: 03090402.xhp#tit.help.text
+msgid "Choose Function [Runtime]"
+msgstr "Función Choose [Ejecución]"
+
+#: 03090402.xhp#bm_id3143271.help.text
+msgid "<bookmark_value>Choose function</bookmark_value>"
+msgstr "<bookmark_value>Choose;función</bookmark_value>"
+
+#: 03090402.xhp#hd_id3143271.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090402.xhp\" name=\"Choose Function [Runtime]\">Choose Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090402.xhp\" name=\"Choose Function [Runtime]\">Función Choose [Ejecución]</link>"
+
+#: 03090402.xhp#par_id3149234.2.help.text
+msgid "Returns a selected value from a list of arguments."
+msgstr "Devuelve un valor seleccionado de una lista de argumentos."
+
+#: 03090402.xhp#hd_id3148943.3.help.text
+msgctxt "03090402.xhp#hd_id3148943.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03090402.xhp#par_id3147560.4.help.text
+msgid "Choose (Index, Selection1[, Selection2, ... [,Selection_n]])"
+msgstr "Choose (Índice, Selección1[, Selección2, ... [,Selección_n]])"
+
+#: 03090402.xhp#hd_id3154346.5.help.text
+msgctxt "03090402.xhp#hd_id3154346.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03090402.xhp#par_id3148664.6.help.text
+msgid "<emph>Index:</emph> A numeric expression that specifies the value to return."
+msgstr "<emph>Índice:</emph> una expresión numérica que especifica el valor que devolver."
+
+#: 03090402.xhp#par_id3150791.7.help.text
+msgid "<emph>Selection1:</emph> Any expression that contains one of the possible choices."
+msgstr "<emph>Selección1:</emph> cualquier expresión que contenga alguna de las opciones posibles."
+
+#: 03090402.xhp#par_id3151043.8.help.text
+msgid "The <emph>Choose</emph> function returns a value from the list of expressions based on the index value. If Index = 1, the function returns the first expression in the list, if index i= 2, it returns the second expression, and so on."
+msgstr "La función <emph>Choose</emph> devuelve un valor de la lista de expresiones según el valor del índice. Si Índice = 1, la función devuelve la primera expresión de la lista, si Índice = 2, devuelve la segunda expresión, etc."
+
+#: 03090402.xhp#par_id3153192.9.help.text
+msgid "If the index value is less than 1 or greater than the number of expressions listed, the function returns a Null value."
+msgstr "Si el valor del índice es inferior a 1 o mayor que el número de expresiones listadas, la función devuelve un valor nulo (Null)."
+
+#: 03090402.xhp#par_id3156281.10.help.text
+msgid "The following example uses the <emph>Choose</emph> function to select a string from several strings that form a menu:"
+msgstr "El ejemplo siguiente usa la función <emph>Choose</emph> para seleccionar una cadena de entre varias que forman un menú:"
+
+#: 03090402.xhp#hd_id3150439.11.help.text
+msgctxt "03090402.xhp#hd_id3150439.11.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03090402.xhp#par_id3153091.12.help.text
+msgid "Sub ExampleChoose"
+msgstr "Sub EjemploChoose"
+
+#: 03090402.xhp#par_id3152597.13.help.text
+msgctxt "03090402.xhp#par_id3152597.13.help.text"
+msgid "Dim sReturn As String"
+msgstr "Dim sReturn As String"
+
+#: 03090402.xhp#par_id3155855.14.help.text
+msgid "sReturn = ChooseMenu(2)"
+msgstr "sReturn = ChooseMenu(2)"
+
+#: 03090402.xhp#par_id3148575.15.help.text
+msgctxt "03090402.xhp#par_id3148575.15.help.text"
+msgid "Print sReturn"
+msgstr "Print sReturn"
+
+#: 03090402.xhp#par_id3154012.16.help.text
+msgctxt "03090402.xhp#par_id3154012.16.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03090402.xhp#par_id3146921.19.help.text
+msgid "Function ChooseMenu(Index As Integer)"
+msgstr "Function ChooseMenu(Indice As Integer)"
+
+#: 03090402.xhp#par_id3156443.20.help.text
+msgid "ChooseMenu = Choose(Index, \"Quick Format\", \"Save Format\", \"System Format\")"
+msgstr "ChooseMenu = Choose(Indice, \"Formato rápido\", \"Guardar formato\", \"Formato del sistema\")"
+
+#: 03090402.xhp#par_id3148645.21.help.text
+msgctxt "03090402.xhp#par_id3148645.21.help.text"
+msgid "End Function"
+msgstr "End Function"
+
+#: 03100070.xhp#tit.help.text
+msgid "CVar Function [Runtime]"
+msgstr "Función CVar [Ejecución]"
+
+#: 03100070.xhp#bm_id2338633.help.text
+msgid "<bookmark_value>CVar function</bookmark_value>"
+msgstr "<bookmark_value>Función CVar</bookmark_value>"
+
+#: 03100070.xhp#par_idN1054B.help.text
+msgid "<link href=\"text/sbasic/shared/03100070.xhp\">CVar Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100070.xhp\">Función CVar [Ejecución]</link>"
+
+#: 03100070.xhp#par_idN1055B.help.text
+msgid "Converts a string expression or numeric expression to a variant expression."
+msgstr "Convierte una expresión de cadena o una expresión numérica en una expresión del tipo variant."
+
+#: 03100070.xhp#par_idN1055E.help.text
+msgctxt "03100070.xhp#par_idN1055E.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03100070.xhp#par_idN10562.help.text
+msgid "CVar(Expression)"
+msgstr "CVar(Expression)"
+
+#: 03100070.xhp#par_idN10565.help.text
+msgctxt "03100070.xhp#par_idN10565.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03100070.xhp#par_idN10569.help.text
+msgctxt "03100070.xhp#par_idN10569.help.text"
+msgid "Variant."
+msgstr "variant."
+
+#: 03100070.xhp#par_idN1056C.help.text
+msgctxt "03100070.xhp#par_idN1056C.help.text"
+msgid "Parameter:"
+msgstr "Parámetro:"
+
+#: 03100070.xhp#par_idN10570.help.text
+msgctxt "03100070.xhp#par_idN10570.help.text"
+msgid "Expression: Any string or numeric expression that you want to convert."
+msgstr "Expression: cualquier cadena o expresión numérica que desee convertir."
+
+#: 03020304.xhp#tit.help.text
+msgid "Seek Function [Runtime]"
+msgstr "Función Seek [Ejecución]"
+
+#: 03020304.xhp#bm_id3154367.help.text
+msgid "<bookmark_value>Seek function</bookmark_value>"
+msgstr "<bookmark_value>Seek;función</bookmark_value>"
+
+#: 03020304.xhp#hd_id3154367.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek Function [Runtime]\">Seek Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Función Seek [Runtime]\">Función Seek [Runtime]</link>"
+
+#: 03020304.xhp#par_id3156280.2.help.text
+msgid "Returns the position for the next writing or reading in a file that was opened with the open statement."
+msgstr "Devuelve la posición de la siguiente escritura o lectura de un archivo abierto con la instrucción Open."
+
+#: 03020304.xhp#par_id3153194.3.help.text
+msgid "For random access files, the Seek function returns the number of the next record to be read."
+msgstr "Para archivos de acceso aleatorio, la función Seek devuelve el número del registro siguiente que leer."
+
+#: 03020304.xhp#par_id3161831.4.help.text
+msgid "For all other files, the function returns the byte position at which the next operation is to occur."
+msgstr "En todos los demás archivos, la función devuelve la posición en bytes en la que se producirá la operación siguiente."
+
+#: 03020304.xhp#par_id3155854.5.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek\">Seek</link>."
+msgstr "Consulte también: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek\">Seek</link>."
+
+#: 03020304.xhp#hd_id3152460.6.help.text
+msgctxt "03020304.xhp#hd_id3152460.6.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03020304.xhp#par_id3145365.7.help.text
+msgid "Seek (FileNumber)"
+msgstr "Seek (NúmeroArchivo)"
+
+#: 03020304.xhp#hd_id3148575.8.help.text
+msgctxt "03020304.xhp#hd_id3148575.8.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03020304.xhp#par_id3159156.9.help.text
+msgctxt "03020304.xhp#par_id3159156.9.help.text"
+msgid "Long"
+msgstr "Largo"
+
+#: 03020304.xhp#hd_id3149665.10.help.text
+msgctxt "03020304.xhp#hd_id3149665.10.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03020304.xhp#par_id3148645.11.help.text
+msgid "<emph>FileNumber:</emph> The data channel number used in the Open statement."
+msgstr "<emph>NúmeroArchivo:</emph> El número de canal de datos usado en la instrucción Open."
+
+#: 03120312.xhp#tit.help.text
+msgid "ConvertToURL Function [Runtime]"
+msgstr "Función ConvertToURL [Ejecución]"
+
+#: 03120312.xhp#bm_id3152801.help.text
+msgid "<bookmark_value>ConvertToURL function</bookmark_value>"
+msgstr "<bookmark_value>ConvertToURL;función</bookmark_value>"
+
+#: 03120312.xhp#hd_id3152801.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"ConvertToURL Function [Runtime]\">ConvertToURL Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"ConvertToURL Function [Runtime]\">Función ConvertToURL [Ejecución]</link>"
+
+#: 03120312.xhp#par_id3148538.2.help.text
+msgid "Converts a system file name to a file URL."
+msgstr "Convierte un nombre de archivo del sistema en un URL de archivo."
+
+#: 03120312.xhp#hd_id3150669.3.help.text
+msgctxt "03120312.xhp#hd_id3150669.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03120312.xhp#par_id3154285.4.help.text
+msgid "ConvertToURL(filename)"
+msgstr "ConvertToURL(nombrearchivo)"
+
+#: 03120312.xhp#hd_id3150984.5.help.text
+msgctxt "03120312.xhp#hd_id3150984.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03120312.xhp#par_id3147530.6.help.text
+msgctxt "03120312.xhp#par_id3147530.6.help.text"
+msgid "String"
+msgstr "Cadena"
+
+#: 03120312.xhp#hd_id3148550.7.help.text
+msgctxt "03120312.xhp#hd_id3148550.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03120312.xhp#par_id3148947.8.help.text
+msgid "<emph>Filename:</emph> A file name as string."
+msgstr "<emph>NombreArchivo:</emph> Un nombre de archivo como cadena."
+
+#: 03120312.xhp#hd_id3153361.9.help.text
+msgctxt "03120312.xhp#hd_id3153361.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03120312.xhp#par_id3150792.10.help.text
+msgctxt "03120312.xhp#par_id3150792.10.help.text"
+msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
+msgstr "systemFile$ = \"c:\\carpeta\\mitexo.txt\""
+
+#: 03120312.xhp#par_id3154365.11.help.text
+msgctxt "03120312.xhp#par_id3154365.11.help.text"
+msgid "url$ = ConvertToURL( systemFile$ )"
+msgstr "url$ = ConvertToURL( systemFile$ )"
+
+#: 03120312.xhp#par_id3151042.12.help.text
+msgctxt "03120312.xhp#par_id3151042.12.help.text"
+msgid "print url$"
+msgstr "print url$"
+
+#: 03120312.xhp#par_id3154909.13.help.text
+msgctxt "03120312.xhp#par_id3154909.13.help.text"
+msgid "systemFileAgain$ = ConvertFromURL( url$ )"
+msgstr "systemFileAgain$ = ConvertFromURL( url$ )"
+
+#: 03120312.xhp#par_id3144762.14.help.text
+msgctxt "03120312.xhp#par_id3144762.14.help.text"
+msgid "print systemFileAgain$"
+msgstr "print systemFileAgain$"
+
+#: 03090101.xhp#tit.help.text
+msgid "If...Then...Else Statement [Runtime]"
+msgstr "Instrucción If...Then...Else [Ejecución]"
+
+#: 03090101.xhp#bm_id3154422.help.text
+msgid "<bookmark_value>If statement</bookmark_value>"
+msgstr "<bookmark_value>If;instrucción</bookmark_value>"
+
+#: 03090101.xhp#hd_id3154422.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"If...Then...Else Statement [Runtime]\">If...Then...Else Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"If...Then...Else Statement [Runtime]\">Instrucción If...Then...Else [Ejecución]</link>"
+
+#: 03090101.xhp#par_id3155555.2.help.text
+msgid "Defines one or more statement blocks that you only want to execute if a given condition is True."
+msgstr "Define uno o más bloques de instrucciones que sólo se desea ejecutar cuando una condición dada es cierta."
+
+#: 03090101.xhp#hd_id3146957.3.help.text
+msgctxt "03090101.xhp#hd_id3146957.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03090101.xhp#par_id3153126.4.help.text
+msgid "If condition=true Then Statement block [ElseIf condition=true Then] Statement block [Else] Statement block EndIf<br/>Instead of Else If you can write ElseIf, instead of End If you can write EndIf."
+msgstr "Si la condicion es verdadera entonces pasa al bloque de sentencias condition=true Then Statement block [ElseIf condition=true Then] Statement block [Else] Statement block EndIf<br/>En vez de Else If puedes escribir ElseIf, y en vez de End If puedes escribir EndIf."
+
+#: 03090101.xhp#hd_id3155419.5.help.text
+msgctxt "03090101.xhp#hd_id3155419.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03090101.xhp#par_id3153062.6.help.text
+msgid "The <emph>If...Then</emph> statement executes program blocks depending on given conditions. When $[officename] Basic encounters an <emph>If</emph> statement, the condition is tested. If the condition is True, all subsequent statements up to the next <emph>Else</emph> or <emph>ElseIf</emph> statement are executed. If the condition is False, and an <emph>ElseIf</emph> statement follows, $[officename] Basic tests the next condition and executes the following statements if the condition is True. If False, the program continues either with the next <emph>ElseIf</emph> or <emph>Else</emph> statement. Statements following <emph>Else</emph> are executed only if none of the previously tested conditions were True. After all conditions are evaluated, and the corresponding statements executed, the program continues with the statement following <emph>EndIf</emph>."
+msgstr "La instrucción <emph>If...Then</emph> ejecuta bloques de programa cuando se dan ciertas condiciones. Cuando $[officename] Basic encuentra una instrucción <emph>If</emph>, la condición se comprueba. Si resulta ser cierta, se ejecutan todas las instrucciones posteriores hasta que se encuentre una instrucción <emph>Else</emph> o <emph> ElseIf</emph>. Si la condición es falsa y a continuación hay una instrucción <emph>ElseIf</emph>, $[officename] Basic comprueba la condición siguiente y ejecuta las instrucciones siguientes si la condición resulta ser cierta. Si resulta falsa el programa continúa con la siguiente instrucción <emph>ElseIf</emph> o <emph>Else</emph>. Las instrucciones que siguen a <emph>Else</emph> sólo se ejecutan si ninguna de las condiciones comprobadas anteriormente era cierta. Cuando se han evaluado todas las condiciones y se han ejecutado las instrucciones correspondientes, el programa continúa con la instrucción que sigue a <emph>EndIf</emph>."
+
+#: 03090101.xhp#par_id3153192.7.help.text
+msgid "You can nest multiple <emph>If...Then</emph> statements."
+msgstr "Es posible anidar varias instrucciones <emph>If...Then</emph>."
+
+#: 03090101.xhp#par_id3154684.8.help.text
+msgid "<emph>Else</emph> and <emph>ElseIf</emph> statements are optional."
+msgstr "Las instrucciones <emph>Else</emph> y <emph>ElseIf</emph> son opcionales."
+
+#: 03090101.xhp#par_id3152939.9.help.text
+msgid "You can use <emph>GoTo</emph> and <emph>GoSub</emph> to jump out of an <emph>If...Then</emph> block, but not to jump into an <emph>If...Then</emph> structure."
+msgstr "Se puede usar <emph>GoTo</emph> y <emph>GoSub</emph> para salir de un bloque <emph>If...Then</emph>, pero no para saltar dentro de una estructura <emph>If...Then</emph>."
+
+#: 03090101.xhp#par_id3153951.10.help.text
+msgid "The following example enables you to enter the expiration date of a product, and determines if the expiration date has passed."
+msgstr "El ejemplo siguiente permite introducir una fecha de caducidad de un producto y determina si ésta ya ha pasado."
+
+#: 03090101.xhp#hd_id3152576.11.help.text
+msgctxt "03090101.xhp#hd_id3152576.11.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03090101.xhp#par_id3150011.12.help.text
+msgid "Sub ExampleIfThenDate"
+msgstr "Sub EjemploIfThenFecha"
+
+#: 03090101.xhp#par_id3148645.13.help.text
+msgctxt "03090101.xhp#par_id3148645.13.help.text"
+msgid "Dim sDate as String"
+msgstr "Dim sFecha as String"
+
+#: 03090101.xhp#par_id3155855.14.help.text
+msgid "Dim sToday as String"
+msgstr "Dim sHoy As String"
+
+#: 03090101.xhp#par_id3154490.16.help.text
+msgid "sDate = InputBox(\"Enter the expiration date (MM.DD.YYYY)\")"
+msgstr "sFecha = InputBox(\"Escriba la fecha de caducidad (MM.DD.AAAA)\")"
+
+#: 03090101.xhp#par_id3154943.17.help.text
+msgid "sDate = Right$(sDate, 4) + Mid$(sDate, 4, 2) + Left$(sDate, 2)"
+msgstr "sFecha = Right$(sFecha, 4) + Mid$(sFecha, 4, 2) + Left$(sFecha, 2)"
+
+#: 03090101.xhp#par_id3154098.18.help.text
+msgid "sToday = Date$"
+msgstr "sHoy = Date$"
+
+#: 03090101.xhp#par_id3144765.19.help.text
+msgid "sToday = Right$(sToday, 4)+ Mid$(sToday, 4, 2) + Left$(sToday, 2)"
+msgstr "sHoy = Right$(sHoy, 4) + Mid$(sHoy, 4, 2) + Left$(sHoy, 2)"
+
+#: 03090101.xhp#par_id3154792.20.help.text
+msgid "If sDate < sToday Then"
+msgstr "If sFecha < sHoy Then"
+
+#: 03090101.xhp#par_id3155601.21.help.text
+msgid "MsgBox \"The expiration date has passed\""
+msgstr "MsgBox \"La fecha de caducidad ya ha pasado\""
+
+#: 03090101.xhp#par_id3146972.22.help.text
+msgid "ElseIf sDate > sToday Then"
+msgstr "ElseIf sFecha > sHoy Then"
+
+#: 03090101.xhp#par_id3146912.23.help.text
+msgid "MsgBox \"The expiration date has not yet passed\""
+msgstr "MsgBox \"La fecha de caducidad no ha pasado aún\""
+
+#: 03090101.xhp#par_id3153710.24.help.text
+msgid "Else"
+msgstr "Else"
+
+#: 03090101.xhp#par_id3154754.25.help.text
+msgid "MsgBox \"The expiration date is today\""
+msgstr "MsgBox \"La fecha de caducidad es hoy\""
+
+#: 03090101.xhp#par_id3154361.26.help.text
+msgctxt "03090101.xhp#par_id3154361.26.help.text"
+msgid "End If"
+msgstr "End If"
+
+#: 03090101.xhp#par_id3148405.28.help.text
+msgctxt "03090101.xhp#par_id3148405.28.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03120310.xhp#tit.help.text
+msgid "UCase Function [Runtime]"
+msgstr "Función UCase [Ejecución]"
+
+#: 03120310.xhp#bm_id3153527.help.text
+msgid "<bookmark_value>UCase function</bookmark_value>"
+msgstr "<bookmark_value>UCase;función</bookmark_value>"
+
+#: 03120310.xhp#hd_id3153527.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase Function [Runtime]\">UCase Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase Function [Runtime]\">Función UCase [Ejecución]</link>"
+
+#: 03120310.xhp#par_id3155420.2.help.text
+msgid "Converts lowercase characters in a string to uppercase."
+msgstr "Convierte los caracteres en minúsculas de una cadena en mayúsculas."
+
+#: 03120310.xhp#par_id3150771.3.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function\">LCase Function</link>"
+msgstr "Consulte también: <link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function\">Función LCase</link>"
+
+#: 03120310.xhp#par_id3149233.4.help.text
+msgid "<emph>Syntax</emph>:"
+msgstr "<emph>Sintaxis</emph>:"
+
+#: 03120310.xhp#par_id3153061.5.help.text
+msgid "UCase (Text As String)"
+msgstr "UCase (Texto As String)"
+
+#: 03120310.xhp#par_id3159414.6.help.text
+msgid "<emph>Return value</emph>:"
+msgstr "<emph>Valor de retorno</emph>:"
+
+#: 03120310.xhp#par_id3146795.7.help.text
+msgctxt "03120310.xhp#par_id3146795.7.help.text"
+msgid "String"
+msgstr "Cadena"
+
+#: 03120310.xhp#hd_id3149457.8.help.text
+msgctxt "03120310.xhp#hd_id3149457.8.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03120310.xhp#par_id3150791.9.help.text
+msgctxt "03120310.xhp#par_id3150791.9.help.text"
+msgid "<emph>Text:</emph> Any string expression that you want to convert."
+msgstr "<emph>Texto:</emph> Cualquier expresión de cadena que se desee convertir."
+
+#: 03120310.xhp#hd_id3154125.10.help.text
+msgctxt "03120310.xhp#hd_id3154125.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03120310.xhp#par_id3147229.11.help.text
+msgctxt "03120310.xhp#par_id3147229.11.help.text"
+msgid "Sub ExampleLUCase"
+msgstr "Sub EjemploLUCase"
+
+#: 03120310.xhp#par_id3151381.12.help.text
+msgctxt "03120310.xhp#par_id3151381.12.help.text"
+msgid "Dim sVar As String"
+msgstr "Dim sVar As String"
+
+#: 03120310.xhp#par_id3153194.13.help.text
+msgctxt "03120310.xhp#par_id3153194.13.help.text"
+msgid "sVar = \"Las Vegas\""
+msgstr "sVar = \"Las Vegas\""
+
+#: 03120310.xhp#par_id3149204.14.help.text
+msgid "Print LCase(sVar) REM returns \"las vegas\""
+msgstr "Print LCase(sVar) REM devuelve \"las vegas\""
+
+#: 03120310.xhp#par_id3156280.15.help.text
+msgid "Print UCase(sVar) REM returns \"LAS VEGAS\""
+msgstr "Print UCase(sVar) REM devuelve \"LAS VEGAS\""
+
+#: 03120310.xhp#par_id3156422.16.help.text
+msgctxt "03120310.xhp#par_id3156422.16.help.text"
+msgid "end Sub"
+msgstr "End Sub"
+
+#: 03103100.xhp#tit.help.text
+msgid "Let Statement [Runtime]"
+msgstr "Instrucción Let [Ejecución]"
+
+#: 03103100.xhp#bm_id3147242.help.text
+msgid "<bookmark_value>Let statement</bookmark_value>"
+msgstr "<bookmark_value>Let;instrucción</bookmark_value>"
+
+#: 03103100.xhp#hd_id3147242.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103100.xhp\" name=\"Let Statement [Runtime]\">Let Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103100.xhp\" name=\"Let Statement [Runtime]\">Instrucción Let [Ejecución]</link>"
+
+#: 03103100.xhp#par_id3149233.2.help.text
+msgid "Assigns a value to a variable."
+msgstr "Asigna un valor a una variable."
+
+#: 03103100.xhp#hd_id3153127.3.help.text
+msgctxt "03103100.xhp#hd_id3153127.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03103100.xhp#par_id3154285.4.help.text
+msgid "[Let] VarName=Expression"
+msgstr "[Let] NombreVar=Expresión"
+
+#: 03103100.xhp#hd_id3148944.5.help.text
+msgctxt "03103100.xhp#hd_id3148944.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03103100.xhp#par_id3147560.6.help.text
+msgid "<emph>VarName:</emph> Variable that you want to assign a value to. Value and variable type must be compatible."
+msgstr "<emph>NombreVar:</emph> Variable a la que se desea asignar un valor. El valor y el tipo de variable deben ser compatibles."
+
+#: 03103100.xhp#par_id3148451.7.help.text
+msgid "As in most BASIC dialects, the keyword <emph>Let</emph> is optional."
+msgstr "Como en casi todos los dialectos de BASIC, la palabra clave <emph>Let</emph> es opcional."
+
+#: 03103100.xhp#hd_id3145785.8.help.text
+msgctxt "03103100.xhp#hd_id3145785.8.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03103100.xhp#par_id3150441.9.help.text
+msgctxt "03103100.xhp#par_id3150441.9.help.text"
+msgid "Sub ExampleLen"
+msgstr "Sub EjemploLet"
+
+#: 03103100.xhp#par_id3159254.10.help.text
+msgctxt "03103100.xhp#par_id3159254.10.help.text"
+msgid "Dim sText as String"
+msgstr "Dim sTexto as String"
+
+#: 03103100.xhp#par_id3149481.11.help.text
+msgid "Let sText = \"Las Vegas\""
+msgstr "Let sTexto = \"Las Vegas\""
+
+#: 03103100.xhp#par_id3152939.12.help.text
+msgid "msgbox Len(sText) REM returns 9"
+msgstr "msgBox Len(sTexto) REM devuelve 9"
+
+#: 03103100.xhp#par_id3146921.13.help.text
+msgctxt "03103100.xhp#par_id3146921.13.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03020412.xhp#tit.help.text
+msgid "Name Statement [Runtime]"
+msgstr "Instrucción Name [Ejecución]"
+
+#: 03020412.xhp#bm_id3143268.help.text
+msgid "<bookmark_value>Name statement</bookmark_value>"
+msgstr "<bookmark_value>Name;instrucción</bookmark_value>"
+
+#: 03020412.xhp#hd_id3143268.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020412.xhp\" name=\"Name Statement [Runtime]\">Name Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020412.xhp\" name=\"Instrucción Name [Runtime]\">Instrucción Name [Ejecución]</link>"
+
+#: 03020412.xhp#par_id3154346.2.help.text
+msgid "Renames an existing file or directory."
+msgstr "Cambia el nombre a un archivo o directorio existente."
+
+#: 03020412.xhp#hd_id3156344.3.help.text
+msgctxt "03020412.xhp#hd_id3156344.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03020412.xhp#par_id3153381.4.help.text
+msgid "Name OldName As String As NewName As String"
+msgstr "Name NombreAntiguo As String As NombreNuevo As String"
+
+#: 03020412.xhp#hd_id3153362.5.help.text
+msgctxt "03020412.xhp#hd_id3153362.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03020412.xhp#par_id3151210.6.help.text
+msgid "<emph>OldName, NewName:</emph> Any string expression that specifies the file name, including the path. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>NombreAntiguo, NombreNuevo:</emph> Cualquier expresión de cadena que especifique el nombre de archivo, incluida la ruta de acceso. También se puede usar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notación URL\">notación URL</link>."
+
+#: 03020412.xhp#hd_id3125863.8.help.text
+msgctxt "03020412.xhp#hd_id3125863.8.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03020412.xhp#par_id3145786.9.help.text
+msgid "Sub ExampleReName"
+msgstr "Sub EjemploReName"
+
+#: 03020412.xhp#par_id3161832.10.help.text
+msgid "On Error Goto Error"
+msgstr "On Error Goto Error"
+
+#: 03020412.xhp#par_id3147435.11.help.text
+msgid "Filecopy \"c:\\autoexec.bat\", \"c:\\temp\\autoexec.sav\""
+msgstr "Filecopy \"c:\\autoexec.bat\", \"c:\\temp\\autoexec.sav\""
+
+#: 03020412.xhp#par_id3156444.12.help.text
+msgid "Name \"c:\\temp\\autoexec.sav\" as \"c:\\temp\\autoexec.bat\""
+msgstr "Asignar a \"c:\\temp\\autoexec.sav\" el nombre \"c:\\temp\\autoexec.bat\""
+
+#: 03020412.xhp#par_id3155308.13.help.text
+msgctxt "03020412.xhp#par_id3155308.13.help.text"
+msgid "end"
+msgstr "end"
+
+#: 03020412.xhp#par_id3153727.14.help.text
+msgid "Error:"
+msgstr "Error:"
+
+#: 03020412.xhp#par_id3153951.15.help.text
+msgid "if err = 58 then"
+msgstr "if err = 58 then"
+
+#: 03020412.xhp#par_id3152462.16.help.text
+msgid "msgbox \"File already exists\""
+msgstr "msgbox \"El archivo ya existe\""
+
+#: 03020412.xhp#par_id3149263.17.help.text
+msgctxt "03020412.xhp#par_id3149263.17.help.text"
+msgid "end if"
+msgstr "end if"
+
+#: 03020412.xhp#par_id3154011.18.help.text
+msgctxt "03020412.xhp#par_id3154011.18.help.text"
+msgid "end"
+msgstr "end"
+
+#: 03020412.xhp#par_id3146985.19.help.text
+msgctxt "03020412.xhp#par_id3146985.19.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03030205.xhp#tit.help.text
+msgid "TimeSerial Function [Runtime]"
+msgstr "Función TimeSerial [Ejecución]"
+
+#: 03030205.xhp#bm_id3143271.help.text
+msgid "<bookmark_value>TimeSerial function</bookmark_value>"
+msgstr "<bookmark_value>TimeSerial;función</bookmark_value>"
+
+#: 03030205.xhp#hd_id3143271.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030205.xhp\" name=\"TimeSerial Function [Runtime]\">TimeSerial Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030205.xhp\" name=\"Función TimeSerial [Runtime]\">Función TimeSerial [Ejecución]</link>"
+
+#: 03030205.xhp#par_id3156344.2.help.text
+msgid "Calculates a serial time value for the specified hour, minute, and second parameters that are passed as numeric value. You can then use this value to calculate the difference between times."
+msgstr "Calcula un valor de hora serie para los parámetros de hora, minuto y segundo especificados que se hayan pasado como valores numéricos. También se puede usar este valor para calcular la diferencia entre dos horas."
+
+#: 03030205.xhp#hd_id3146794.4.help.text
+msgctxt "03030205.xhp#hd_id3146794.4.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03030205.xhp#par_id3150792.5.help.text
+msgid "TimeSerial (hour, minute, second)"
+msgstr "TimeSerial (hora, minuto, segundo)"
+
+#: 03030205.xhp#hd_id3148797.6.help.text
+msgctxt "03030205.xhp#hd_id3148797.6.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03030205.xhp#par_id3154908.7.help.text
+msgctxt "03030205.xhp#par_id3154908.7.help.text"
+msgid "Date"
+msgstr "Fecha"
+
+#: 03030205.xhp#hd_id3154124.8.help.text
+msgctxt "03030205.xhp#hd_id3154124.8.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03030205.xhp#par_id3153193.9.help.text
+msgid "<emph>hour:</emph> Any integer expression that indicates the hour of the time that is used to determine the serial time value. Valid values: 0-23."
+msgstr "<emph>hora:</emph> Cualquier expresión entera que indique la hora utilizada para determinar el valor de hora serie. Valores válidos: 0-23."
+
+#: 03030205.xhp#par_id3159252.10.help.text
+msgid "<emph>minute:</emph> Any integer expression that indicates the minute of the time that is used to determine the serial time value. In general, use values between 0 and 59. However, you can also use values that lie outside of this range, where the number of minutes influence the hour value."
+msgstr "<emph>minuto:</emph> Cualquier expresión entera que indique el minuto de la hora utilizada para determinar el valor de hora serie. En general, se usan valores entre 0 y 59. Sin embargo, también se pueden usar valores que excedan este rango, en que el número de minutos afecta al valor de hora."
+
+#: 03030205.xhp#par_id3161831.11.help.text
+msgid "<emph>second:</emph> Any integer expression that indicates the second of the time that is used to determine the serial time value. In general, you can use values between 0 and 59. However, you can also use values that lie outside of this range, where the number seconds influences the minute value."
+msgstr "<emph>segundo:</emph> Cualquier expresión entera que indique el segundo de la hora utilizada para determinar el valor de hora serie. En general, se usan valores entre 0 y 59. Sin embargo, también se pueden usar valores que excedan este rango, en que el número de segundos afecta al valor de minuto."
+
+#: 03030205.xhp#par_id3155854.12.help.text
+msgid "<emph>Examples:</emph>"
+msgstr "<emph>Ejemplos:</emph>"
+
+#: 03030205.xhp#par_id3153952.13.help.text
+msgid "12, -5, 45 corresponds to 11, 55, 45"
+msgstr "12, -5, 45 se corresponde con 11, 55, 45"
+
+#: 03030205.xhp#par_id3147349.14.help.text
+msgid "12, 61, 45 corresponds to 13, 2, 45"
+msgstr "12, 61, 45 se corresponde con 13, 2, 45"
+
+#: 03030205.xhp#par_id3147426.15.help.text
+msgid "12, 20, -2 corresponds to 12, 19, 58"
+msgstr "12, 20, -2 se corresponde con 12, 19, 58"
+
+#: 03030205.xhp#par_id3153365.16.help.text
+msgid "12, 20, 63 corresponds to 12, 21, 4"
+msgstr "12, 20, 63 se corresponde con 12, 21, 4"
+
+#: 03030205.xhp#par_id3146985.17.help.text
+msgid "You can use the TimeSerial function to convert any time into a single value that you can use to calculate time differences."
+msgstr "La función TimeSerial se puede usar para convertir cualquier hora en un valor simple que se puede usar para calcular diferencias entre horas."
+
+#: 03030205.xhp#par_id3155308.18.help.text
+msgid "The TimeSerial function returns the type Variant with VarType 7 (Date). This value is stored internally as a double-precision number between 0 and 0.9999999999. As opposed to the DateSerial or DateValue function, where the serial date values are calculated as days relative to a fixed date, you can calculate with values returned by the TimeSerial function, but you cannot evaluate them."
+msgstr "La función TimeSerial devuelve el tipo de datos Variante con VarType 7 (Fecha). Este valor se almacena internamente como número de precisión doble entre 0 y 0,9999999999. A diferencia de lo que ocurre con las funciones DateSerial o DateValue, en las que los valores de fecha serie se calculan como días relativos a una fecha fija, con los valores que devuelve la función TimeSerial se pueden realizar cálculos pero no evaluarlos."
+
+#: 03030205.xhp#par_id3149482.19.help.text
+msgid "In the TimeValue function, you can pass a string as a parameter containing the time. For the TimeSerial function, however, you can pass the individual parameters (hour, minute, second) as separate numeric expressions."
+msgstr "En la función TimeValue puede pasarse una cadena como parámetro que contiene la hora. Sin embargo, en la función TimeSerial pueden pasarse los parámetros individuales (hora, minuto, segundo) como expresiones numéricas independientes."
+
+#: 03030205.xhp#hd_id3154790.20.help.text
+msgctxt "03030205.xhp#hd_id3154790.20.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03030205.xhp#par_id3145252.21.help.text
+msgid "Sub ExampleTimeSerial"
+msgstr "Sub EjemploTimeSerial"
+
+#: 03030205.xhp#par_id3153157.22.help.text
+msgid "Dim dDate As Double, sDate As String"
+msgstr "Dim dFecha As Double, sFecha As String"
+
+#: 03030205.xhp#par_id3156286.23.help.text
+msgid "dDate = TimeSerial(8,30,15)"
+msgstr "dFecha = TimeSerial(8,30,15)"
+
+#: 03030205.xhp#par_id3148456.24.help.text
+msgid "sDate = TimeSerial(8,30,15)"
+msgstr "sFecha = TimeSerial(8,30,15)"
+
+#: 03030205.xhp#par_id3155600.25.help.text
+msgid "MsgBox dDate,64,\"Time as a number\""
+msgstr "MsgBox dDate,64,\"Hora como número\""
+
+#: 03030205.xhp#par_id3153417.26.help.text
+msgid "MsgBox sDate,64,\"Formatted time\""
+msgstr "MsgBox sDate,64,\"Hora con formato\""
+
+#: 03030205.xhp#par_id3153836.27.help.text
+msgctxt "03030205.xhp#par_id3153836.27.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03020101.xhp#tit.help.text
+msgid "Close Statement [Runtime]"
+msgstr "Instrucción Close [Ejecución]"
+
+#: 03020101.xhp#bm_id3157896.help.text
+msgid "<bookmark_value>Close statement</bookmark_value>"
+msgstr "<bookmark_value>Close;instrucción</bookmark_value>"
+
+#: 03020101.xhp#hd_id3157896.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020101.xhp\" name=\"Close Statement [Runtime]\">Close Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020101.xhp\" name=\"Instrucción Close [Runtime]\">Instrucción Close [Runtime]</link>"
+
+#: 03020101.xhp#par_id3147573.2.help.text
+msgid "Closes a specified file that was opened with the Open statement."
+msgstr "Cierra un archivo especificado que se abrió con la instrucción Open."
+
+#: 03020101.xhp#hd_id3156344.3.help.text
+msgctxt "03020101.xhp#hd_id3156344.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03020101.xhp#par_id3147265.4.help.text
+msgid "Close FileNumber As Integer[, FileNumber2 As Integer[,...]] "
+msgstr "Close NúmeroArchivo As Integer[, NúmeroArchivo2 As Integer[,...]]"
+
+#: 03020101.xhp#hd_id3153379.5.help.text
+msgctxt "03020101.xhp#hd_id3153379.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03020101.xhp#par_id3150791.6.help.text
+msgid "<emph>FileNumber:</emph> Any integer expression that specifies the number of the data channel that was opened with the <emph>Open</emph> statement."
+msgstr "<emph>NúmeroArchivo:</emph> Cualquier expresión entera que especifique el número de canal de datos que se abrió con la instrucción <emph>Open</emph>."
+
+#: 03020101.xhp#hd_id3153192.7.help.text
+msgctxt "03020101.xhp#hd_id3153192.7.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03020101.xhp#par_id3154909.8.help.text
+msgctxt "03020101.xhp#par_id3154909.8.help.text"
+msgid "Sub ExampleWorkWithAFile"
+msgstr "Sub EjemploTrabajoConArchivo"
+
+#: 03020101.xhp#par_id3154124.9.help.text
+msgctxt "03020101.xhp#par_id3154124.9.help.text"
+msgid "Dim iNumber As Integer"
+msgstr "Dim iNumero As Integer"
+
+#: 03020101.xhp#par_id3155132.10.help.text
+msgctxt "03020101.xhp#par_id3155132.10.help.text"
+msgid "Dim sLine As String"
+msgstr "Dim sLinea As String"
+
+#: 03020101.xhp#par_id3155854.11.help.text
+msgctxt "03020101.xhp#par_id3155854.11.help.text"
+msgid "Dim aFile As String"
+msgstr "Dim aArchivo As String"
+
+#: 03020101.xhp#par_id3146985.34.help.text
+msgctxt "03020101.xhp#par_id3146985.34.help.text"
+msgid "Dim sMsg as String"
+msgstr "Dim sMensaje as String"
+
+#: 03020101.xhp#par_id3154013.12.help.text
+msgctxt "03020101.xhp#par_id3154013.12.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr "aArchivo = \"c:\\data.txt\""
+
+#: 03020101.xhp#par_id3152598.13.help.text
+msgctxt "03020101.xhp#par_id3152598.13.help.text"
+msgid "sMsg = \"\""
+msgstr "sMensaje = \"\""
+
+#: 03020101.xhp#par_id3147427.14.help.text
+msgctxt "03020101.xhp#par_id3147427.14.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumero = Freefile"
+
+#: 03020101.xhp#par_id3151112.15.help.text
+msgctxt "03020101.xhp#par_id3151112.15.help.text"
+msgid "Open aFile For Output As #iNumber"
+msgstr "Open aArchivo For Output As #iNumero"
+
+#: 03020101.xhp#par_id3153727.16.help.text
+msgctxt "03020101.xhp#par_id3153727.16.help.text"
+msgid "Print #iNumber, \"First line of text\""
+msgstr "Print #iNumero, \"Primera línea de texto\""
+
+#: 03020101.xhp#par_id3147350.17.help.text
+msgctxt "03020101.xhp#par_id3147350.17.help.text"
+msgid "Print #iNumber, \"Another line of text\""
+msgstr "Print #iNumero, \"Otra línea de texto\""
+
+#: 03020101.xhp#par_id3149667.18.help.text
+msgctxt "03020101.xhp#par_id3149667.18.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumero"
+
+#: 03020101.xhp#par_id3145801.22.help.text
+msgctxt "03020101.xhp#par_id3145801.22.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumero = Freefile"
+
+#: 03020101.xhp#par_id3147396.23.help.text
+msgctxt "03020101.xhp#par_id3147396.23.help.text"
+msgid "Open aFile For Input As iNumber"
+msgstr "Open aArchivo For Input As iNumero"
+
+#: 03020101.xhp#par_id3147124.24.help.text
+msgctxt "03020101.xhp#par_id3147124.24.help.text"
+msgid "While not eof(iNumber)"
+msgstr "While not eof(iNumero)"
+
+#: 03020101.xhp#par_id3154491.25.help.text
+msgctxt "03020101.xhp#par_id3154491.25.help.text"
+msgid "Line Input #iNumber, sLine"
+msgstr "Line Input #iNumero, sLinea"
+
+#: 03020101.xhp#par_id3149581.26.help.text
+msgctxt "03020101.xhp#par_id3149581.26.help.text"
+msgid "If sLine <>\"\" then"
+msgstr "If sLinea <>\"\" then"
+
+#: 03020101.xhp#par_id3155602.27.help.text
+msgctxt "03020101.xhp#par_id3155602.27.help.text"
+msgid "sMsg = sMsg & sLine & chr(13)"
+msgstr "sMensaje = sMensaje & sLinea & chr(13)"
+
+#: 03020101.xhp#par_id3154511.29.help.text
+msgctxt "03020101.xhp#par_id3154511.29.help.text"
+msgid "end if"
+msgstr "end if"
+
+#: 03020101.xhp#par_id3150749.30.help.text
+msgctxt "03020101.xhp#par_id3150749.30.help.text"
+msgid "wend"
+msgstr "wend"
+
+#: 03020101.xhp#par_id3156276.31.help.text
+msgctxt "03020101.xhp#par_id3156276.31.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumero"
+
+#: 03020101.xhp#par_id3155066.35.help.text
+msgctxt "03020101.xhp#par_id3155066.35.help.text"
+msgid "Msgbox sMsg"
+msgstr "Msgbox sMensaje"
+
+#: 03020101.xhp#par_id3154754.32.help.text
+msgctxt "03020101.xhp#par_id3154754.32.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03010300.xhp#tit.help.text
+msgid "Color Functions"
+msgstr "Funciones de color"
+
+#: 03010300.xhp#hd_id3157896.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010300.xhp\" name=\"Color Functions\">Color Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03010300.xhp\" name=\"Funciones de color\">Funciones de color</link>"
+
+#: 03010300.xhp#par_id3155555.2.help.text
+msgid "This section describes Runtime functions used to define colors."
+msgstr "Aquí encontrará todas las funciones utilizadas para definir colores."
+
+#: 03104500.xhp#tit.help.text
+msgid "IsUnoStruct Function [Runtime]"
+msgstr "Función IsUnoStruct [Ejecución]"
+
+#: 03104500.xhp#bm_id3146117.help.text
+msgid "<bookmark_value>IsUnoStruct function</bookmark_value>"
+msgstr "<bookmark_value>IsUnoStruct;función</bookmark_value>"
+
+#: 03104500.xhp#hd_id3146117.1.help.text
+msgid "<link href=\"text/sbasic/shared/03104500.xhp\" name=\"IsUnoStruct Function [Runtime]\">IsUnoStruct Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104500.xhp\" name=\"IsUnoStruct Function [Runtime]\">Función IsUnoStruct [Ejecución]</link>"
+
+#: 03104500.xhp#par_id3146957.2.help.text
+msgid "Returns True if the given object is a Uno struct."
+msgstr "Devuelve True si el objeto dado es una estructura Uno."
+
+#: 03104500.xhp#hd_id3148538.3.help.text
+msgctxt "03104500.xhp#hd_id3148538.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03104500.xhp#par_id3155341.4.help.text
+msgid "IsUnoStruct( Uno type )"
+msgstr "IsUnoStruct( nombre de tipo Uno )"
+
+#: 03104500.xhp#hd_id3148473.5.help.text
+msgctxt "03104500.xhp#hd_id3148473.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03104500.xhp#par_id3145315.6.help.text
+msgctxt "03104500.xhp#par_id3145315.6.help.text"
+msgid "Bool"
+msgstr "Lógico"
+
+#: 03104500.xhp#hd_id3145609.7.help.text
+msgctxt "03104500.xhp#hd_id3145609.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03104500.xhp#par_id3148947.8.help.text
+msgid "Uno type : A UnoObject"
+msgstr "Nombre de tipo Uno: Nombre de un tipo Uno."
+
+#: 03104500.xhp#hd_id3156343.9.help.text
+msgctxt "03104500.xhp#hd_id3156343.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03104500.xhp#par_idN10632.help.text
+msgctxt "03104500.xhp#par_idN10632.help.text"
+msgid "Sub Main"
+msgstr "Sub Main"
+
+#: 03104500.xhp#par_idN10635.help.text
+msgid "Dim bIsStruct"
+msgstr "Dim bIsStruct"
+
+#: 03104500.xhp#par_idN10638.help.text
+msgid "' Instantiate a service"
+msgstr "' Crear un caso de un servicio"
+
+#: 03104500.xhp#par_idN1063B.help.text
+msgid "Dim oSimpleFileAccess"
+msgstr "Dim oSimpleFileAccess"
+
+#: 03104500.xhp#par_idN1063E.help.text
+msgid "oSimpleFileAccess = CreateUnoService( \"com.sun.star.ucb.SimpleFileAccess\" )"
+msgstr "oSimpleFileAccess = CreateUnoService( \"com.sun.star.ucb.SimpleFileAccess\" )"
+
+#: 03104500.xhp#par_idN10641.help.text
+msgid "bIsStruct = IsUnoStruct( oSimpleFileAccess )"
+msgstr "bIsStruct = IsUnoStruct( oSimpleFileAccess )"
+
+#: 03104500.xhp#par_idN10644.help.text
+msgid "MsgBox bIsStruct ' Displays False because oSimpleFileAccess is NO struct"
+msgstr "MsgBox bIsStruct ' Displays False because oSimpleFileAccess is NO struct"
+
+#: 03104500.xhp#par_idN10649.help.text
+msgid "' Instantiate a Property struct"
+msgstr "' Crear un caso de struct Property"
+
+#: 03104500.xhp#par_idN1064D.help.text
+msgid "Dim aProperty As New com.sun.star.beans.Property"
+msgstr "Dim aProperty As New com.sun.star.beans.Property"
+
+#: 03104500.xhp#par_idN10650.help.text
+msgid "bIsStruct = IsUnoStruct( aProperty )"
+msgstr "bIsStruct = IsUnoStruct( aProperty )"
+
+#: 03104500.xhp#par_idN10653.help.text
+msgid "MsgBox bIsStruct ' Displays True because aProperty is a struct"
+msgstr "MsgBox bIsStruct ' Displays True because aProperty is a struct"
+
+#: 03104500.xhp#par_idN10658.help.text
+msgid "bIsStruct = IsUnoStruct( 42 )"
+msgstr "bIsStruct = IsUnoStruct( 42 )"
+
+#: 03104500.xhp#par_idN1065B.help.text
+msgid "MsgBox bIsStruct ' Displays False because 42 is NO struct"
+msgstr "MsgBox bIsStruct ' Displays False because 42 is NO struct"
+
+#: 03104500.xhp#par_idN10660.help.text
+msgctxt "03104500.xhp#par_idN10660.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03080100.xhp#tit.help.text
+msgid "Trigonometric Functions"
+msgstr "Funciones trigonométricas"
+
+#: 03080100.xhp#hd_id3159201.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080100.xhp\" name=\"Trigonometric Functions\">Trigonometric Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03080100.xhp\" name=\"Funciones trigonométricas\">Funciones trigonométricas</link>"
+
+#: 03080100.xhp#par_id3149180.2.help.text
+msgid "The following are the trigonometric functions that are supported in $[officename] Basic."
+msgstr "Las funciones trigonométricas siguientes se admiten en $[officename] Basic."
+
+#: 01170100.xhp#tit.help.text
+msgid "Control and Dialog Properties"
+msgstr "Propiedades de los campos de control y diálogos"
+
+#: 01170100.xhp#bm_id3153379.help.text
+msgid "<bookmark_value>controls; properties</bookmark_value><bookmark_value>properties; controls and dialogs</bookmark_value><bookmark_value>dialogs; properties</bookmark_value>"
+msgstr "<bookmark_value>campos de control; propiedades</bookmark_value><bookmark_value>propiedades; campos de control</bookmark_value><bookmark_value>propiedades; diálogos</bookmark_value><bookmark_value>diálogos; propiedades</bookmark_value>"
+
+#: 01170100.xhp#hd_id3153379.1.help.text
+msgid "<link href=\"text/sbasic/shared/01170100.xhp\" name=\"Control and Dialog Properties\">Control and Dialog Properties</link>"
+msgstr "<link href=\"text/sbasic/shared/01170100.xhp\" name=\"Propiedades de los campos de control y diálogos\">Propiedades de los campos de control y diálogos</link>"
+
+#: 01170100.xhp#par_id3156280.2.help.text
+msgid "<ahelp hid=\".\">Specifies the properties of the selected dialog or control.</ahelp> You must be in the design mode to be able to use this command."
+msgstr "<ahelp hid=\".\">Especifica las propiedades del diálogo o el control seleccionados.</ahelp> Debe estar en modo diseño para utilizar este comando."
+
+#: 01170100.xhp#hd_id3151043.20.help.text
+msgid "Entering Data in the Properties Dialog"
+msgstr "Introducción de datos en el diálogo Propiedades"
+
+#: 01170100.xhp#par_id3153771.3.help.text
+msgid "The following key combinations apply to enter data in multiline fields or combo boxes of the <emph>Properties</emph> dialog:"
+msgstr "Las combinaciones de tecla siguientes se utilizan para introducir datos en campos multilínea o en cuadros combinados del diálogo <emph>Propiedades</emph>:"
+
+#: 01170100.xhp#par_id3150010.18.help.text
+msgid "Keys"
+msgstr "<emph>Teclas</emph>"
+
+#: 01170100.xhp#par_id3147317.19.help.text
+msgid "Effects"
+msgstr "<emph>Efecto</emph>"
+
+#: 01170100.xhp#par_id3146121.4.help.text
+msgid "Alt+Down Arrow"
+msgstr "(Alt)+(Flecha abajo)"
+
+#: 01170100.xhp#par_id3149581.5.help.text
+msgid "Opens a combo box"
+msgstr "Abre un cuadro combinado"
+
+#: 01170100.xhp#par_id3147394.6.help.text
+msgid "Alt+Up Arrow"
+msgstr "(Alt)+(Flecha arriba)"
+
+#: 01170100.xhp#par_id3148455.7.help.text
+msgid "Closes a combo box"
+msgstr "Cierra un cuadro combinado"
+
+#: 01170100.xhp#par_id3154511.8.help.text
+msgid "Shift+Enter"
+msgstr "(Mayús)+(Entrar)"
+
+#: 01170100.xhp#par_id3146971.9.help.text
+msgid "Inserts a line break in multiline fields."
+msgstr "Inserta un salto de línea en campos multilínea."
+
+#: 01170100.xhp#par_id3146914.10.help.text
+msgid "(UpArrow)"
+msgstr "(Flecha arriba)"
+
+#: 01170100.xhp#par_id3153714.11.help.text
+msgid "Goes to the previous line."
+msgstr "Va a la línea anterior."
+
+#: 01170100.xhp#par_id3159266.12.help.text
+msgid "(DownArrow)"
+msgstr "(Flecha abajo)"
+
+#: 01170100.xhp#par_id3146314.13.help.text
+msgid "Goes to the next line."
+msgstr "Va a la línea siguiente."
+
+#: 01170100.xhp#par_id3149255.14.help.text
+msgid "Enter"
+msgstr "(Entrar)"
+
+#: 01170100.xhp#par_id3149566.15.help.text
+msgid "Applies the changes made to a field and places the cursor into the next field."
+msgstr "Aplica los cambios realizados en un campo y sitúa el cursor en el campo siguiente."
+
+#: 03090406.xhp#tit.help.text
+msgid "Function Statement [Runtime]"
+msgstr "instrucción Function [Ejecución]"
+
+#: 03090406.xhp#bm_id3153346.help.text
+msgid "<bookmark_value>Function statement</bookmark_value>"
+msgstr "<bookmark_value>Function;instrucción</bookmark_value>"
+
+#: 03090406.xhp#hd_id3153346.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090406.xhp\" name=\"Function Statement [Runtime]\">Function Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090406.xhp\" name=\"Function Statement [Runtime]\">instrucción Function [Ejecución]</link>"
+
+#: 03090406.xhp#par_id3159158.2.help.text
+msgid "Defines a subroutine that can be used as an expression to determine a return type."
+msgstr "Define una subrutina que puede usarse como expresión para determinar un tipo de retorno."
+
+#: 03090406.xhp#hd_id3145316.3.help.text
+msgctxt "03090406.xhp#hd_id3145316.3.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 03090406.xhp#par_id3148944.4.help.text
+msgid "see Parameter"
+msgstr "consulte Parámetro"
+
+#: 03090406.xhp#hd_id3154760.5.help.text
+msgctxt "03090406.xhp#hd_id3154760.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03090406.xhp#par_id3156344.6.help.text
+msgctxt "03090406.xhp#par_id3156344.6.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 03090406.xhp#par_id3149457.7.help.text
+msgid "Function Name[(VarName1 [As Type][, VarName2 [As Type][,...]]]) [As Type]"
+msgstr "Function Nombre[(NombVar1 [As Tipo][, NombVar2 [As Tipo][,...]]]) [As Tipo]"
+
+#: 03090406.xhp#par_id3153360.8.help.text
+msgctxt "03090406.xhp#par_id3153360.8.help.text"
+msgid "statement block"
+msgstr "bloque de instrucciones"
+
+#: 03090406.xhp#par_id3148797.9.help.text
+msgid "[Exit Function]"
+msgstr "[Final de la función]"
+
+#: 03090406.xhp#par_id3145419.10.help.text
+msgctxt "03090406.xhp#par_id3145419.10.help.text"
+msgid "statement block"
+msgstr "bloque de instrucciones"
+
+#: 03090406.xhp#par_id3150449.11.help.text
+msgctxt "03090406.xhp#par_id3150449.11.help.text"
+msgid "End Function"
+msgstr "End Function"
+
+#: 03090406.xhp#par_id3156281.12.help.text
+msgctxt "03090406.xhp#par_id3156281.12.help.text"
+msgid "Parameter"
+msgstr "Parámetro"
+
+#: 03090406.xhp#par_id3153193.13.help.text
+msgid "<emph>Name:</emph> Name of the subroutine to contain the value returned by the function."
+msgstr "<emph>Nombre:</emph> Nombre de la subrutina que contendrá el valor devuelto por la función."
+
+#: 03090406.xhp#par_id3147229.14.help.text
+msgid "<emph>VarName:</emph> Parameter to be passed to the subroutine."
+msgstr "<emph>NombVar:</emph> Parámetro que se pasará a la subrutina."
+
+#: 03090406.xhp#par_id3147287.15.help.text
+msgid "<emph>Type:</emph> Type-declaration keyword."
+msgstr "<emph>Tipo:</emph> Palabra clave de declaración de tipo."
+
+#: 03090406.xhp#hd_id3163710.16.help.text
+msgctxt "03090406.xhp#hd_id3163710.16.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03090406.xhp#par_id3147214.17.help.text
+msgctxt "03090406.xhp#par_id3147214.17.help.text"
+msgid "Sub ExampleExit"
+msgstr "Sub EjemploSalida"
+
+#: 03090406.xhp#par_id3152596.18.help.text
+msgctxt "03090406.xhp#par_id3152596.18.help.text"
+msgid "Dim sReturn As String"
+msgstr "Dim sRetorno As String"
+
+#: 03090406.xhp#par_id3153364.19.help.text
+msgctxt "03090406.xhp#par_id3153364.19.help.text"
+msgid "Dim sListArray(10) as String"
+msgstr "Dim sMatrizLista(10) as String"
+
+#: 03090406.xhp#par_id3149481.20.help.text
+msgctxt "03090406.xhp#par_id3149481.20.help.text"
+msgid "Dim siStep as Single"
+msgstr "Dim siPaso as Single"
+
+#: 03090406.xhp#par_id3152939.21.help.text
+msgctxt "03090406.xhp#par_id3152939.21.help.text"
+msgid "For siStep = 0 to 10 REM Fill array with test data"
+msgstr "For siPaso = 0 to 10 REM Rellenar matriz con datos de prueba"
+
+#: 03090406.xhp#par_id3147349.22.help.text
+msgid "sListArray(siStep) = chr$(siStep + 65)"
+msgstr "sMatrizLista(siPaso) = chr$(siPaso + 65)"
+
+#: 03090406.xhp#par_id3147426.23.help.text
+msgctxt "03090406.xhp#par_id3147426.23.help.text"
+msgid "msgbox sListArray(siStep)"
+msgstr "msgbox sMatrizLista(siPaso)"
+
+#: 03090406.xhp#par_id3152576.24.help.text
+msgctxt "03090406.xhp#par_id3152576.24.help.text"
+msgid "next siStep"
+msgstr "next siPaso"
+
+#: 03090406.xhp#par_id3146922.25.help.text
+msgctxt "03090406.xhp#par_id3146922.25.help.text"
+msgid "sReturn = LinSearch(sListArray(), \"B\")"
+msgstr "sRetorno = BuscaLin(sMatrizLista(), \"B\")"
+
+#: 03090406.xhp#par_id3153140.26.help.text
+msgctxt "03090406.xhp#par_id3153140.26.help.text"
+msgid "Print sReturn"
+msgstr "Print sRetorno"
+
+#: 03090406.xhp#par_id3149581.27.help.text
+msgctxt "03090406.xhp#par_id3149581.27.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03090406.xhp#par_id3154790.30.help.text
+msgctxt "03090406.xhp#par_id3154790.30.help.text"
+msgid "Function LinSearch( sList(), sItem As String ) as integer"
+msgstr "Function BuscaLin( sLista(), sElem As String ) as integer"
+
+#: 03090406.xhp#par_id3150594.31.help.text
+msgctxt "03090406.xhp#par_id3150594.31.help.text"
+msgid "dim iCount as Integer"
+msgstr "dim iContador as Integer"
+
+#: 03090406.xhp#par_id3154943.32.help.text
+msgid "REM Linsearch searches a TextArray:sList() for a TextEntry:"
+msgstr "REM BuscaLin busca en MatrizTexto:sLista() una EntradaTexto:"
+
+#: 03090406.xhp#par_id3155601.33.help.text
+msgid "REM Return value is the index of the entry or 0 (Null)"
+msgstr "REM El valor de retorno es el índice de la entrada o 0 (Nulo)"
+
+#: 03090406.xhp#par_id3154511.34.help.text
+msgctxt "03090406.xhp#par_id3154511.34.help.text"
+msgid "for iCount=1 to Ubound( sList() )"
+msgstr "for iContador=1 to Ubound( sLista() )"
+
+#: 03090406.xhp#par_id3149123.35.help.text
+msgctxt "03090406.xhp#par_id3149123.35.help.text"
+msgid "if sList( iCount ) = sItem then"
+msgstr "if sLista( iContador ) = sElemen then"
+
+#: 03090406.xhp#par_id3153707.36.help.text
+msgid "exit for REM sItem found"
+msgstr "exit for REM encontrado sElemen"
+
+#: 03090406.xhp#par_id3155066.37.help.text
+msgctxt "03090406.xhp#par_id3155066.37.help.text"
+msgid "end if"
+msgstr "end if"
+
+#: 03090406.xhp#par_id3156275.38.help.text
+msgctxt "03090406.xhp#par_id3156275.38.help.text"
+msgid "next iCount"
+msgstr "next iContador"
+
+#: 03090406.xhp#par_id3156054.39.help.text
+msgctxt "03090406.xhp#par_id3156054.39.help.text"
+msgid "if iCount = Ubound( sList() ) then iCount = 0"
+msgstr "if iContador = Ubound( sLista() ) then iContador = 0"
+
+#: 03090406.xhp#par_id3153765.40.help.text
+msgctxt "03090406.xhp#par_id3153765.40.help.text"
+msgid "LinSearch = iCount"
+msgstr "BuscaLin = iContador"
+
+#: 03090406.xhp#par_id3153713.41.help.text
+msgctxt "03090406.xhp#par_id3153713.41.help.text"
+msgid "end function"
+msgstr "end function"
+
+#: 03131300.xhp#tit.help.text
+msgid "TwipsPerPixelX Function [Runtime]"
+msgstr "Función TwipsPerPixelX [Ejecución]"
+
+#: 03131300.xhp#bm_id3153539.help.text
+msgid "<bookmark_value>TwipsPerPixelX function</bookmark_value>"
+msgstr "<bookmark_value>TwipsPerPixelX;función</bookmark_value>"
+
+#: 03131300.xhp#hd_id3153539.1.help.text
+msgid "<link href=\"text/sbasic/shared/03131300.xhp\" name=\"TwipsPerPixelX Function [Runtime]\">TwipsPerPixelX Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131300.xhp\" name=\"TwipsPerPixelX Function [Runtime]\">Función TwipsPerPixelX [Ejecución]</link>"
+
+#: 03131300.xhp#par_id3153394.2.help.text
+msgid "Returns the number of twips that represent the width of a pixel."
+msgstr "Devuelve el número de twips que representan el ancho de un píxel."
+
+#: 03131300.xhp#hd_id3153527.3.help.text
+msgctxt "03131300.xhp#hd_id3153527.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03131300.xhp#par_id3151110.4.help.text
+msgid "n = TwipsPerPixelX"
+msgstr "n = TwipsPerPixelX "
+
+#: 03131300.xhp#hd_id3150669.5.help.text
+msgctxt "03131300.xhp#hd_id3150669.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03131300.xhp#par_id3150503.6.help.text
+msgctxt "03131300.xhp#par_id3150503.6.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03131300.xhp#hd_id3159176.7.help.text
+msgctxt "03131300.xhp#hd_id3159176.7.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03131300.xhp#par_id3156152.8.help.text
+msgctxt "03131300.xhp#par_id3156152.8.help.text"
+msgid "Sub ExamplePixelTwips"
+msgstr "Sub EjemploPixelTwips"
+
+#: 03131300.xhp#par_id3153061.9.help.text
+msgctxt "03131300.xhp#par_id3153061.9.help.text"
+msgid "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
+msgstr "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Tamaño de píxel\""
+
+#: 03131300.xhp#par_id3149670.10.help.text
+msgctxt "03131300.xhp#par_id3149670.10.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03020104.xhp#tit.help.text
+msgid "Reset Statement [Runtime]"
+msgstr "Instrucción Reset [Ejecución]"
+
+#: 03020104.xhp#bm_id3154141.help.text
+msgid "<bookmark_value>Reset statement</bookmark_value>"
+msgstr "<bookmark_value>Reset;instrucción</bookmark_value>"
+
+#: 03020104.xhp#hd_id3154141.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020104.xhp\">Reset Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020104.xhp\">Instrucción Reset [Ejecución]</link>"
+
+#: 03020104.xhp#par_id3156423.2.help.text
+msgid "Closes all open files and writes the contents of all file buffers to the harddisk."
+msgstr "Cierra todos los archivos abiertos y escribe el contenido de todas las memorias intermedias de archivo en el disco duro."
+
+#: 03020104.xhp#hd_id3154124.3.help.text
+msgctxt "03020104.xhp#hd_id3154124.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03020104.xhp#par_id3156281.4.help.text
+msgctxt "03020104.xhp#par_id3156281.4.help.text"
+msgid "Reset"
+msgstr "Restablecer"
+
+#: 03020104.xhp#hd_id3161831.5.help.text
+msgctxt "03020104.xhp#hd_id3161831.5.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03020104.xhp#par_id3151113.37.help.text
+msgctxt "03020104.xhp#par_id3151113.37.help.text"
+msgid "Sub ExampleReset"
+msgstr "Sub EjemploReset"
+
+#: 03020104.xhp#par_id3148575.38.help.text
+msgctxt "03020104.xhp#par_id3148575.38.help.text"
+msgid "On Error Goto ErrorHandler"
+msgstr "On Error Goto ManejadorError"
+
+#: 03020104.xhp#par_id3153093.39.help.text
+msgctxt "03020104.xhp#par_id3153093.39.help.text"
+msgid "Dim iNumber As Integer"
+msgstr "Dim iNumero As Integer"
+
+#: 03020104.xhp#par_id3150011.40.help.text
+msgctxt "03020104.xhp#par_id3150011.40.help.text"
+msgid "Dim iCount As Integer"
+msgstr "Dim iContador As Integer"
+
+#: 03020104.xhp#par_id3153363.41.help.text
+msgctxt "03020104.xhp#par_id3153363.41.help.text"
+msgid "Dim sLine As String"
+msgstr "Dim sLinea As String"
+
+#: 03020104.xhp#par_id3154320.42.help.text
+msgctxt "03020104.xhp#par_id3154320.42.help.text"
+msgid "Dim aFile As String"
+msgstr "Dim aArchivo As String"
+
+#: 03020104.xhp#par_id3163712.43.help.text
+msgctxt "03020104.xhp#par_id3163712.43.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr "aArchivo = \"c:\\data.txt\""
+
+#: 03020104.xhp#par_id3146121.45.help.text
+msgctxt "03020104.xhp#par_id3146121.45.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumero = Freefile"
+
+#: 03020104.xhp#par_id3154491.46.help.text
+msgctxt "03020104.xhp#par_id3154491.46.help.text"
+msgid "Open aFile For Output As #iNumber"
+msgstr "Open aArchivo For Output As #iNumero"
+
+#: 03020104.xhp#par_id3148455.47.help.text
+msgid "Print #iNumber, \"This is a new line of text\""
+msgstr "Print #iNumero, \"Esta es una línea de texto nueva\""
+
+#: 03020104.xhp#par_id3145646.48.help.text
+msgctxt "03020104.xhp#par_id3145646.48.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumero"
+
+#: 03020104.xhp#par_id3149410.50.help.text
+msgctxt "03020104.xhp#par_id3149410.50.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumero = Freefile"
+
+#: 03020104.xhp#par_id3147126.51.help.text
+msgctxt "03020104.xhp#par_id3147126.51.help.text"
+msgid "Open aFile For Input As iNumber"
+msgstr "Open aArchivo For Input As iNumero"
+
+#: 03020104.xhp#par_id3154510.52.help.text
+msgctxt "03020104.xhp#par_id3154510.52.help.text"
+msgid "For iCount = 1 to 5"
+msgstr "For iContador = 1 to 5"
+
+#: 03020104.xhp#par_id3146971.53.help.text
+msgctxt "03020104.xhp#par_id3146971.53.help.text"
+msgid "Line Input #iNumber, sLine"
+msgstr "Line Input #iNumero, sLinea"
+
+#: 03020104.xhp#par_id3156277.54.help.text
+msgctxt "03020104.xhp#par_id3156277.54.help.text"
+msgid "If sLine <>\"\" then"
+msgstr "If sLinea <>\"\" then"
+
+#: 03020104.xhp#par_id3153707.55.help.text
+msgctxt "03020104.xhp#par_id3153707.55.help.text"
+msgid "rem"
+msgstr "rem"
+
+#: 03020104.xhp#par_id3150322.56.help.text
+msgctxt "03020104.xhp#par_id3150322.56.help.text"
+msgid "end if"
+msgstr "end if"
+
+#: 03020104.xhp#par_id3148405.57.help.text
+msgctxt "03020104.xhp#par_id3148405.57.help.text"
+msgid "Next iCount"
+msgstr "Next iContador"
+
+#: 03020104.xhp#par_id3153711.58.help.text
+msgctxt "03020104.xhp#par_id3153711.58.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumero"
+
+#: 03020104.xhp#par_id3156382.59.help.text
+msgctxt "03020104.xhp#par_id3156382.59.help.text"
+msgid "Exit Sub"
+msgstr "Exit Sub"
+
+#: 03020104.xhp#par_id3159264.60.help.text
+msgctxt "03020104.xhp#par_id3159264.60.help.text"
+msgid "ErrorHandler:"
+msgstr "ManejadorError:"
+
+#: 03020104.xhp#par_id3145147.61.help.text
+msgctxt "03020104.xhp#par_id3145147.61.help.text"
+msgid "Reset"
+msgstr "Reset"
+
+#: 03020104.xhp#par_id3163805.62.help.text
+msgctxt "03020104.xhp#par_id3163805.62.help.text"
+msgid "MsgBox \"All files will be closed\",0,\"Error\""
+msgstr "MsgBox \"Todos los archivos se cerrarán\",0,\"Error\""
+
+#: 03020104.xhp#par_id3147364.63.help.text
+msgctxt "03020104.xhp#par_id3147364.63.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03120314.xhp#tit.help.text
+msgid "Split Function [Runtime]"
+msgstr "Función Split [Ejecución]"
+
+#: 03120314.xhp#bm_id3156027.help.text
+msgid "<bookmark_value>Split function</bookmark_value>"
+msgstr "<bookmark_value>Split;función</bookmark_value>"
+
+#: 03120314.xhp#hd_id3156027.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120314.xhp\" name=\"Split Function [Runtime]\">Split Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120314.xhp\" name=\"Split Function [Runtime]\">Función Split [Ejecución]</link>"
+
+#: 03120314.xhp#par_id3155805.2.help.text
+msgid "Returns an array of substrings from a string expression."
+msgstr "Devuelve una matriz de subcadenas a partir de una expresión de cadena."
+
+#: 03120314.xhp#hd_id3149177.3.help.text
+msgctxt "03120314.xhp#hd_id3149177.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03120314.xhp#par_id3153824.4.help.text
+msgid "Split (Text As String, delimiter, number)"
+msgstr "Split (Texto As String, delimitador, número)"
+
+#: 03120314.xhp#hd_id3149763.5.help.text
+msgctxt "03120314.xhp#hd_id3149763.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03120314.xhp#par_id3154285.6.help.text
+msgctxt "03120314.xhp#par_id3154285.6.help.text"
+msgid "String"
+msgstr "Cadena"
+
+#: 03120314.xhp#hd_id3145315.7.help.text
+msgctxt "03120314.xhp#hd_id3145315.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03120314.xhp#par_id3156023.8.help.text
+msgctxt "03120314.xhp#par_id3156023.8.help.text"
+msgid "<emph>Text:</emph> Any string expression."
+msgstr "<emph>Texto:</emph> Cualquier expresión de cadena."
+
+#: 03120314.xhp#par_id3147560.9.help.text
+msgid "<emph>delimiter (optional):</emph> A string of one or more characters length that is used to delimit the Text. The default is the space character."
+msgstr "<emph>delimitador (opcional):</emph> Cadena de uno o más caracteres de longitud que se emplea para delimitar el texto. El valor predeterminado es el carácter de espacio."
+
+#: 03120314.xhp#par_id3145069.12.help.text
+msgid "<emph>number (optional):</emph> The number of substrings that you want to return."
+msgstr "<emph>Número (opcional):</emph> Número de subcadenas que se desee devolver."
+
+#: 03120314.xhp#hd_id3150398.10.help.text
+msgctxt "03120314.xhp#hd_id3150398.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03120314.xhp#par_id3151212.11.help.text
+msgid "Dim a(3)"
+msgstr "Dim a(3)"
+
+#: 03120314.xhp#par_id3149204.13.help.text
+msgid "Sub main()"
+msgstr "Sub main()"
+
+#: 03120314.xhp#par_id3156214.14.help.text
+msgid " a(0) = \"ABCDE\""
+msgstr "a(0) = \"ABCDE\""
+
+#: 03120314.xhp#par_id3154217.15.help.text
+msgid " a(1) = 42"
+msgstr "a(1) = 42"
+
+#: 03120314.xhp#par_id3145173.16.help.text
+msgid " a(2) = \"MN\""
+msgstr "a(2) = \"MN\""
+
+#: 03120314.xhp#par_id3153104.17.help.text
+msgid " a(3) = \"X Y Z\""
+msgstr "a(3) = \"X Y Z\""
+
+#: 03120314.xhp#par_id3154684.18.help.text
+msgid " JStr = Join1()"
+msgstr "JStr = Join1()"
+
+#: 03120314.xhp#par_id3153367.19.help.text
+msgctxt "03120314.xhp#par_id3153367.19.help.text"
+msgid " Call Show(JStr, Split1(JStr))"
+msgstr "Call Show(JStr, Split1(JStr))"
+
+#: 03120314.xhp#par_id3145271.20.help.text
+msgid " JStr = Join2()"
+msgstr "JStr = Join2()"
+
+#: 03120314.xhp#par_id3155856.21.help.text
+msgctxt "03120314.xhp#par_id3155856.21.help.text"
+msgid " Call Show(JStr, Split1(JStr))"
+msgstr "Call Show(JStr, Split1(JStr))"
+
+#: 03120314.xhp#par_id3159155.22.help.text
+msgid " JStr = Join3()"
+msgstr "JStr = Join3()"
+
+#: 03120314.xhp#par_id3155413.23.help.text
+msgctxt "03120314.xhp#par_id3155413.23.help.text"
+msgid " Call Show(JStr, Split1(JStr))"
+msgstr "Call Show(JStr, Split1(JStr))"
+
+#: 03120314.xhp#par_id3153190.24.help.text
+msgctxt "03120314.xhp#par_id3153190.24.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03120314.xhp#par_id3154320.25.help.text
+msgid "Function Join1()"
+msgstr "Function Join1()"
+
+#: 03120314.xhp#par_id3145748.26.help.text
+msgid " Join1 = Join(a(), \"abc\")"
+msgstr "Join1 = Join(a(), \"abc\")"
+
+#: 03120314.xhp#par_id3153142.45.help.text
+msgctxt "03120314.xhp#par_id3153142.45.help.text"
+msgid "End Function"
+msgstr "End Function"
+
+#: 03120314.xhp#par_id3152462.27.help.text
+msgid "Function Join2()"
+msgstr "Function Join2()"
+
+#: 03120314.xhp#par_id3146119.28.help.text
+msgid " Join2 = Join(a(), \",\")"
+msgstr "Join2 = Join(a(), \",\")"
+
+#: 03120314.xhp#par_id3154790.29.help.text
+msgctxt "03120314.xhp#par_id3154790.29.help.text"
+msgid "End Function"
+msgstr "End Function"
+
+#: 03120314.xhp#par_id3147125.30.help.text
+msgid "Function Join3()"
+msgstr "Function Join3()"
+
+#: 03120314.xhp#par_id3149377.31.help.text
+msgid " Join3 = Join(a())"
+msgstr "Join3 = Join(a())"
+
+#: 03120314.xhp#par_id3150114.32.help.text
+msgctxt "03120314.xhp#par_id3150114.32.help.text"
+msgid "End Function"
+msgstr "End Function"
+
+#: 03120314.xhp#par_id3154729.33.help.text
+msgid "Function Split1(aStr)"
+msgstr "Function Split1(aStr)"
+
+#: 03120314.xhp#par_id3145646.34.help.text
+msgid " Split1 = Split(aStr, \"D\")"
+msgstr "Split1 = Split(aStr, \"D\")"
+
+#: 03120314.xhp#par_id3154512.35.help.text
+msgctxt "03120314.xhp#par_id3154512.35.help.text"
+msgid "End Function"
+msgstr "End Function"
+
+#: 03120314.xhp#par_id3149400.36.help.text
+msgid "Sub Show(JoinStr, TheArray)"
+msgstr "Sub Show(JoinStr, LaMatriz)"
+
+#: 03120314.xhp#par_id3153948.37.help.text
+msgid " l = LBound(TheArray)"
+msgstr "l = LBound(LaMatriz)"
+
+#: 03120314.xhp#par_id3146969.38.help.text
+msgid " u = UBound(TheArray)"
+msgstr "u = UBound(LaMatriz)"
+
+#: 03120314.xhp#par_id3150752.39.help.text
+msgid " total$ = \"=============================\" + Chr$(13) + JoinStr + Chr$(13) + Chr$(13)"
+msgstr "total$ = \"=============================\" + Chr$(13) + JoinStr + Chr$(13) + Chr$(13)"
+
+#: 03120314.xhp#par_id3148916.40.help.text
+msgid " For i = l To u"
+msgstr "For i = l To u"
+
+#: 03120314.xhp#par_id3154754.41.help.text
+msgid " total$ = total$ + TheArray(i) + Str(Len(TheArray(i))) + Chr$(13)"
+msgstr "total$ = total$ + LaMatriz(i) + Str(Len(LaMatriz(i))) + Chr$(13)"
+
+#: 03120314.xhp#par_id3156054.42.help.text
+msgid " Next i"
+msgstr "Next i"
+
+#: 03120314.xhp#par_id3147338.43.help.text
+msgid " MsgBox total$"
+msgstr "MsgBox total$"
+
+#: 03120314.xhp#par_id3155960.44.help.text
+msgctxt "03120314.xhp#par_id3155960.44.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03120104.xhp#tit.help.text
+msgid "Val Function [Runtime]"
+msgstr "Función Val [Ejecución]"
+
+#: 03120104.xhp#bm_id3149205.help.text
+msgid "<bookmark_value>Val function</bookmark_value>"
+msgstr "<bookmark_value>Val;función</bookmark_value>"
+
+#: 03120104.xhp#hd_id3149205.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120104.xhp\" name=\"Val Function [Runtime]\">Val Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120104.xhp\" name=\"Val Function [Runtime]\">Función Val [Ejecución]</link>"
+
+#: 03120104.xhp#par_id3153345.2.help.text
+msgid "Converts a string to a numeric expression."
+msgstr "Convierte una cadena en una expresión numérica."
+
+#: 03120104.xhp#hd_id3159157.3.help.text
+msgctxt "03120104.xhp#hd_id3159157.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03120104.xhp#par_id3149514.4.help.text
+msgid "Val (Text As String)"
+msgstr "Val (Texto As String)"
+
+#: 03120104.xhp#hd_id3150669.5.help.text
+msgctxt "03120104.xhp#hd_id3150669.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03120104.xhp#par_id3143228.6.help.text
+msgctxt "03120104.xhp#par_id3143228.6.help.text"
+msgid "Double"
+msgstr "Doble"
+
+#: 03120104.xhp#hd_id3156024.7.help.text
+msgctxt "03120104.xhp#hd_id3156024.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03120104.xhp#par_id3154348.8.help.text
+msgid "<emph>Text:</emph> String that represents a number."
+msgstr "<emph>Texto:</emph> Cadena que representa un número."
+
+#: 03120104.xhp#par_id3149670.9.help.text
+msgid "Using the Val function, you can convert a string that represents numbers into numeric expressions. This is the inverse of the <emph>Str</emph> function. If only part of the string contains numbers, only the first appropriate characters of the string are converted. If the string does not contain any numbers, the <emph>Val</emph> function returns the value 0."
+msgstr "Mediante la función Val puede convertir una cadena que representa números en expresiones numéricas. Es la función inversa a <emph>Str</emph>. Si sólo una parte de la cadena contiene números, únicamente los primeros caracteres apropiados de la cadena se convierten. Si la cadena no contiene ningún número, la función <emph>Val</emph> devuelve el valor 0."
+
+#: 03120104.xhp#hd_id3154365.10.help.text
+msgctxt "03120104.xhp#hd_id3154365.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03120104.xhp#par_id3151177.11.help.text
+msgid "Sub ExampleVal"
+msgstr "Sub EjemploVal"
+
+#: 03120104.xhp#par_id3159150.12.help.text
+msgid "msgbox Val(\"123.123\")"
+msgstr "msgbox Val(\"123.123\")"
+
+#: 03120104.xhp#par_id3154126.13.help.text
+msgid "msgbox Val(\"A123.123\")"
+msgstr "msgbox Val(\"A123.123\")"
+
+#: 03120104.xhp#par_id3147229.14.help.text
+msgctxt "03120104.xhp#par_id3147229.14.help.text"
+msgid "end Sub"
+msgstr "end sub"
+
+#: 03000000.xhp#tit.help.text
+msgid "Run-Time Functions"
+msgstr "Funciones de tiempo de ejecución"
+
+#: 03000000.xhp#hd_id3152895.1.help.text
+msgid "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\" name=\"Run-Time Functions\">Run-Time Functions</link></variable>"
+msgstr "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\" name=\"Funciones de tiempo de ejecución\">Funciones de tiempo de ejecución</link></variable>"
+
+#: 03000000.xhp#par_id3148983.2.help.text
+msgid "This section describes the Runtime Functions of <item type=\"productname\">%PRODUCTNAME</item> Basic."
+msgstr "Esta sección describe las funciones de tiempo de ejecución de <item type=\"productname\">$[officename]</item> Basic."
+
+#: 03030107.xhp#tit.help.text
+msgid "CDateToIso Function [Runtime]"
+msgstr "Función CdateToIso [Ejecución]"
+
+#: 03030107.xhp#bm_id3150620.help.text
+msgid "<bookmark_value>CdateToIso function</bookmark_value>"
+msgstr "<bookmark_value>CdateToIso;función</bookmark_value>"
+
+#: 03030107.xhp#hd_id3150620.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030107.xhp\" name=\"CDateToIso Function [Runtime]\">CDateToIso Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030107.xhp\" name=\"Función CdateToIso [Runtime]\">Función CdateToIso [Ejecución]</link>"
+
+#: 03030107.xhp#par_id3151097.2.help.text
+msgid "Returns the date in ISO format from a serial date number that is generated by the DateSerial or the DateValue function."
+msgstr "Devuelve la fecha en formato ISO a partir de un número serie de fecha que genera la función DateSerial o DateValue."
+
+#: 03030107.xhp#hd_id3159224.3.help.text
+msgctxt "03030107.xhp#hd_id3159224.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03030107.xhp#par_id3149497.4.help.text
+msgid "CDateToIso(Number)"
+msgstr "CDateToIso(Número)"
+
+#: 03030107.xhp#hd_id3152347.5.help.text
+msgctxt "03030107.xhp#hd_id3152347.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03030107.xhp#par_id3154422.6.help.text
+msgctxt "03030107.xhp#par_id3154422.6.help.text"
+msgid "String"
+msgstr "Cadena"
+
+#: 03030107.xhp#hd_id3147303.7.help.text
+msgctxt "03030107.xhp#hd_id3147303.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03030107.xhp#par_id3145136.8.help.text
+msgid "<emph>Number:</emph> Integer that contains the serial date number."
+msgstr "Número: Entero que contenga el número serie de fecha."
+
+#: 03030107.xhp#hd_id3147243.9.help.text
+msgctxt "03030107.xhp#hd_id3147243.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03030107.xhp#par_id3156152.10.help.text
+msgid "Sub ExampleCDateToIso"
+msgstr "Sub EjemploCDateToIso"
+
+#: 03030107.xhp#par_id3153126.11.help.text
+msgid "MsgBox \"\" & CDateToIso(Now) ,64,\"ISO Date\""
+msgstr "MsgBox \"\" & CDateToIso(Now) ,64,\"Fecha ISO\""
+
+#: 03030107.xhp#par_id3143228.12.help.text
+msgctxt "03030107.xhp#par_id3143228.12.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03090302.xhp#tit.help.text
+msgid "GoTo Statement [Runtime]"
+msgstr "Instrucción GoTo [Ejecución]"
+
+#: 03090302.xhp#bm_id3159413.help.text
+msgid "<bookmark_value>GoTo statement</bookmark_value>"
+msgstr "<bookmark_value>GoTo;instrucción</bookmark_value>"
+
+#: 03090302.xhp#hd_id3159413.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo Statement [Runtime]\">GoTo Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo Statement [Runtime]\">Instrucción GoTo [Ejecución]</link>"
+
+#: 03090302.xhp#par_id3153379.2.help.text
+msgid "Continues program execution within a Sub or Function at the procedure line indicated by a label."
+msgstr "Prosigue la ejecución del programa dentro de Sub o Function en la línea de procedimiento indicada por una etiqueta."
+
+#: 03090302.xhp#hd_id3149656.3.help.text
+msgctxt "03090302.xhp#hd_id3149656.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03090302.xhp#par_id3154367.4.help.text
+msgctxt "03090302.xhp#par_id3154367.4.help.text"
+msgid "see Parameters"
+msgstr "ver Parámetros"
+
+#: 03090302.xhp#hd_id3150870.5.help.text
+msgctxt "03090302.xhp#hd_id3150870.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03090302.xhp#par_id3156214.6.help.text
+msgctxt "03090302.xhp#par_id3156214.6.help.text"
+msgid "Sub/Function"
+msgstr "Sub/Function"
+
+#: 03090302.xhp#par_id3156424.7.help.text
+msgctxt "03090302.xhp#par_id3156424.7.help.text"
+msgid "statement block"
+msgstr "bloque de instrucciones"
+
+#: 03090302.xhp#par_id3154685.8.help.text
+msgid " Label1"
+msgstr " Etiqueta1"
+
+#: 03090302.xhp#par_id3145786.9.help.text
+msgid "<emph>Label2:</emph>"
+msgstr "<emph>Etiqueta2:</emph>"
+
+#: 03090302.xhp#par_id3161832.10.help.text
+msgctxt "03090302.xhp#par_id3161832.10.help.text"
+msgid "statement block"
+msgstr "bloque de instrucciones"
+
+#: 03090302.xhp#par_id3146120.11.help.text
+msgctxt "03090302.xhp#par_id3146120.11.help.text"
+msgid "Exit Sub"
+msgstr "Exit Sub"
+
+#: 03090302.xhp#par_id3150010.12.help.text
+msgid "<emph>Label1:</emph>"
+msgstr "<emph>Etiqueta1:</emph>"
+
+#: 03090302.xhp#par_id3152462.13.help.text
+msgctxt "03090302.xhp#par_id3152462.13.help.text"
+msgid "statement block"
+msgstr "bloque de instrucciones"
+
+#: 03090302.xhp#par_id3149664.14.help.text
+msgid "GoTo Label2"
+msgstr "GoTo Etiqueta2"
+
+#: 03090302.xhp#par_id3152886.15.help.text
+msgctxt "03090302.xhp#par_id3152886.15.help.text"
+msgid "End Sub/Function"
+msgstr "Final de Sub/Function"
+
+#: 03090302.xhp#par_id3152596.16.help.text
+msgid "Use the GoTo statement to instruct $[officename] Basic to continue program execution at another place within the procedure. The position must be indicated by a label. To set a label, assign a name, and then and end it with a colon (\":\")."
+msgstr "La instrucción GoTo se usa para indicar a $[officename] Basic que continúe la ejecución del programa en otro lugar dentro del procedimiento. La posición debe estar marcada con una etiqueta. Para definir una etiqueta, asigne un nombre y después termínelo con un carácter de dos puntos (\":\")."
+
+#: 03090302.xhp#par_id3155416.17.help.text
+msgid "You cannot use the GoTo statement to jump out of a Sub or Function."
+msgstr "La instrucción GoTo no puede usarse para saltar fuera de Sub o Function."
+
+#: 03090302.xhp#hd_id3154731.19.help.text
+msgctxt "03090302.xhp#hd_id3154731.19.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03090302.xhp#par_id6967035.help.text
+msgctxt "03090302.xhp#par_id6967035.help.text"
+msgid "see Parameters"
+msgstr "Consulte los parámetros"
+
+#: 01050200.xhp#tit.help.text
+msgid "Call Stack Window (Calls)"
+msgstr "Ventana Pila de llamada (Llamadas)"
+
+#: 01050200.xhp#hd_id3146794.1.help.text
+msgid "<link href=\"text/sbasic/shared/01050200.xhp\" name=\"Call Stack Window (Calls)\">Call Stack Window (Calls)</link>"
+msgstr "<link href=\"text/sbasic/shared/01050200.xhp\" name=\"Call Stack Window (Calls)\">Ventana Pila de llamada (Llamadas)</link>"
+
+#: 01050200.xhp#par_id3150400.2.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\" visibility=\"hidden\">Displays the sequence of procedures and functions during the execution of a program.</ahelp>The <emph>Call Stack</emph> allows you to monitor the sequence of procedures and functions during the execution of a program. The procedures are functions are displayed bottom to top with the most recent function or procedure call at the top of the list."
+msgstr "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\" visibility=\"hidden\">Muestra la secuencia de procedimientos y funciones durante la ejecución de un programa.</ahelp>La <emph>Pila de llamada</emph> permite supervisar la secuencia de procedimientos y funciones durante la ejecución de un programa. Los procedimientos y funciones se muestran de abajo a arriba con la llamada a la función o procedimiento más reciente en la parte superior de la lista."
+
+#: 03010103.xhp#tit.help.text
+msgid "Print Statement [Runtime]"
+msgstr "Instrucción Print [Ejecución]"
+
+#: 03010103.xhp#bm_id3147230.help.text
+msgid "<bookmark_value>Print statement</bookmark_value>"
+msgstr "<bookmark_value>Print;instrucción</bookmark_value>"
+
+#: 03010103.xhp#hd_id3147230.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010103.xhp\" name=\"Print Statement [Runtime]\">Print Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010103.xhp\" name=\"Instrucción Print [Runtime]\">Instrucción Print [Runtime]</link>"
+
+#: 03010103.xhp#par_id3156281.2.help.text
+msgid "Outputs the specified strings or numeric expressions to a dialog or to a file."
+msgstr "Saca las cadenas o expresiones numericas especificadas a un diálogo o a un archivo."
+
+#: 03010103.xhp#hd_id3145785.3.help.text
+msgctxt "03010103.xhp#hd_id3145785.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03010103.xhp#par_id3153188.4.help.text
+msgid "Print [#FileName,] Expression1[{;|,} [Spc(Number As Integer);] [Tab(pos As Integer);] [Expression2[...]] "
+msgstr "Print [#FileName,] Expresión1[{;|,} [Spc(Número As Integer);] [Tab(pos As Integer);] [Expresión2[...]]"
+
+#: 03010103.xhp#hd_id3147348.5.help.text
+msgctxt "03010103.xhp#hd_id3147348.5.help.text"
+msgid "Parameter:"
+msgstr "Parámetros:"
+
+#: 03010103.xhp#par_id2508621.help.text
+msgctxt "03010103.xhp#par_id2508621.help.text"
+msgid "<emph>FileName:</emph> Any numeric expression that contains the file number that was set by the Open statement for the respective file."
+msgstr "<emph>FileName:</emph> Cualquier expresión numérica que contenga el numero de archivo que sea fijada por la instrucción Open del archivo respectivo."
+
+#: 03010103.xhp#par_id3163712.6.help.text
+msgid "<emph>Expression</emph>: Any numeric or string expression to be printed. Multiple expressions can be separated by a semicolon. If separated by a comma, the expressions are indented to the next tab stop. The tab stops cannot be adjusted."
+msgstr "<emph>Expresión</emph>: Cualquier expresión numérica o de cadena que imprimir. Si hay varias expresiones, pueden separarse con caracteres de punto y coma. Si se separan con una coma, las expresiones se sangran hasta la siguiente posición de tabulación. Las posiciones de tabulación no pueden ajustarse."
+
+#: 03010103.xhp#par_id3153092.7.help.text
+msgid "<emph>Number</emph>: Number of spaces to be inserted by the <emph>Spc</emph> function."
+msgstr "<emph>Número</emph>: Cantidad de espacios que insertará la función <emph>Spc</emph>."
+
+#: 03010103.xhp#par_id3145364.8.help.text
+msgid "<emph>Pos</emph>: Spaces are inserted until the specified position."
+msgstr "<emph>Pos</emph>: Los espacios se insertan hasta la posición especificada."
+
+#: 03010103.xhp#par_id3154319.9.help.text
+msgid "If a semicolon or comma appears after the last expression to be printed, $[officename] Basic stores the text in an internal buffer and continues program execution without printing. When another Print statement without a semicolon or comma at the end is encountered, all text to be printed is printed at once."
+msgstr "Si aparece un carácter de punto y coma o una coma tras la última expresión que imprimir, $[officename] Basic almacena el texto en una memoria intermedia interna y continúa la ejecución del programa sin imprimir. Cuando se encuentra otra instrucción Print sin un carácter de punto y coma o una coma al final, se imprime todo el texto en una operación."
+
+#: 03010103.xhp#par_id3145272.10.help.text
+msgid "Positive numeric expressions are printed with a leading space. Negative expressions are printed with a leading minus sign. If a certain range is exceeded for floating-point values, the respective numeric expression is printed in exponential notation."
+msgstr "Las expresiones numéricas positivas se imprimen precedidas por un espacio. Las expresiones negativas se imprimen precedidas por un signo menos. Si se excede un rango determinado para valores de coma flotante, la expresión numérica respectiva se imprime en notación exponencial."
+
+#: 03010103.xhp#par_id3154011.11.help.text
+msgid "If the expression to be printed exceeds a certain length, the display will automatically wrap to the next line."
+msgstr "Si la expresión que imprimir excede una longitud determinada, la pantalla la ajustará automáticamente hasta la línea siguiente."
+
+#: 03010103.xhp#par_id3146969.12.help.text
+msgid "You can insert the Tab function, enclosed by semicolons, between arguments to indent the output to a specific position, or you can use the <emph>Spc</emph> function to insert a specified number of spaces."
+msgstr "La función Tab se puede insertar, incluida entre caracteres de punto y coma, entre argumentos para sangrar la salida a una posición determinada; también se puede usar la función <emph>Spc</emph> para insertar un número determinado de espacios."
+
+#: 03010103.xhp#hd_id3146912.13.help.text
+msgctxt "03010103.xhp#hd_id3146912.13.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03010103.xhp#par_id3153711.14.help.text
+msgid "Sub ExamplePrint"
+msgstr "Sub EjemploPrint"
+
+#: 03010103.xhp#par_id3153764.15.help.text
+msgid "Print \"ABC\""
+msgstr "Print \"ABC\""
+
+#: 03010103.xhp#par_id3155764.16.help.text
+msgid "Print \"ABC\",\"123\""
+msgstr "Print \"ABC\",\"123\""
+
+#: 03010103.xhp#par_id5484176.help.text
+msgid "i = FreeFile()"
+msgstr "i = FreeFile()"
+
+#: 03010103.xhp#par_id2904141.help.text
+msgid "Open <switchinline select=\"sys\"><caseinline select=\"WIN\">\"C:\\Temp.txt\"</caseinline><defaultinline>\"~/temp.txt\"</defaultinline></switchinline> For Output As i"
+msgstr "Open <switchinline select=\"sys\"><caseinline select=\"WIN\">\"C:\\Temp.txt\"</caseinline><defaultinline>\"~/temp.txt\"</defaultinline></switchinline> For Output As i"
+
+#: 03010103.xhp#par_id36317.help.text
+msgid "Print #i, \"ABC\""
+msgstr "Print #i, \"ABC\""
+
+#: 03010103.xhp#par_id7381817.help.text
+msgid "Close #i"
+msgstr "Close #i"
+
+#: 03010103.xhp#par_id3147339.17.help.text
+msgctxt "03010103.xhp#par_id3147339.17.help.text"
+msgid "end Sub"
+msgstr "End Sub"
+
+#: 03130700.xhp#tit.help.text
+msgid "GetSystemTicks Function [Runtime]"
+msgstr "Función GetSystemTicks [Ejecución]"
+
+#: 03130700.xhp#bm_id3147143.help.text
+msgid "<bookmark_value>GetSystemTicks function</bookmark_value>"
+msgstr "<bookmark_value>GetSystemTicks;función</bookmark_value>"
+
+#: 03130700.xhp#hd_id3147143.1.help.text
+msgid "<link href=\"text/sbasic/shared/03130700.xhp\" name=\"GetSystemTicks Function [Runtime]\">GetSystemTicks Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03130700.xhp\" name=\"GetSystemTicks Function [Runtime]\">Función GetSystemTicks [Ejecución]</link>"
+
+#: 03130700.xhp#par_id3153750.2.help.text
+msgid "Returns the number of system ticks provided by the operating system. You can use this function to optimize certain processes."
+msgstr "Devuelve el número de ticks del sistema que proporciona el sistema operativo. Esta función puede utilizarse para optimizar algunos procesos."
+
+#: 03130700.xhp#hd_id3153311.3.help.text
+msgctxt "03130700.xhp#hd_id3153311.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03130700.xhp#par_id3147242.4.help.text
+msgid "GetSystemTicks()"
+msgstr "GetSystemTicks()"
+
+#: 03130700.xhp#hd_id3149233.5.help.text
+msgctxt "03130700.xhp#hd_id3149233.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03130700.xhp#par_id3149762.6.help.text
+msgctxt "03130700.xhp#par_id3149762.6.help.text"
+msgid "Long"
+msgstr "Largo"
+
+#: 03130700.xhp#hd_id3156152.7.help.text
+msgctxt "03130700.xhp#hd_id3156152.7.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03130700.xhp#par_id3148943.8.help.text
+msgctxt "03130700.xhp#par_id3148943.8.help.text"
+msgid "Sub ExampleWait"
+msgstr "Sub EjemploWait"
+
+#: 03130700.xhp#par_id3146795.9.help.text
+msgctxt "03130700.xhp#par_id3146795.9.help.text"
+msgid "Dim lTick As Long"
+msgstr "Dim lTick As Long"
+
+#: 03130700.xhp#par_id3145069.10.help.text
+msgctxt "03130700.xhp#par_id3145069.10.help.text"
+msgid "lTick = GetSystemTicks()"
+msgstr "lTick = GetSystemTicks()"
+
+#: 03130700.xhp#par_id3147560.11.help.text
+msgctxt "03130700.xhp#par_id3147560.11.help.text"
+msgid "wait 2000"
+msgstr "wait 2000"
+
+#: 03130700.xhp#par_id3149655.12.help.text
+msgctxt "03130700.xhp#par_id3149655.12.help.text"
+msgid "lTick = (GetSystemTicks() - lTick)"
+msgstr "lTick = (GetSystemTicks() - lTick)"
+
+#: 03130700.xhp#par_id3154938.13.help.text
+msgctxt "03130700.xhp#par_id3154938.13.help.text"
+msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
+msgstr "MsgBox \"\" & lTick & \" Ticks\" ,0,\"La pausa ha durado\""
+
+#: 03130700.xhp#par_id3150542.14.help.text
+msgctxt "03130700.xhp#par_id3150542.14.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03120309.xhp#tit.help.text
+msgid "RTrim Function [Runtime]"
+msgstr "Función Rtrim [Ejecución]"
+
+#: 03120309.xhp#bm_id3154286.help.text
+msgid "<bookmark_value>RTrim function</bookmark_value>"
+msgstr "<bookmark_value>RTrim;función</bookmark_value>"
+
+#: 03120309.xhp#hd_id3154286.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120309.xhp\" name=\"RTrim Function [Runtime]\">RTrim Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120309.xhp\" name=\"RTrim Function [Runtime]\">Función Rtrim [Ejecución]</link>"
+
+#: 03120309.xhp#par_id3153127.2.help.text
+msgid "Deletes the spaces at the end of a string expression."
+msgstr "Borra los espacios del final de una expresión de cadena."
+
+#: 03120309.xhp#par_id3153062.3.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function\">LTrim Function</link>"
+msgstr "Consulte también: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function\">Función LTrim</link>"
+
+#: 03120309.xhp#hd_id3154924.4.help.text
+msgctxt "03120309.xhp#hd_id3154924.4.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03120309.xhp#par_id3154347.5.help.text
+msgid "RTrim (Text As String)"
+msgstr "RTrim (Texto As String)"
+
+#: 03120309.xhp#hd_id3149457.6.help.text
+msgctxt "03120309.xhp#hd_id3149457.6.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03120309.xhp#par_id3153381.7.help.text
+msgctxt "03120309.xhp#par_id3153381.7.help.text"
+msgid "String"
+msgstr "Cadena"
+
+#: 03120309.xhp#hd_id3148798.8.help.text
+msgctxt "03120309.xhp#hd_id3148798.8.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03120309.xhp#par_id3151380.9.help.text
+msgid "<emph>Text: </emph>Any string expression."
+msgstr "Texto: Cualquier expresión de cadena."
+
+#: 03120309.xhp#hd_id3151041.10.help.text
+msgctxt "03120309.xhp#hd_id3151041.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03120309.xhp#par_id3148673.11.help.text
+msgctxt "03120309.xhp#par_id3148673.11.help.text"
+msgid "Sub ExampleSpaces"
+msgstr "Sub EjemploSpaces"
+
+#: 03120309.xhp#par_id3156281.12.help.text
+msgctxt "03120309.xhp#par_id3156281.12.help.text"
+msgid "Dim sText2 as String,sText as String,sOut as String"
+msgstr "Dim sTexto2 as String,sTexto as String,sOut as String"
+
+#: 03120309.xhp#par_id3154125.13.help.text
+msgctxt "03120309.xhp#par_id3154125.13.help.text"
+msgid "sText2 = \" <*Las Vegas*> \""
+msgstr "sTexto2 = \" <*Las Vegas*> \""
+
+#: 03120309.xhp#par_id3155131.15.help.text
+msgctxt "03120309.xhp#par_id3155131.15.help.text"
+msgid "sOut = \"'\"+sText2 +\"'\"+ Chr(13)"
+msgstr "sOut = \"'\"+sTexto2 +\"'\"+ Chr(13)"
+
+#: 03120309.xhp#par_id3161833.16.help.text
+msgctxt "03120309.xhp#par_id3161833.16.help.text"
+msgid "sText = Ltrim(sText2) REM sText = \"<*Las Vegas*> \""
+msgstr "sTexto = Ltrim(sTexto2) REM sTexto = \"<*Las Vegas*> \""
+
+#: 03120309.xhp#par_id3147317.17.help.text
+msgctxt "03120309.xhp#par_id3147317.17.help.text"
+msgid "sOut = sOut + \"'\"+sText +\"'\" + Chr(13)"
+msgstr "sOut = sOut + \"'\"+sText +\"'\" + Chr(13)"
+
+#: 03120309.xhp#par_id3151112.18.help.text
+msgctxt "03120309.xhp#par_id3151112.18.help.text"
+msgid "sText = Rtrim(sText2) REM sText = \" <*Las Vegas*>\""
+msgstr "sTexto = Rtrim(sTexto2) REM sTexto = \" <*Las Vegas*>\""
+
+#: 03120309.xhp#par_id3149664.19.help.text
+msgctxt "03120309.xhp#par_id3149664.19.help.text"
+msgid "sOut = sOut +\"'\"+ sText +\"'\" + Chr(13)"
+msgstr "sOut = sOut +\"'\"+ sTexto +\"'\" + Chr(13)"
+
+#: 03120309.xhp#par_id3152576.20.help.text
+msgctxt "03120309.xhp#par_id3152576.20.help.text"
+msgid "sText = Trim(sText2) REM sText = \"<*Las Vegas*>\""
+msgstr "sTexto = Trim(sTexto2) REM sTexto = \"<*Las Vegas*>\""
+
+#: 03120309.xhp#par_id3153729.21.help.text
+msgctxt "03120309.xhp#par_id3153729.21.help.text"
+msgid "sOut = sOut +\"'\"+ sText +\"'\""
+msgstr "sOut = sOut +\"'\"+ sTexto +\"'\""
+
+#: 03120309.xhp#par_id3145749.22.help.text
+msgctxt "03120309.xhp#par_id3145749.22.help.text"
+msgid "MsgBox sOut"
+msgstr "MsgBox sOut"
+
+#: 03120309.xhp#par_id3146922.23.help.text
+msgctxt "03120309.xhp#par_id3146922.23.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03120401.xhp#tit.help.text
+msgid "InStr Function [Runtime]"
+msgstr "Función InStr [Ejecución]"
+
+#: 03120401.xhp#bm_id3155934.help.text
+msgid "<bookmark_value>InStr function</bookmark_value>"
+msgstr "<bookmark_value>InStr;función</bookmark_value>"
+
+#: 03120401.xhp#hd_id3155934.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120401.xhp\" name=\"InStr Function [Runtime]\">InStr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120401.xhp\" name=\"InStr Function [Runtime]\">Función InStr [Ejecución]</link>"
+
+#: 03120401.xhp#par_id3153990.2.help.text
+msgid "Returns the position of a string within another string."
+msgstr "Devuelve la posición de una cadena dentro de otra."
+
+#: 03120401.xhp#par_id3147303.3.help.text
+msgid "The Instr function returns the position at which the match was found. If the string was not found, the function returns 0."
+msgstr "La función Instr devuelve la posición en la que se encontró la coincidencia. Si la cadena no se encuentra, la función devuelve 0."
+
+#: 03120401.xhp#hd_id3145090.4.help.text
+msgctxt "03120401.xhp#hd_id3145090.4.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03120401.xhp#par_id3146957.5.help.text
+msgid "InStr ([Start As Long,] Text1 As String, Text2 As String[, Compare])"
+msgstr "InStr ([Inicio As Integer,] Texto1 As String, Texto2 As String[, Comparación])"
+
+#: 03120401.xhp#hd_id3148538.6.help.text
+msgctxt "03120401.xhp#hd_id3148538.6.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03120401.xhp#par_id3149763.7.help.text
+msgctxt "03120401.xhp#par_id3149763.7.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03120401.xhp#hd_id3148473.8.help.text
+msgctxt "03120401.xhp#hd_id3148473.8.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03120401.xhp#par_id3153126.9.help.text
+msgid "<emph>Start: </emph>A numeric expression that marks the position in a string where the search for the specified substring starts. If you omit this parameter, the search starts at the first character of the string. The maximum allowed value is 65535."
+msgstr "<emph>Inicio: </emph>Expresión numérica que indica la posición en una cadena en la que da comienzo la búsqueda de la subcadena especificada. Si este parámetro se omite, la búsqueda comienza desde el primer carácter de la cadena. El valor máximo es 65535."
+
+#: 03120401.xhp#par_id3145609.10.help.text
+msgid "<emph>Text1:</emph> The string expression that you want to search."
+msgstr "<emph>Texto1:</emph> La expresión de cadena en la que se desee buscar."
+
+#: 03120401.xhp#par_id3147559.11.help.text
+msgid "<emph>Text2:</emph> The string expression that you want to search for."
+msgstr "<emph>Texto2:</emph> La expresión de cadena que se desee buscar."
+
+#: 03120401.xhp#par_id3154758.12.help.text
+msgid "<emph>Compare:</emph> Optional numeric expression that defines the type of comparison. The value of this parameter can be 0 or 1. The default value of 1 specifies a text comparison that is not case-sensitive. The value of 0 specifies a binary comparison that is case-sensitive."
+msgstr "<emph>Comparar:</emph> Expresión numérica opcional que define el tipo de comparación. El valor de este parámetro puede ser 0 o 1. El valor predeterminado de 1 especifica una comparación de texto que no distingue entre mayúsculas y minúsculas. El valor de 0 especifica una comparación binaria que distingue entre mayúsculas y minúsculas."
+
+#: 03120401.xhp#par_id3153361.13.help.text
+msgid "To avoid a run-time error, do not set the Compare parameter if the first return parameter is omitted."
+msgstr "Para evitar un error en tiempo de ejecución, no defina el parámetro Comparación si se omite el primer parámetro de devolución."
+
+#: 03120401.xhp#hd_id3154366.14.help.text
+msgctxt "03120401.xhp#hd_id3154366.14.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03120401.xhp#par_id3154217.15.help.text
+msgid "Sub ExamplePosition"
+msgstr "Sub EjemploPosicion"
+
+#: 03120401.xhp#par_id3154685.16.help.text
+msgctxt "03120401.xhp#par_id3154685.16.help.text"
+msgid "Dim sInput As String"
+msgstr "Dim sEntrada As String"
+
+#: 03120401.xhp#par_id3151042.17.help.text
+msgid "Dim iPos as Integer"
+msgstr "Dim iPos As Integer"
+
+#: 03120401.xhp#par_id3144760.19.help.text
+msgid "sInput = \"Office\""
+msgstr "sEntrada = \"Office\""
+
+#: 03120401.xhp#par_id3154125.20.help.text
+msgid "iPos = Instr(sInput,\"c\")"
+msgstr "iPos = Instr(sEntrada,\"v\")"
+
+#: 03120401.xhp#par_id3145173.21.help.text
+msgid "print iPos"
+msgstr "print iPos"
+
+#: 03120401.xhp#par_id3145786.22.help.text
+msgctxt "03120401.xhp#par_id3145786.22.help.text"
+msgid "end sub"
+msgstr "End Sub"
+
+#: 03090100.xhp#tit.help.text
+msgid "Condition Statements"
+msgstr "Instrucciones condicionales"
+
+#: 03090100.xhp#hd_id3154422.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090100.xhp\" name=\"Condition Statements\">Condition Statements</link>"
+msgstr "<link href=\"text/sbasic/shared/03090100.xhp\" name=\"Condition Statements\">Instrucciones condicionales</link>"
+
+#: 03090100.xhp#par_id3153750.2.help.text
+msgid "The following statements are based on conditions."
+msgstr "Las instrucciones siguientes se basan en condiciones."
+
+#: 03020413.xhp#tit.help.text
+msgid "RmDir Statement [Runtime]"
+msgstr "Instrucción RmDir [Ejecución]"
+
+#: 03020413.xhp#bm_id3148947.help.text
+msgid "<bookmark_value>RmDir statement</bookmark_value>"
+msgstr "<bookmark_value>RmDir;instrucción</bookmark_value>"
+
+#: 03020413.xhp#hd_id3148947.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020413.xhp\" name=\"RmDir Statement [Runtime]\">RmDir Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020413.xhp\" name=\"Instrucción RmDir [Runtime]\">Instrucción RmDir [Ejecución]</link>"
+
+#: 03020413.xhp#par_id3149457.2.help.text
+msgid "Deletes an existing directory from a data medium."
+msgstr "Borra un directorio de un soporte de datos."
+
+#: 03020413.xhp#hd_id3153361.3.help.text
+msgctxt "03020413.xhp#hd_id3153361.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03020413.xhp#par_id3154367.4.help.text
+msgid "RmDir Text As String"
+msgstr "RmDir Texto As String"
+
+#: 03020413.xhp#hd_id3156281.5.help.text
+msgctxt "03020413.xhp#hd_id3156281.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03020413.xhp#par_id3151042.6.help.text
+msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory that you want to delete. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>Texto:</emph> Cualquier expresión de cadena que especifique el nombre y ruta del directorio que se desee borrar. También se puede usar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notación URL\">notación URL</link>."
+
+#: 03020413.xhp#par_id3153192.7.help.text
+msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
+msgstr "Si la ruta de acceso no se determina, la <emph>instrucción RmDir</emph> busca el directorio que se desea borrar en la ruta actual. Si no lo encuentra, aparece un mensaje de error."
+
+#: 03020413.xhp#hd_id3145271.8.help.text
+msgctxt "03020413.xhp#hd_id3145271.8.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03020413.xhp#par_id3156442.9.help.text
+msgid "Sub ExampleRmDir"
+msgstr "Sub EjemploRmDir"
+
+#: 03020413.xhp#par_id3154319.10.help.text
+msgid "MkDir \"C:\\Test2\""
+msgstr "MkDir \"C:\\Test2\""
+
+#: 03020413.xhp#par_id3159154.11.help.text
+msgid "ChDir \"C:\\test2\""
+msgstr "ChDir \"C:\\test2\""
+
+#: 03020413.xhp#par_id3151112.12.help.text
+msgid "msgbox Curdir"
+msgstr "msgbox Curdir"
+
+#: 03020413.xhp#par_id3147427.13.help.text
+msgid "ChDir \"\\\""
+msgstr "ChDir \"\\\""
+
+#: 03020413.xhp#par_id3153188.14.help.text
+msgid "RmDir \"C:\\test2\""
+msgstr "RmDir \"C:\\test2\""
+
+#: 03020413.xhp#par_id3146120.15.help.text
+msgctxt "03020413.xhp#par_id3146120.15.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03104400.xhp#tit.help.text
+msgid "HasUnoInterfaces Function [Runtime]"
+msgstr "Función HasUnoInterfaces [Ejecución]"
+
+#: 03104400.xhp#bm_id3149987.help.text
+msgid "<bookmark_value>HasUnoInterfaces function</bookmark_value>"
+msgstr "<bookmark_value>HasUnoInterfaces;función</bookmark_value>"
+
+#: 03104400.xhp#hd_id3149987.1.help.text
+msgid "<link href=\"text/sbasic/shared/03104400.xhp\" name=\"HasUnoInterfaces Function [Runtime]\">HasUnoInterfaces Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104400.xhp\" name=\"HasUnoInterfaces Function [Runtime]\">Función HasUnoInterfaces [Ejecución]</link>"
+
+#: 03104400.xhp#par_id3151262.2.help.text
+msgid "Tests if a Basic Uno object supports certain Uno interfaces."
+msgstr "Comprueba si un objeto Basic Uno admite ciertas interfaces Uno."
+
+#: 03104400.xhp#par_id3154232.3.help.text
+msgid "Returns True, if <emph>all</emph> stated Uno interfaces are supported, otherwise False is returned."
+msgstr "Devuelve True, si se admiten <emph>todas</emph> las interfaces Uno indicadas, en caso contrario se devuelve False."
+
+#: 03104400.xhp#hd_id3150040.4.help.text
+msgctxt "03104400.xhp#hd_id3150040.4.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03104400.xhp#par_id3155555.5.help.text
+msgid "HasUnoInterfaces( oTest, Uno-Interface-Name 1 [, Uno-Interface-Name 2, ...])"
+msgstr "HasUnoInterfaces( oTest, Nombre-Interfaz-Uno 1 [, Nombre-Interfaz-Uno 2, ...])"
+
+#: 03104400.xhp#hd_id3153345.6.help.text
+msgctxt "03104400.xhp#hd_id3153345.6.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03104400.xhp#par_id3148538.7.help.text
+msgctxt "03104400.xhp#par_id3148538.7.help.text"
+msgid "Bool"
+msgstr "Lógico"
+
+#: 03104400.xhp#hd_id3159157.8.help.text
+msgctxt "03104400.xhp#hd_id3159157.8.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03104400.xhp#par_id3155419.9.help.text
+msgid "<emph>oTest:</emph> the Basic Uno object that you want to test."
+msgstr "<emph>oTest:</emph> El objeto Basic Uno que se desee comprobar."
+
+#: 03104400.xhp#par_id3149236.10.help.text
+msgid "<emph>Uno-Interface-Name:</emph> list of Uno interface names."
+msgstr "<emph>Nombre-Interfaz-Uno:</emph> Lista de nombres de interfaz Uno."
+
+#: 03104400.xhp#hd_id3147574.11.help.text
+msgctxt "03104400.xhp#hd_id3147574.11.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03104400.xhp#par_id3149580.12.help.text
+msgid "bHas = HasUnoInterfaces( oTest, \"com.sun.star.beans.XIntrospection\" )"
+msgstr "bHas = HasUnoInterfaces( oTest, \"com.sun.star.beans.XIntrospection\" )"
+
+#: 03120307.xhp#tit.help.text
+msgid "Right Function [Runtime]"
+msgstr "Función Right [Ejecución]"
+
+#: 03120307.xhp#bm_id3153311.help.text
+msgid "<bookmark_value>Right function</bookmark_value>"
+msgstr "<bookmark_value>Right;función</bookmark_value>"
+
+#: 03120307.xhp#hd_id3153311.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120307.xhp\" name=\"Right Function [Runtime]\">Right Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120307.xhp\" name=\"Right Function [Runtime]\">Función Right [Ejecución]</link>"
+
+#: 03120307.xhp#par_id3150984.2.help.text
+msgid "Returns the rightmost \"n\" characters of a string expression."
+msgstr "Devuelve los \"n\" caracteres que se encuentran más a la derecha de una expresión de cadena."
+
+#: 03120307.xhp#par_id3149763.3.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function\">Left Function</link>."
+msgstr "Consulte también: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function\">Función Left</link>."
+
+#: 03120307.xhp#hd_id3145315.4.help.text
+msgctxt "03120307.xhp#hd_id3145315.4.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03120307.xhp#par_id3153061.5.help.text
+msgid "Right (Text As String, n As Long)"
+msgstr "Right (Texto As String, n As Integer)"
+
+#: 03120307.xhp#hd_id3145068.6.help.text
+msgctxt "03120307.xhp#hd_id3145068.6.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03120307.xhp#par_id3156344.7.help.text
+msgctxt "03120307.xhp#par_id3156344.7.help.text"
+msgid "String"
+msgstr "Cadena"
+
+#: 03120307.xhp#hd_id3146795.8.help.text
+msgctxt "03120307.xhp#hd_id3146795.8.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03120307.xhp#par_id3153526.9.help.text
+msgid "<emph>Text:</emph> Any string expression that you want to return the rightmost characters of."
+msgstr "<emph>Texto:</emph> Cualquier expresión de cadena de la que se desee devolver los caracteres que se encuentren más a la derecha."
+
+#: 03120307.xhp#par_id3151211.10.help.text
+msgid "<emph>n:</emph> Numeric expression that defines the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 65535."
+msgstr "<emph>n:</emph> Expresión entera que defina el número de caracteres que se desee devolver. Si <emph>n</emph> = 0, se devuelve una cadena de longitud cero."
+
+#: 03120307.xhp#par_id3158410.11.help.text
+msgid "The following example converts a date in YYYY-MM-DD format to the US date format (MM/DD/YYYY)."
+msgstr "El ejemplo siguiente convierte una fecha en formato AAAA-MM-DD al formato de fecha de EEUU (MM/DD/AAAA)."
+
+#: 03120307.xhp#hd_id3156212.12.help.text
+msgctxt "03120307.xhp#hd_id3156212.12.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03120307.xhp#par_id3150869.13.help.text
+msgctxt "03120307.xhp#par_id3150869.13.help.text"
+msgid "Sub ExampleUSDate"
+msgstr "Sub EjemploUSDate"
+
+#: 03120307.xhp#par_id3153105.14.help.text
+msgctxt "03120307.xhp#par_id3153105.14.help.text"
+msgid "Dim sInput As String"
+msgstr "Dim sEntrada As String"
+
+#: 03120307.xhp#par_id3154124.15.help.text
+msgctxt "03120307.xhp#par_id3154124.15.help.text"
+msgid "Dim sUS_date As String"
+msgstr "Dim afecha_EUA As String"
+
+#: 03120307.xhp#par_id3159252.16.help.text
+msgctxt "03120307.xhp#par_id3159252.16.help.text"
+msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
+msgstr "sEntrada = InputBox(\"Escriba una fecha en formato internacional 'AAAA-MM-DD'\")"
+
+#: 03120307.xhp#par_id3149561.17.help.text
+msgctxt "03120307.xhp#par_id3149561.17.help.text"
+msgid "sUS_date = Mid(sInput, 6, 2)"
+msgstr "sfecha_EUA = Mid(sEntrada, 6, 2)"
+
+#: 03120307.xhp#par_id3146984.18.help.text
+msgctxt "03120307.xhp#par_id3146984.18.help.text"
+msgid "sUS_date = sUS_date & \"/\""
+msgstr "sfecha_EUA = sfecha_EUA & \"/\""
+
+#: 03120307.xhp#par_id3155308.19.help.text
+msgctxt "03120307.xhp#par_id3155308.19.help.text"
+msgid "sUS_date = sUS_date & Right(sInput, 2)"
+msgstr "sfecha_EUA = sfecha_EUA & Right(sEntrada, 2)"
+
+#: 03120307.xhp#par_id3153727.20.help.text
+msgctxt "03120307.xhp#par_id3153727.20.help.text"
+msgid "sUS_date = sUS_date & \"/\""
+msgstr "sfecha_EUA = sfecha_EUA & \"/\""
+
+#: 03120307.xhp#par_id3145365.21.help.text
+msgctxt "03120307.xhp#par_id3145365.21.help.text"
+msgid "sUS_date = sUS_date & Left(sInput, 4)"
+msgstr "sfecha_EUA = sfecha_EUA & Left(sEntrada, 4)"
+
+#: 03120307.xhp#par_id3152940.22.help.text
+msgctxt "03120307.xhp#par_id3152940.22.help.text"
+msgid "MsgBox sUS_date"
+msgstr "MsgBox sfecha_EUA"
+
+#: 03120307.xhp#par_id3146120.23.help.text
+msgctxt "03120307.xhp#par_id3146120.23.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03080302.xhp#tit.help.text
+msgid "Rnd Function [Runtime]"
+msgstr "Función Rnd [Ejecución]"
+
+#: 03080302.xhp#bm_id3148685.help.text
+msgid "<bookmark_value>Rnd function</bookmark_value>"
+msgstr "<bookmark_value>Rnd;función</bookmark_value>"
+
+#: 03080302.xhp#hd_id3148685.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080302.xhp\" name=\"Rnd Function [Runtime]\">Rnd Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080302.xhp\" name=\"Función Rnd [Runtime]\">Función Rnd [Ejecución]</link>"
+
+#: 03080302.xhp#par_id3149669.2.help.text
+msgid "Returns a random number between 0 and 1."
+msgstr "Devuelve un número aleatorio entre 0 y 1."
+
+#: 03080302.xhp#hd_id3153897.3.help.text
+msgctxt "03080302.xhp#hd_id3153897.3.help.text"
+msgid "Syntax:"
+msgstr "<emph>Sintaxis</emph>:"
+
+#: 03080302.xhp#par_id3150543.4.help.text
+msgid "Rnd [(Expression)]"
+msgstr "Rnd [(Expresión)]"
+
+#: 03080302.xhp#hd_id3149655.5.help.text
+msgctxt "03080302.xhp#hd_id3149655.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03080302.xhp#par_id3154365.6.help.text
+msgctxt "03080302.xhp#par_id3154365.6.help.text"
+msgid "Double"
+msgstr "Doble"
+
+#: 03080302.xhp#hd_id3154909.7.help.text
+msgctxt "03080302.xhp#hd_id3154909.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03080302.xhp#par_id3125864.8.help.text
+msgid "<emph>Expression:</emph> Any numeric expression."
+msgstr "<emph>Expresión:</emph>Cualquier expresión numérica."
+
+#: 03080302.xhp#par_id3155306.12.help.text
+msgid "<emph>Omitted:</emph> Returns the next random number in the sequence."
+msgstr "<emph>Omitido:</emph> Devuelve el siguiente número aleatorio de la secuencia."
+
+#: 03080302.xhp#par_id3147318.14.help.text
+msgid "The <emph>Rnd</emph> function only returns values ranging from 0 to 1. To generate random integers in a given range, use the formula in the following example:"
+msgstr "La función <emph>Rnd</emph> sólo devuelve valores que van de 0 a 1. Para generar enteros aleatorios dentro de un rango determinado, use la fórmula que se incluye en el ejemplo siguiente:"
+
+#: 03080302.xhp#hd_id3151118.15.help.text
+msgctxt "03080302.xhp#hd_id3151118.15.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03080302.xhp#par_id3145365.16.help.text
+msgctxt "03080302.xhp#par_id3145365.16.help.text"
+msgid "Sub ExampleRandomSelect"
+msgstr "Sub EjemploSelecAleatoria"
+
+#: 03080302.xhp#par_id3147426.17.help.text
+msgctxt "03080302.xhp#par_id3147426.17.help.text"
+msgid "Dim iVar As Integer"
+msgstr "Dim iVar As Integer"
+
+#: 03080302.xhp#par_id3150011.18.help.text
+msgctxt "03080302.xhp#par_id3150011.18.help.text"
+msgid "iVar = Int((15 * Rnd) -2)"
+msgstr "iVar = Int((15 * Rnd) -2)"
+
+#: 03080302.xhp#par_id3148575.19.help.text
+msgctxt "03080302.xhp#par_id3148575.19.help.text"
+msgid "Select Case iVar"
+msgstr "Select Case iVar"
+
+#: 03080302.xhp#par_id3154097.20.help.text
+msgctxt "03080302.xhp#par_id3154097.20.help.text"
+msgid "Case 1 To 5"
+msgstr "Case 1 To 5"
+
+#: 03080302.xhp#par_id3147124.21.help.text
+msgctxt "03080302.xhp#par_id3147124.21.help.text"
+msgid "Print \"Number from 1 to 5\""
+msgstr "Print \"Número de 1 a 5\""
+
+#: 03080302.xhp#par_id3155418.22.help.text
+msgctxt "03080302.xhp#par_id3155418.22.help.text"
+msgid "Case 6, 7, 8"
+msgstr "Case 6, 7, 8"
+
+#: 03080302.xhp#par_id3154943.23.help.text
+msgctxt "03080302.xhp#par_id3154943.23.help.text"
+msgid "Print \"Number from 6 to 8\""
+msgstr "Print \"Número de 6 a 8\""
+
+#: 03080302.xhp#par_id3145800.24.help.text
+msgctxt "03080302.xhp#par_id3145800.24.help.text"
+msgid "Case Is > 8 And iVar < 11"
+msgstr "Case Is > 8 And iVar < 11"
+
+#: 03080302.xhp#par_id3151074.25.help.text
+msgctxt "03080302.xhp#par_id3151074.25.help.text"
+msgid "Print \"Greater than 8\""
+msgstr "Print \"Mayor que 8\""
+
+#: 03080302.xhp#par_id3154016.26.help.text
+msgctxt "03080302.xhp#par_id3154016.26.help.text"
+msgid "Case Else"
+msgstr "Case Else"
+
+#: 03080302.xhp#par_id3155602.27.help.text
+msgctxt "03080302.xhp#par_id3155602.27.help.text"
+msgid "Print \"Outside range 1 to 10\""
+msgstr "Print \"Fuera del rango de 1 a 10\""
+
+#: 03080302.xhp#par_id3150328.28.help.text
+msgctxt "03080302.xhp#par_id3150328.28.help.text"
+msgid "End Select"
+msgstr "End Select"
+
+#: 03080302.xhp#par_id3154479.29.help.text
+msgctxt "03080302.xhp#par_id3154479.29.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 01170101.xhp#tit.help.text
+msgid "General"
+msgstr "Generales"
+
+#: 01170101.xhp#hd_id3147436.1.help.text
+msgid "<link href=\"text/sbasic/shared/01170101.xhp\" name=\"General\">General</link>"
+msgstr "<link href=\"text/sbasic/shared/01170101.xhp\" name=\"General\">General</link>"
+
+#: 01170101.xhp#par_id3155855.2.help.text
+msgid "Define the properties for the selected control or dialog. The available properties depend on the type of control selected. The following properties therefore are not available for every type of control."
+msgstr "Define las propiedades del campo de control o diálogo seleccionados. Las propiedades disponibles dependen del tipo de campo de control seleccionado. Por este motivo, las propiedades siguientes no están disponibles en todos los tipos de campo de control."
+
+#: 01170101.xhp#hd_id3148647.11.help.text
+msgid "Alignment"
+msgstr "Alineación"
+
+#: 01170101.xhp#par_id3147318.12.help.text
+msgid "<ahelp hid=\"HID_PROP_IMAGE_ALIGN\">Specify the alignment option for the selected control.</ahelp>"
+msgstr "<ahelp hid=\"HID_PROP_IMAGE_ALIGN\">Especifique la opción de alineación para el campo de control seleccionado.</ahelp>"
+
+#: 01170101.xhp#hd_id3153189.76.help.text
+msgid "AutoFill"
+msgstr "Rellenar automáticamente"
+
+#: 01170101.xhp#par_id3152460.77.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to enable the AutoFill function for the selected control. </ahelp>"
+msgstr "<ahelp hid=\".\">Seleccione \"Sí\" para habilitar la función Autorrellenar para el control seleccionado. </ahelp>"
+
+#: 01170101.xhp#hd_id3155307.3.help.text
+msgid "Background color"
+msgstr "Color de fondo"
+
+#: 01170101.xhp#par_id3145251.4.help.text
+msgid "<ahelp hid=\".\">Specify the background color for the current control.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique el color de fondo del control.</ahelp>"
+
+#: 01170101.xhp#hd_id3151076.263.help.text
+msgid "Large change"
+msgstr "Incremento de bloque"
+
+#: 01170101.xhp#par_id3148457.262.help.text
+msgid "<ahelp hid=\".\">Specify the number of units to scroll when a user clicks in the area between the slider and the arrows on a scrollbar.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique el número de unidades de desplazamiento cuando un usuario haga clic en el área entre el control deslizante y las flechas de una barra de desplazamiento.</ahelp>"
+
+#: 01170101.xhp#hd_id3153876.139.help.text
+msgid "Border"
+msgstr "Marco"
+
+#: 01170101.xhp#par_id3154017.140.help.text
+msgid "<ahelp hid=\".\">Specify the border type for the current control.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique el tipo de borde para el control.</ahelp>"
+
+#: 01170101.xhp#hd_id3150749.23.help.text
+msgid "Button type"
+msgstr "Tipo de botón"
+
+#: 01170101.xhp#par_id3155064.24.help.text
+msgid "<ahelp hid=\".\">Select a button type. Button types determine what type of action is initiated.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccione un tipo de botón. Los tipos de botón determinan qué tipo de acción se inicia.</ahelp>"
+
+#: 01170101.xhp#hd_id3149019.5.help.text
+msgid "Character set"
+msgstr "Juego de caracteres"
+
+#: 01170101.xhp#par_id3148406.6.help.text
+msgid "<ahelp hid=\".\">Select the font to be used for displaying the contents of the current control.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccione el tipo de letra que utilizar para mostrar el contenido del control actual.</ahelp>"
+
+#: 01170101.xhp#hd_id3147341.149.help.text
+msgid "Currency symbol"
+msgstr "Símbolo de moneda"
+
+#: 01170101.xhp#par_id3146315.150.help.text
+msgid "<ahelp hid=\".\">Enter the currency symbol to be used for currency controls.</ahelp>"
+msgstr "<ahelp hid=\".\">Escriba el símbolo de la moneda que se utilizará en los controles de moneda.</ahelp>"
+
+#: 01170101.xhp#hd_id7936643.help.text
+msgctxt "01170101.xhp#hd_id7936643.help.text"
+msgid "Date"
+msgstr "Fecha"
+
+#: 01170101.xhp#par_id2293771.help.text
+msgid "<ahelp hid=\".\">Specify the default date to be shown in the Date control.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique la fecha predeterminada que debe aparecer en el control de fecha.</ahelp>"
+
+#: 01170101.xhp#hd_id3153965.82.help.text
+msgid "Date format"
+msgstr "Formato de fecha"
+
+#: 01170101.xhp#par_id3155334.83.help.text
+msgid "<ahelp hid=\".\">Specify the desired format for a date control. A date control interprets the user input depending on this format setting.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique el formato deseado para un control de fecha. Un control de fecha interpreta la entrada del usuario, según esta configuración del formato.</ahelp>"
+
+#: 01170101.xhp#hd_id3154663.121.help.text
+msgid "Date max."
+msgstr "Fecha máx."
+
+#: 01170101.xhp#par_id3148485.122.help.text
+msgid "<ahelp hid=\".\">Specify the upper limit for a date control.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique el límite superior de un control de fecha.</ahelp>"
+
+#: 01170101.xhp#hd_id3152778.131.help.text
+msgid "Date min."
+msgstr "Fecha mínima"
+
+#: 01170101.xhp#par_id3154120.132.help.text
+msgid "<ahelp hid=\".\">Specify the lower limit for a date control.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique el límite inferior de un control de fecha.</ahelp>"
+
+#: 01170101.xhp#hd_id3154573.137.help.text
+msgid "Decimal accuracy"
+msgstr "Decimales"
+
+#: 01170101.xhp#par_id3166426.138.help.text
+msgid "<ahelp hid=\".\">Specify the number of decimal places displayed for a numerical or currency control.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique el número de posiciones decimales que se deban mostrar en un control numérico o de moneda. </ahelp>"
+
+#: 01170101.xhp#hd_id3159091.144.help.text
+msgid "Default button"
+msgstr "Botón predeterminado"
+
+#: 01170101.xhp#par_id3154200.145.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to make the current button control the default selection. Pressing <emph>Return</emph> in the dialog activates the default button.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccione \"Sí\" para hacer del control de botón actual la selección predeterminada. Si se pulsa <emph>Retorno</emph> en el diálogo se activa el botón predeterminado.</ahelp>"
+
+#: 01170101.xhp#par_idN108BA.help.text
+msgid "Delay"
+msgstr "Retraso"
+
+#: 01170101.xhp#par_idN108D0.help.text
+msgid "<ahelp hid=\".\">Specifies the delay in milliseconds between scrollbar trigger events.</ahelp> A trigger event occurs when you click a scrollbar arrow or click the background area in a scrollbar. Repeated trigger events occur if you keep the mouse button pressed when you click a scrollbar arrow or background area in a scrollbar. If you want, you can include valid time units with the number that you enter, for example, 2 s or 500 ms."
+msgstr "<ahelp hid=\".\">Especifica el retraso en milisegundos entre los eventos desencadenadores de la barra de desplazamiento.</ahelp>Un evento desencadenador tiene lugar al hacer clic en una flecha de barra de desplazamiento o en el área de fondo de una barra de desplazamiento. Los eventos desencadenadores se repiten si mantiene el botón del ratón pulsado al hacer clic en una flecha de barra de desplazamiento o en el área de fondo de una barra de desplazamiento. Si lo desea, puede incluir unidades temporales válidas con el número especificado, por ejemplo, 2 s o 500 ms."
+
+#: 01170101.xhp#hd_id3151278.19.help.text
+msgid "Dropdown"
+msgstr "Desplegable"
+
+#: 01170101.xhp#par_id3155113.20.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to enable the dropdown option for list or combo box controls. A dropdown control field has an arrow button which you can click to open a list of the existing form entries.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccione \"Sí\" para habilitar la opción desplegable para los controles de la lista o el cuadro combinado. Un campo de control desplegable tiene un botón de flecha en el que puede hacer clic para abrir una lista de las entradas del formulario.</ahelp>"
+
+#: 01170101.xhp#hd_id3151216.13.help.text
+msgid "Enabled"
+msgstr "Activado"
+
+#: 01170101.xhp#par_id3150517.14.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to enable the control. If the control is disabled, it is grayed out in the dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccione \"Sí\" para habilitar el control. Si el control esta deshabilitado, queda atenuado en el diálogo.</ahelp>"
+
+#: 01170101.xhp#hd_id3155379.91.help.text
+msgid "Edit mask"
+msgstr "Máscara de entrada"
+
+#: 01170101.xhp#par_id3155509.92.help.text
+msgid "<ahelp hid=\".\">Specify the edit mask for a pattern control. This is a character code that defines the input format for the control.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique la máscara de edición para un control de modelo. Éste es un código de caracteres que define el formato de entrada para el control.</ahelp>"
+
+#: 01170101.xhp#par_id3154485.184.help.text
+msgid "You need to specify a masking character for each input character of the edit mask to restrict the input to the values that are listed in the following table:"
+msgstr "Para cada carácter de entrada de la máscara de edición, es necesario especificar un carácter de máscara que restrinja la entrada a los valores dados en la tabla:"
+
+#: 01170101.xhp#par_id3155809.93.help.text
+msgid " Character "
+msgstr "<emph>Carácter</emph>"
+
+#: 01170101.xhp#par_id3148702.94.help.text
+msgid "Meaning"
+msgstr "<emph>Significado</emph>"
+
+#: 01170101.xhp#par_id3156199.95.help.text
+msgid "L"
+msgstr "L"
+
+#: 01170101.xhp#par_id3148869.96.help.text
+msgid "A text constant. This character cannot be modified by the user. "
+msgstr "Una constante de texto. Este carácter no puede modificarlo el usuario."
+
+#: 01170101.xhp#par_id3156016.97.help.text
+msgid "a"
+msgstr "a"
+
+#: 01170101.xhp#par_id3157983.98.help.text
+msgid "The characters a-z can be entered here. If a capital letter is entered, it is automatically converted to a lowercase letter."
+msgstr "En esta posición se introducen los caracteres comprendidos entre la 'a' y la 'z'. Si se introduce una mayúscula, automáticamente se convierte en minúscula."
+
+#: 01170101.xhp#par_id3148607.99.help.text
+msgid "A"
+msgstr "A"
+
+#: 01170101.xhp#par_id3159204.100.help.text
+msgid "The characters A-Z can be entered here. If a lowercase letter is entered, it is automatically converted to a capital letter"
+msgstr "En esta posición se introducen los caracteres comprendidos entre la 'A' y la 'Z'. Si se introduce una minúscula, automáticamente se convierte en mayúscula."
+
+#: 01170101.xhp#par_id3149126.101.help.text
+msgid "c"
+msgstr "c"
+
+#: 01170101.xhp#par_id3151304.102.help.text
+msgid "The characters a-z and 0-9 can be entered here. If a capital letter is entered, it is automatically converted to a lowercase letter."
+msgstr "En esta posición se introducen los caracteres comprendidos entre la 'a' y la 'z' y entre '0' y '9'. Si se introduce una mayúscula, automáticamente se convierte en minúscula."
+
+#: 01170101.xhp#par_id3152870.103.help.text
+msgid "C"
+msgstr "C"
+
+#: 01170101.xhp#par_id3155071.104.help.text
+msgid "The characters a-z and 0-9 can be entered here. If a lowercase letter is entered, it is automatically converted to a capital letter"
+msgstr "En esta posición puede introducir los caracteres comprendidos entre la 'A' y la 'Z' y de '0' a '9'. Si se introduce una minúscula, automáticamente se convierte en mayúscula."
+
+#: 01170101.xhp#par_id3159230.105.help.text
+msgid "N"
+msgstr "N"
+
+#: 01170101.xhp#par_id3154650.106.help.text
+msgid "Only the characters 0-9 can be entered."
+msgstr "Sólo puede introducir caracteres comprendidos entre '0' y '9'."
+
+#: 01170101.xhp#par_id3149383.107.help.text
+msgctxt "01170101.xhp#par_id3149383.107.help.text"
+msgid "x"
+msgstr "x"
+
+#: 01170101.xhp#par_id3153489.108.help.text
+msgid "All printable characters can be entered."
+msgstr "Se pueden introducir todos los caracteres imprimibles."
+
+#: 01170101.xhp#par_id3146967.109.help.text
+msgid "X"
+msgstr "X"
+
+#: 01170101.xhp#par_id3154707.110.help.text
+msgid "All printable characters can be entered. If a lowercase letter is used, it is automatically converted to a capital letter."
+msgstr "Se pueden indicar todos los caracteres imprimibles. Si se utiliza una minúscula, automáticamente se convierte en mayúscula."
+
+#: 01170101.xhp#hd_id2128971.help.text
+msgid "Editable"
+msgstr "Editable"
+
+#: 01170101.xhp#par_id6519974.help.text
+msgid "<ahelp hid=\".\">Specifies whether the nodes of the tree control are editable.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifica si los nodos de un control árbol son editable.</ahelp>"
+
+#: 01170101.xhp#par_id4591814.help.text
+msgctxt "01170101.xhp#par_id4591814.help.text"
+msgid "The default value is FALSE."
+msgstr "El valor predeterminado es FALSE."
+
+#: 01170101.xhp#hd_id3149317.114.help.text
+msgctxt "01170101.xhp#hd_id3149317.114.help.text"
+msgid "Graphics"
+msgstr "Gráficos"
+
+#: 01170101.xhp#par_id3147546.115.help.text
+msgid "<ahelp hid=\".\">Specify the source of the graphics for a button or an image control. Click \"...\" to select a file.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique el origen de los gráficos de un botón o un control de imagen. Haga clic en \"...\" para seleccionar un archivo.</ahelp>"
+
+#: 01170101.xhp#hd_id3154627.258.help.text
+msgid "Height"
+msgstr "Altura"
+
+#: 01170101.xhp#par_id3155754.257.help.text
+msgid "<ahelp hid=\".\">Specify the height of the current control or the dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique la altura del diálogo o el control.</ahelp>"
+
+#: 01170101.xhp#hd_id3153072.208.help.text
+msgid "Help text"
+msgstr "Texto de ayuda"
+
+#: 01170101.xhp#par_id3147502.209.help.text
+msgid "<ahelp hid=\".\">Enter a help text that is displayed as a tip (bubble help) when the mouse rests over the control.</ahelp>"
+msgstr "<ahelp hid=\".\">Escriba un texto de ayuda para que aparezca como sugerencia (burbuja de texto) cuando el ratón descanse sobre el control.</ahelp>"
+
+#: 01170101.xhp#hd_id3154400.212.help.text
+msgid "Help URL"
+msgstr "Ayuda URL"
+
+#: 01170101.xhp#par_id3150431.213.help.text
+msgid "<ahelp hid=\".\">Specify the help URL that is called when you press F1 while the focus is on a particular control. For example, use the format HID:1234 to call the Help-ID with the number 1234.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique el URL de ayuda que se llama cuando pulsa F1 mientras el foco está en un control determinado. Utilice, por ejemplo, el formato HID:1234 para llamar el ID de ayuda con el número 1234.</ahelp>"
+
+#: 01170101.xhp#par_id4171269.help.text
+msgid "Set the environment variable HELP_DEBUG to 1 to view the Help-IDs as extended help tips."
+msgstr "Fijar el variable del entorno HELP_DEBUG a 1 para ver los Help-IDs como tips de ayuda extendida"
+
+#: 01170101.xhp#hd_id3159260.85.help.text
+msgid "Incr./decrement value"
+msgstr "Intervalo"
+
+#: 01170101.xhp#par_id3145233.86.help.text
+msgid "<ahelp hid=\".\">Specify the increment and decrement interval for spin button controls.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique el intervalo de aumento y reducción de los controles del botón de selección. </ahelp>"
+
+#: 01170101.xhp#hd_id539262.help.text
+msgid "Invokes stop mode editing"
+msgstr "Comando a parar editación de modo"
+
+#: 01170101.xhp#par_id234382.help.text
+msgid "<ahelp hid=\".\">Specifies what happens when editing is interrupted by selecting another node in the tree, a change in the tree's data, or by some other means.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifica que sucede cuando Editar se interrumpe a través de seleccionar otro nodo en el árbol, un cambio en los datos del árbol, o por algún otra manera.</ahelp>"
+
+#: 01170101.xhp#par_id6591082.help.text
+msgid "Setting this property to TRUE causes the changes to be automatically saved when editing is interrupted. FALSE means that editing is canceled and changes are lost."
+msgstr "Fijar este propiedad a TRUE causa que cambios están guardado automáticamente. FALSE significa que si el Edit se cancela los cambios se pierdan."
+
+#: 01170101.xhp#par_id9298074.help.text
+msgctxt "01170101.xhp#par_id9298074.help.text"
+msgid "The default value is FALSE."
+msgstr "El valor predeterminado es FALSE."
+
+#: 01170101.xhp#hd_id3150536.7.help.text
+msgid "Label"
+msgstr "Título"
+
+#: 01170101.xhp#par_id3146324.8.help.text
+msgid "<ahelp hid=\".\">Specifies the label of the current control. The label is displayed along with the control.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifica la etiqueta del control actual. La etiqueta aparece junto con el control.</ahelp>"
+
+#: 01170101.xhp#par_id3146816.223.help.text
+msgid "You can create multi-line <emph>labels</emph> by inserting manual line breaks in the label using <emph>Shift+Enter</emph>."
+msgstr "Se pueden crear <emph>etiquetas</emph> multilínea insertando saltos de línea manuales en la etiqueta mediante <emph>Mayúsculas+Intro</emph>."
+
+#: 01170101.xhp#hd_id3150457.74.help.text
+msgid "Line Count"
+msgstr "Número de líneas"
+
+#: 01170101.xhp#par_id3149143.75.help.text
+msgid "<ahelp hid=\".\">Enter the number of lines to be displayed for a list control. For combo boxes, this setting is only active if the dropdown option is enabled. </ahelp>"
+msgstr "<ahelp hid=\".\">Escriba el número de líneas que se mostrarán en un control de lista. En el caso de los cuadros combinados, este valor sólo está activo si se habilita la opción desplegable. </ahelp>"
+
+#: 01170101.xhp#hd_id7468489.help.text
+msgctxt "01170101.xhp#hd_id7468489.help.text"
+msgid "Scrollbar"
+msgstr "Barra de desplazamiento"
+
+#: 01170101.xhp#par_id7706228.help.text
+msgid "Adds the scrollbar type that you specify to a text box."
+msgstr "Agrega el tipo de barra de desplazamiento especificado a un cuadro de texto."
+
+#: 01170101.xhp#hd_id3153121.256.help.text
+msgid "Small change"
+msgstr "Incremento de línea"
+
+#: 01170101.xhp#par_id3157875.255.help.text
+msgid "<ahelp hid=\".\">Specify the number of units to scroll when a user clicks an arrow on a scrollbar.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique el número de unidades de desplazamiento cada vez que un usuario haga clic en una flecha de una barra de desplazamiento.</ahelp>"
+
+#: 01170101.xhp#hd_id3145221.73.help.text
+msgid "List entries"
+msgstr "Entradas de lista"
+
+#: 01170101.xhp#par_id3154580.120.help.text
+msgid "<ahelp hid=\".\">Specify the entries for a list control. One line takes one list entry. Press <emph>Shift+Enter</emph> to insert a new line.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique las entradas de un control de lista. Una línea ocupa una entrada de la lista. Pulse <emph>Mayús+Entrar</emph> para insertar una nueva línea.</ahelp>"
+
+#: 01170101.xhp#hd_id3149723.159.help.text
+msgid "Literal mask"
+msgstr "Máscara de caracteres"
+
+#: 01170101.xhp#par_id3150656.160.help.text
+msgid "<ahelp hid=\".\">Specify the initial values to be displayed in a pattern control. This helps the user to identify which values are allowed in a pattern control. The literal mask is restricted by the format specified by the edit mask.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique los valores iniciales que se mostrarán en un control de modelo. Esto ayuda al usuario a identificar qué valores se permiten en un control de modelo. El formato especificado por la máscara de edición restringe la máscara literal.</ahelp>"
+
+#: 01170101.xhp#hd_id3149015.116.help.text
+msgid "Manual line break"
+msgstr "Salto de línea manual"
+
+#: 01170101.xhp#par_id3149893.117.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to allow manual line breaks inside multiline controls.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccione \"Sí\" para permitir saltos de línea manuales en el interior de controles de varias líneas.</ahelp>"
+
+#: 01170101.xhp#hd_id3150463.123.help.text
+msgid "Max. text length"
+msgstr "Longitud máx. de texto"
+
+#: 01170101.xhp#par_id3150745.124.help.text
+msgid "<ahelp hid=\".\">Specify the maximum number of characters that the user can enter.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique el número máximo de caracteres que el usuario puede escribir.</ahelp>"
+
+#: 01170101.xhp#hd_id3154675.21.help.text
+msgid "Multiline Input"
+msgstr "Entrada con varias líneas"
+
+#: 01170101.xhp#par_id3144741.22.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to allow the input of multiple lines in the control. Press Enter to insert a manual line break in the control.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccione \"Sí\" para permitir la entrada de varias líneas en el control. Pulse Entrar para insertar un salto de línea manual en el control.</ahelp>"
+
+#: 01170101.xhp#hd_id3154848.129.help.text
+msgid "Multiselection"
+msgstr "Selección múltiple"
+
+#: 01170101.xhp#par_id3151235.130.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to allow the selection of multiple entries in list controls.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccione \"Sí\" para permitir la selección de varias entradas en los controles de lista.</ahelp>"
+
+#: 01170101.xhp#hd_id3148887.9.help.text
+msgid "Name"
+msgstr "Nombre"
+
+#: 01170101.xhp#par_id3154548.10.help.text
+msgid "<ahelp hid=\".\">Insert a name for the current control. This name is used to identify the control.</ahelp>"
+msgstr "<ahelp hid=\".\">Inserte un nombre para el control. Este nombre se utiliza para identificar el control.</ahelp>"
+
+#: 01170101.xhp#hd_id3148739.44.help.text
+msgid "Order"
+msgstr "Orden"
+
+#: 01170101.xhp#par_id3149252.45.help.text
+msgid "<ahelp hid=\".\">Specify the order in which the controls receive the focus when the Tab key is pressed in the dialog.</ahelp> On entering a dialog, the control with the lowest order (0) receives the focus. Pressing the <emph>Tab</emph> key the successively focusses the other controls as specified by their order number."
+msgstr "<ahelp hid=\".\">Especifique el orden en que los controles recibirán el foco cuando se pulse la tecla Tab en el diálogo.</ahelp> Al entrar en un diálogo, el control con el orden más bajo (0) recibe el foco. Si se pulsa la tecla <emph>Tab</emph>, los demás controles reciben el foco sucesivamente según lo especificado por sus números de orden."
+
+#: 01170101.xhp#par_id3155259.46.help.text
+msgid "Initially, the controls receive numbers in the order they are added to the dialog. You can change the order numbers for controls. $[officename] Basic updates the order numbers automatically to avoid duplicate numbers. Controls that cannot be focused are also assigned a value but these controls are skipped when using the Tab key."
+msgstr "Inicialmente, los campos de control reciben números en el orden en el que se fueron añadiendo al diálogo. El número de orden de los campos de control puede cambiarse. $[officename] Basic actualiza los números de orden automáticamente para evitar números duplicados. A los campos de control que no pueden enfocarse también se les asigna un valor, pero se ignoran al utilizar la tecla Tabulación."
+
+#: 01170101.xhp#hd_id3149511.247.help.text
+msgid "Orientation"
+msgstr "Orientación"
+
+#: 01170101.xhp#par_id3153780.246.help.text
+msgid "<ahelp hid=\".\">Specify the orientation for a scrollbar control.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique la orientación para un control de barra de desplazamiento.</ahelp>"
+
+#: 01170101.xhp#hd_id3154374.239.help.text
+msgid "Page (step)"
+msgstr "Página (paso)"
+
+#: 01170101.xhp#par_id3154109.238.help.text
+msgid "<ahelp hid=\".\">Specify the number of the dialog page to which the current control is assigned or the page number of the dialog you want to edit.</ahelp> If a dialog has only one page set its <emph>Page (Step)</emph> value to <emph>0</emph>."
+msgstr "<ahelp hid=\".\">Especifique el número de página del diálogo al que se asigna el control actual o el número de página del diálogo que desea editar.</ahelp> Si un diálogo sólo tiene una página, configure el valor de <emph>Página (Step)</emph> en <emph>0</emph>."
+
+#: 01170101.xhp#par_id3148580.236.help.text
+msgid "Select <emph>Page (Step)</emph> = 0 to make a control visible on every dialog page."
+msgstr "Seleccione <emph>Página (Step)</emph> = 0 para que el control sea visible en todas las páginas del diálogo."
+
+#: 01170101.xhp#par_id3146144.235.help.text
+msgid "To switch between dialog pages at run time, you need to create a macro that changes the value of <emph>Page (Step)</emph>."
+msgstr "Para alternar entre páginas de diálogo en tiempo de ejecución, es necesario crear una macro que cambie el valor de <emph>Página (Step)</emph>."
+
+#: 01170101.xhp#hd_id3154558.156.help.text
+msgid "Password characters"
+msgstr "Caracteres para contraseñas"
+
+#: 01170101.xhp#par_id3152787.157.help.text
+msgid "<ahelp hid=\".\">Enter a character to be displayed instead of the characters that are typed. This can be used for entering passwords in text controls.</ahelp>"
+msgstr "<ahelp hid=\".\">Escriba un carácter para mostrar en lugar de los caracteres que se escriban. Esto se puede utilizar para escribir contraseñas en controles de texto.</ahelp>"
+
+#: 01170101.xhp#hd_id3148750.245.help.text
+msgid "PositionX"
+msgstr "PosiciónX"
+
+#: 01170101.xhp#par_id3154517.244.help.text
+msgid "<ahelp hid=\".\">Specify the distance of the current control from the left side of the dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique la distancia del control desde la parte izquierda del diálogo.</ahelp>"
+
+#: 01170101.xhp#hd_id3152767.243.help.text
+msgid "PositionY"
+msgstr "PosiciónY"
+
+#: 01170101.xhp#par_id3159082.242.help.text
+msgid "<ahelp hid=\".\">Specify the distance of the current control from the top of the dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique la distancia del control desde la parte superior del diálogo.</ahelp>"
+
+#: 01170101.xhp#hd_id3159213.221.help.text
+msgid "Prefix symbol"
+msgstr "Situar símbolo delante"
+
+#: 01170101.xhp#par_id3149688.222.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to display the currency symbol prefix in currency controls when a number was entered.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccione \"Sí\" para mostrar el prefijo del símbolo de moneda en los controles de moneda cuando se escriba un número.</ahelp>"
+
+#: 01170101.xhp#hd_id3149728.89.help.text
+msgid "Print"
+msgstr "Imprimir"
+
+#: 01170101.xhp#par_id3150001.90.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to include the current control in a document's printout.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccione \"Sí\" para incluir el control en la impresión de un documento.</ahelp>"
+
+#: 01170101.xhp#hd_id3154671.261.help.text
+msgid "Progress value"
+msgstr "Valor de progresión"
+
+#: 01170101.xhp#par_id3146849.260.help.text
+msgid "<ahelp hid=\".\">Specify a progress value for a progress bar control.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique un valor de progreso para un control de barra de progreso.</ahelp>"
+
+#: 01170101.xhp#hd_id3153112.254.help.text
+msgid "Progress value max."
+msgstr "Valor de progresión máx."
+
+#: 01170101.xhp#par_id3145167.253.help.text
+msgid "<ahelp hid=\".\">Specify the maximum value of a progress bar control.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique el valor máximo de un control de la barra de progreso.</ahelp>"
+
+#: 01170101.xhp#hd_id3153569.249.help.text
+msgid "Progress value min."
+msgstr "Valor de progresión mín."
+
+#: 01170101.xhp#par_id3154506.248.help.text
+msgid "<ahelp hid=\".\">Specify the minimum value of a progress bar control.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique el valor mínimo de un control de la barra de progreso.</ahelp>"
+
+#: 01170101.xhp#hd_id3150134.42.help.text
+msgid "Read-only"
+msgstr "Solo lectura"
+
+#: 01170101.xhp#par_id3155930.43.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to prevent the user from editing the value of the current control. The control is enabled and can be focussed but not modified.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccione \"Sí\" para evitar que el usuario modifique el valor del control actual. El control se habilita y puede recibir el foco, pero no modificarse.</ahelp>"
+
+#: 01170101.xhp#par_idN11112.help.text
+msgid "Repeat"
+msgstr "Repetir"
+
+#: 01170101.xhp#par_idN11128.help.text
+msgid "<ahelp hid=\".\">Repeats trigger events when you keep the mouse button pressed on a control such as a spin button.</ahelp>"
+msgstr "<ahelp hid=\".\">Repite eventos desencadenadores al mantener el botón del ratón pulsado sobre un control como un botón de selección.</ahelp>"
+
+#: 01170101.xhp#hd_id9579149.help.text
+msgid "Root displayed"
+msgstr "Raíz mostrado"
+
+#: 01170101.xhp#par_id7126987.help.text
+msgid "<ahelp hid=\".\">Specifies if the root node of the tree control is displayed.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifica si el nodo raíz del control arbol es mostrado.</ahelp>"
+
+#: 01170101.xhp#par_id9174779.help.text
+msgid "If Root displayed is set to FALSE, the root node of a model is no longer a valid node for the tree control and can't be used with any method of XTreeControl."
+msgstr "Si \"Raíz mostrado\" se fija a FALSE, el nodo raíz de un modelo es no más un nodo valido para el control árbol y no puede ser usado con cualquier método de XTreeControl."
+
+#: 01170101.xhp#par_id594195.help.text
+msgctxt "01170101.xhp#par_id594195.help.text"
+msgid "The default value is TRUE."
+msgstr "El valor predeterminado es TRUE."
+
+#: 01170101.xhp#hd_id7534409.help.text
+msgid "Row height"
+msgstr "Altura de fila"
+
+#: 01170101.xhp#par_id6471755.help.text
+msgid "<ahelp hid=\".\">Specifies the height of each row of a tree control, in pixels.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifica la altura de cada fila de un control árbol, en pixeles.</ahelp>"
+
+#: 01170101.xhp#par_id2909329.help.text
+msgid "If the specified value is less than or equal to zero, the row height is the maximum height of all rows."
+msgstr "Si el valor especificado el menor que o igual a cero, la altura de la fila es la altura máximo de todos los filas."
+
+#: 01170101.xhp#par_id4601580.help.text
+msgid "The default value is 0."
+msgstr "El valor predeterminado es cero."
+
+#: 01170101.xhp#hd_id3148761.264.help.text
+msgid "Scale"
+msgstr "Dimensionar la imagen"
+
+#: 01170101.xhp#par_id3159134.265.help.text
+msgid "<ahelp hid=\".\">Scales the image to fit the control size.</ahelp>"
+msgstr "<ahelp hid=\".\">Escala la imagen para ajustar el tamaño del control.</ahelp>"
+
+#: 01170101.xhp#hd_id7597277.help.text
+msgctxt "01170101.xhp#hd_id7597277.help.text"
+msgid "Scrollbar"
+msgstr "Barra de desplazamiento"
+
+#: 01170101.xhp#par_id986968.help.text
+msgid "<ahelp hid=\".\">Adds the scrollbar type that you specify to a text box.</ahelp>"
+msgstr "<ahelp hid=\".\">Agrega el tipo de barra de desplazamiento especificado a un cuadro de texto.</ahelp>"
+
+#: 01170101.xhp#hd_id3147370.241.help.text
+msgid "Scroll value"
+msgstr "Valor"
+
+#: 01170101.xhp#par_id3159622.240.help.text
+msgid "<ahelp hid=\".\">Specify the initial value of a scrollbar control. This determines the position of the scrollbar slider.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique el valor inicial de un control de la barra de desplazamiento. Determina la posición del control deslizante de la barra de desplazamiento.</ahelp>"
+
+#: 01170101.xhp#hd_id3155440.252.help.text
+msgid "Scroll value max."
+msgstr "Valor máximo"
+
+#: 01170101.xhp#par_id3148877.251.help.text
+msgid "<ahelp hid=\".\">Specify the maximum value of a scrollbar control.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique el valor máximo de un control de la barra de desplazamiento.</ahelp>"
+
+#: 01170101.xhp#par_idN111E4.help.text
+msgid "Scroll value min."
+msgstr "Valor mín. desplazamiento."
+
+#: 01170101.xhp#par_idN111E8.help.text
+msgid "<ahelp hid=\".\">Specify the minimum value of a scrollbar control.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique el valor mínimo de un control de la barra de desplazamiento.</ahelp>"
+
+#: 01170101.xhp#hd_id543534.help.text
+msgid "Show handles"
+msgstr "Muestra manillas"
+
+#: 01170101.xhp#par_id5060884.help.text
+msgid "<ahelp hid=\".\">Specifies whether the handles of the nodes should be displayed.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifca si los manillas de los nodos deben ser mostrado.</ahelp>"
+
+#: 01170101.xhp#par_id4974822.help.text
+msgid "The handles are dotted lines that visualize the hierarchy of the tree control."
+msgstr "Los manillas son líneas de puntos que visualiza la jerarquía del control de árbol."
+
+#: 01170101.xhp#par_id7687307.help.text
+msgctxt "01170101.xhp#par_id7687307.help.text"
+msgid "The default value is TRUE."
+msgstr "El valor predeterminado es TRUE."
+
+#: 01170101.xhp#hd_id4062013.help.text
+msgid "Show root handles"
+msgstr "Muestra manillas de raíz"
+
+#: 01170101.xhp#par_id3314004.help.text
+msgid "<ahelp hid=\".\">Specifies whether the handles of the nodes should also be displayed at root level.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifica si los manillas de los nodos deben ser mostrado a nivel raíz.</ahelp>"
+
+#: 01170101.xhp#par_id2396313.help.text
+msgctxt "01170101.xhp#par_id2396313.help.text"
+msgid "The default value is TRUE."
+msgstr "El valor predeterminado es TRUE."
+
+#: 01170101.xhp#par_idN10EC2.help.text
+msgid "Selection"
+msgstr "Selección"
+
+#: 01170101.xhp#par_idN10ED8.help.text
+msgid "<ahelp hid=\".\">Specifies the sequence of the selected items, where \"0\" corresponds to the first item. To select more than one item, Multiselection must be enabled.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifica la secuencia de los elementos seleccionados, donde \"0\" corresponde al primer elemento. Para seleccionar más de un elemento, la opción Selección múltiple debe estar habilitada.</ahelp>"
+
+#: 01170101.xhp#par_idN10EEB.help.text
+msgid "Click the <emph>...</emph> button to open the <emph>Selection</emph> dialog."
+msgstr "Haga clic en el botón <emph>...</emph> para abrir el diálogo <emph>Selección</emph>."
+
+#: 01170101.xhp#par_idN10F0A.help.text
+msgid "<ahelp hid=\".\">Click the item or items that you want to select. To select more than one item, ensure that the Multiselection option is selected.</ahelp>"
+msgstr "<ahelp hid=\".\">Haga clic en el elemento o los elementos que desee seleccionar. Para seleccionar más de un elemento, asegúrese de haber marcado la opción Selección múltiple.</ahelp>"
+
+#: 01170101.xhp#hd_id5026093.help.text
+msgid "Selection type"
+msgstr "Tipo de selección"
+
+#: 01170101.xhp#par_id1134067.help.text
+msgid "<ahelp hid=\".\">Specifies the selection mode that is enabled for this tree control.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifica el modo de selección que es activado para este control árbol.</ahelp>"
+
+#: 01170101.xhp#hd_id3154193.87.help.text
+msgid "Spin Button"
+msgstr "Campo giratorio"
+
+#: 01170101.xhp#par_id3145298.88.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to add spin buttons to a numerical, currency, date, or time control to allow increasing and decreasing the input value using arrow buttons.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccione \"Sí\" para agregar botones de selección a un control numérico, de moneda, fecha o tiempo para permitir el aumento y la reducción del valor de entrada mediante los botones de flecha.</ahelp>"
+
+#: 01170101.xhp#hd_id3156267.232.help.text
+msgid "State"
+msgstr "Estado"
+
+#: 01170101.xhp#par_id3150928.231.help.text
+msgid "<ahelp hid=\".\">Select the selection state of the current control.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccione el estado de selección del control.</ahelp>"
+
+#: 01170101.xhp#hd_id3148396.112.help.text
+msgid "Strict format"
+msgstr "Revisión de formato"
+
+#: 01170101.xhp#par_id3153042.113.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to only allow valid characters to be entered in a numerical, currency, date, or time control.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccione \"Sí\" para permitir que se escriban solamente caracteres válidos en un control numérico, de moneda, de fecha o de tiempo.</ahelp>"
+
+#: 01170101.xhp#hd_id3149538.48.help.text
+msgid "Tabstop"
+msgstr "Tabstop"
+
+#: 01170101.xhp#par_id3148543.49.help.text
+msgid "<ahelp hid=\".\">Select the focus behavior of the current control when using the <emph>Tab</emph> key.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccione el comportamiento del foco del control cuando se utilice la tecla <emph>Tab</emph>.</ahelp>"
+
+#: 01170101.xhp#par_id3148776.178.help.text
+msgid "Default"
+msgstr "Predeterminado"
+
+#: 01170101.xhp#par_id3153547.179.help.text
+msgid "Only input controls receive the focus when using the <emph>Tab</emph> key. Controls without input like caption controls are omitted."
+msgstr "Solamente los métodos de entrada reciben el foco cuando usan el <emph>tabulador</emph>. Controles sin entrada, como los controles de leyenda son omitidos."
+
+#: 01170101.xhp#par_id3154632.52.help.text
+msgid "No"
+msgstr "No"
+
+#: 01170101.xhp#par_id3150475.53.help.text
+msgid "When using the tab key focusing skips the control."
+msgstr "Al utilizar la tecla tabulación el enfoque ignora el campo de control."
+
+#: 01170101.xhp#par_id3150690.50.help.text
+msgid "Yes"
+msgstr "Sí"
+
+#: 01170101.xhp#par_id3159106.51.help.text
+msgid "The control can be selected with the Tab key."
+msgstr "El campo de control puede seleccionarse con la tecla del tabulador."
+
+#: 01170101.xhp#hd_id3145152.147.help.text
+msgid "Thousands Separator"
+msgstr "Separador de mil"
+
+#: 01170101.xhp#par_id3155085.148.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to display thousands separator characters in numerical and currency controls.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccione \"Sí\" para mostrar caracteres para el separador de unidades de millar en controles numéricos y de moneda.</ahelp>"
+
+#: 01170101.xhp#hd_id3152816.168.help.text
+msgid "Time Format"
+msgstr "Formato de hora"
+
+#: 01170101.xhp#par_id3145263.169.help.text
+msgid "<ahelp hid=\".\">Select the format to be used for time controls.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccione el formato que se utilizará en los controles de tiempo.</ahelp>"
+
+#: 01170101.xhp#hd_id3153920.127.help.text
+msgid "Time max."
+msgstr "Tiempo máx."
+
+#: 01170101.xhp#par_id3155401.128.help.text
+msgid "<ahelp hid=\".\">Specify the maximum time value for a time control.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique el valor máximo de tiempo para un control de tiempo.</ahelp>"
+
+#: 01170101.xhp#hd_id3163818.135.help.text
+msgid "Time min."
+msgstr "Tiempo mín."
+
+#: 01170101.xhp#par_id3156262.136.help.text
+msgid "<ahelp hid=\".\">Specify the minimum time value for a time control.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique el valor mínimo de tiempo para un control de tiempo.</ahelp>"
+
+#: 01170101.xhp#hd_id3148638.266.help.text
+msgid "Title"
+msgstr "Título"
+
+#: 01170101.xhp#par_id3147169.267.help.text
+msgid "<ahelp hid=\".\">Specify the title of the dialog. Click the border of the dialog to select the dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique el título del diálogo. Haga clic en el borde del diálogo para seleccionarlo.</ahelp>"
+
+#: 01170101.xhp#par_id3153716.55.help.text
+msgid "<emph>Titles</emph> are only used for labeling a dialog and can only contain one line. Please note that if you work with macros, controls are only called through their <emph>Name</emph> property."
+msgstr "Los <emph>títulos</emph> sólo se utilizan para etiquetar diálogos y sólo pueden contener una línea. Tenga presente que si trabaja con macros, los campos de control sólo se llaman empleando su propiedad <emph>Nombre</emph>."
+
+#: 01170101.xhp#hd_id3152594.173.help.text
+msgid "Tristate"
+msgstr "Estado triple"
+
+#: 01170101.xhp#par_id3149825.174.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to allow a check box to have three states (checked, unchecked, and grayed out) instead of two (checked and unchecked).</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccione \"Sí\" para permitir que una casilla de verificación tenga tres estados (marcado, sin marcar y atenuado) en lugar de dos (marcado y sin marcar).</ahelp>"
+
+#: 01170101.xhp#hd_id3150614.268.help.text
+msgctxt "01170101.xhp#hd_id3150614.268.help.text"
+msgid "Value"
+msgstr "Valor"
+
+#: 01170101.xhp#par_id3154315.269.help.text
+msgid "<ahelp hid=\".\">Specify the value for the current control.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique el valor del control.</ahelp>"
+
+#: 01170101.xhp#hd_id3152480.125.help.text
+msgid "Value max."
+msgstr "Valor máximo"
+
+#: 01170101.xhp#par_id3163823.126.help.text
+msgid "<ahelp hid=\".\">Specify the maximum value for the current control.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique el valor máximo del control.</ahelp>"
+
+#: 01170101.xhp#hd_id3149276.133.help.text
+msgid "Value min."
+msgstr "Valor mínimo"
+
+#: 01170101.xhp#par_id3145088.134.help.text
+msgid "<ahelp hid=\".\">Specify the minimum value for the current control.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique el valor mínimo del control.</ahelp>"
+
+#: 01170101.xhp#hd_id3149712.234.help.text
+msgid "Visible size"
+msgstr "Tamaño visible"
+
+#: 01170101.xhp#par_id3149445.233.help.text
+msgid "<ahelp hid=\".\">Specify the length of the slider of a scrollbar control.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique la longitud de un control deslizante de una barra de desplazamiento.</ahelp>"
+
+#: 01170101.xhp#hd_id3152472.142.help.text
+msgid "Width"
+msgstr "Ancho"
+
+#: 01170101.xhp#par_id3157963.143.help.text
+msgid "<ahelp hid=\".\">Specify the width of the current control or dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique la anchura del diálogo o el control.</ahelp>"
+
+#: 03120202.xhp#tit.help.text
+msgid "String Function [Runtime]"
+msgstr "Función String [Ejecución]"
+
+#: 03120202.xhp#bm_id3147291.help.text
+msgid "<bookmark_value>String function</bookmark_value>"
+msgstr "<bookmark_value>String;función</bookmark_value>"
+
+#: 03120202.xhp#hd_id3147291.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120202.xhp\" name=\"String Function [Runtime]\">String Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120202.xhp\" name=\"String Function [Runtime]\">Función String [Ejecución]</link>"
+
+#: 03120202.xhp#par_id3147242.2.help.text
+msgid "Creates a string according to the specified character, or the first character of a string expression that is passed to the function."
+msgstr "Crea una cadena de acuerdo con el carácter especificado o el primer carácter de una expresión de cadena que se pasa a la función."
+
+#: 03120202.xhp#hd_id3149516.3.help.text
+msgctxt "03120202.xhp#hd_id3149516.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03120202.xhp#par_id3149233.4.help.text
+msgid "String (n As Long, {expression As Integer | character As String})"
+msgstr "String (n As Integer, {expresión As Integer | carácter As String})"
+
+#: 03120202.xhp#hd_id3143270.5.help.text
+msgctxt "03120202.xhp#hd_id3143270.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03120202.xhp#par_id3147530.6.help.text
+msgctxt "03120202.xhp#par_id3147530.6.help.text"
+msgid "String"
+msgstr "Cadena"
+
+#: 03120202.xhp#hd_id3154923.7.help.text
+msgctxt "03120202.xhp#hd_id3154923.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03120202.xhp#par_id3154347.8.help.text
+msgid "<emph>n:</emph> Numeric expression that indicates the number of characters to return in the string. The maximum allowed value of n is 65535."
+msgstr "<emph>n:</emph> Expresión numérica que indica el número de caracteres que devolver en la cadena."
+
+#: 03120202.xhp#par_id3148664.9.help.text
+msgid "<emph>Expression:</emph> Numeric expression that defines the ASCII code for the character."
+msgstr "<emph>Expresión:</emph> Expresión numérica que define el código ASCII para el carácter."
+
+#: 03120202.xhp#par_id3150359.10.help.text
+msgid "<emph>Character:</emph> Any single character used to build the return string, or any string of which only the first character will be used."
+msgstr "<emph>Carácter:</emph> Cualquier carácter individual utilizado para crear la cadena de retorno o cualquier cadena de la que sólo se usará el primer carácter."
+
+#: 03120202.xhp#hd_id3152920.11.help.text
+msgctxt "03120202.xhp#hd_id3152920.11.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03120202.xhp#par_id3149203.12.help.text
+msgid "Sub ExampleString"
+msgstr "Sub EjemploString"
+
+#: 03120202.xhp#par_id3154124.13.help.text
+msgctxt "03120202.xhp#par_id3154124.13.help.text"
+msgid "Dim sText as String"
+msgstr "Dim sTexto As String"
+
+#: 03120202.xhp#par_id3147230.15.help.text
+msgid "sText = String(10,\"A\")"
+msgstr "sTexto = String(10,\"A\")"
+
+#: 03120202.xhp#par_id3153970.16.help.text
+msgctxt "03120202.xhp#par_id3153970.16.help.text"
+msgid "Msgbox sText"
+msgstr "Msgbox sTexto"
+
+#: 03120202.xhp#par_id3145785.18.help.text
+msgid "sText = String(10,65)"
+msgstr "sTexto = String(10,65)"
+
+#: 03120202.xhp#par_id3147288.19.help.text
+msgctxt "03120202.xhp#par_id3147288.19.help.text"
+msgid "Msgbox sText"
+msgstr "Msgbox sTexto"
+
+#: 03120202.xhp#par_id3153138.24.help.text
+msgctxt "03120202.xhp#par_id3153138.24.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03020203.xhp#tit.help.text
+msgid "Line Input # Statement [Runtime]"
+msgstr "Función Line # Input [Ejecución]"
+
+#: 03020203.xhp#bm_id3153361.help.text
+msgid "<bookmark_value>Line Input statement</bookmark_value>"
+msgstr "<bookmark_value>Sentencia de linea de ingreso</bookmark_value>"
+
+#: 03020203.xhp#hd_id3153361.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020203.xhp\" name=\"Line Input # Statement [Runtime]\">Line Input # Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020203.xhp\" name=\"Función Line # Input [Runtime]\">Función Line # Input [Runtime]</link>"
+
+#: 03020203.xhp#par_id3156280.2.help.text
+msgid "Reads strings from a sequential file into a variable."
+msgstr "Lee cadenas de un archivo secuencial en una variable."
+
+#: 03020203.xhp#hd_id3150447.3.help.text
+msgctxt "03020203.xhp#hd_id3150447.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03020203.xhp#par_id3147229.4.help.text
+msgid "Line Input #FileNumber As Integer, Var As String "
+msgstr "Line Input #NúmeroArchivo As Integer, Var As String"
+
+#: 03020203.xhp#hd_id3145173.5.help.text
+msgctxt "03020203.xhp#hd_id3145173.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03020203.xhp#par_id3161832.6.help.text
+msgid "<emph>FileNumber: </emph>Number of the file that contains the data that you want to read. The file must have been opened in advance with the Open statement using the key word INPUT."
+msgstr "<emph>FileNumber: </emph> Número del archivo que contenga los datos que se desee leer. El archivo debe ser abierto en modo avanzado con la instrucción Open mediante la palabra clave READ."
+
+#: 03020203.xhp#par_id3151119.7.help.text
+msgid "<emph>var:</emph> The name of the variable that stores the result."
+msgstr "<emph>var:</emph> El nombre de la variable que almacene el resultado."
+
+#: 03020203.xhp#par_id3150010.8.help.text
+msgid "With the <emph>Line Input#</emph> statement, you can read strings from an open file into a variable. String variables are read line-by-line up to the first carriage return (Asc=13) or linefeed (Asc=10). Line end marks are not included in the resulting string."
+msgstr "Con la instrucción <emph>Line Input#</emph>, puede leer cadenas desde un archivo abierto en una variable. Las variables de cadena se leen línea a línea hasta el primer retorno de carro (Asc=13) o avance de línea (Asc=10). Las marcas de final de línea no se incluyen en la cadena resultante."
+
+#: 03020203.xhp#hd_id3163711.9.help.text
+msgctxt "03020203.xhp#hd_id3163711.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03020203.xhp#par_id3145271.10.help.text
+msgctxt "03020203.xhp#par_id3145271.10.help.text"
+msgid "Sub ExampleWorkWithAFile"
+msgstr "Sub EjemploTrabajoConArchivo"
+
+#: 03020203.xhp#par_id3156444.11.help.text
+msgctxt "03020203.xhp#par_id3156444.11.help.text"
+msgid "Dim iNumber As Integer"
+msgstr "Dim iNumero As Integer"
+
+#: 03020203.xhp#par_id3147349.12.help.text
+msgctxt "03020203.xhp#par_id3147349.12.help.text"
+msgid "Dim sLine As String"
+msgstr "Dim sLinea As String"
+
+#: 03020203.xhp#par_id3149664.13.help.text
+msgctxt "03020203.xhp#par_id3149664.13.help.text"
+msgid "Dim aFile As String"
+msgstr "Dim aArchivo As String"
+
+#: 03020203.xhp#par_id3147436.36.help.text
+msgctxt "03020203.xhp#par_id3147436.36.help.text"
+msgid "Dim sMsg as String"
+msgstr "Dim sMensaje as String"
+
+#: 03020203.xhp#par_id3154730.14.help.text
+msgctxt "03020203.xhp#par_id3154730.14.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr "aArchivo = \"c:\\data.txt\""
+
+#: 03020203.xhp#par_id3145647.16.help.text
+msgctxt "03020203.xhp#par_id3145647.16.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumero = Freefile"
+
+#: 03020203.xhp#par_id3149959.17.help.text
+msgctxt "03020203.xhp#par_id3149959.17.help.text"
+msgid "Open aFile For Output As #iNumber"
+msgstr "Open aArchivo For Output As #iNumero"
+
+#: 03020203.xhp#par_id3147124.18.help.text
+msgctxt "03020203.xhp#par_id3147124.18.help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr "Print #iNumero, \"Esta es una línea de texto\""
+
+#: 03020203.xhp#par_id3153415.19.help.text
+msgctxt "03020203.xhp#par_id3153415.19.help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr "Print #iNumero, \"Esta es otra línea de texto\""
+
+#: 03020203.xhp#par_id3146969.20.help.text
+msgctxt "03020203.xhp#par_id3146969.20.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumero"
+
+#: 03020203.xhp#par_id3154482.24.help.text
+msgctxt "03020203.xhp#par_id3154482.24.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumero = Freefile"
+
+#: 03020203.xhp#par_id3150321.25.help.text
+msgctxt "03020203.xhp#par_id3150321.25.help.text"
+msgid "Open aFile For Input As iNumber"
+msgstr "Open aArchivo For Input As iNumero"
+
+#: 03020203.xhp#par_id3155443.26.help.text
+msgctxt "03020203.xhp#par_id3155443.26.help.text"
+msgid "While not eof(iNumber)"
+msgstr "While not eof(iNumero)"
+
+#: 03020203.xhp#par_id3155764.27.help.text
+msgctxt "03020203.xhp#par_id3155764.27.help.text"
+msgid "Line Input #iNumber, sLine"
+msgstr "Line Input #iNumero, sLinea"
+
+#: 03020203.xhp#par_id3156382.28.help.text
+msgctxt "03020203.xhp#par_id3156382.28.help.text"
+msgid "If sLine <>\"\" then"
+msgstr "If sLinea <>\"\" then"
+
+#: 03020203.xhp#par_id3147338.29.help.text
+msgctxt "03020203.xhp#par_id3147338.29.help.text"
+msgid "sMsg = sMsg & sLine & chr(13)"
+msgstr "sMensaje = sMensaje & sLinea & chr(13)"
+
+#: 03020203.xhp#par_id3147362.31.help.text
+msgctxt "03020203.xhp#par_id3147362.31.help.text"
+msgid "end if"
+msgstr "end if"
+
+#: 03020203.xhp#par_id3155333.32.help.text
+msgctxt "03020203.xhp#par_id3155333.32.help.text"
+msgid "wend"
+msgstr "wend"
+
+#: 03020203.xhp#par_id3153965.33.help.text
+msgctxt "03020203.xhp#par_id3153965.33.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumero"
+
+#: 03020203.xhp#par_id3147345.37.help.text
+msgctxt "03020203.xhp#par_id3147345.37.help.text"
+msgid "Msgbox sMsg"
+msgstr "Msgbox sMensaje"
+
+#: 03020203.xhp#par_id3149257.34.help.text
+msgctxt "03020203.xhp#par_id3149257.34.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03080501.xhp#tit.help.text
+msgid "Fix Function [Runtime]"
+msgstr "Función Fix [Ejecución]"
+
+#: 03080501.xhp#bm_id3159201.help.text
+msgid "<bookmark_value>Fix function</bookmark_value>"
+msgstr "<bookmark_value>Fix;función</bookmark_value>"
+
+#: 03080501.xhp#hd_id3159201.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Fix Function [Runtime]\">Fix Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Función Fix [Runtime]\">Función Fix [Ejecución]</link>"
+
+#: 03080501.xhp#par_id3149346.2.help.text
+msgid "Returns the integer value of a numeric expression by removing the fractional part of the number."
+msgstr "Devuelve el valor entero de una expresión numérica eliminando la parte fraccionaria del número."
+
+#: 03080501.xhp#hd_id3155419.3.help.text
+msgctxt "03080501.xhp#hd_id3155419.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03080501.xhp#par_id3156152.4.help.text
+msgid "Fix (Expression)"
+msgstr "Fix (Expresión)"
+
+#: 03080501.xhp#hd_id3154923.5.help.text
+msgctxt "03080501.xhp#hd_id3154923.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03080501.xhp#par_id3148947.6.help.text
+msgctxt "03080501.xhp#par_id3148947.6.help.text"
+msgid "Double"
+msgstr "Doble"
+
+#: 03080501.xhp#hd_id3154760.7.help.text
+msgctxt "03080501.xhp#hd_id3154760.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03080501.xhp#par_id3149457.8.help.text
+msgid "<emph>Expression:</emph> Numeric expression that you want to return the integer value for."
+msgstr "<emph>Expresión:</emph> Expresión numérica de la que se desee devolver su valor entero."
+
+#: 03080501.xhp#hd_id3150447.9.help.text
+msgctxt "03080501.xhp#hd_id3150447.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03080501.xhp#par_id3153193.10.help.text
+msgid "sub ExampleFix"
+msgstr "sub EjemploFix"
+
+#: 03080501.xhp#par_id3156214.11.help.text
+msgid "Print Fix(3.14159) REM returns 3."
+msgstr "Print Fix(3,14159) REM devuelve 3."
+
+#: 03080501.xhp#par_id3154217.12.help.text
+msgid "Print Fix(0) REM returns 0."
+msgstr "Print Fix(0) REM devuelve 0."
+
+#: 03080501.xhp#par_id3145786.13.help.text
+msgid "Print Fix(-3.14159) REM returns -3."
+msgstr "Print Fix(-3,14159) REM devuelve -3."
+
+#: 03080501.xhp#par_id3153188.14.help.text
+msgctxt "03080501.xhp#par_id3153188.14.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 01030300.xhp#tit.help.text
+msgid "Debugging a Basic Program"
+msgstr "Depuración de un programa Basic"
+
+#: 01030300.xhp#bm_id3153344.help.text
+msgid "<bookmark_value>debugging Basic programs</bookmark_value><bookmark_value>variables; observing values</bookmark_value><bookmark_value>watching variables</bookmark_value><bookmark_value>run-time errors in Basic</bookmark_value><bookmark_value>error codes in Basic</bookmark_value><bookmark_value>breakpoints</bookmark_value><bookmark_value>Call Stack window</bookmark_value>"
+msgstr "<bookmark_value>depurando programas en Basic</bookmark_value><bookmark_value>variables; observando valores</bookmark_value><bookmark_value>observando variables</bookmark_value><bookmark_value>errores al tiempo de ejecución en Basic</bookmark_value><bookmark_value>códigos de errores en Basic</bookmark_value><bookmark_value>breakpoints</bookmark_value><bookmark_value>Ventana de la pila de llamadas</bookmark_value>"
+
+#: 01030300.xhp#hd_id3153344.1.help.text
+msgid "<link href=\"text/sbasic/shared/01030300.xhp\">Debugging a Basic Program</link>"
+msgstr "<link href=\"text/sbasic/shared/01030300.xhp\">Depuración de un programa Basic</link>"
+
+#: 01030300.xhp#hd_id3159224.4.help.text
+msgid "Breakpoints and Single Step Execution"
+msgstr "Puntos de ruptura y ejecución paso a paso"
+
+#: 01030300.xhp#par_id3150682.5.help.text
+msgid "You can check each line in your Basic program for errors using single step execution. Errors are easily traced since you can immediately see the result of each step. A pointer in the breakpoint column of the Editor indicates the current line. You can also set a breakpoint if you want to force the program to be interrupted at a specific position."
+msgstr "Con la ejecución de paso único puede comprobarse que no haya errores en ninguna línea del programa Basic. Los errores se pueden rastrearse fácilmente ya que los resultados de cada paso pueden verse inmediatamente. Un puntero de la columna de puntos de ruptura del editor indica cuál es la línea actual. También puede establecer puntos de ruptura si desea forzar la interrupción del programa en una posición específica."
+
+#: 01030300.xhp#par_id3147303.7.help.text
+msgid "Double-click in the <emph>breakpoint</emph> column at the left of the Editor window to toggle a breakpoint at the corresponding line. When the program reaches a breakpoint, the program execution is interrupted."
+msgstr "Pulse dos veces en la columna <emph>punto de ruptura</emph> de la izquierda de la ventana del editor para alternar un punto de ruptura en la línea correspondiente. Cuando el programa llega a un punto de ruptura, su ejecución se interrumpe."
+
+#: 01030300.xhp#par_id3155805.8.help.text
+msgid "The <emph>single step </emph>execution using the <emph>Single Step</emph> icon causes the program to branch into procedures and functions."
+msgstr "La ejecución mediante el icono de <emph>Paso único</emph> hace que el programa se bifurque en procedimientos y funciones."
+
+#: 01030300.xhp#par_id3151110.25.help.text
+msgid "The procedure step execution using the <emph>Procedure Step</emph> icon causes the program to skip over procedures and functions as a single step."
+msgstr "La ejecución mediante el icono de <emph>Paso a paso</emph> hace que el programa considere los procedimientos y funciones como un único paso y los salte."
+
+#: 01030300.xhp#hd_id3153825.9.help.text
+msgid "Properties of a Breakpoint"
+msgstr "Propiedades de un punto de ruptura"
+
+#: 01030300.xhp#par_id3147574.26.help.text
+msgid "The properties of a breakpoint are available through its context menu by right-clicking the breakpoint in the breakpoint column."
+msgstr "Las propiedades de un punto de ruptura están disponibles a través de su menú de contexto pulsando con el botón derecho en éste en la columna de puntos de ruptura."
+
+#: 01030300.xhp#par_id3148473.10.help.text
+msgid "You can <emph>activate</emph> and <emph>deactivate</emph> a breakpoint by selecting <emph>Active</emph> from its context menu. When a breakpoint is deactivated, it does not interrupt the program execution. "
+msgstr "Los puntos de ruptura pueden <emph>activarse</emph> y <emph>desactivarse</emph> seleccionando <emph>Activo</emph> en el menú contextual. Cuando se desactiva un punto de ruptura, no se interrumpe la ejecución del programa."
+
+#: 01030300.xhp#par_id3159413.27.help.text
+msgid "Select <emph>Properties</emph> from the context menu of a breakpoint or select <emph>Breakpoints</emph> from the context menu of the breakpoint column to call the <emph>Breakpoints</emph> dialog where you can specify other breakpoint options."
+msgstr "Para que se muestre el diálogo <emph>Puntos de ruptura</emph> donde especificar otras opciones, seleccione <emph>Propiedades</emph> desde el menú contextual de un punto de ruptura o seleccione <emph>Puntos de ruptura</emph> desde el menú contextual de la columna de puntos de ruptura."
+
+#: 01030300.xhp#par_id3156280.11.help.text
+msgid "The list displays all <emph>breakpoints</emph> with the corresponding line number in the source code. You can activate or deactivate a selected breakpoint by checking or clearing the <emph>Active</emph> box."
+msgstr "La lista muestra todos los <emph>puntos de ruptura</emph> con el número de línea correspondiente en el código fuente. Los puntos de ruptura seleccionados pueden activarse o desactivarse marcando o desmarcando la casilla <emph>Activo</emph>."
+
+#: 01030300.xhp#par_id3158407.12.help.text
+msgid "The <emph>Pass Count</emph> specifies the number of times the breakpoint can be passed over before the program is interrupted. If you enter 0 (default setting) the program is always interrupted as soon as a breakpoint is encountered."
+msgstr "La opción <emph>Adaptación</emph> especifica el número de veces que puede pasarse sobre el punto de ruptura antes de que el programa se interrumpa. Si se escribe 0 (el valor predeterminado) el programa siempre se interrumpe en cuanto encuentra un punto de ruptura."
+
+#: 01030300.xhp#par_id3153968.13.help.text
+msgid "Click <emph>Delete</emph> to remove the breakpoint from the program."
+msgstr "Pulse en <emph>Borrar</emph> para eliminar físicamente el punto de ruptura del programa."
+
+#: 01030300.xhp#hd_id3150439.14.help.text
+msgid "Observing the Value of Variables"
+msgstr "Supervisión del valor de las variables"
+
+#: 01030300.xhp#par_id3153368.15.help.text
+msgid "You can monitor the values of a variable by adding it to the <emph>Watch</emph> window. To add a variable to the list of watched variables, type the variable name in the <emph>Watch</emph> text box and press Enter."
+msgstr "Los valores de una variable pueden supervisarse agregándola a la ventana <emph>Observador</emph>. Para agregar una variable a la lista de variables observadas, escriba su nombre en el cuadro de texto <emph>Observador</emph> y pulse Intro."
+
+#: 01030300.xhp#par_id3146986.16.help.text
+msgid "The values of variables are only displayed if they are in scope. Variables that are not defined at the current source code location display (\"Out of Scope\") instead of a value."
+msgstr "Los valores de las variables sólo se muestra si están en el área. Las variables que no están definidas en la posición de código fuente actual muestran la indicación (\"Out of Scope\") en lugar de un valor."
+
+#: 01030300.xhp#par_id3145272.17.help.text
+msgid "You can also include arrays in the Watch window. If you enter the name of an array variable without an index value in the Watch text box, the content of the entire array is displayed."
+msgstr "En la ventana Observador también pueden incluirse matrices. Si se escribe el nombre de una matriz sin un valor de índice en el cuadro de texto Observador, se muestra el contenido de toda la matriz."
+
+#: 01030300.xhp#par_id3145749.19.help.text
+msgid "If you rest the mouse over a predefined variable in the Editor at run-time, the content of the variable is displayed in a pop-up box."
+msgstr "Si acerca el ratón sobre una variable predefinida en el Editor durante el tiempo de ejecución, el contenido de la variable se muestra en un cuadro emergente."
+
+#: 01030300.xhp#hd_id3148618.20.help.text
+msgid "The Call Stack Window"
+msgstr "Utilización de la ventana Pila de llamada"
+
+#: 01030300.xhp#par_id3154491.21.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\">Provides an overview of the call hierarchy of procedures and functions.</ahelp> You can determine which procedures and functions called which other procedures and functions at the current point in the source code."
+msgstr "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\">Proporciona un resumen de la jerarquía de llamada de procedimientos y funciones.</ahelp> Puede determinarse qué procedimientos y funciones llamaron a qué otros procedimientos y funciones en el punto actual del código fuente."
+
+#: 01030300.xhp#hd_id3150594.24.help.text
+msgid "List of Run-Time Errors"
+msgstr "Error en tiempo de ejecución"
+
+#: 03120305.xhp#tit.help.text
+msgid "LTrim Function [Runtime]"
+msgstr "Función LTrim [Ejecución]"
+
+#: 03120305.xhp#bm_id3147574.help.text
+msgid "<bookmark_value>LTrim function</bookmark_value>"
+msgstr "<bookmark_value>LTrim;función</bookmark_value>"
+
+#: 03120305.xhp#hd_id3147574.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function [Runtime]\">LTrim Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function [Runtime]\">Función LTrim [Ejecución]</link>"
+
+#: 03120305.xhp#par_id3145316.2.help.text
+msgid "Removes all leading spaces at the start of a string expression."
+msgstr "Elimina todos los espacios de relleno del principio de una expresión de cadena."
+
+#: 03120305.xhp#hd_id3154924.3.help.text
+msgctxt "03120305.xhp#hd_id3154924.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03120305.xhp#par_id3148552.4.help.text
+msgid "LTrim (Text As String)"
+msgstr "LTrim (Texto As String)"
+
+#: 03120305.xhp#hd_id3156344.5.help.text
+msgctxt "03120305.xhp#hd_id3156344.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03120305.xhp#par_id3151056.6.help.text
+msgctxt "03120305.xhp#par_id3151056.6.help.text"
+msgid "String"
+msgstr "Cadena"
+
+#: 03120305.xhp#hd_id3150543.7.help.text
+msgctxt "03120305.xhp#hd_id3150543.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03120305.xhp#par_id3150792.8.help.text
+msgctxt "03120305.xhp#par_id3150792.8.help.text"
+msgid "<emph>Text:</emph> Any string expression."
+msgstr "<emph>Texto:</emph> Cualquier expresión de cadena."
+
+#: 03120305.xhp#par_id3125863.9.help.text
+msgid "Use this function to remove spaces at the beginning of a string expression."
+msgstr "Esta función se utiliza para eliminar los espacios que haya al principio de una expresión de cadena."
+
+#: 03120305.xhp#hd_id3145419.10.help.text
+msgctxt "03120305.xhp#hd_id3145419.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03120305.xhp#par_id3154909.11.help.text
+msgctxt "03120305.xhp#par_id3154909.11.help.text"
+msgid "Sub ExampleSpaces"
+msgstr "Sub EjemploSpaces"
+
+#: 03120305.xhp#par_id3150768.12.help.text
+msgid "Dim sText2 As String,sText As String,sOut As String"
+msgstr "Dim sTexto2 As String,sTexto As String,sOut As String"
+
+#: 03120305.xhp#par_id3149204.13.help.text
+msgctxt "03120305.xhp#par_id3149204.13.help.text"
+msgid "sText2 = \" <*Las Vegas*> \""
+msgstr "sTexto2 = \" <*Las Vegas*> \""
+
+#: 03120305.xhp#par_id3159252.15.help.text
+msgctxt "03120305.xhp#par_id3159252.15.help.text"
+msgid "sOut = \"'\"+sText2 +\"'\"+ Chr(13)"
+msgstr "sOut = \"'\"+sTexto2 +\"'\"+ Chr(13)"
+
+#: 03120305.xhp#par_id3147350.16.help.text
+msgctxt "03120305.xhp#par_id3147350.16.help.text"
+msgid "sText = Ltrim(sText2) REM sText = \"<*Las Vegas*> \""
+msgstr "sTexto = Ltrim(sTexto2) REM sTexto = \"<*Las Vegas*> \""
+
+#: 03120305.xhp#par_id3153951.17.help.text
+msgctxt "03120305.xhp#par_id3153951.17.help.text"
+msgid "sOut = sOut + \"'\"+sText +\"'\" + Chr(13)"
+msgstr "sOut = sOut +\"'\"+ sTexto +\"'\" + Chr(13)"
+
+#: 03120305.xhp#par_id3153363.18.help.text
+msgctxt "03120305.xhp#par_id3153363.18.help.text"
+msgid "sText = Rtrim(sText2) REM sText = \" <*Las Vegas*>\""
+msgstr "sTexto = Rtrim(sTexto2) REM sTexto = \" <*Las Vegas*>\""
+
+#: 03120305.xhp#par_id3159154.19.help.text
+msgctxt "03120305.xhp#par_id3159154.19.help.text"
+msgid "sOut = sOut +\"'\"+ sText +\"'\" + Chr(13)"
+msgstr "sOut = sOut +\"'\"+ sTexto +\"'\" + Chr(13)"
+
+#: 03120305.xhp#par_id3154322.20.help.text
+msgctxt "03120305.xhp#par_id3154322.20.help.text"
+msgid "sText = Trim(sText2) REM sText = \"<*Las Vegas*>\""
+msgstr "sTexto = Trim(sTexto2) REM sTexto = \"<*Las Vegas*>\""
+
+#: 03120305.xhp#par_id3146924.21.help.text
+msgctxt "03120305.xhp#par_id3146924.21.help.text"
+msgid "sOut = sOut +\"'\"+ sText +\"'\""
+msgstr "sOut = sOut +\"'\"+ sTexto +\"'\""
+
+#: 03120305.xhp#par_id3156444.22.help.text
+msgctxt "03120305.xhp#par_id3156444.22.help.text"
+msgid "MsgBox sOut"
+msgstr "MsgBox sOut"
+
+#: 03120305.xhp#par_id3147318.23.help.text
+msgctxt "03120305.xhp#par_id3147318.23.help.text"
+msgid "end sub"
+msgstr "End Sub"
+
+#: 01050100.xhp#tit.help.text
+msgid "Watch Window"
+msgstr "Ventana Observador"
+
+#: 01050100.xhp#hd_id3149457.1.help.text
+msgid "<link href=\"text/sbasic/shared/01050100.xhp\">Watch Window</link>"
+msgstr "<link href=\"text/sbasic/shared/01050100.xhp\">Ventana Observador</link>"
+
+#: 01050100.xhp#par_id3154908.9.help.text
+msgid "The Watch window allows you to observe the value of variables during the execution of a program. Define the variable in the Watch text box. Click on <link href=\"text/sbasic/shared/02/11080000.xhp\">Enable Watch</link> to add the variable to the list box and to display its values."
+msgstr "En la ventana de inspección se puede ver el valor de las variables durante la ejecución de un programa. Defina la variable en el cuadro de texto de inspección. Haga clic en <link href=\"text/sbasic/shared/02/11080000.xhp\">Habilitar inspección</link> para agregar la variable al cuadro de lista y ver los valores."
+
+#: 01050100.xhp#hd_id3145173.4.help.text
+msgid "Watch"
+msgstr "Observador"
+
+#: 01050100.xhp#par_id3155132.5.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_EDIT\">Enter the name of the variable whose value is to be monitored.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_EDIT\" visibility=\"visible\">Escriba en este cuadro de texto la variable cuyo valor se visualizará en el cuadro de lista.</ahelp>"
+
+#: 01050100.xhp#hd_id3148645.6.help.text
+msgctxt "01050100.xhp#hd_id3148645.6.help.text"
+msgid "Remove Watch"
+msgstr "Eliminar observador"
+
+#: 01050100.xhp#par_id3148576.7.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_REMOVEWATCH\">Removes the selected variable from the list of watched variables.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_REMOVEWATCH\" visibility=\"visible\">Elimina la variable seleccionada de la lista de variables observadas.</ahelp>"
+
+#: 01050100.xhp#par_id3147426.help.text
+msgid "<image id=\"img_id3152460\" src=\"res/baswatr.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3152460\">Icon</alt></image>"
+msgstr "<image id=\"img_id3152460\" src=\"res/baswatr.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3152460\">Icono</alt></image>"
+
+#: 01050100.xhp#par_id3154012.8.help.text
+msgctxt "01050100.xhp#par_id3154012.8.help.text"
+msgid "Remove Watch"
+msgstr "Eliminar observador"
+
+#: 01050100.xhp#hd_id3154491.10.help.text
+msgid "Editing the Value of a Watched Variable"
+msgstr "Edición del valor de una variable observada"
+
+#: 01050100.xhp#par_id3156283.11.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_LIST\">Displays the list of watched variables. Click twice with a short pause in between on an entry to edit its value.</ahelp> The new value will be taken as the variable's value for the program."
+msgstr "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_LIST\" visibility=\"visible\">Muestra la lista de las variables observadas. Pulse dos veces haciendo una pequeña pausa sobre una entrada para editar su valor.</ahelp> El valor nuevo se tomará como el de la variable para el programa."
+
+#: 03050200.xhp#tit.help.text
+msgid "Err Function [Runtime]"
+msgstr "Función Err [Ejecución]"
+
+#: 03050200.xhp#bm_id3156343.help.text
+msgid "<bookmark_value>Err function</bookmark_value>"
+msgstr "<bookmark_value>Err;función</bookmark_value>"
+
+#: 03050200.xhp#hd_id3156343.1.help.text
+msgid "<link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err Function [Runtime]\">Err Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03050200.xhp\" name=\"Función Err [Runtime]\">Función Err [Ejecución]</link>"
+
+#: 03050200.xhp#par_id3150541.2.help.text
+msgid "Returns an error code that identifies the error that occurred during program execution."
+msgstr "Devuelve un código que identifica el error que se ha producido durante la ejecución del programa."
+
+#: 03050200.xhp#hd_id3149656.3.help.text
+msgctxt "03050200.xhp#hd_id3149656.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03050200.xhp#par_id3154123.4.help.text
+msgid "Err"
+msgstr "Err"
+
+#: 03050200.xhp#hd_id3147229.5.help.text
+msgctxt "03050200.xhp#hd_id3147229.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03050200.xhp#par_id3150869.6.help.text
+msgctxt "03050200.xhp#par_id3150869.6.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03050200.xhp#hd_id3153193.7.help.text
+msgctxt "03050200.xhp#hd_id3153193.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03050200.xhp#par_id3149561.8.help.text
+msgid "The Err function is used in error-handling routines to determine the error and the corrective action."
+msgstr "La función Err se usa en rutinas de manejo de errores para determinar el error y la acción correctiva."
+
+#: 03050200.xhp#hd_id3147317.9.help.text
+msgctxt "03050200.xhp#hd_id3147317.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03050200.xhp#par_id3153727.10.help.text
+msgctxt "03050200.xhp#par_id3153727.10.help.text"
+msgid "sub ExampleError"
+msgstr "sub EjemploError"
+
+#: 03050200.xhp#par_id3147426.11.help.text
+msgctxt "03050200.xhp#par_id3147426.11.help.text"
+msgid "on error goto ErrorHandler REM Set up error handler"
+msgstr "on error goto ManejadorError REM Configurar manejador de errores"
+
+#: 03050200.xhp#par_id3163710.12.help.text
+msgctxt "03050200.xhp#par_id3163710.12.help.text"
+msgid "Dim iVar as Integer"
+msgstr "Dim iVar As Integer"
+
+#: 03050200.xhp#par_id3153093.13.help.text
+msgctxt "03050200.xhp#par_id3153093.13.help.text"
+msgid "Dim sVar As String"
+msgstr "Dim sVar As String"
+
+#: 03050200.xhp#par_id3149481.14.help.text
+msgid "REM Error occurs due to non-existent file"
+msgstr "REM El error se produce debido a un archivo no existente"
+
+#: 03050200.xhp#par_id3153190.15.help.text
+msgctxt "03050200.xhp#par_id3153190.15.help.text"
+msgid "iVar = Freefile"
+msgstr "iVar = Freefile"
+
+#: 03050200.xhp#par_id3146120.16.help.text
+msgctxt "03050200.xhp#par_id3146120.16.help.text"
+msgid "Open \"\\file9879.txt\" for Input as #iVar"
+msgstr "Open \"\\file9879.txt\" for Input as #iVar"
+
+#: 03050200.xhp#par_id3155308.17.help.text
+msgctxt "03050200.xhp#par_id3155308.17.help.text"
+msgid "Line Input #iVar, sVar"
+msgstr "Line Input #iVar, sVar"
+
+#: 03050200.xhp#par_id3153142.18.help.text
+msgctxt "03050200.xhp#par_id3153142.18.help.text"
+msgid "Close #iVar"
+msgstr "Close #iVar"
+
+#: 03050200.xhp#par_id3149665.19.help.text
+msgctxt "03050200.xhp#par_id3149665.19.help.text"
+msgid "exit sub"
+msgstr "exit sub"
+
+#: 03050200.xhp#par_id3154942.20.help.text
+msgctxt "03050200.xhp#par_id3154942.20.help.text"
+msgid "ErrorHandler:"
+msgstr "ManejadorError:"
+
+#: 03050200.xhp#par_id3145646.21.help.text
+msgid "MsgBox \"Error \" & Err & \": \" & Error$ + chr(13) + \"At line : \" + Erl + chr(13) + Now , 16 ,\"an error occurred\""
+msgstr "MsgBox \"Error \" & Err & \": \" & Error$ + chr(13) + \"En la línea: \" + Erl + chr(13) + Now , 16 ,\"se ha producido un error\""
+
+#: 03050200.xhp#par_id3155418.22.help.text
+msgctxt "03050200.xhp#par_id3155418.22.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03120000.xhp#tit.help.text
+msgid "Strings"
+msgstr "Cadenas"
+
+#: 03120000.xhp#hd_id3156153.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Strings\">Strings</link>"
+msgstr "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Strings\">Cadenas</link>"
+
+#: 03120000.xhp#par_id3159176.2.help.text
+msgid "The following functions and statements validate and return strings."
+msgstr "Las funciones e instrucciones siguientes validan y devuelven cadenas."
+
+#: 03120000.xhp#par_id3154285.3.help.text
+msgid "You can use strings to edit text within $[officename] Basic programs."
+msgstr "Puede usar cadenas para editar texto desde programas de $[officename] Basic."
+
+#: 03102800.xhp#tit.help.text
+msgid "IsObject Function [Runtime]"
+msgstr "Función IsObject [Ejecución]"
+
+#: 03102800.xhp#bm_id3149346.help.text
+msgid "<bookmark_value>IsObject function</bookmark_value>"
+msgstr "<bookmark_value>IsObject;función</bookmark_value>"
+
+#: 03102800.xhp#hd_id3149346.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102800.xhp\" name=\"IsObject Function [Runtime]\">IsObject Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102800.xhp\" name=\"IsObject Function [Runtime]\">Función IsObject [Ejecución]</link>"
+
+#: 03102800.xhp#par_id3148538.2.help.text
+msgid "Tests if an object variable is an OLE object. The function returns True if the variable is an OLE object, otherwise it returns False."
+msgstr "Comprueba si una variable de objeto es un objeto OLE. La función devuelve True si la variable es un objeto OLE, en caso contrario devuelve False."
+
+#: 03102800.xhp#hd_id3149234.3.help.text
+msgctxt "03102800.xhp#hd_id3149234.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03102800.xhp#par_id3154285.4.help.text
+msgid "IsObject (ObjectVar)"
+msgstr "IsObject (VarObjeto)"
+
+#: 03102800.xhp#hd_id3148685.5.help.text
+msgctxt "03102800.xhp#hd_id3148685.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03102800.xhp#par_id3156024.6.help.text
+msgctxt "03102800.xhp#par_id3156024.6.help.text"
+msgid "Bool"
+msgstr "Lógico"
+
+#: 03102800.xhp#hd_id3148947.7.help.text
+msgctxt "03102800.xhp#hd_id3148947.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03102800.xhp#par_id3148552.8.help.text
+msgid "<emph>ObjectVar:</emph> Any variable that you want to test. If the Object variable contains an OLE object, the function returns True."
+msgstr "<emph>VarObjeto:</emph> Cualquier variable que se desee comprobar. Si la variable contiene un objeto OLE, la función devuelve el valor True."
+
+#: 03120200.xhp#tit.help.text
+msgid "Repeating Contents"
+msgstr "Repetición de contenidos"
+
+#: 03120200.xhp#hd_id3152363.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120200.xhp\" name=\"Repeating Contents\">Repeating Contents</link>"
+msgstr "<link href=\"text/sbasic/shared/03120200.xhp\" name=\"Repeating Contents\">Repetición de contenidos</link>"
+
+#: 03120200.xhp#par_id3150178.2.help.text
+msgid "The following functions repeat the contents of strings."
+msgstr "Las funciones siguientes repiten el contenido de las cadenas."
+
+#: 03030101.xhp#tit.help.text
+msgid "DateSerial Function [Runtime]"
+msgstr "Función DateSerial [Ejecución]"
+
+#: 03030101.xhp#bm_id3157896.help.text
+msgid "<bookmark_value>DateSerial function</bookmark_value>"
+msgstr "<bookmark_value>DateSerial;función</bookmark_value>"
+
+#: 03030101.xhp#hd_id3157896.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030101.xhp\" name=\"DateSerial Function [Runtime]\">DateSerial Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030101.xhp\" name=\"Función DateSerial [Runtime]\">Función DateSerial [Runtime]</link>"
+
+#: 03030101.xhp#par_id3143267.2.help.text
+msgid "Returns a <emph>Date</emph> value for a specified year, month, or day."
+msgstr "Devuelve un valor de <emph>Fecha</emph> para un año, mes o día especificados."
+
+#: 03030101.xhp#hd_id3147264.3.help.text
+msgctxt "03030101.xhp#hd_id3147264.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03030101.xhp#par_id3149670.4.help.text
+msgid "DateSerial (year, month, day)"
+msgstr "DateSerial (año, mes, día)"
+
+#: 03030101.xhp#hd_id3150792.5.help.text
+msgctxt "03030101.xhp#hd_id3150792.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03030101.xhp#par_id3150398.6.help.text
+msgctxt "03030101.xhp#par_id3150398.6.help.text"
+msgid "Date"
+msgstr "Fecha"
+
+#: 03030101.xhp#hd_id3154141.7.help.text
+msgctxt "03030101.xhp#hd_id3154141.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03030101.xhp#par_id3147229.8.help.text
+msgid "<emph>Year:</emph> Integer expression that indicates a year. All values between 0 and 99 are interpreted as the years 1900-1999. For years that fall outside this range, you must enter all four digits."
+msgstr "<emph>Año:</emph> Expresión entera que indica un año. Todos los valores entre 0 y 99 se interpretan como los años 1900-1999. Para años que se encuentren fuera de este rango, deben especificarse los cuatro dígitos."
+
+#: 03030101.xhp#par_id3156280.9.help.text
+msgid "<emph>Month:</emph> Integer expression that indicates the month of the specified year. The accepted range is from 1-12."
+msgstr "<emph>Mes:</emph> Expresión entera que indica el mes del año especificado. El rango aceptable va de 1 a 12."
+
+#: 03030101.xhp#par_id3151043.10.help.text
+msgid "<emph>Day:</emph> Integer expression that indicates the day of the specified month. The accepted range is from 1-31. No error is returned when you enter a non-existing day for a month shorter than 31 days."
+msgstr "<emph>Día:</emph> Expresión entera que indica el día del mes especificado. El rango aceptado es de 1-31. No se devuelve error cuando se introduce un día no existente para un mes más corto que 31 días."
+
+#: 03030101.xhp#par_id3161832.11.help.text
+msgid "The <emph>DateSerial function</emph> returns the number of days between December 30,1899 and the given date. You can use this function to calculate the difference between two dates."
+msgstr "La función <emph>DateSerial</emph> devuelve el número de días entre el 30 de diciembre de 1899 y la fecha dada. Este valor se puede usar para calcular la diferencia entre dos fechas."
+
+#: 03030101.xhp#par_id3155306.12.help.text
+msgid "The <emph>DateSerial function</emph> returns the data type Variant with VarType 7 (Date). Internally, this value is stored as a Double value, so that when the given date is 1.1.1900, the returned value is 2. Negative values correspond to dates before December 30, 1899 (not inclusive)."
+msgstr "La función <emph>DateSerial</emph> devuelve el tipo de datos Variante con VarType 7 (Fecha). Internamente, este valor se almacena como valor Doble, de manera que cuando la fecha dada es 1/1/1900 el valor que devuelve es 2. Los valores negativos corresponden a fechas anteriores al 30 de diciembre de 1899 (no incluida)"
+
+#: 03030101.xhp#par_id3152576.13.help.text
+msgid "If a date is defined that lies outside of the accepted range, $[officename] Basic returns an error message."
+msgstr "Si se define una fecha que se encuentra fuera del rango aceptable, $[officename] Basic devuelve un mensaje de error."
+
+#: 03030101.xhp#par_id3149481.14.help.text
+msgid "Whereas you define the <emph>DateValue function</emph> as a string that contains the date, the <emph>DateSerial function</emph> evaluates each of the parameters (year, month, day) as separate numeric expressions."
+msgstr "Aunque se define la función <emph>DateValue</emph> como cadena que contiene la fecha, la función <emph>DateSerial</emph> evalúa todos los parámetros (año, mes, día) como expresiones numéricas independientes."
+
+#: 03030101.xhp#hd_id3155411.15.help.text
+msgctxt "03030101.xhp#hd_id3155411.15.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03030101.xhp#par_id3148646.16.help.text
+msgid "Sub ExampleDateSerial"
+msgstr "Sub EjemploDateSerial"
+
+#: 03030101.xhp#par_id3156441.17.help.text
+msgid "Dim lDate as Long"
+msgstr "Dim lFecha as Long"
+
+#: 03030101.xhp#par_id3154791.18.help.text
+msgctxt "03030101.xhp#par_id3154791.18.help.text"
+msgid "Dim sDate as String"
+msgstr "Dim sFecha as String"
+
+#: 03030101.xhp#par_id3155415.19.help.text
+msgid "lDate = DateSerial(1964, 4, 9)"
+msgstr "lFecha = DateSerial(1964, 4, 9)"
+
+#: 03030101.xhp#par_id3147125.20.help.text
+msgid "sDate = DateSerial(1964, 4, 9)"
+msgstr "sFecha = DateSerial(1964, 4, 9)"
+
+#: 03030101.xhp#par_id3154942.21.help.text
+msgid "msgbox lDate REM returns 23476"
+msgstr "msgbox lFecha REM devuelve 23476"
+
+#: 03030101.xhp#par_id3151074.22.help.text
+msgid "msgbox sDate REM returns 04/09/1964"
+msgstr "msgbox sDate REM devuelve 04/09/1964"
+
+#: 03030101.xhp#par_id3153878.23.help.text
+msgctxt "03030101.xhp#par_id3153878.23.help.text"
+msgid "end sub"
+msgstr "End Sub"
+
+#: 03010000.xhp#tit.help.text
+msgid "Screen I/O Functions"
+msgstr "Funciones de E/S de pantalla"
+
+#: 03010000.xhp#hd_id3156280.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010000.xhp\" name=\"Screen I/O Functions\">Screen I/O Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03010000.xhp\" name=\"Funciones de E/S de pantalla\">Funciones de E/S de pantalla</link>"
+
+#: 03010000.xhp#par_id3153770.2.help.text
+msgid "This section describes the Runtime Functions used to call dialogs for the input and output of user entries."
+msgstr "Esta sección describe las funciones de tiempo de ejecución usadas para llamar a diálogos para la entrada y salida de interacciones con el usuario."
+
+#: 03030000.xhp#tit.help.text
+msgid "Date and Time Functions"
+msgstr "Funciones de fecha y hora"
+
+#: 03030000.xhp#hd_id3150502.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030000.xhp\" name=\"Date and Time Functions\">Date and Time Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03030000.xhp\" name=\"Funciones de fecha y hora\">Funciones de fecha y hora</link>"
+
+#: 03030000.xhp#par_id3153255.2.help.text
+msgid "Use the statements and functions described here to perform date and time calculations."
+msgstr "Use las instrucciones y funciones que se describen aquí para llevar a cabo cálculos de fecha y hora."
+
+#: 03030000.xhp#par_id3152363.3.help.text
+msgid "<item type=\"productname\">%PRODUCTNAME</item> Basic lets you calculate time or date differences by converting the time and date values to continuous numeric values. After the difference is calculated, special functions are used to reconvert the values to the standard time or date formats."
+msgstr "$[officename] Basic permite calcular diferencias de fecha y hora convirtiendo los valores de éstas a valores numéricos continuos. Después de calcular las diferencias, se usan funciones especiales para reconvertir los valores a formatos estándar de fecha y hora."
+
+#: 03030000.xhp#par_id3151054.4.help.text
+msgid "You can combine date and time values into a single floating-decimal number. Dates are converted to integers, and times to decimal values. <item type=\"productname\">%PRODUCTNAME</item> Basic also supports the variable type Date, which can contain a time specification consisting of both a date and time."
+msgstr "Puede combinar valores de fecha y hora en un único número decimal simple de coma flotante. Las fechas se convierten a enteros, y las horas a valores decimales. $[officename] Basic también admite el tipo de variable Date que puede contener una especificación de tiempo compuesta por una fecha y una hora."
+
+#: 01020100.xhp#tit.help.text
+msgid "Using Variables"
+msgstr "Uso de variables"
+
+#: 01020100.xhp#bm_id3149346.help.text
+msgid "<bookmark_value>names of variables</bookmark_value><bookmark_value>variables; using</bookmark_value><bookmark_value>types of variables</bookmark_value><bookmark_value>declaring variables</bookmark_value><bookmark_value>values;of variables</bookmark_value><bookmark_value>constants</bookmark_value><bookmark_value>arrays;declaring</bookmark_value><bookmark_value>defining;constants</bookmark_value>"
+msgstr "<bookmark_value>nombres de variables</bookmark_value><bookmark_value>variables;tipos y variables</bookmark_value>bookmark_value><bookmark_value>declarando variables</bookmark_value><bookmark_value>valores;de variables</bookmark_value><bookmark_value>constantes</bookmark_value><bookmark_value>arreglos;declaración</bookmark_value><bookmark_value>definición;constantes</bookmark_value>"
+
+#: 01020100.xhp#hd_id3149346.1.help.text
+msgid "<link href=\"text/sbasic/shared/01020100.xhp\" name=\"Using Variables\">Using Variables</link>"
+msgstr "<link href=\"text/sbasic/shared/01020100.xhp\" name=\"Using Variables\">Uso de variables</link>"
+
+#: 01020100.xhp#par_id3154346.3.help.text
+msgid "The following describes the basic use of variables in $[officename] Basic."
+msgstr "A continuación se describe el uso básico de variables en $[officename] Basic."
+
+#: 01020100.xhp#hd_id3153361.4.help.text
+msgid "Naming Conventions for Variable Identifiers"
+msgstr "Convenciones de asignación de nombres a variables"
+
+#: 01020100.xhp#par_id3148797.5.help.text
+msgid "A variable name can consist of a maximum of 255 characters. The first character of a variable name <emph>must</emph> be a letter A-Z or a-z. Numbers can also be used in a variable name, but punctuation symbols and special characters are not permitted, with exception of the underscore character (\"_\"). In $[officename] Basic variable identifiers are not case-sensitive. Variable names may contain spaces but must be enclosed in square brackets if they do."
+msgstr "Un nombre de variable puede tener hasta 255 caracteres. El primer carácter de un nombre de variable <emph>debe ser</emph> una letra A-Z o a-z. Los números también pueden usarse en los nombres de variable, pero los símbolos de puntuación y los caracteres especiales no están permitidos, con excepción del carácter de subrayado (\"_\"). En $[officename] Basic no se hace distinción entre mayúsculas/minúsculas en los identificadores de variable. Los nombres de variable pueden contener espacios, pero en ese caso deben incluirse entre corchetes."
+
+#: 01020100.xhp#par_id3156422.6.help.text
+msgid "Examples for variable identifiers:"
+msgstr "<emph>Ejemplos de identificadores de variable:</emph>"
+
+#: 01020100.xhp#par_id3163798.7.help.text
+msgid "MyNumber=5"
+msgstr "MiNumero=5"
+
+#: 01020100.xhp#par_id3156441.126.help.text
+msgctxt "01020100.xhp#par_id3156441.126.help.text"
+msgid "Correct"
+msgstr "Correcto"
+
+#: 01020100.xhp#par_id3147317.8.help.text
+msgid "MyNumber5=15"
+msgstr "MiNumero5=15"
+
+#: 01020100.xhp#par_id3149664.127.help.text
+msgctxt "01020100.xhp#par_id3149664.127.help.text"
+msgid "Correct"
+msgstr "Correcto"
+
+#: 01020100.xhp#par_id3145364.9.help.text
+msgid "MyNumber_5=20"
+msgstr "MiNumero_5=20"
+
+#: 01020100.xhp#par_id3146119.128.help.text
+msgctxt "01020100.xhp#par_id3146119.128.help.text"
+msgid "Correct"
+msgstr "Correcto"
+
+#: 01020100.xhp#par_id3154729.10.help.text
+msgid "My Number=20"
+msgstr "Mi Numero=20"
+
+#: 01020100.xhp#par_id3153876.11.help.text
+msgid "Not valid, variable with space must be enclosed in square brackets"
+msgstr "No es válida, las variables con espacios deben incluirse entre corchetes"
+
+#: 01020100.xhp#par_id3147126.14.help.text
+msgid "[My Number]=12"
+msgstr "[Mi Numero]=12"
+
+#: 01020100.xhp#par_id3154510.15.help.text
+msgctxt "01020100.xhp#par_id3154510.15.help.text"
+msgid "Correct"
+msgstr "Correcto, variable con espacios incluida entre corchetes"
+
+#: 01020100.xhp#par_id3153708.12.help.text
+msgid "DéjàVu=25"
+msgstr "DéjàVu=25"
+
+#: 01020100.xhp#par_id3150330.129.help.text
+msgid "Not valid, special characters are not allowed"
+msgstr "No es válida, no se permiten caracteres especiales"
+
+#: 01020100.xhp#par_id3155443.13.help.text
+msgid "5MyNumber=12"
+msgstr "5MiNumero=12"
+
+#: 01020100.xhp#par_id3154254.130.help.text
+msgid "Not valid, variable may not begin with a number"
+msgstr "No es válida, la variable no puede empezar con un número"
+
+#: 01020100.xhp#par_id3147345.16.help.text
+msgid "Number,Mine=12"
+msgstr "Numero,Mío=12"
+
+#: 01020100.xhp#par_id3149256.131.help.text
+msgid "Not valid, punctuation marks are not allowed"
+msgstr "No es válida, marcas de puntuación no permitidas"
+
+#: 01020100.xhp#hd_id3146317.17.help.text
+msgid "Declaring Variables"
+msgstr "Declaración de variables"
+
+#: 01020100.xhp#par_id3150299.18.help.text
+msgid "In $[officename] Basic you don't need to declare variables explicitly. A variable declaration can be performed with the <emph>Dim</emph> statement. You can declare more than one variable at a time by separating the names with a comma. To define the variable type, use either a type-declaration sign after the name, or the appropriate key word. "
+msgstr "En $[officename] Basic no es necesario declarar variables explícitamente. Las declaraciones de variable pueden realizarse con la instrucción <emph>Dim</emph>. Puede declarar más de una variable a la vez separando sus nombres con una coma. Para definir el tipo de variable, use un signo de declaración de tipo después del nombre o la palabra clave apropiada."
+
+#: 01020100.xhp#par_id3154118.140.help.text
+msgid "Examples for variable declarations:"
+msgstr "<emph>Ejemplos de declaraciones de variable:</emph>"
+
+#: 01020100.xhp#par_id3150090.19.help.text
+msgctxt "01020100.xhp#par_id3150090.19.help.text"
+msgid "DIM a$"
+msgstr "DIM a$"
+
+#: 01020100.xhp#par_id3150982.132.help.text
+msgctxt "01020100.xhp#par_id3150982.132.help.text"
+msgid "Declares the variable \"a\" as a String"
+msgstr "Declara la variable \"a\" como String"
+
+#: 01020100.xhp#par_id3149531.20.help.text
+msgid "DIM a As String"
+msgstr "DIM a As String"
+
+#: 01020100.xhp#par_id3150343.133.help.text
+msgctxt "01020100.xhp#par_id3150343.133.help.text"
+msgid "Declares the variable \"a\" as a String"
+msgstr "Declara la variable \"a\" como String"
+
+#: 01020100.xhp#par_id3149036.21.help.text
+msgid "DIM a$, b As Integer"
+msgstr "DIM a$, b As Integer"
+
+#: 01020100.xhp#par_id3155507.22.help.text
+msgid "Declares one variable as a String and one as an Integer"
+msgstr "Declara una variable como String y otra como Integer"
+
+#: 01020100.xhp#par_idN10854.help.text
+msgid "DIM c As Boolean"
+msgstr "DIM c As Boolean"
+
+#: 01020100.xhp#par_idN10859.help.text
+msgid "Declares c as a Boolean variable that can be TRUE or FALSE"
+msgstr "Declara c como variable booleana que puede ser TRUE o FALSE"
+
+#: 01020100.xhp#par_id3150519.23.help.text
+msgid "It is very important when declaring variables that you use the type-declaration character each time, even if it was used in the declaration instead of a keyword. Thus the following statements are invalid:"
+msgstr "Es muy importante al declarar variables que utilice siempre el carácter de declaración de tipo, aunque se usara en la declaración en lugar de una palabra clave. Por tanto, las instrucciones siguientes no son válidas:"
+
+#: 01020100.xhp#par_id3152985.24.help.text
+msgctxt "01020100.xhp#par_id3152985.24.help.text"
+msgid "DIM a$"
+msgstr "DIM a$"
+
+#: 01020100.xhp#par_id3154527.134.help.text
+msgid "Declares \"a\" as a String"
+msgstr "Declara \"a\" como String"
+
+#: 01020100.xhp#par_id3148599.25.help.text
+msgid "a=\"TestString\""
+msgstr "a=\"TestString\""
+
+#: 01020100.xhp#par_id3153064.135.help.text
+msgid "Type-declaration missing: \"a$=\""
+msgstr "Falta la declaración de tipo: \"a$=\""
+
+#: 01020100.xhp#par_id3144770.26.help.text
+msgid "Once you have declared a variable as a certain type, you cannot declare the variable under the same name again as a different type!"
+msgstr "Tenga en cuenta que en cuanto haya declarado una variable como de un tipo concreto ya no puede declararla con el mismo nombre y un tipo distinto."
+
+#: 01020100.xhp#hd_id3149331.27.help.text
+msgid "Forcing Variable Declarations"
+msgstr "Forzar declaraciones de variables"
+
+#: 01020100.xhp#par_id3149443.28.help.text
+msgid "To force declaration of variables, use the following command:"
+msgstr "Para forzar la declaración de variables, use la orden siguiente:"
+
+#: 01020100.xhp#par_id3152869.29.help.text
+msgid "OPTION EXPLICIT"
+msgstr "OPTION EXPLICIT"
+
+#: 01020100.xhp#par_id3155072.30.help.text
+msgid "The <emph>Option Explicit</emph> statement has to be the first line in the module, before the first SUB. Generally, only arrays need to be declared explicitly. All other variables are declared according to the type-declaration character, or - if omitted - as the default type <emph>Single</emph>."
+msgstr "La instrucción <emph>Option Explicit</emph> tiene que ser la primera línea del módulo, antes del primer SUB. Normalmente, sólo es necesario declarar explícitamente las matrices. El resto de variables se declaran según el carácter de declaración de tipo o (si se omite) según el tipo predeterminado <emph>Single</emph>."
+
+#: 01020100.xhp#hd_id3154614.34.help.text
+msgid "Variable Types"
+msgstr "Tipos de variable"
+
+#: 01020100.xhp#par_id3155383.35.help.text
+msgid "$[officename] Basic supports four variable classes:"
+msgstr "$[officename] Basic admite cuatro clases de variables:"
+
+#: 01020100.xhp#par_id3153972.36.help.text
+msgid "<emph>Numeric</emph> variables can contain number values. Some variables are used to store large or small numbers, and others are used for floating-point or fractional numbers. "
+msgstr "<emph>Numérica</emph>, puede contener valores numéricos. Algunas variables se utilizan para almacenar números grandes o pequeños y otras para números de coma flotante o fracciones."
+
+#: 01020100.xhp#par_id3159226.37.help.text
+msgid "<emph>String</emph> variables contain character strings."
+msgstr "<emph>Cadena</emph>, contiene cadenas de caracteres."
+
+#: 01020100.xhp#par_id3145217.38.help.text
+msgid "<emph>Boolean</emph> variables contain either the TRUE or the FALSE value."
+msgstr "<emph>Lógica</emph>, contiene el valor TRUE (cierto) o FALSE (falso)."
+
+#: 01020100.xhp#par_id3154762.39.help.text
+msgid "<emph>Object</emph> variables can store objects of various types, like tables and documents within a document."
+msgstr "<emph>Objeto</emph>, puede almacenar objetos de diversos tipos, como tablas y documentos dentro de un documento."
+
+#: 01020100.xhp#hd_id3153805.40.help.text
+msgid "Integer Variables"
+msgstr "Variables enteras"
+
+#: 01020100.xhp#par_id3146966.41.help.text
+msgid "Integer variables range from -32768 to 32767. If you assign a floating-point value to an integer variable, the decimal places are rounded to the next integer. Integer variables are rapidly calculated in procedures and are suitable for counter variables in loops. An integer variable only requires two bytes of memory. \"%\" is the type-declaration character."
+msgstr "El rango de las variables enteras va de -32768 a 32767. Si asigna un valor de coma flotante a una variable entera, los valores decimales se redondean al entero más próximo. Las variables enteras se calculan rápidamente en los procedimientos y su uso es muy conveniente como variables contador en bucles. Una variable entera sólo requiere dos bytes de memoria. El carácter de declaración de tipo es \"%\"."
+
+#: 01020100.xhp#par_id3153810.43.help.text
+msgid "Dim Variable%"
+msgstr "Dim Variable%"
+
+#: 01020100.xhp#par_id3153556.44.help.text
+msgid "Dim Variable As Integer"
+msgstr "Dim Variable As Integer"
+
+#: 01020100.xhp#hd_id3147546.45.help.text
+msgid "Long Integer Variables"
+msgstr "Variables enteras largas"
+
+#: 01020100.xhp#par_id3151193.46.help.text
+msgid "Long integer variables range from -2147483648 to 2147483647. If you assign a floating-point value to a long integer variable, the decimal places are rounded to the next integer. Long integer variables are rapidly calculated in procedures and are suitable for counter variables in loops for large values. A long integer variable requires four bytes of memory. \"&\" is the type-declaration character."
+msgstr "El rango de las variables enteras largas va de -2147483648 a 2147483647. Si asigna un valor de coma flotante a una variable entera larga, los valores decimales se redondean al entero más próximo. Las variables enteras largas se calculan rápidamente en los procedimientos y su uso muy conveniente como variables contador en bucles de valor muy grande. Una variable entera larga requiere cuatro bytes de memoria. El carácter de declaración de tipo es \"&\"."
+
+#: 01020100.xhp#par_id3154708.48.help.text
+msgid "Dim Variable&"
+msgstr "Dim Variable&"
+
+#: 01020100.xhp#par_id3156365.49.help.text
+msgid "Dim Variable as Long"
+msgstr "Dim Variable as Long"
+
+#: 01020100.xhp#hd_id7596972.help.text
+msgid "Decimal Variables"
+msgstr "Variables Decimales"
+
+#: 01020100.xhp#par_id2649311.help.text
+msgid "Decimal variables can take positive or negative numbers or zero. Accuracy is up to 29 digits."
+msgstr "Las variables decimales pueden tomar numeros positivos y negativos o el numero cero. La exactitud esta hasta 29 digitos."
+
+#: 01020100.xhp#par_id7617114.help.text
+msgid "You can use plus (+) or minus (-) signs as prefixes for decimal numbers (with or without spaces)."
+msgstr "Puedes usar un signo de suma (+) o resta (-) como prefijo a un numero decimal (con o sin espacio)."
+
+#: 01020100.xhp#par_id1593676.help.text
+msgid "If a decimal number is assigned to an integer variable, %PRODUCTNAME Basic rounds the figure up or down."
+msgstr "Si un numero decimal esta asignado a una variable integral %PRODUCTNAME Basic redondea la cantidad arriba o abajo."
+
+#: 01020100.xhp#hd_id3147500.50.help.text
+msgid "Single Variables"
+msgstr "Variables simples"
+
+#: 01020100.xhp#par_id3153070.51.help.text
+msgid "Single variables can take positive or negative values ranging from 3.402823 x 10E38 to 1.401298 x 10E-45. Single variables are floating-point variables, in which the decimal precision decreases as the non-decimal part of the number increases. Single variables are suitable for mathematical calculations of average precision. Calculations require more time than for Integer variables, but are faster than calculations with Double variables. A Single variable requires 4 bytes of memory. The type-declaration character is \"!\"."
+msgstr "Las variables simples pueden tener valores positivos o negativos desde 3,402823 x 10E38 a 1,401298 x 10E-45. Las variables simples son de coma flotante, en el que la precisión decimal decrece a medida que la parte no decimal del número aumenta. Las variables simples son adecuadas para realizar cálculos matemáticos de precisión media. Los cálculos requieren más tiempo que para las variables enteras, pero son más rápidos que las de tipo doble. Una variable simple requiere 4 bytes de memoria. El carácter de declaración de tipo es \"!\"."
+
+#: 01020100.xhp#par_id3149875.52.help.text
+msgid "Dim Variable!"
+msgstr "Dim Variable!"
+
+#: 01020100.xhp#par_id3153302.53.help.text
+msgid "Dim Variable as Single"
+msgstr "Dim Variable as Single"
+
+#: 01020100.xhp#hd_id3155753.54.help.text
+msgid "Double Variables"
+msgstr "Variables dobles"
+
+#: 01020100.xhp#par_id3150953.55.help.text
+msgid "Double variables can take positive or negative values ranging from 1.79769313486232 x 10E308 to 4.94065645841247 x 10E-324. Double variables are floating-point variables, in which the decimal precision decreases as the non-decimal part of the number increases. Double variables are suitable for precise calculations. Calculations require more time than for Single variables. A Double variable requires 8 bytes of memory. The type-declaration character is \"#\"."
+msgstr "Las variables dobles pueden tener valores positivos o negativos desde 1.79769313486232 x 10E38 a 4.94065645841247 x 10E-324. Las variables dobles son de coma flotante, en el que la precisión decimal decrece a medida que la parte no decimal del número aumenta. Las variables dobles son adecuadas para cálculos precisos. Los cálculos requieren más tiempo que las variables simples. Una variable doble requiere 8 bytes de memoria. El carácter de declaración de tipo es \"#\"."
+
+#: 01020100.xhp#par_id3150431.56.help.text
+msgid "Dim Variable#"
+msgstr "Dim Variable#"
+
+#: 01020100.xhp#par_id3154406.57.help.text
+msgid "Dim Variable As Double"
+msgstr "Dim Variable As Double"
+
+#: 01020100.xhp#hd_id3155747.95.help.text
+msgid "Currency Variables"
+msgstr "Variables de moneda"
+
+#: 01020100.xhp#par_id3153337.96.help.text
+msgid "Currency variables are internally stored as 64-bit numbers (8 Bytes) and displayed as a fixed-decimal number with 15 non-decimal and 4 decimal places. The values range from -922337203685477.5808 to +922337203685477.5807. Currency variables are used to calculate currency values with a high precision. The type-declaration character is \"@\"."
+msgstr "Las variables de moneda se almacenan internamente como números de 64 bits (8 bytes) y se muestran como números con cantidad de decimales fija con 15 posiciones no decimales y 4 decimales. El rango de valores va de -922337203685477,5808 a +922337203685477,5807. Las variables de moneda se usan para calcular valores de divisas con una precisión elevada. El carácter de declaración de tipo es \"@\"."
+
+#: 01020100.xhp#par_id3147296.97.help.text
+msgid "Dim Variable@"
+msgstr "Dim Variable@"
+
+#: 01020100.xhp#par_id3150391.98.help.text
+msgid "Dim Variable As Currency"
+msgstr "Dim Variable As Currency"
+
+#: 01020100.xhp#hd_id3148742.58.help.text
+msgid "String Variables"
+msgstr "Variables de cadena"
+
+#: 01020100.xhp#par_id3151393.59.help.text
+msgid "String variables can hold character strings with up to 65,535 characters. Each character is stored as the corresponding Unicode value. String variables are suitable for word processing within programs and for temporary storage of any non-printable character up to a maximum length of 64 Kbytes. The memory required for storing string variables depends on the number of characters in the variable. The type-declaration character is \"$\"."
+msgstr "Las variables de cadena pueden contener cadenas de compuestas por hasta 65.535 caracteres. Cada carácter se almacena como el valor Unicode correspondiente. Las variables de cadena son adecuadas para el procesamiento de texto dentro de programas y para almacenamiento temporal de caracteres no imprimibles de hasta una longitud máxima de 64 Kbytes. La memoria necesaria para almacenar variables de cadena depende del número de caracteres que ésta contenga. El carácter de declaración de tipo es \"$\"."
+
+#: 01020100.xhp#par_id3166467.60.help.text
+msgid "Dim Variable$"
+msgstr "Dim Variable$"
+
+#: 01020100.xhp#par_id3153027.61.help.text
+msgid "Dim Variable As String"
+msgstr "Dim Variable as String"
+
+#: 01020100.xhp#hd_id3150534.62.help.text
+msgid "Boolean Variables"
+msgstr "Variables lógicas"
+
+#: 01020100.xhp#par_id3145632.63.help.text
+msgid "Boolean variables store only one of two values: TRUE or FALSE. A number 0 evaluates to FALSE, every other value evaluates to TRUE."
+msgstr "Las variables lógicas o booleanas sólo almacenan uno de estos dos valores: True (verdadero) o False (falso). Un número 0 evalúa en FALSE, cualquier otro número evalúa en TRUE."
+
+#: 01020100.xhp#par_id3147615.64.help.text
+msgid "Dim Variable As Boolean"
+msgstr "Dim Variable As Boolean"
+
+#: 01020100.xhp#hd_id3149722.65.help.text
+msgid "Date Variables"
+msgstr "Variables de fecha"
+
+#: 01020100.xhp#par_id3159116.66.help.text
+msgid "Date variables can only contain dates and time values stored in an internal format. Values assigned to Date variables with <link href=\"text/sbasic/shared/03030101.xhp\" name=\"Dateserial\"><emph>Dateserial</emph></link>, <link href=\"text/sbasic/shared/03030102.xhp\" name=\"Datevalue\"><emph>Datevalue</emph></link>, <link href=\"text/sbasic/shared/03030205.xhp\" name=\"Timeserial\"><emph>Timeserial</emph></link> or <link href=\"text/sbasic/shared/03030206.xhp\" name=\"Timevalue\"><emph>Timevalue</emph></link> are automatically converted to the internal format. Date-variables are converted to normal numbers by using the <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Year</emph></link> or the <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>Second</emph></link> function. The internal format enables a comparison of date/time values by calculating the difference between two numbers. These variables can only be declared with the key word <emph>Date</emph>."
+msgstr "Las variables de fecha sólo pueden contener valores de fecha y hora almacenados en un formato interno. Los valores asignados a las variables de fecha con <link href=\"text/sbasic/shared/03030101.xhp\" name=\"Dateserial\"><emph>Dateserial</emph></link>, <link href=\"text/sbasic/shared/03030102.xhp\" name=\"Datevalue\"><emph>Datevalue</emph></link>, <link href=\"text/sbasic/shared/03030205.xhp\" name=\"Timeserial\"><emph>Timeserial</emph></link> o <link href=\"text/sbasic/shared/03030206.xhp\" name=\"Timevalue\"><emph>Timevalue</emph></link> se convierten automáticamente al formato interno. Las variables de fecha se convierten en números normales mediante las funciones <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Día\"><emph>Día</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Mes\"><emph>Mes</emph></link> y <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Año\"><emph>Año</emph></link> o bien <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hora\"><emph>Hora</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minutos\"><emph>Minutos</emph></link> y <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Segundo\"><emph>Segundo</emph></link>. El formato interno permite una comparación de valores de fecha/hora calculando la diferencia entre dos números. Estas variables sólo pueden declararse con la palabra clave <emph>Date</emph>."
+
+#: 01020100.xhp#par_id3150462.67.help.text
+msgid "Dim Variable As Date"
+msgstr "Dim Variable As Date"
+
+#: 01020100.xhp#hd_id3148732.68.help.text
+msgid "Initial Variable Values"
+msgstr "Valores iniciales de las variables"
+
+#: 01020100.xhp#par_id3154549.69.help.text
+msgid "As soon as the variable has been declared, it is automatically set to the \"Null\" value. Note the following conventions:"
+msgstr "En cuanto se declara la variable, ésta toma automáticamente el valor \"Null\" (nulo). Tenga en cuenta las convenciones siguientes:"
+
+#: 01020100.xhp#par_id3143222.70.help.text
+msgid "<emph>Numeric</emph> variables are automatically assigned the value \"0\" as soon as they are declared."
+msgstr "A las variables <emph>Numéricas</emph> se les asigna automáticamente el valor \"0\" en cuanto se declaran."
+
+#: 01020100.xhp#par_id3150693.71.help.text
+msgid "<emph>Date variables</emph> are assigned the value 0 internally; equivalent to converting the value to \"0\" with the <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Year</emph></link> or the <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>Second</emph></link> function."
+msgstr "A las <emph>variables de fecha</emph> se les asigna el valor 0 internamente; que equivale a convertir el valor a \"0\" con la función <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Día</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Mes</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Año</emph></link> u <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Hora</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Minuto</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>Segundo</emph></link>."
+
+#: 01020100.xhp#par_id3154807.72.help.text
+msgid "<emph>String variables</emph> are assigned an empty-string (\"\") when they are declared."
+msgstr "A las <emph>variables de cadena</emph> se les asigna una cadena vacía (\"\") cuando se declaran."
+
+#: 01020100.xhp#hd_id3153936.83.help.text
+msgid "Arrays"
+msgstr "Matrices"
+
+#: 01020100.xhp#par_id3148736.84.help.text
+msgid "$[officename] Basic knows one- or multi-dimensional arrays, defined by a specified variable type. Arrays are suitable for editing lists and tables in programs. Individual elements of an array can be addressed through a numeric index."
+msgstr "$[officename] Basic distingue matrices de una o varias dimensiones, definidas por un tipo de variables especificado. Las matrices son convenientes para editar listas y tablas en los programas. Se puede acceder a los elementos individuales de las matrices utilizando un índice numérico."
+
+#: 01020100.xhp#par_id3149546.85.help.text
+msgid "Arrays <emph>must</emph> be declared with the <emph>Dim</emph> statement. There are several ways to define the index range of an array:"
+msgstr "Las matrices <emph>deben</emph> declararse con la instrucción <emph>Dim</emph>.Hay varias maneras de definir el rango de índices de una matriz:"
+
+#: 01020100.xhp#par_id3150143.86.help.text
+msgid "DIM text$(20)"
+msgstr "DIM text$(20)"
+
+#: 01020100.xhp#par_id3154567.136.help.text
+msgid "21 elements numbered from 0 to 20"
+msgstr "21 elementos numerados del 0 al 20"
+
+#: 01020100.xhp#par_id3145596.125.help.text
+msgid "DIM text$(5,4)"
+msgstr "DIM text$(5,4)"
+
+#: 01020100.xhp#par_id3154397.137.help.text
+msgid "30 elements (a matrix of 6 x 5 elements)"
+msgstr "30 elementos (una matriz de 6 x 5 elementos)"
+
+#: 01020100.xhp#par_id3149185.87.help.text
+msgid "DIM text$(5 to 25)"
+msgstr "DIM text$(5 to 25)"
+
+#: 01020100.xhp#par_id3149690.138.help.text
+msgid "21 elements numbered from 5 to 25"
+msgstr "21 elementos numerados del 5 al 25"
+
+#: 01020100.xhp#par_id3155950.88.help.text
+msgid "DIM text$(-15 to 5)"
+msgstr "DIM text$(-15 to 5)"
+
+#: 01020100.xhp#par_id3153113.89.help.text
+msgid "21 elements (including 0), numbered from -15 to 5"
+msgstr "21 elementos (incluido el 0), numerados del -15 al 5"
+
+#: 01020100.xhp#par_id3153005.90.help.text
+msgid "The index range can include positive as well as negative numbers. "
+msgstr "El rango del índice puede incluir números positivos y negativos. "
+
+#: 01020100.xhp#hd_id3154507.91.help.text
+msgid "Constants"
+msgstr "Constantes"
+
+#: 01020100.xhp#par_id3156357.92.help.text
+msgid "Constants have a fixed value. They are only defined once in the program and cannot be redefined later:"
+msgstr "Las constantes tienen un valor fijo. Sólo se definen una vez en el programa y no pueden volverse a definir más adelante:"
+
+#: 01020100.xhp#par_id3153203.93.help.text
+msgctxt "01020100.xhp#par_id3153203.93.help.text"
+msgid "CONST ConstName=Expression"
+msgstr "CONST NombreConst=Expresión"
+
+#: 03080700.xhp#tit.help.text
+msgid "Expression Signs"
+msgstr "Signos de expresión"
+
+#: 03080700.xhp#hd_id3150702.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080700.xhp\" name=\"Expression Signs\">Expression Signs</link>"
+msgstr "<link href=\"text/sbasic/shared/03080700.xhp\" name=\"Signos de expresión\">Signos de expresión</link>"
+
+#: 03080700.xhp#par_id3148668.2.help.text
+msgid "This function returns the algebraic sign of a numeric expression."
+msgstr "Esta función devuelve el signo algebraico de una expresión numérica."
+
+#: 03020102.xhp#tit.help.text
+msgid "FreeFile Function[Runtime]"
+msgstr "Función FreeFile [Ejecución]"
+
+#: 03020102.xhp#bm_id3150400.help.text
+msgid "<bookmark_value>FreeFile function</bookmark_value>"
+msgstr "<bookmark_value>FreeFile;función</bookmark_value>"
+
+#: 03020102.xhp#hd_id3150400.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function[Runtime]\">FreeFile Function[Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"Función FreeFile [Ejecución]\">Función FreeFile [Ejecución]</link>"
+
+#: 03020102.xhp#par_id3154366.2.help.text
+msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
+msgstr "Devuelve el siguiente número de archivo disponible para la apertura de un archivo. Esta función se utiliza para abrir un archivo usando un número que no esté en uso actualmente por un archivo abierto actualmente."
+
+#: 03020102.xhp#hd_id3150769.3.help.text
+msgctxt "03020102.xhp#hd_id3150769.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03020102.xhp#par_id3150869.4.help.text
+msgid "FreeFile"
+msgstr "FreeFile"
+
+#: 03020102.xhp#hd_id3151042.5.help.text
+msgctxt "03020102.xhp#hd_id3151042.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03020102.xhp#par_id3150440.6.help.text
+msgctxt "03020102.xhp#par_id3150440.6.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03020102.xhp#hd_id3148576.7.help.text
+msgctxt "03020102.xhp#hd_id3148576.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03020102.xhp#par_id3155854.8.help.text
+msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
+msgstr "Esta función sólo se puede usar inmediatamente delante de una instrucción Open. FreeFile devuelve el número de archivo disponible, pero no lo reserva."
+
+#: 03020102.xhp#hd_id3159153.9.help.text
+msgctxt "03020102.xhp#hd_id3159153.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03020102.xhp#par_id3146120.10.help.text
+msgctxt "03020102.xhp#par_id3146120.10.help.text"
+msgid "Sub ExampleWorkWithAFile"
+msgstr "Sub EjemploTrabajoConArchivo"
+
+#: 03020102.xhp#par_id3154319.11.help.text
+msgctxt "03020102.xhp#par_id3154319.11.help.text"
+msgid "Dim iNumber As Integer"
+msgstr "Dim iNumero As Integer"
+
+#: 03020102.xhp#par_id3151117.12.help.text
+msgctxt "03020102.xhp#par_id3151117.12.help.text"
+msgid "Dim sLine As String"
+msgstr "Dim sLinea As String"
+
+#: 03020102.xhp#par_id3147426.13.help.text
+msgctxt "03020102.xhp#par_id3147426.13.help.text"
+msgid "Dim aFile As String"
+msgstr "Dim aArchivo As String"
+
+#: 03020102.xhp#par_id3149667.36.help.text
+msgctxt "03020102.xhp#par_id3149667.36.help.text"
+msgid "Dim sMsg as String"
+msgstr "Dim sMensaje as String"
+
+#: 03020102.xhp#par_id3145800.14.help.text
+msgctxt "03020102.xhp#par_id3145800.14.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr "aArchivo = \"c:\\data.txt\""
+
+#: 03020102.xhp#par_id3147396.15.help.text
+msgctxt "03020102.xhp#par_id3147396.15.help.text"
+msgid "sMsg = \"\""
+msgstr "sMensaje = \"\""
+
+#: 03020102.xhp#par_id3154490.16.help.text
+msgctxt "03020102.xhp#par_id3154490.16.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumero = Freefile"
+
+#: 03020102.xhp#par_id3151074.17.help.text
+msgctxt "03020102.xhp#par_id3151074.17.help.text"
+msgid "Open aFile For Output As #iNumber"
+msgstr "Open aArchivo For Output As #iNumero"
+
+#: 03020102.xhp#par_id3155416.18.help.text
+msgctxt "03020102.xhp#par_id3155416.18.help.text"
+msgid "Print #iNumber, \"First line of text\""
+msgstr "Print #iNumero, \"Primera línea de texto\""
+
+#: 03020102.xhp#par_id3153416.19.help.text
+msgctxt "03020102.xhp#par_id3153416.19.help.text"
+msgid "Print #iNumber, \"Another line of text\""
+msgstr "Print #iNumero, \"Otra línea de texto\""
+
+#: 03020102.xhp#par_id3149401.20.help.text
+msgctxt "03020102.xhp#par_id3149401.20.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumero"
+
+#: 03020102.xhp#par_id3150330.24.help.text
+msgctxt "03020102.xhp#par_id3150330.24.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumero = Freefile"
+
+#: 03020102.xhp#par_id3155067.25.help.text
+msgid "Open aFile For Input As #iNumber"
+msgstr "Open aArchivo For Input As #iNumero"
+
+#: 03020102.xhp#par_id3155443.26.help.text
+msgid "While not eof(#iNumber)"
+msgstr "While not eof(#iNumero)"
+
+#: 03020102.xhp#par_id3153714.27.help.text
+msgctxt "03020102.xhp#par_id3153714.27.help.text"
+msgid "Line Input #iNumber, sLine"
+msgstr "Line Input #iNumero, sLinea"
+
+#: 03020102.xhp#par_id3148408.28.help.text
+msgctxt "03020102.xhp#par_id3148408.28.help.text"
+msgid "If sLine <>\"\" then"
+msgstr "If sLinea <>\"\" then"
+
+#: 03020102.xhp#par_id3156385.29.help.text
+msgctxt "03020102.xhp#par_id3156385.29.help.text"
+msgid "sMsg = sMsg & sLine & chr(13)"
+msgstr "sMensaje = sMensaje & sLinea & chr(13)"
+
+#: 03020102.xhp#par_id3145147.31.help.text
+msgctxt "03020102.xhp#par_id3145147.31.help.text"
+msgid "end if"
+msgstr "end if"
+
+#: 03020102.xhp#par_id3153966.32.help.text
+msgctxt "03020102.xhp#par_id3153966.32.help.text"
+msgid "wend"
+msgstr "wend"
+
+#: 03020102.xhp#par_id3155961.33.help.text
+msgctxt "03020102.xhp#par_id3155961.33.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumero"
+
+#: 03020102.xhp#par_id3149567.37.help.text
+msgctxt "03020102.xhp#par_id3149567.37.help.text"
+msgid "Msgbox sMsg"
+msgstr "Msgbox sMensaje"
+
+#: 03020102.xhp#par_id3146917.34.help.text
+msgctxt "03020102.xhp#par_id3146917.34.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03020400.xhp#tit.help.text
+msgid "Managing Files"
+msgstr "Gestión de archivos"
+
+#: 03020400.xhp#hd_id3145136.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020400.xhp\" name=\"Managing Files\">Managing Files</link>"
+msgstr "<link href=\"text/sbasic/shared/03020400.xhp\" name=\"Gestión de archivos\">Gestión de archivos</link>"
+
+#: 03020400.xhp#par_id3147264.2.help.text
+msgid "The functions and statements for managing files are described here."
+msgstr "Las funciones e instrucciones para gestionar archivos se describen aquí."
+
+#: 03080500.xhp#tit.help.text
+msgid "Integers"
+msgstr "Enteros"
+
+#: 03080500.xhp#hd_id3153345.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Integers\">Integers</link>"
+msgstr "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Enteros\">Enteros</link>"
+
+#: 03080500.xhp#par_id3156152.2.help.text
+msgid "The following functions round values to integers."
+msgstr "Las funciones siguientes redondean valores a enteros."
+
+#: 03130100.xhp#tit.help.text
+msgid "Beep Statement [Runtime]"
+msgstr "Instrucción Beep [Ejecución]"
+
+#: 03130100.xhp#bm_id3143284.help.text
+msgid "<bookmark_value>Beep statement</bookmark_value>"
+msgstr "<bookmark_value>Beep;instrucción</bookmark_value>"
+
+#: 03130100.xhp#hd_id3143284.1.help.text
+msgid "<link href=\"text/sbasic/shared/03130100.xhp\" name=\"Beep Statement [Runtime]\">Beep Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03130100.xhp\" name=\"Beep Statement [Runtime]\">Instrucción Beep [Ejecución]</link>"
+
+#: 03130100.xhp#par_id3159201.2.help.text
+msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
+msgstr "Hace sonar un tono a través del altavoz del ordenador. El tono depende del sistema y no puede modificarse el volumen ni la modulación."
+
+#: 03130100.xhp#hd_id3153990.3.help.text
+msgctxt "03130100.xhp#hd_id3153990.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03130100.xhp#par_id3147291.4.help.text
+msgid "Beep"
+msgstr "Beep"
+
+#: 03130100.xhp#hd_id3148538.5.help.text
+msgctxt "03130100.xhp#hd_id3148538.5.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03130100.xhp#par_id3149762.6.help.text
+msgid "Sub ExampleBeep"
+msgstr "Sub EjemploBeep"
+
+#: 03130100.xhp#par_id3154285.7.help.text
+msgctxt "03130100.xhp#par_id3154285.7.help.text"
+msgid "beep"
+msgstr "beep"
+
+#: 03130100.xhp#par_id3143270.8.help.text
+msgctxt "03130100.xhp#par_id3143270.8.help.text"
+msgid "beep"
+msgstr "beep"
+
+#: 03130100.xhp#par_id3154142.9.help.text
+msgctxt "03130100.xhp#par_id3154142.9.help.text"
+msgid "beep"
+msgstr "beep"
+
+#: 03130100.xhp#par_id3148943.10.help.text
+msgctxt "03130100.xhp#par_id3148943.10.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03090412.xhp#tit.help.text
+msgid "Exit Statement [Runtime]"
+msgstr "Instrucción Exit [Ejecución]"
+
+#: 03090412.xhp#bm_id3152924.help.text
+msgid "<bookmark_value>Exit statement</bookmark_value>"
+msgstr "<bookmark_value>Exit;instrucción</bookmark_value>"
+
+#: 03090412.xhp#hd_id3152924.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit Statement [Runtime]\">Exit Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit Statement [Runtime]\">Instrucción Exit [Ejecución]</link>"
+
+#: 03090412.xhp#par_id3153394.2.help.text
+msgid "Exits a <emph>Do...Loop</emph>, <emph>For...Next</emph>, a function, or a subroutine."
+msgstr "Sale de un bucle <emph>Do...Loop</emph> o <emph>For...Next</emph>, o de una función o subrutina."
+
+#: 03090412.xhp#hd_id3149763.3.help.text
+msgctxt "03090412.xhp#hd_id3149763.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03090412.xhp#par_id3159157.4.help.text
+msgctxt "03090412.xhp#par_id3159157.4.help.text"
+msgid "see Parameters"
+msgstr "consulte Parámetros"
+
+#: 03090412.xhp#hd_id3148943.5.help.text
+msgctxt "03090412.xhp#hd_id3148943.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03090412.xhp#par_id3154760.6.help.text
+msgid "<emph>Exit Do</emph>"
+msgstr "<emph>Exit Do</emph>"
+
+#: 03090412.xhp#par_id3147559.7.help.text
+msgid "Only valid within a <emph>Do...Loop</emph> statement to exit the loop. Program execution continues with the statement that follows the Loop statement. If <emph>Do...Loop</emph> statements are nested, the control is transferred to the loop in the next higher level."
+msgstr "Sólo es válido en una instrucción <emph>Do...Loop</emph> para salir del bucle. La ejecución del programa continúa con la instrucción que sigue a Loop. Si las instrucciones <emph>Do...Loop</emph> están anidadas, el control se transfiere al bucle del nivel inmediatamente superior."
+
+#: 03090412.xhp#par_id3150398.8.help.text
+msgid "<emph>Exit For</emph>"
+msgstr "<emph>Exit For</emph>"
+
+#: 03090412.xhp#par_id3148797.9.help.text
+msgid "Only valid within a <emph>For...Next</emph> loop to exit the loop. Program execution continues with the first statement that follows the <emph>Next</emph> statement. In nested statements, the control is transferred to the loop in the next higher level."
+msgstr "Sólo es válido en un bucle <emph>For...Next</emph> para salir del bucle. La ejecución del programa continúa con la instrucción que sigue a la instrucción <emph>Next</emph>. En instrucciones anidadas, el control se transfiere al bucle del nivel inmediatamente superior."
+
+#: 03090412.xhp#par_id3147229.10.help.text
+msgid "<emph>Exit Function</emph>"
+msgstr "<emph>Exit Function</emph>"
+
+#: 03090412.xhp#par_id3154685.11.help.text
+msgid "Exits the <emph>Function</emph> procedure immediately. Program execution continues with the statement that follows the <emph>Function</emph> call."
+msgstr "Sale del procedimiento <emph>Function</emph> inmediatamente. La ejecución del programa continúa con la instrucción que sigue a la llamada <emph>Function</emph>."
+
+#: 03090412.xhp#par_id3155132.12.help.text
+msgid "<emph>Exit Sub</emph>"
+msgstr "<emph>Exit Sub</emph>"
+
+#: 03090412.xhp#par_id3149561.13.help.text
+msgid "Exits the subroutine immediately. Program execution continues with the statement that follows the <emph>Sub</emph> call."
+msgstr "Sale de la subrutina inmediatamente. La ejecución del programa continúa con la instrucción que sigue a la llamada <emph>Sub</emph>."
+
+#: 03090412.xhp#par_id3153143.14.help.text
+msgid "The Exit statement does not define the end of a structure, and must not be confused with the End statement."
+msgstr "La instrucción Exit no define el final de una estructura; no debe confundirse con la instrucción End."
+
+#: 03090412.xhp#hd_id3147348.15.help.text
+msgctxt "03090412.xhp#hd_id3147348.15.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03090412.xhp#par_id3151113.16.help.text
+msgctxt "03090412.xhp#par_id3151113.16.help.text"
+msgid "Sub ExampleExit"
+msgstr "Sub EjemploSalida"
+
+#: 03090412.xhp#par_id3156283.17.help.text
+msgctxt "03090412.xhp#par_id3156283.17.help.text"
+msgid "Dim sReturn As String"
+msgstr "Dim sRetorno As String"
+
+#: 03090412.xhp#par_id3147125.18.help.text
+msgctxt "03090412.xhp#par_id3147125.18.help.text"
+msgid "Dim sListArray(10) as String"
+msgstr "Dim sMatrizLista(10) as String"
+
+#: 03090412.xhp#par_id3151073.19.help.text
+msgctxt "03090412.xhp#par_id3151073.19.help.text"
+msgid "Dim siStep as Single"
+msgstr "Dim siPaso as Single"
+
+#: 03090412.xhp#par_id3153158.20.help.text
+msgctxt "03090412.xhp#par_id3153158.20.help.text"
+msgid "For siStep = 0 to 10 REM Fill array with test data"
+msgstr "For siPaso = 0 to 10 REM Rellenar matriz con datos de prueba"
+
+#: 03090412.xhp#par_id3148457.21.help.text
+msgid "sListArray(siStep) = chr(siStep + 65)"
+msgstr "sMatrizLista(siPaso) = chr$(siPaso + 65)"
+
+#: 03090412.xhp#par_id3154492.22.help.text
+msgctxt "03090412.xhp#par_id3154492.22.help.text"
+msgid "msgbox sListArray(siStep)"
+msgstr "msgbox sMatrizLista(siPaso)"
+
+#: 03090412.xhp#par_id3154791.23.help.text
+msgctxt "03090412.xhp#par_id3154791.23.help.text"
+msgid "next siStep"
+msgstr "next siPaso"
+
+#: 03090412.xhp#par_id3153510.24.help.text
+msgctxt "03090412.xhp#par_id3153510.24.help.text"
+msgid "sReturn = LinSearch(sListArray(), \"B\")"
+msgstr "sRetorno = BuscaLin(sMatrizLista(), \"B\")"
+
+#: 03090412.xhp#par_id3154513.25.help.text
+msgctxt "03090412.xhp#par_id3154513.25.help.text"
+msgid "Print sReturn"
+msgstr "Print sRetorno"
+
+#: 03090412.xhp#par_id3149121.26.help.text
+msgctxt "03090412.xhp#par_id3149121.26.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03090412.xhp#par_id3152962.29.help.text
+msgctxt "03090412.xhp#par_id3152962.29.help.text"
+msgid "Function LinSearch( sList(), sItem As String ) as integer"
+msgstr "Function BuscaLin( sLista(), sElem As String ) as integer"
+
+#: 03090412.xhp#par_id3154755.30.help.text
+msgctxt "03090412.xhp#par_id3154755.30.help.text"
+msgid "dim iCount as Integer"
+msgstr "dim iContador as Integer"
+
+#: 03090412.xhp#par_id3153764.31.help.text
+msgid "REM LinSearch searches a TextArray:sList() for a TextEntry:"
+msgstr "REM BuscaLin busca en MatrizTexto:sLista() una EntradaTexto:"
+
+#: 03090412.xhp#par_id3148995.32.help.text
+msgid "REM Returns the index of the entry or 0 ( Null)"
+msgstr "REM Devuelve el índice de la entrada o 0 (Nulo)"
+
+#: 03090412.xhp#par_id3156057.33.help.text
+msgctxt "03090412.xhp#par_id3156057.33.help.text"
+msgid "for iCount=1 to Ubound( sList() )"
+msgstr "for iContador=1 to Ubound( sLista() )"
+
+#: 03090412.xhp#par_id3159266.34.help.text
+msgctxt "03090412.xhp#par_id3159266.34.help.text"
+msgid "if sList( iCount ) = sItem then"
+msgstr "if sLista( iContador ) = sElemen then"
+
+#: 03090412.xhp#par_id3149567.35.help.text
+msgid "Exit for REM sItem found"
+msgstr "Exit for REM encontrado sElemen"
+
+#: 03090412.xhp#par_id3147343.36.help.text
+msgctxt "03090412.xhp#par_id3147343.36.help.text"
+msgid "end if"
+msgstr "end if"
+
+#: 03090412.xhp#par_id3155174.37.help.text
+msgctxt "03090412.xhp#par_id3155174.37.help.text"
+msgid "next iCount"
+msgstr "next iContador"
+
+#: 03090412.xhp#par_id3146313.38.help.text
+msgctxt "03090412.xhp#par_id3146313.38.help.text"
+msgid "if iCount = Ubound( sList() ) then iCount = 0"
+msgstr "if iContador = Ubound( sLista() ) then iContador = 0"
+
+#: 03090412.xhp#par_id3166448.39.help.text
+msgctxt "03090412.xhp#par_id3166448.39.help.text"
+msgid "LinSearch = iCount"
+msgstr "BuscaLin = iContador"
+
+#: 03090412.xhp#par_id3146916.40.help.text
+msgctxt "03090412.xhp#par_id3146916.40.help.text"
+msgid "end function"
+msgstr "end function"
+
+#: 03101120.xhp#tit.help.text
+msgid "DefErr Statement [Runtime]"
+msgstr "Instrucción DefErr [Ejecución]"
+
+#: 03101120.xhp#bm_id8177739.help.text
+msgid "<bookmark_value>DefErr statement</bookmark_value>"
+msgstr "<bookmark_value>Instrucción DefErr</bookmark_value>"
+
+#: 03101120.xhp#par_idN1057D.help.text
+msgid "<link href=\"text/sbasic/shared/03101120.xhp\">DefErr Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101120.xhp\">Instrucción DefErr [Ejecución]</link>"
+
+#: 03101120.xhp#par_idN1058D.help.text
+msgid "If no type-declaration character or keyword is specified, the DefErr statement sets the default variable type, according to a letter range."
+msgstr "Si no se especifica palabra clave ni carácter de tipo de declaración, la instrucción DefErr establece el tipo de variable predeterminado según un intervalo de letras."
+
+#: 03101120.xhp#par_idN10590.help.text
+msgctxt "03101120.xhp#par_idN10590.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03101120.xhp#par_idN10594.help.text
+msgctxt "03101120.xhp#par_idN10594.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
+
+#: 03101120.xhp#par_idN10597.help.text
+msgctxt "03101120.xhp#par_idN10597.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03101120.xhp#par_idN1059B.help.text
+msgctxt "03101120.xhp#par_idN1059B.help.text"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Characterrange:</emph> letras que especifican el intervalo de las variables para las que desea establecer un tipo de datos predeterminado."
+
+#: 03101120.xhp#par_idN105A2.help.text
+msgctxt "03101120.xhp#par_idN105A2.help.text"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> palabra clave que define el tipo de variable predeterminado."
+
+#: 03101120.xhp#par_idN105A9.help.text
+msgctxt "03101120.xhp#par_idN105A9.help.text"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Palabra clave:</emph> tipo de variable predeterminado"
+
+#: 03101120.xhp#par_idN105B0.help.text
+msgid "<emph>DefErr:</emph> Error"
+msgstr "<emph>DefErr:</emph> Error"
+
+#: 03101120.xhp#par_idN105B7.help.text
+msgctxt "03101120.xhp#par_idN105B7.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03101120.xhp#par_idN105BB.help.text
+msgctxt "03101120.xhp#par_idN105BB.help.text"
+msgid "REM Prefix definitions for variable types:"
+msgstr "Definiciones de prefijos REM para tipos de variables:"
+
+#: 03101120.xhp#par_idN105BE.help.text
+msgctxt "03101120.xhp#par_idN105BE.help.text"
+msgid "DefBool b"
+msgstr "DefBool b"
+
+#: 03101120.xhp#par_idN105C1.help.text
+msgctxt "03101120.xhp#par_idN105C1.help.text"
+msgid "DefDate t"
+msgstr "DefDate t"
+
+#: 03101120.xhp#par_idN105C4.help.text
+msgctxt "03101120.xhp#par_idN105C4.help.text"
+msgid "DefDbL d"
+msgstr "DefDbL d"
+
+#: 03101120.xhp#par_idN105C7.help.text
+msgctxt "03101120.xhp#par_idN105C7.help.text"
+msgid "DefInt i"
+msgstr "DefInt i"
+
+#: 03101120.xhp#par_idN105CA.help.text
+msgctxt "03101120.xhp#par_idN105CA.help.text"
+msgid "DefLng l"
+msgstr "DefLng l"
+
+#: 03101120.xhp#par_idN105CD.help.text
+msgctxt "03101120.xhp#par_idN105CD.help.text"
+msgid "DefObj o"
+msgstr "DefObj o"
+
+#: 03101120.xhp#par_idN105D0.help.text
+msgctxt "03101120.xhp#par_idN105D0.help.text"
+msgid "DefVar v"
+msgstr "DefVar v"
+
+#: 03101120.xhp#par_idN105D3.help.text
+msgid "DefErr e"
+msgstr "DefErr e"
+
+#: 03101120.xhp#par_idN105D6.help.text
+msgid "Sub ExampleDefErr"
+msgstr "Sub ExampleDefErr"
+
+#: 03101120.xhp#par_idN105D9.help.text
+msgid "eErr=Error REM eErr is an implicit error variable"
+msgstr "eErr=Error REM eErr es un error de variable implícito"
+
+#: 03101120.xhp#par_idN105DC.help.text
+msgctxt "03101120.xhp#par_idN105DC.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03101600.xhp#tit.help.text
+msgid "DefLng Statement [Runtime]"
+msgstr "Instrucción DefLng [Ejecución]"
+
+#: 03101600.xhp#bm_id3148538.help.text
+msgid "<bookmark_value>DefLng statement</bookmark_value>"
+msgstr "<bookmark_value>DefLng;instrucción</bookmark_value>"
+
+#: 03101600.xhp#hd_id3148538.1.help.text
+msgid "<link href=\"text/sbasic/shared/03101600.xhp\" name=\"DefLng Statement [Runtime]\">DefLng Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101600.xhp\" name=\"DefLng Statement [Runtime]\">Instrucción DefLng [Ejecución]</link>"
+
+#: 03101600.xhp#par_id3149514.2.help.text
+msgctxt "03101600.xhp#par_id3149514.2.help.text"
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr "Establece el tipo de variable predeterminado, de acuerdo con un rango de letras, a no ser que se especifique un carácter o palabra clave de declaración de tipo."
+
+#: 03101600.xhp#hd_id3150504.3.help.text
+msgctxt "03101600.xhp#hd_id3150504.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03101600.xhp#par_id3145609.4.help.text
+msgctxt "03101600.xhp#par_id3145609.4.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx RangoCarácter1[, RangoCarácter2[,...]]"
+
+#: 03101600.xhp#hd_id3154760.5.help.text
+msgctxt "03101600.xhp#hd_id3154760.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03101600.xhp#par_id3145069.6.help.text
+msgctxt "03101600.xhp#par_id3145069.6.help.text"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgstr "<emph>RangoCarácter:</emph> Letras que especifican el rango de variables para las que desee establecer el tipo de datos predeterminado."
+
+#: 03101600.xhp#par_id3150791.7.help.text
+msgctxt "03101600.xhp#par_id3150791.7.help.text"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Palabra clave que define el tipo de variable predeterminada:"
+
+#: 03101600.xhp#par_id3148798.8.help.text
+msgctxt "03101600.xhp#par_id3148798.8.help.text"
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr "<emph>Palabra clave: Tipo de variable predeterminada</emph>"
+
+#: 03101600.xhp#par_id3154686.9.help.text
+msgid "<emph>DefLng:</emph> Long"
+msgstr "<emph>DefLng:</emph> Largo"
+
+#: 03101600.xhp#hd_id3153192.10.help.text
+msgctxt "03101600.xhp#hd_id3153192.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03101600.xhp#par_id3154124.12.help.text
+msgctxt "03101600.xhp#par_id3154124.12.help.text"
+msgid "REM Prefix definitions for variable types:"
+msgstr "REM Añadir prefijo a definiciones para tipos de variable:"
+
+#: 03101600.xhp#par_id3156424.13.help.text
+msgctxt "03101600.xhp#par_id3156424.13.help.text"
+msgid "DefBool b"
+msgstr "DefBool b"
+
+#: 03101600.xhp#par_id3147288.14.help.text
+msgctxt "03101600.xhp#par_id3147288.14.help.text"
+msgid "DefDate t"
+msgstr "DefDate t"
+
+#: 03101600.xhp#par_id3149561.15.help.text
+msgctxt "03101600.xhp#par_id3149561.15.help.text"
+msgid "DefDbL d"
+msgstr "DefDbL d"
+
+#: 03101600.xhp#par_id3153092.16.help.text
+msgctxt "03101600.xhp#par_id3153092.16.help.text"
+msgid "DefInt i"
+msgstr "DefInt i"
+
+#: 03101600.xhp#par_id3148616.17.help.text
+msgctxt "03101600.xhp#par_id3148616.17.help.text"
+msgid "DefLng l"
+msgstr "DefLng l"
+
+#: 03101600.xhp#par_id3153189.18.help.text
+msgctxt "03101600.xhp#par_id3153189.18.help.text"
+msgid "DefObj o"
+msgstr "DefObj o"
+
+#: 03101600.xhp#par_id3152576.19.help.text
+msgctxt "03101600.xhp#par_id3152576.19.help.text"
+msgid "DefVar v"
+msgstr "DefVar v"
+
+#: 03101600.xhp#par_id3146121.21.help.text
+msgid "Sub ExampleDefLng"
+msgstr "Sub EjemploDefLng"
+
+#: 03101600.xhp#par_id3145273.22.help.text
+msgid "lCount=123456789 REM lCount is an implicit long integer variable"
+msgstr "lCount=123456789 REM lCount es una variable entera larga implícita"
+
+#: 03101600.xhp#par_id3152596.23.help.text
+msgctxt "03101600.xhp#par_id3152596.23.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03020402.xhp#tit.help.text
+msgid "ChDrive Statement [Runtime]"
+msgstr "Función ChDrive [Ejecución]"
+
+#: 03020402.xhp#bm_id3145068.help.text
+msgid "<bookmark_value>ChDrive statement</bookmark_value>"
+msgstr "<bookmark_value>Declaración ChDrive</bookmark_value>"
+
+#: 03020402.xhp#hd_id3145068.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"ChDrive Statement [Runtime]\">ChDrive Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"Declaración ChDrive [Runtime]\">Declaración ChDrive [Ejecución]</link>"
+
+#: 03020402.xhp#par_id3149656.2.help.text
+msgid "Changes the current drive."
+msgstr "Cambia la unidad actual."
+
+#: 03020402.xhp#hd_id3154138.3.help.text
+msgctxt "03020402.xhp#hd_id3154138.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03020402.xhp#par_id3154685.4.help.text
+msgid "ChDrive Text As String"
+msgstr "ChDrive Texto As String"
+
+#: 03020402.xhp#hd_id3156423.5.help.text
+msgctxt "03020402.xhp#hd_id3156423.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03020402.xhp#par_id3145172.6.help.text
+msgid "<emph>Text:</emph> Any string expression that contains the drive letter of the new drive. If you want, you can use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>Texto:</emph> Cualquier expresión de cadena que contenga la letra de la unidad nueva. Si se desea, puede usarse la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notación URL\">notación URL</link>."
+
+#: 03020402.xhp#par_id3145785.7.help.text
+msgid "The drive must be assigned a capital letter. Under Windows, the letter that you assign the drive is restricted by the settings in LASTDRV. If the drive argument is a multiple-character string, only the first letter is relevant. If you attempt to access a non-existent drive, an error occurs that you can respond to with the OnError statement."
+msgstr "La unidad debe tener asignada una letra mayúscula. En Windows, la letra que se asigna a la unidad está restringida por el valor de LASTDRV. Si el argumento de unidad es una cadena de varios caracteres, sólo es relevante la primera letra. Si se intenta acceder a una unidad no existente, se produce un error al que se puede responder con la instrucción OnError."
+
+#: 03020402.xhp#hd_id3153188.8.help.text
+msgctxt "03020402.xhp#hd_id3153188.8.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03020402.xhp#par_id3151113.9.help.text
+msgid "Sub ExampleCHDrive"
+msgstr "Sub EjemploCHDrive"
+
+#: 03020402.xhp#par_id3152576.10.help.text
+msgid "ChDrive \"D\" REM Only possible if a drive 'D' exists."
+msgstr "ChDrive \"D\" REM Sólo es posible si la unidad 'D' existe."
+
+#: 03020402.xhp#par_id3156441.11.help.text
+msgctxt "03020402.xhp#par_id3156441.11.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03030100.xhp#tit.help.text
+msgid "Converting Date Values"
+msgstr "Conversión de valores de fechas"
+
+#: 03030100.xhp#hd_id3147573.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030100.xhp\" name=\"Converting Date Values\">Converting Date Values</link>"
+msgstr "<link href=\"text/sbasic/shared/03030100.xhp\" name=\"Conversión de valores de fechas\">Conversión de valores de fechas</link>"
+
+#: 03030100.xhp#par_id3154760.2.help.text
+msgid "The following functions convert date values to calculable numbers and back."
+msgstr "Las funciones siguientes convierten valores de fecha para calcular números y viceversa."
+
+#: 03103400.xhp#tit.help.text
+msgid "Public Statement [Runtime]"
+msgstr "Instrucción Public [Ejecución]"
+
+#: 03103400.xhp#bm_id3153311.help.text
+msgid "<bookmark_value>Public statement</bookmark_value>"
+msgstr "<bookmark_value>Public;instrucción</bookmark_value>"
+
+#: 03103400.xhp#hd_id3153311.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103400.xhp\" name=\"Public Statement [Runtime]\">Public Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103400.xhp\" name=\"Public Statement [Runtime]\">Instrucción Public [Ejecución]</link>"
+
+#: 03103400.xhp#par_id3150669.2.help.text
+msgid "Dimensions a variable or an array at the module level (that is, not within a subroutine or function), so that the variable and the array are valid in all libraries and modules."
+msgstr "Dimensiona una variable o una matriz de un módulo (es decir, no dentro de una subrutina o función) de manera que resulten válidas en todas las bibliotecas y módulos."
+
+#: 03103400.xhp#hd_id3150772.3.help.text
+msgctxt "03103400.xhp#hd_id3150772.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03103400.xhp#par_id3155341.4.help.text
+msgid "Public VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
+msgstr "Public NombreVar[(inicio To final)] [As TipoVar][, NombreVar2[(inicio To final)] [As TipoVar][,...]]"
+
+#: 03103400.xhp#hd_id3145315.5.help.text
+msgctxt "03103400.xhp#hd_id3145315.5.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03103400.xhp#par_id3156024.6.help.text
+msgid "Public iPublicVar As Integer"
+msgstr "Public iPublicVar As Integer"
+
+#: 03103400.xhp#par_id3153896.8.help.text
+msgid "Sub ExamplePublic"
+msgstr "Sub EjemploPublic"
+
+#: 03103400.xhp#par_id3149656.9.help.text
+msgid "iPublicVar = iPublicVar + 1"
+msgstr "iPublicVar = iPublicVar + 1"
+
+#: 03103400.xhp#par_id3150359.10.help.text
+msgid "MsgBox iPublicVar"
+msgstr "MsgBox iPublicVar"
+
+#: 03103400.xhp#par_id3154365.11.help.text
+msgctxt "03103400.xhp#par_id3154365.11.help.text"
+msgid "End sub"
+msgstr "End sub"
+
+#: 03070600.xhp#tit.help.text
+msgid "Mod-Operator [Runtime]"
+msgstr "Operador Mod [Ejecución]"
+
+#: 03070600.xhp#bm_id3150669.help.text
+msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>MOD;operadores matemáticos</bookmark_value>"
+
+#: 03070600.xhp#hd_id3150669.1.help.text
+msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod-Operator [Runtime]\">Mod Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Operador Mod [Runtime]\">Operador Mod [Ejecución]</link>"
+
+#: 03070600.xhp#par_id3148686.2.help.text
+msgid "Returns the integer remainder of a division."
+msgstr "Devuelve el resto entero de una división."
+
+#: 03070600.xhp#hd_id3146795.3.help.text
+msgctxt "03070600.xhp#hd_id3146795.3.help.text"
+msgid "Syntax:"
+msgstr "<emph>Sintaxis</emph>:"
+
+#: 03070600.xhp#par_id3147560.4.help.text
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Resultado = Expresión1 MOD Expresión2"
+
+#: 03070600.xhp#hd_id3149657.5.help.text
+msgctxt "03070600.xhp#hd_id3149657.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03070600.xhp#par_id3153380.6.help.text
+msgctxt "03070600.xhp#par_id3153380.6.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03070600.xhp#hd_id3154365.7.help.text
+msgctxt "03070600.xhp#hd_id3154365.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03070600.xhp#par_id3145172.8.help.text
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
+msgstr "<emph>Resultado:</emph> Cualquier variable numérica que contenga el resultado de la operación MOD."
+
+#: 03070600.xhp#par_id3151042.9.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
+msgstr "<emph>Expresión1, Expresión2:</emph> Las expresiones numéricas que se desea dividir."
+
+#: 03070600.xhp#hd_id3147287.10.help.text
+msgctxt "03070600.xhp#hd_id3147287.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03070600.xhp#par_id3153770.11.help.text
+msgid "sub ExampleMod"
+msgstr "sub EjemploMod"
+
+#: 03070600.xhp#par_id3161832.12.help.text
+msgid "print 10 mod 2.5 REM returns 0"
+msgstr "print 10 mod 2.5 REM devuelve 0"
+
+#: 03070600.xhp#par_id3146922.13.help.text
+msgid "print 10 / 2.5 REM returns 4"
+msgstr "print 10 / 2.5 REM devuelve 4"
+
+#: 03070600.xhp#par_id3145273.14.help.text
+msgid "print 10 mod 5 REM returns 0"
+msgstr "print 10 mod 5 REM devuelve 0"
+
+#: 03070600.xhp#par_id3150011.15.help.text
+msgid "print 10 / 5 REM returns 2"
+msgstr "print 10 / 5 REM devuelve 2"
+
+#: 03070600.xhp#par_id3149483.16.help.text
+msgid "print 5 mod 10 REM returns 5"
+msgstr "print 5 mod 10 REM devuelve 5"
+
+#: 03070600.xhp#par_id3151114.17.help.text
+msgid "print 5 / 10 REM returns 0.5"
+msgstr "print 5 / 10 REM devuelve 0,5"
+
+#: 03070600.xhp#par_id3154013.18.help.text
+msgctxt "03070600.xhp#par_id3154013.18.help.text"
+msgid "end sub"
+msgstr "End Sub"
+
+#: 01170103.xhp#tit.help.text
+msgid "Events"
+msgstr "Acontecimientos"
+
+#: 01170103.xhp#hd_id3155506.1.help.text
+msgid "<link href=\"text/sbasic/shared/01170103.xhp\" name=\"Events\">Events</link>"
+msgstr "<link href=\"text/sbasic/shared/01170103.xhp\" name=\"Acciones\">Acciones</link>"
+
+#: 01170103.xhp#par_id3146114.2.help.text
+msgid "Define event assignments for the selected control or dialog. The available events depend on the type of control selected."
+msgstr "Defina asignaciones de acciones para el campo de control o diálogo seleccionados. Las acciones disponibles dependen del tipo de campo de control seleccionado."
+
+#: 01170103.xhp#hd_id3145387.16.help.text
+msgid "When receiving focus"
+msgstr "Al recibir el enfoque"
+
+#: 01170103.xhp#par_id3155090.17.help.text
+msgid "<ahelp hid=\"HID_EVT_FOCUSGAINED\">This event takes place if a control receives the focus.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_FOCUSGAINED\">Este evento tiene lugar si un control recibe el foco.</ahelp>"
+
+#: 01170103.xhp#hd_id3152892.18.help.text
+msgid "When losing focus"
+msgstr "Al cargar el enfoque"
+
+#: 01170103.xhp#par_id3153305.19.help.text
+msgid "<ahelp hid=\"HID_EVT_FOCUSLOST\">This event takes place if a control loses the focus.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_FOCUSLOST\">Este evento tiene lugar si un control pierde el foco.</ahelp>"
+
+#: 01170103.xhp#hd_id3152896.20.help.text
+msgid "Key pressed"
+msgstr "Tecla pulsada"
+
+#: 01170103.xhp#par_id3148837.21.help.text
+msgid "<ahelp hid=\"HID_EVT_KEYTYPED\">This event occurs when the user presses any key while the control has the focus.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_KEYTYPED\">Este evento tiene lugar cuando el usuario pulsa una tecla cuando el campo de control tiene el foco.</ahelp>"
+
+#: 01170103.xhp#hd_id3146869.43.help.text
+msgid "Key released"
+msgstr "Tecla suelta"
+
+#: 01170103.xhp#par_id3155267.44.help.text
+msgid "<ahelp hid=\"HID_EVT_KEYUP\">This event occurs when the user releases a key while the control has the focus.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_KEYUP\">Este evento tiene lugar cuando el usuario suelta una tecla mientras el control tiene el foco.</ahelp>"
+
+#: 01170103.xhp#hd_id3159096.41.help.text
+msgid "Modified"
+msgstr "Modificado"
+
+#: 01170103.xhp#par_id3156019.42.help.text
+msgid "<ahelp hid=\"HID_EVT_CHANGED\">This event takes place, when the control loses the focus and the contents of the control were changed since it lost the focus.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_CHANGED\">Este evento tiene lugar si el control pierde el foco y el contenido del control cambia desde que perdió el foco.</ahelp>"
+
+#: 01170103.xhp#hd_id3144508.10.help.text
+msgid "Text modified"
+msgstr "Texto modificado"
+
+#: 01170103.xhp#par_id3148608.11.help.text
+msgid "<ahelp hid=\"HID_EVT_TEXTCHANGED\">This event takes place if you enter or modify a text in an input field.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_TEXTCHANGED\">Este evento tiene lugar si se introduce o modifica un texto en un campo de entrada.</ahelp>"
+
+#: 01170103.xhp#hd_id3159207.8.help.text
+msgid "Item status changed"
+msgstr "Estado modificado"
+
+#: 01170103.xhp#par_id3155097.9.help.text
+msgid "<ahelp hid=\"HID_EVT_ITEMSTATECHANGED\">This event takes place if the status of the control field is changed, for example, from checked to unchecked.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_ITEMSTATECHANGED\">Este evento tiene lugar si el estado del campo de control ha cambiado, por ejemplo, de marcado a desmarcado.</ahelp>"
+
+#: 01170103.xhp#hd_id3151304.26.help.text
+msgid "Mouse inside"
+msgstr "Ratón dentro"
+
+#: 01170103.xhp#par_id3152871.27.help.text
+msgid "<ahelp hid=\"HID_EVT_MOUSEENTERED\">This event takes place when the mouse enters the control.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEENTERED\">Este evento tiene lugar cuando el ratón entra en el control.</ahelp>"
+
+#: 01170103.xhp#hd_id3146778.30.help.text
+msgid "Mouse moved while key pressed"
+msgstr "Ratón movido con la tecla pulsada"
+
+#: 01170103.xhp#par_id3150403.31.help.text
+msgid "<ahelp hid=\"HID_EVT_MOUSEDRAGGED\">This event takes place when the mouse is dragged while a key is pressed.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEDRAGGED\">Este evento tiene lugar cuando el ratón se arrastra con una tecla pulsada.</ahelp>"
+
+#: 01170103.xhp#hd_id3150210.32.help.text
+msgid "Mouse moved"
+msgstr "Ratón movido"
+
+#: 01170103.xhp#par_id3149697.33.help.text
+msgid "<ahelp hid=\"HID_EVT_MOUSEMOVED\">This event takes place when the mouse moves over the control.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEMOVED\">Este evento tiene lugar cuando el ratón se mueve sobre el control.</ahelp>"
+
+#: 01170103.xhp#hd_id3145216.22.help.text
+msgid "Mouse button pressed"
+msgstr "Botón del ratón pulsado"
+
+#: 01170103.xhp#par_id3155914.23.help.text
+msgid "<ahelp hid=\"HID_EVT_MOUSEPRESSED\">This event takes place when the mouse button is pressed while the mouse pointer is on the control.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEPRESSED\">Este evento tiene lugar cuando se suelta el botón del ratón mientras el puntero se encuentra sobre el control.</ahelp>"
+
+#: 01170103.xhp#hd_id3148899.24.help.text
+msgid "Mouse button released"
+msgstr "Botón del ratón soltado"
+
+#: 01170103.xhp#par_id3153812.25.help.text
+msgid "<ahelp hid=\"HID_EVT_MOUSERELEASED\">This event takes place when the mouse button is released while the mouse pointer is on the control.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSERELEASED\">Este evento tiene lugar cuando se suelta el botón del ratón mientras el puntero se encuentra sobre el control.</ahelp>"
+
+#: 01170103.xhp#hd_id3153556.28.help.text
+msgid "Mouse outside"
+msgstr "Ratón fuera"
+
+#: 01170103.xhp#par_id3153013.29.help.text
+msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when the mouse leaves the control.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEEXITED\">Este evento tiene lugar cuando el ratón sale del control.</ahelp>"
+
+#: 01170103.xhp#hd_id3155759.45.help.text
+msgid "While adjusting"
+msgstr "Al ajustar"
+
+#: 01170103.xhp#par_id3156364.46.help.text
+msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when a scrollbar is being dragged.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEEXITED\">Este evento tiene lugar cuando se arrastra una barra de desplazamiento.</ahelp>"
+
+#: 03110100.xhp#tit.help.text
+msgid "Comparison Operators [Runtime]"
+msgstr "Operadores de comparación [Ejecución]"
+
+#: 03110100.xhp#bm_id3150682.help.text
+msgid "<bookmark_value>comparison operators;%PRODUCTNAME Basic</bookmark_value><bookmark_value>operators;comparisons</bookmark_value>"
+msgstr "<bookmark_value>operadores de comparación;%PRODUCTNAME Basic</bookmark_value><bookmark_value>operadores;comparaciones</bookmark_value>"
+
+#: 03110100.xhp#hd_id3150682.1.help.text
+msgid "<link href=\"text/sbasic/shared/03110100.xhp\" name=\"Comparison Operators [Runtime]\">Comparison Operators [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03110100.xhp\" name=\"Comparison Operators [Runtime]\">Operadores de comparación [Ejecución]</link>"
+
+#: 03110100.xhp#par_id3156042.2.help.text
+msgid "Comparison operators compare two expressions. The result is returned as a Boolean expression that determines if the comparison is True (-1) or False (0)."
+msgstr "Los operadores de comparación comparan dos expresiones. El resultado se devuelve como expresión lógica que determina si la comparación es cierta (-1) o falsa (0)."
+
+#: 03110100.xhp#hd_id3147291.3.help.text
+msgctxt "03110100.xhp#hd_id3147291.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03110100.xhp#par_id3149177.4.help.text
+msgid "Result = Expression1 { = | < | > | <= | >= } Expression2"
+msgstr "Resultado = Expresión1 { = | < | > | <= | >= } Expresión2"
+
+#: 03110100.xhp#hd_id3145316.5.help.text
+msgctxt "03110100.xhp#hd_id3145316.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03110100.xhp#par_id3147573.6.help.text
+msgid "<emph>Result:</emph> Boolean expression that specifies the result of the comparison (True, or False)"
+msgstr "<emph>Resultado:</emph> Expresión lógica que especifica el resultado de la comparación (cierto o falso)"
+
+#: 03110100.xhp#par_id3148686.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any numeric values or strings that you want to compare."
+msgstr "<emph>Expresión1, Expresión2:</emph> Cualquier valor numérico o cadena que se desee comparar."
+
+#: 03110100.xhp#hd_id3147531.8.help.text
+msgid "Comparison operators"
+msgstr "Operadores de comparación"
+
+#: 03110100.xhp#par_id3147265.9.help.text
+msgid "= : Equal to"
+msgstr "= : Igual a"
+
+#: 03110100.xhp#par_id3154924.10.help.text
+msgid "< : Less than"
+msgstr "< : Menor que"
+
+#: 03110100.xhp#par_id3146795.11.help.text
+msgid "> : Greater than"
+msgstr "> : Mayor que"
+
+#: 03110100.xhp#par_id3150541.12.help.text
+msgid "<= : Less than or equal to"
+msgstr "<= : Menor o igual que"
+
+#: 03110100.xhp#par_id3150400.13.help.text
+msgid ">= : Greater than or equal to"
+msgstr ">= : Mayor o igual que"
+
+#: 03110100.xhp#par_id3148797.14.help.text
+msgid "<> : Not equal to"
+msgstr "<> : Distinto de"
+
+#: 03110100.xhp#hd_id3154686.15.help.text
+msgctxt "03110100.xhp#hd_id3154686.15.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03110100.xhp#par_id3153969.16.help.text
+msgid "Sub ExampleUnequal"
+msgstr "Sub EjemploDistinto"
+
+#: 03110100.xhp#par_id3159151.17.help.text
+msgid "DIM sFile As String"
+msgstr "DIM sArchivo As String"
+
+#: 03110100.xhp#par_id3154909.18.help.text
+msgid "DIM sRoot As String REM ' Root directory for file in and output"
+msgstr "DIM sRaiz As String REM ' Directorio raíz para entrada y salida de archivo"
+
+#: 03110100.xhp#par_id3150767.19.help.text
+msgid "sRoot = \"c:\\\""
+msgstr "sRaiz = \"c:\\\""
+
+#: 03110100.xhp#par_id3154125.20.help.text
+msgid "sFile = Dir$( sRoot ,22)"
+msgstr "sArchivo = Dir$( sRaiz ,22)"
+
+#: 03110100.xhp#par_id3150440.21.help.text
+msgctxt "03110100.xhp#par_id3150440.21.help.text"
+msgid "If sFile <> \"\" Then"
+msgstr "If sArchivo <>\"\" Then"
+
+#: 03110100.xhp#par_id3147288.22.help.text
+msgctxt "03110100.xhp#par_id3147288.22.help.text"
+msgid "Do"
+msgstr "Do"
+
+#: 03110100.xhp#par_id3150010.23.help.text
+msgid "Msgbox sFile"
+msgstr "MsgBox sArchivo"
+
+#: 03110100.xhp#par_id3153727.24.help.text
+msgctxt "03110100.xhp#par_id3153727.24.help.text"
+msgid "sFile = Dir$"
+msgstr "sArchivo = Dir$"
+
+#: 03110100.xhp#par_id3149664.25.help.text
+msgctxt "03110100.xhp#par_id3149664.25.help.text"
+msgid "Loop Until sFile = \"\""
+msgstr "Loop Until sArchivo = \"\""
+
+#: 03110100.xhp#par_id3146986.26.help.text
+msgctxt "03110100.xhp#par_id3146986.26.help.text"
+msgid "End If"
+msgstr "End If"
+
+#: 03110100.xhp#par_id3153952.27.help.text
+msgctxt "03110100.xhp#par_id3153952.27.help.text"
+msgid "End sub"
+msgstr "End sub"
+
+#: 03080104.xhp#tit.help.text
+msgid "Tan Function [Runtime]"
+msgstr "Función Tan [Ejecución]"
+
+#: 03080104.xhp#bm_id3148550.help.text
+msgid "<bookmark_value>Tan function</bookmark_value>"
+msgstr "<bookmark_value>Tan;función</bookmark_value>"
+
+#: 03080104.xhp#hd_id3148550.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080104.xhp\" name=\"Tan Function [Runtime]\">Tan Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080104.xhp\" name=\"Función Tan [Runtime]\">Función Tan [Ejecución]</link>"
+
+#: 03080104.xhp#par_id3148663.2.help.text
+msgid "Determines the tangent of an angle. The angle is specified in radians."
+msgstr "Calcula la tangente de un ángulo. El ángulo se devuelve en radianes."
+
+#: 03080104.xhp#par_id3153379.3.help.text
+msgid "Using the angle Alpha, the Tan Function calculates the ratio of the length of the side opposite the angle to the length of the side adjacent to the angle in a right-angled triangle."
+msgstr "Usando el ángulo Alfa, la función Tan calcula el coeficiente de la longitud del lado opuesto al ángulo con la longitud del lado adyacente al ángulo en un triángulo rectángulo."
+
+#: 03080104.xhp#par_id3154366.4.help.text
+msgid "Tan(Alpha) = side opposite the angle/side adjacent to angle"
+msgstr "Tan(Alpha) = lado opuesto al ángulo/lado adyacente al ángulo"
+
+#: 03080104.xhp#hd_id3145174.5.help.text
+msgctxt "03080104.xhp#hd_id3145174.5.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03080104.xhp#par_id3151042.6.help.text
+msgid "Tan (Number)"
+msgstr "Tan (Número)"
+
+#: 03080104.xhp#hd_id3156214.7.help.text
+msgctxt "03080104.xhp#hd_id3156214.7.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03080104.xhp#par_id3156281.8.help.text
+msgctxt "03080104.xhp#par_id3156281.8.help.text"
+msgid "Double"
+msgstr "Doble"
+
+#: 03080104.xhp#hd_id3155132.9.help.text
+msgctxt "03080104.xhp#hd_id3155132.9.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03080104.xhp#par_id3145786.10.help.text
+msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the tangent for (in radians)."
+msgstr "<emph>Número:</emph> Cualquier expresión numérica de la que se desee calcular la tangente (en radianes)."
+
+#: 03080104.xhp#par_id3153728.11.help.text
+msgid "To convert degrees to radians, multiply by Pi/180. To convert radians to degrees, multiply by 180/Pi."
+msgstr "Para convertir grados en radianes, multiplique por pi/180. Para convertir radianes en grados, multiplique por 180/Pi."
+
+#: 03080104.xhp#par_id3155414.12.help.text
+msgid "degrees=(radiant*180)/Pi"
+msgstr "grado=(radianes*180)/pi"
+
+#: 03080104.xhp#par_id3146975.13.help.text
+msgid "radiant=(degrees*Pi)/180"
+msgstr "radián=(grado*pi)/180"
+
+#: 03080104.xhp#par_id3147434.14.help.text
+msgctxt "03080104.xhp#par_id3147434.14.help.text"
+msgid "Pi is approximately 3.141593."
+msgstr "Pi es aproximadamente 3,141593."
+
+#: 03080104.xhp#hd_id3149483.15.help.text
+msgctxt "03080104.xhp#hd_id3149483.15.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03080104.xhp#par_id3148646.16.help.text
+msgctxt "03080104.xhp#par_id3148646.16.help.text"
+msgid "REM In this example, the following entry is possible for a right-angled triangle:"
+msgstr "REM En este ejemplo, la entrada siguiente es posible para un triángulo rectángulo:"
+
+#: 03080104.xhp#par_id3150012.17.help.text
+msgid "REM The side opposite the angle and the angle (in degrees) to calculate the length of the side adjacent to the angle:"
+msgstr "REM El lado opuesto al ángulo y éste (en grados) para calcular la longitud del lado adyacente al ángulo:"
+
+#: 03080104.xhp#par_id3151115.18.help.text
+msgid "Sub ExampleTangens"
+msgstr "Sub EjemploTangentes"
+
+#: 03080104.xhp#par_id3153158.19.help.text
+msgid "REM Pi = 3.1415926 is a pre-defined variable"
+msgstr "REM Pi = 3,1415926 es un valor predefinido"
+
+#: 03080104.xhp#par_id3145800.20.help.text
+msgctxt "03080104.xhp#par_id3145800.20.help.text"
+msgid "Dim d1 as Double"
+msgstr "Dim d1 As Double"
+
+#: 03080104.xhp#par_id3150417.21.help.text
+msgctxt "03080104.xhp#par_id3150417.21.help.text"
+msgid "Dim dAlpha as Double"
+msgstr "Dim dAlpha as Double"
+
+#: 03080104.xhp#par_id3145252.22.help.text
+msgid "d1 = InputBox$ (\"Enter the length of the side opposite the angle: \",\"opposite\")"
+msgstr "d1 = InputBox$ (\"Introduzca la longitud del lado opuesto al ángulo: \",\"opuesto\")"
+
+#: 03080104.xhp#par_id3149582.23.help.text
+msgid "dAlpha = InputBox$ (\"Enter the Alpha angle (in degrees): \",\"Alpha\")"
+msgstr "dAngle = InputBox$ (\"Escriba el ángulo Alfa (en grados): \",\"Alfa\")"
+
+#: 03080104.xhp#par_id3154016.24.help.text
+msgid "Print \"the length of the side adjacent the angle is\"; (d1 / tan (dAlpha * Pi / 180))"
+msgstr "Print \"la longitud del lado adyacente al ángulo es\"; (d1 / tan (dAlpha * Pi / 180))"
+
+#: 03080104.xhp#par_id3154731.25.help.text
+msgctxt "03080104.xhp#par_id3154731.25.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03030104.xhp#tit.help.text
+msgid "Month Function [Runtime]"
+msgstr "Función Month [Ejecución]"
+
+#: 03030104.xhp#bm_id3153127.help.text
+msgid "<bookmark_value>Month function</bookmark_value>"
+msgstr "<bookmark_value>Month;función</bookmark_value>"
+
+#: 03030104.xhp#hd_id3153127.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month Function [Runtime]\">Month Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Función Month [Runtime]\">Función Month [Ejecución]</link>"
+
+#: 03030104.xhp#par_id3148550.2.help.text
+msgid "Returns the month of a year from a serial date that is generated by the DateSerial or the DateValue function."
+msgstr "Devuelve el mes de un año a partir de una fecha serie que genera la función DateSerial o DateValue."
+
+#: 03030104.xhp#hd_id3145068.3.help.text
+msgctxt "03030104.xhp#hd_id3145068.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03030104.xhp#par_id3150398.4.help.text
+msgid "Month (Number)"
+msgstr "Month (Número)"
+
+#: 03030104.xhp#hd_id3154366.5.help.text
+msgctxt "03030104.xhp#hd_id3154366.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03030104.xhp#par_id3154125.6.help.text
+msgctxt "03030104.xhp#par_id3154125.6.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03030104.xhp#hd_id3150768.7.help.text
+msgctxt "03030104.xhp#hd_id3150768.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03030104.xhp#par_id3156423.8.help.text
+msgid "<emph>Number:</emph> Numeric expression that contains the serial date number that is used to determine the month of the year."
+msgstr "<emph>Número:</emph> Expresión numérica que contiene el número de fecha serie que se utiliza para determinar el mes del año."
+
+#: 03030104.xhp#par_id3153770.9.help.text
+msgid "This function is the opposite of the <emph>DateSerial </emph>function. It returns the month in the year that corresponds to the serial date that is generated by <emph>DateSerial</emph> or <emph>DateValue</emph>. For example, the expression"
+msgstr "Esta función es la inversa a <emph>DateSerial</emph>. Devuelve el mes en el año que corresponde a la fecha serie que genera <emph>DateSerial</emph> o <emph>DateValue</emph>. Por ejemplo, la expresión"
+
+#: 03030104.xhp#par_id3147426.10.help.text
+msgid "Print Month(DateSerial(1994, 12, 20))"
+msgstr "Print Month(DateSerial(1994, 12, 20))"
+
+#: 03030104.xhp#par_id3145366.11.help.text
+msgctxt "03030104.xhp#par_id3145366.11.help.text"
+msgid "returns the value 12."
+msgstr "devuelve el valor 12."
+
+#: 03030104.xhp#hd_id3146923.12.help.text
+msgctxt "03030104.xhp#hd_id3146923.12.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03030104.xhp#par_id3156442.13.help.text
+msgid "Sub ExampleMonth"
+msgstr "Sub EjemploMonth"
+
+#: 03030104.xhp#par_id3149664.14.help.text
+msgid "MsgBox \"\" & Month(Now) ,64,\"The current month\""
+msgstr "MsgBox \"\" & Month(Now) ,64,\"El mes actual\""
+
+#: 03030104.xhp#par_id3150012.15.help.text
+msgctxt "03030104.xhp#par_id3150012.15.help.text"
+msgid "End sub"
+msgstr "End sub"
+
+#: 03030102.xhp#tit.help.text
+msgid "DateValue Function [Runtime]"
+msgstr "Función DateValue [Ejecución]"
+
+#: 03030102.xhp#bm_id3156344.help.text
+msgid "<bookmark_value>DateValue function</bookmark_value>"
+msgstr "<bookmark_value>DateValue;función</bookmark_value>"
+
+#: 03030102.xhp#hd_id3156344.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030102.xhp\" name=\"DateValue Function [Runtime]\">DateValue Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030102.xhp\" name=\"Función DateValue [Runtime]\">Función DateValue [Ejecución]</link>"
+
+#: 03030102.xhp#par_id3150542.2.help.text
+msgid "Returns a date value from a date string. The date string is a complete date in a single numeric value. You can also use this serial number to determine the difference between two dates."
+msgstr "Devuelve un valor de fecha de una cadena de fecha. La cadena de fecha es una fecha completa en un valor numérico único. También puede usar este número de serie para determinar la diferencia entre dos fechas."
+
+#: 03030102.xhp#hd_id3148799.3.help.text
+msgctxt "03030102.xhp#hd_id3148799.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03030102.xhp#par_id3154910.4.help.text
+msgid "DateValue [(date)]"
+msgstr "DateValue [(fecha)]"
+
+#: 03030102.xhp#hd_id3150870.5.help.text
+msgctxt "03030102.xhp#hd_id3150870.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03030102.xhp#par_id3153194.6.help.text
+msgctxt "03030102.xhp#par_id3153194.6.help.text"
+msgid "Date"
+msgstr "Fecha"
+
+#: 03030102.xhp#hd_id3153969.7.help.text
+msgctxt "03030102.xhp#hd_id3153969.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03030102.xhp#par_id3153770.8.help.text
+msgid "<emph>Date:</emph> String expression that contains the date that you want to calculate. The date can be specified in almost any format."
+msgstr "<emph>Fecha:</emph> Expresión de cadena que contenga la fecha que se desee calcular. La fecha puede especificarse en casi cualquier formato."
+
+#: 03030102.xhp#par_id3153189.22.help.text
+msgid "You can use this function to convert a date that occurs between December 1, 1582 and December 31, 9999 into a single integer value. You can then use this value to calculate the difference between two dates. If the date argument lies outside the acceptable range, $[officename] Basic returns an error message."
+msgstr "Esta función puede utilizarse para convertir una fecha entre el 1 de diciembre de 1582 y el 31 de diciembre de 9999 en un valor entero simple. También se puede usar este valor para calcular la diferencia entre dos fechas. Si el argumento de fecha se encuentra fuera del rango aceptable, $[officename] Basic devuelve un mensaje de error."
+
+#: 03030102.xhp#par_id3146974.23.help.text
+msgid "In contrast to the DateSerial function that passes years, months, and days as separate numeric values, the DateValue function passes the date using the format \"month.[,]day.[,]year\"."
+msgstr "A diferencia de la función DateSerial que pasa años, meses y días como valores numéricos independientes, DateValue pasa la fecha con el formato \"mes.[,]día.[,]año\"."
+
+#: 03030102.xhp#hd_id3153142.24.help.text
+msgctxt "03030102.xhp#hd_id3153142.24.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03030102.xhp#par_id3155412.25.help.text
+msgid "Sub ExampleDateValue"
+msgstr "Sub EjemploDateValue"
+
+#: 03030102.xhp#par_id3153363.26.help.text
+msgid "msgbox DateValue(\"12/02/1997\")"
+msgstr "msgbox DateValue(\"12/02/1997\")"
+
+#: 03030102.xhp#par_id3149262.27.help.text
+msgctxt "03030102.xhp#par_id3149262.27.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03101300.xhp#tit.help.text
+msgid "DefDate Statement [Runtime]"
+msgstr "Instrucción DefDate [Ejecución]"
+
+#: 03101300.xhp#bm_id3150504.help.text
+msgid "<bookmark_value>DefDate statement</bookmark_value>"
+msgstr "<bookmark_value>DefDate;instrucción</bookmark_value>"
+
+#: 03101300.xhp#hd_id3150504.1.help.text
+msgid "<link href=\"text/sbasic/shared/03101300.xhp\" name=\"DefDate Statement [Runtime]\">DefDate Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101300.xhp\" name=\"DefDate Statement [Runtime]\">Instrucción DefDate [Ejecución]</link>"
+
+#: 03101300.xhp#par_id3145069.2.help.text
+msgid "If no type-declaration character or keyword is specified, the DefDate statement sets the default variable type, according to a letter range."
+msgstr "Si no se especifica el carácter o la palabra clave de declaración de tipo, la instrucción DefDate establece el tipo de datos predeterminado según un rango de letras."
+
+#: 03101300.xhp#hd_id3154758.3.help.text
+msgctxt "03101300.xhp#hd_id3154758.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03101300.xhp#par_id3148664.4.help.text
+msgctxt "03101300.xhp#par_id3148664.4.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx RangoCaracter1[, RangoCaracter2[,...]]"
+
+#: 03101300.xhp#hd_id3150541.5.help.text
+msgctxt "03101300.xhp#hd_id3150541.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03101300.xhp#par_id3156709.6.help.text
+#, fuzzy
+msgctxt "03101300.xhp#par_id3156709.6.help.text"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>RangoCarácter:</emph> Letras que especifican el rango de variables para las que desee establecer el tipo de datos predeterminado."
+
+#: 03101300.xhp#par_id3150869.7.help.text
+msgctxt "03101300.xhp#par_id3150869.7.help.text"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Palabra clave que define el tipo de variable predeterminado:"
+
+#: 03101300.xhp#par_id3145171.8.help.text
+msgctxt "03101300.xhp#par_id3145171.8.help.text"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Palabra clave:</emph> Tipo de variable predeterminado"
+
+#: 03101300.xhp#par_id3150767.9.help.text
+msgid "<emph>DefDate:</emph> Date"
+msgstr "<emph>DefDate:</emph> Fecha"
+
+#: 03101300.xhp#hd_id3153768.10.help.text
+msgctxt "03101300.xhp#hd_id3153768.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03101300.xhp#par_id3145785.12.help.text
+msgctxt "03101300.xhp#par_id3145785.12.help.text"
+msgid "REM Prefix definitions for variable types:"
+msgstr "REM Prefijar definiciones para tipos de variable:"
+
+#: 03101300.xhp#par_id3146923.13.help.text
+msgctxt "03101300.xhp#par_id3146923.13.help.text"
+msgid "DefBool b"
+msgstr "DefBool b"
+
+#: 03101300.xhp#par_id3155412.14.help.text
+msgctxt "03101300.xhp#par_id3155412.14.help.text"
+msgid "DefDate t"
+msgstr "DefDate t"
+
+#: 03101300.xhp#par_id3153726.15.help.text
+msgctxt "03101300.xhp#par_id3153726.15.help.text"
+msgid "DefDbL d"
+msgstr "DefDbL d"
+
+#: 03101300.xhp#par_id3147435.16.help.text
+msgctxt "03101300.xhp#par_id3147435.16.help.text"
+msgid "DefInt i"
+msgstr "DefInt i"
+
+#: 03101300.xhp#par_id3153188.17.help.text
+msgctxt "03101300.xhp#par_id3153188.17.help.text"
+msgid "DefLng l"
+msgstr "DefLng l"
+
+#: 03101300.xhp#par_id3153143.18.help.text
+msgctxt "03101300.xhp#par_id3153143.18.help.text"
+msgid "DefObj o"
+msgstr "DefObj o"
+
+#: 03101300.xhp#par_id3150010.19.help.text
+msgctxt "03101300.xhp#par_id3150010.19.help.text"
+msgid "DefVar v"
+msgstr "DefVar v"
+
+#: 03101300.xhp#par_id3149263.21.help.text
+msgid "Sub ExampleDefDate"
+msgstr "Sub EjemploDefDate"
+
+#: 03101300.xhp#par_id3152462.22.help.text
+msgid "tDate=Date REM tDate is an implicit date variable"
+msgstr "tDate=Date REM tDate es una variable de fecha implícita"
+
+#: 03101300.xhp#par_id3149664.23.help.text
+msgctxt "03101300.xhp#par_id3149664.23.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03010302.xhp#tit.help.text
+msgid "Green Function [Runtime]"
+msgstr "Función Green [Ejecución]"
+
+#: 03010302.xhp#bm_id3148947.help.text
+msgid "<bookmark_value>Green function</bookmark_value>"
+msgstr "<bookmark_value>Green;función</bookmark_value>"
+
+#: 03010302.xhp#hd_id3148947.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010302.xhp\" name=\"Green Function [Runtime]\">Green Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010302.xhp\" name=\"Función Green [Runtime]\">Función Green [Runtime]</link>"
+
+#: 03010302.xhp#par_id3153361.2.help.text
+msgid "Returns the Green component of the given color code."
+msgstr "Devuelve el componente Verde del código de color dado."
+
+#: 03010302.xhp#hd_id3154140.3.help.text
+msgctxt "03010302.xhp#hd_id3154140.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03010302.xhp#par_id3153969.4.help.text
+msgid "Green (Color As Long)"
+msgstr "Green (Color As Long)"
+
+#: 03010302.xhp#hd_id3154124.5.help.text
+msgctxt "03010302.xhp#hd_id3154124.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03010302.xhp#par_id3153194.6.help.text
+msgctxt "03010302.xhp#par_id3153194.6.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03010302.xhp#hd_id3154909.7.help.text
+msgctxt "03010302.xhp#hd_id3154909.7.help.text"
+msgid "Parameter:"
+msgstr "Parámetro:"
+
+#: 03010302.xhp#par_id3153770.8.help.text
+msgid "<emph>Color</emph>: Long integer expression that specifies a <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">color code</link> for which to return the Green component."
+msgstr "<emph>Color</emph>: Expresión de número entero largo que especifica un <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"código de color\">código de color</link> para el que devolver el componente Verde."
+
+#: 03010302.xhp#hd_id3149664.9.help.text
+msgctxt "03010302.xhp#hd_id3149664.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03010302.xhp#par_id3156442.10.help.text
+msgctxt "03010302.xhp#par_id3156442.10.help.text"
+msgid "Sub ExampleColor"
+msgstr "Sub EjemploColor"
+
+#: 03010302.xhp#par_id3146974.11.help.text
+msgctxt "03010302.xhp#par_id3146974.11.help.text"
+msgid "Dim lVar As Long"
+msgstr "Dim lVar As Long"
+
+#: 03010302.xhp#par_id3145750.12.help.text
+msgctxt "03010302.xhp#par_id3145750.12.help.text"
+msgid "lVar = rgb(128,0,200)"
+msgstr "lVar = rgb(128,0,200)"
+
+#: 03010302.xhp#par_id3151117.13.help.text
+msgid "msgbox \"The color \" & lVar & \" contains the components:\" & Chr(13) &_"
+msgstr "msgbox \"El color \" & lVar & \" contiene los componentes:\" & Chr(13) &_"
+
+#: 03010302.xhp#par_id3153951.14.help.text
+msgid "\"red = \" & red(lVar) & Chr(13)&_"
+msgstr "\"rojo = \" & red(lVar) & Chr(13)&_"
+
+#: 03010302.xhp#par_id3152462.15.help.text
+msgid "\"green = \" & green(lVar) & Chr(13)&_"
+msgstr "\"verde= \" & green(lVar) & Chr(13)&_"
+
+#: 03010302.xhp#par_id3154730.16.help.text
+msgid "\"blue = \" & blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr "\"azul= \" & blue(lVar) & Chr(13) , 64,\"colores\""
+
+#: 03010302.xhp#par_id3144764.17.help.text
+msgctxt "03010302.xhp#par_id3144764.17.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03131000.xhp#tit.help.text
+msgid "GetSolarVersion Function [Runtime]"
+msgstr "Función GetSolarVersion [Ejecución]"
+
+#: 03131000.xhp#bm_id3157898.help.text
+msgid "<bookmark_value>GetSolarVersion function</bookmark_value>"
+msgstr "<bookmark_value>GetSolarVersion;función</bookmark_value>"
+
+#: 03131000.xhp#hd_id3157898.1.help.text
+msgid "<link href=\"text/sbasic/shared/03131000.xhp\" name=\"GetSolarVersion Function [Runtime]\">GetSolarVersion Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131000.xhp\" name=\"GetSolarVersion Function [Runtime]\">Función GetSolarVersion [Ejecución]</link>"
+
+#: 03131000.xhp#par_id3152801.2.help.text
+msgid "Returns the internal number of the current $[officename] version."
+msgstr "Devuelve el número interno de la versión actual de $[officename]."
+
+#: 03131000.xhp#hd_id3153311.3.help.text
+msgctxt "03131000.xhp#hd_id3153311.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03131000.xhp#par_id3155388.4.help.text
+msgid "s = GetSolarVersion"
+msgstr "s = GetSolarVersion"
+
+#: 03131000.xhp#hd_id3149514.5.help.text
+msgctxt "03131000.xhp#hd_id3149514.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03131000.xhp#par_id3148685.6.help.text
+msgctxt "03131000.xhp#par_id3148685.6.help.text"
+msgid "String"
+msgstr "Cadena"
+
+#: 03131000.xhp#hd_id3143270.7.help.text
+msgctxt "03131000.xhp#hd_id3143270.7.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03131000.xhp#par_id3148473.8.help.text
+msgid "Sub ExampleGetSolarVersion"
+msgstr "Sub EjemploGetSolarVersion"
+
+#: 03131000.xhp#par_id3156024.9.help.text
+msgid "Dim sSep As String"
+msgstr "Dim sSep As String"
+
+#: 03131000.xhp#par_id3159414.10.help.text
+msgid "sSep = GetSolarVersion"
+msgstr "sSep = GetSolarVersion"
+
+#: 03131000.xhp#par_id3148947.11.help.text
+msgid "MsgBox sSep,64,\"Version number of the solar technology\""
+msgstr "MsgBox sSep,64,\"Número de versión de la tecnología solar\""
+
+#: 03131000.xhp#par_id3156344.12.help.text
+msgctxt "03131000.xhp#par_id3156344.12.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03080801.xhp#tit.help.text
+msgid "Hex Function [Runtime]"
+msgstr "Función Hex [Ejecución]"
+
+#: 03080801.xhp#bm_id3150616.help.text
+msgid "<bookmark_value>Hex function</bookmark_value>"
+msgstr "<bookmark_value>Hex;función</bookmark_value>"
+
+#: 03080801.xhp#hd_id3150616.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080801.xhp\" name=\"Hex Function [Runtime]\">Hex Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080801.xhp\" name=\"Función Hex [Runtime]\">Función Hex [Ejecución]</link>"
+
+#: 03080801.xhp#par_id3145136.2.help.text
+msgid "Returns a string that represents the hexadecimal value of a number."
+msgstr "Devuelve una cadena que representa el valor hexadecimal de un número."
+
+#: 03080801.xhp#hd_id3147573.3.help.text
+msgctxt "03080801.xhp#hd_id3147573.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03080801.xhp#par_id3150771.4.help.text
+msgid "Hex (Number)"
+msgstr "Hex (Número)"
+
+#: 03080801.xhp#hd_id3147530.5.help.text
+msgctxt "03080801.xhp#hd_id3147530.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03080801.xhp#par_id3159414.6.help.text
+msgctxt "03080801.xhp#par_id3159414.6.help.text"
+msgid "String"
+msgstr "Cadena"
+
+#: 03080801.xhp#hd_id3156344.7.help.text
+msgctxt "03080801.xhp#hd_id3156344.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03080801.xhp#par_id3148947.8.help.text
+msgid "<emph>Number:</emph> Any numeric expression that you want to convert to a hexadecimal number."
+msgstr "<emph>Número:</emph> Cualquier expresión numérica que desee convertir en número hexadecimal."
+
+#: 03080801.xhp#hd_id3154365.9.help.text
+msgctxt "03080801.xhp#hd_id3154365.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03080801.xhp#par_id3145420.29.help.text
+msgid "Sub ExampleHex"
+msgstr "Sub EjemploHex"
+
+#: 03080801.xhp#par_id3156214.30.help.text
+msgid "REM uses BasicFormulas in $[officename] Calc"
+msgstr "REM usa BasicFormulas de $[officename] Calc"
+
+#: 03080801.xhp#par_id3153970.31.help.text
+msgid "Dim a2, b2, c2 as String"
+msgstr "Dim a2, b2, c2 as String"
+
+#: 03080801.xhp#par_id3154909.32.help.text
+msgid "a2 = \"&H3E8\""
+msgstr "a2 = \"&H3E8\""
+
+#: 03080801.xhp#par_id3148674.33.help.text
+msgid "b2 = Hex2Int(a2)"
+msgstr "b2 = Hex2Int(a2)"
+
+#: 03080801.xhp#par_id3155132.34.help.text
+msgid "MsgBox b2"
+msgstr "MsgBox b2"
+
+#: 03080801.xhp#par_id3150440.35.help.text
+msgid "c2 = Int2Hex(b2)"
+msgstr "c2 = Int2Hex(b2)"
+
+#: 03080801.xhp#par_id3147427.36.help.text
+msgid "MsgBox c2"
+msgstr "MsgBox c2"
+
+#: 03080801.xhp#par_id3147435.37.help.text
+msgctxt "03080801.xhp#par_id3147435.37.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03080801.xhp#par_id3148645.19.help.text
+msgid "Function Hex2Int( sHex As String ) As Long"
+msgstr "Function Hex2Int( sHex As String ) As Long"
+
+#: 03080801.xhp#par_id3149262.20.help.text
+msgid "REM Returns a Long-Integer from a hexadecimal value."
+msgstr "REM Devuelve un entero largo a partir de un valor hexadecimal."
+
+#: 03080801.xhp#par_id3148616.21.help.text
+msgid "Hex2Int = clng( sHex )"
+msgstr "Hex2Int = clng( sHex )"
+
+#: 03080801.xhp#par_id3153952.22.help.text
+msgctxt "03080801.xhp#par_id3153952.22.help.text"
+msgid "End Function"
+msgstr "End Function"
+
+#: 03080801.xhp#par_id3146984.24.help.text
+msgid "Function Int2Hex( iLong As Long) As String"
+msgstr "Function Int2Hex( iLong As Long) As String"
+
+#: 03080801.xhp#par_id3147215.25.help.text
+msgid "REM Calculates a hexadecimal value in Integer."
+msgstr "REM Calcula un valor hexadecimal como entero."
+
+#: 03080801.xhp#par_id3148575.26.help.text
+msgid "Int2Hex = \"&H\" & Hex( iLong )"
+msgstr "Int2Hex = \"&H\" & Hex( iLong )"
+
+#: 03080801.xhp#par_id3151073.27.help.text
+msgctxt "03080801.xhp#par_id3151073.27.help.text"
+msgid "End Function"
+msgstr "End Function"
+
+#: 03020406.xhp#tit.help.text
+msgid "FileCopy Statement [Runtime]"
+msgstr "Instrucción FileCopy [Ejecución]"
+
+#: 03020406.xhp#bm_id3154840.help.text
+msgid "<bookmark_value>FileCopy statement</bookmark_value>"
+msgstr "<bookmark_value>FileCopy;instrucción</bookmark_value>"
+
+#: 03020406.xhp#hd_id3154840.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020406.xhp\" name=\"FileCopy Statement [Runtime]\">FileCopy Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020406.xhp\" name=\"Declaración FileCopy [Runtime]\">Declaración FileCopy [Ejecución]</link>"
+
+#: 03020406.xhp#par_id3149497.2.help.text
+msgid "Copies a file."
+msgstr "Copia un archivo."
+
+#: 03020406.xhp#hd_id3147443.3.help.text
+msgctxt "03020406.xhp#hd_id3147443.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03020406.xhp#par_id3146957.4.help.text
+msgid "FileCopy TextFrom As String, TextTo As String"
+msgstr "FileCopy TextoDesde As String, TextoHasta As String"
+
+#: 03020406.xhp#hd_id3153825.5.help.text
+msgctxt "03020406.xhp#hd_id3153825.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03020406.xhp#par_id3155390.6.help.text
+msgid "<emph>TextFrom:</emph> Any string expression that specifies the name of the file that you want to copy. The expression can contain optional path and drive information. If you want, you can enter a path in <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>TextoDesde:</emph> Cualquier expresión de cadena que especifique el nombre del archivo que se desee borrar. La expresión puede contener información opcional de ruta de acceso y unidad. Si se desea, puede escribirse una ruta en la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notación URL\">notación URL</link>."
+
+#: 03020406.xhp#par_id3150669.7.help.text
+msgid "<emph>TextTo:</emph> Any string expression that specifies where you want to copy the source file to. The expression can contain the destination drive, the path, and file name, or the path in URL notation."
+msgstr "<emph>TextoHasta:</emph> Cualquier expresión de cadena que especifique dónde se desea copiar el archivo origen. La expresión puede contener la unidad de destino, la ruta de acceso y el nombre del archivo o la ruta de acceso en notación URL."
+
+#: 03020406.xhp#par_id3150791.8.help.text
+msgid "You can only use the FileCopy statement to copy files that are not opened."
+msgstr "La instrucción FileCopy sólo se puede usar para copiar archivos que no estén abiertos."
+
+#: 03020406.xhp#hd_id3125863.9.help.text
+msgctxt "03020406.xhp#hd_id3125863.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03020406.xhp#par_id3150869.10.help.text
+msgid "Sub ExampleFilecopy"
+msgstr "Sub EjemploFilecopy"
+
+#: 03020406.xhp#par_id3154685.11.help.text
+msgid "Filecopy \"c:\\autoexec.bat\", \"c:\\Temp\\Autoexec.sav\""
+msgstr "Filecopy \"c:\\autoexec.bat\", \"c:\\Temp\\Autoexec.sav\""
+
+#: 03020406.xhp#par_id3154123.12.help.text
+msgctxt "03020406.xhp#par_id3154123.12.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03080400.xhp#tit.help.text
+msgid "Square Root Calculation"
+msgstr "Cálculo de raíz cuadrada"
+
+#: 03080400.xhp#hd_id3148946.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080400.xhp\" name=\"Square Root Calculation\">Square Root Calculation</link>"
+msgstr "<link href=\"text/sbasic/shared/03080400.xhp\" name=\"Cálculo de raíz cuadrada\">Cálculo de raíz cuadrada</link>"
+
+#: 03080400.xhp#par_id3159414.2.help.text
+msgid "Use this function to calculate square roots."
+msgstr "Use esta función para calcular raíces cuadradas."
+
+#: 03080201.xhp#tit.help.text
+msgid "Exp Function [Runtime]"
+msgstr "Función Exp [Ejecución]"
+
+#: 03080201.xhp#bm_id3150616.help.text
+msgid "<bookmark_value>Exp function</bookmark_value>"
+msgstr "<bookmark_value>Exp;función</bookmark_value>"
+
+#: 03080201.xhp#hd_id3150616.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080201.xhp\" name=\"Exp Function [Runtime]\">Exp Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080201.xhp\" name=\"Función Exp [Runtime]\">Función Exp [Ejecución]</link>"
+
+#: 03080201.xhp#par_id3155555.2.help.text
+msgid "Returns the base of the natural logarithm (e = 2.718282) raised to a power."
+msgstr "Devuelve la base del logaritmo natural (e = 2,718282) elevado a una potencia."
+
+#: 03080201.xhp#hd_id3150984.3.help.text
+msgctxt "03080201.xhp#hd_id3150984.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03080201.xhp#par_id3145315.4.help.text
+msgid "Exp (Number)"
+msgstr "Exp (Número)"
+
+#: 03080201.xhp#hd_id3154347.5.help.text
+msgctxt "03080201.xhp#hd_id3154347.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03080201.xhp#par_id3149670.6.help.text
+msgctxt "03080201.xhp#par_id3149670.6.help.text"
+msgid "Double"
+msgstr "Doble"
+
+#: 03080201.xhp#hd_id3154760.7.help.text
+msgctxt "03080201.xhp#hd_id3154760.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03080201.xhp#par_id3150793.8.help.text
+msgid "<emph>Number:</emph> Any numeric expression that specifies the power that you want to raise \"e\" to (the base of natural logarithms). The power must be for both single-precision numbers less than or equal to 88.02969 and double-precision numbers less than or equal to 709.782712893, since $[officename] Basic returns an Overflow error for numbers exceeding these values."
+msgstr "<emph>Número:</emph> Cualquier expresión numérica que especifique la potencia a la que se desea elevar \"e\" (la base de los logaritmos naturales). La potencia debe ser para números de precisión simple menor o igual a 88,02969 y para números de precisión doble menor o igual a 709,782712893, ya que $[officename] Basic devuelve un error de desbordamiento si los números sobrepasan estos valores."
+
+#: 03080201.xhp#hd_id3156280.9.help.text
+msgctxt "03080201.xhp#hd_id3156280.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03080201.xhp#par_id3153193.10.help.text
+msgctxt "03080201.xhp#par_id3153193.10.help.text"
+msgid "Sub ExampleLogExp"
+msgstr "Sub EjemploLogExp"
+
+#: 03080201.xhp#par_id3125864.11.help.text
+msgid "Dim dValue as Double"
+msgstr "Dim dValor as Double"
+
+#: 03080201.xhp#par_id3145172.12.help.text
+msgid "const b1=12.345e12"
+msgstr "const b1=12.345e12"
+
+#: 03080201.xhp#par_id3159254.13.help.text
+msgid "const b2=1.345e34"
+msgstr "const b2=1.345e34"
+
+#: 03080201.xhp#par_id3147287.14.help.text
+msgid "dValue=Exp( Log(b1)+Log(b2) )"
+msgstr "dValor=Exp( Log(b1)+Log(b2) )"
+
+#: 03080201.xhp#par_id3161832.15.help.text
+msgid "MsgBox \"\" & dValue & chr(13) & (b1*b2) ,0,\"Multiplication by logarithm\""
+msgstr "MsgBox \"\" & dValue & chr(13) & (b1*b2) ,0,\"Multiplicación por logaritmo\""
+
+#: 03080201.xhp#par_id3151112.16.help.text
+msgctxt "03080201.xhp#par_id3151112.16.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03104100.xhp#tit.help.text
+msgid "Optional (in Function Statement) [Runtime]"
+msgstr "Optional (en instrucción Function) [Ejecución]"
+
+#: 03104100.xhp#bm_id3149205.help.text
+msgid "<bookmark_value>Optional function</bookmark_value>"
+msgstr "<bookmark_value>Optional;función</bookmark_value>"
+
+#: 03104100.xhp#hd_id3149205.1.help.text
+msgid "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional (in Function Statement) [Runtime]\">Optional (in Function Statement) [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional (in Function Statement) [Runtime]\">Optional (en instrucción Function) [Ejecución]</link>"
+
+#: 03104100.xhp#par_id3143267.2.help.text
+msgid "Allows you to define parameters that are passed to a function as optional."
+msgstr "Permite definir parámetros que se pasan a una función como opcionales."
+
+#: 03104100.xhp#par_id3155419.3.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">IsMissing</link>"
+msgstr "Consulte también: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">IsMissing</link>"
+
+#: 03104100.xhp#hd_id3153824.4.help.text
+msgctxt "03104100.xhp#hd_id3153824.4.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03104100.xhp#par_id3159157.5.help.text
+msgid "Function MyFunction(Text1 As String, Optional Arg2, Optional Arg3)"
+msgstr "Function MiFuncion(Texto1 As String, Optional Arg2, Optional Arg3)"
+
+#: 03104100.xhp#hd_id3145610.7.help.text
+msgctxt "03104100.xhp#hd_id3145610.7.help.text"
+msgid "Examples:"
+msgstr "Ejemplos:"
+
+#: 03104100.xhp#par_id3154347.8.help.text
+msgid "Result = MyFunction(\"Here\", 1, \"There\") ' all arguments are passed."
+msgstr "Resultado = MiFuncion(\"Aquí\", 1, \"Allí\") ' se pasan todos los argumentos."
+
+#: 03104100.xhp#par_id3146795.9.help.text
+msgid "Result = MyFunction(\"Test\", ,1) ' second argument is missing."
+msgstr "Resultado = MiFuncion(\"Test\", ,1) ' falta el segundo argumento."
+
+#: 03104100.xhp#par_id3153897.10.help.text
+msgctxt "03104100.xhp#par_id3153897.10.help.text"
+msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
+msgstr "Consulte también <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Ejemplos</link>."
+
+#: 03020202.xhp#tit.help.text
+msgid "Input# Statement [Runtime]"
+msgstr "Instrucción Input# [Ejecución]"
+
+#: 03020202.xhp#bm_id3154908.help.text
+msgid "<bookmark_value>Input statement</bookmark_value>"
+msgstr "<bookmark_value>Input;función</bookmark_value>"
+
+#: 03020202.xhp#hd_id3154908.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement [Runtime]\">Input# Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Instrucción Input# [Runtime]\">Instrucción Input [Runtime]</link>"
+
+#: 03020202.xhp#par_id3156424.2.help.text
+msgid "Reads data from an open sequential file."
+msgstr "Lee datos de un archivo secuencial abierto."
+
+#: 03020202.xhp#hd_id3125863.3.help.text
+msgctxt "03020202.xhp#hd_id3125863.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03020202.xhp#par_id3150440.4.help.text
+msgid "Input #FileNumber As Integer; var1[, var2[, var3[,...]]]"
+msgstr "Input #NúmeroArchivo As Integer; var1[, var2[, var3[,...]]]"
+
+#: 03020202.xhp#hd_id3146121.5.help.text
+msgctxt "03020202.xhp#hd_id3146121.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03020202.xhp#par_id3145749.6.help.text
+msgid "<emph>FileNumber:</emph> Number of the file that contains the data that you want to read. The file must be opened with the Open statement using the key word INPUT."
+msgstr "<emph>NúmeroArchivo:</emph> Número del archivo que contenga los datos que se desee leer. El archivo debe estar abierto con la instrucción Open mediante la palabra clave INPUT."
+
+#: 03020202.xhp#par_id3150011.7.help.text
+msgid "<emph>var:</emph> A numeric or string variable that you assign the values read from the opened file to."
+msgstr "<emph>var:</emph> Una variable numérica o de cadena que a la que se asigna los valores que se leen del archivo abierto."
+
+#: 03020202.xhp#par_id3159153.8.help.text
+msgid "The <emph>Input#</emph> statement reads numeric values or strings from an open file and assigns the data to one or more variables. A numeric variable is read up to the first carriage return (Asc=13), line feed (Asc=10), space, or comma. String variables are read to up to the first carriage return (Asc=13), line feed (Asc=10), or comma."
+msgstr "La instrucción <emph>Input#</emph> lee valores numéricos o cadenas de un archivo abierto y asigna los datos a una o más variables. Una variable numérica se lee hasta el primer retorno de carro (Asc=13), avance de línea (Asc=10), espacio o coma. Las variables de cadena se leen hasta el primer retorno de carro (Asc=13), avance de línea (Asc=10) o coma."
+
+#: 03020202.xhp#par_id3146984.9.help.text
+msgid "Data and data types in the opened file must appear in the same order as the variables that are passed in the \"var\" parameter. If you assign non-numeric values to a numeric variable, \"var\" is assigned a value of \"0\"."
+msgstr "Los datos y los tipos de datos del archivo abierto deben aparecer en el mismo orden que las variables que se pasan en el parámetro \"var\". Si asigna valores no numéricos a una variable numérica, se asigna a \"var\" un valor igual a \"0\"."
+
+#: 03020202.xhp#par_id3156442.10.help.text
+msgid "Records that are separated by commas cannot be assigned to a string variable. Quotation marks (\") in the file are disregarded as well. If you want to read these characters from the file, use the <emph>Line Input#</emph> statement to read pure text files (files containing only printable characters) line by line."
+msgstr "Los registros separados por comas no pueden asignarse a una variable de cadena. Las comillas (\") del archivo también se descartan. Si desea leer estos caracteres del archivo, use la instrucción <emph>Line Input#</emph> para leer archivos de texto puros (archivos que contienen sólo caracteres imprimibles) línea a línea."
+
+#: 03020202.xhp#par_id3147349.11.help.text
+msgid "If the end of the file is reached while reading a data element, an error occurs and the process is aborted."
+msgstr "Si se llega al final del archivo mientras se lee un elemento de datos, se produce un error y el proceso se interrumpe."
+
+#: 03020202.xhp#hd_id3152578.12.help.text
+msgctxt "03020202.xhp#hd_id3152578.12.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03020202.xhp#par_id3144765.13.help.text
+msgctxt "03020202.xhp#par_id3144765.13.help.text"
+msgid "Sub ExampleWorkWithAFile"
+msgstr "Sub EjemploTrabajoConArchivo"
+
+#: 03020202.xhp#par_id3145799.14.help.text
+msgctxt "03020202.xhp#par_id3145799.14.help.text"
+msgid "Dim iNumber As Integer"
+msgstr "Dim iNumero As Integer"
+
+#: 03020202.xhp#par_id3145252.15.help.text
+msgctxt "03020202.xhp#par_id3145252.15.help.text"
+msgid "Dim sLine As String"
+msgstr "Dim sLinea As String"
+
+#: 03020202.xhp#par_id3149410.16.help.text
+msgctxt "03020202.xhp#par_id3149410.16.help.text"
+msgid "Dim aFile As String"
+msgstr "Dim aArchivo As String"
+
+#: 03020202.xhp#par_id3149959.39.help.text
+msgctxt "03020202.xhp#par_id3149959.39.help.text"
+msgid "Dim sMsg as String"
+msgstr "Dim sMensaje as String"
+
+#: 03020202.xhp#par_id3153417.17.help.text
+msgctxt "03020202.xhp#par_id3153417.17.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr "aArchivo = \"c:\\data.txt\""
+
+#: 03020202.xhp#par_id3150752.19.help.text
+msgctxt "03020202.xhp#par_id3150752.19.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumero = Freefile"
+
+#: 03020202.xhp#par_id3153707.20.help.text
+msgctxt "03020202.xhp#par_id3153707.20.help.text"
+msgid "Open aFile For Output As #iNumber"
+msgstr "Open aArchivo For Output As #iNumero"
+
+#: 03020202.xhp#par_id3150321.21.help.text
+msgctxt "03020202.xhp#par_id3150321.21.help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr "Print #iNumero, \"Esta es una línea de texto\""
+
+#: 03020202.xhp#par_id3154756.22.help.text
+msgctxt "03020202.xhp#par_id3154756.22.help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr "Print #iNumero, \"Esta es otra línea de texto\""
+
+#: 03020202.xhp#par_id3148408.23.help.text
+msgctxt "03020202.xhp#par_id3148408.23.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumero"
+
+#: 03020202.xhp#par_id3155937.27.help.text
+msgctxt "03020202.xhp#par_id3155937.27.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumero = Freefile"
+
+#: 03020202.xhp#par_id3154702.28.help.text
+msgctxt "03020202.xhp#par_id3154702.28.help.text"
+msgid "Open aFile For Input As iNumber"
+msgstr "Open aArchivo For Input As iNumero"
+
+#: 03020202.xhp#par_id3155959.29.help.text
+msgctxt "03020202.xhp#par_id3155959.29.help.text"
+msgid "While not eof(iNumber)"
+msgstr "While not eof(iNumero)"
+
+#: 03020202.xhp#par_id3145232.30.help.text
+msgctxt "03020202.xhp#par_id3145232.30.help.text"
+msgid "Line Input #iNumber, sLine"
+msgstr "Line Input #iNumero, sLinea"
+
+#: 03020202.xhp#par_id3147345.31.help.text
+msgctxt "03020202.xhp#par_id3147345.31.help.text"
+msgid "If sLine <>\"\" then"
+msgstr "If sLinea <>\"\" then"
+
+#: 03020202.xhp#par_id3150298.32.help.text
+msgctxt "03020202.xhp#par_id3150298.32.help.text"
+msgid "sMsg = sMsg & sLine & chr(13)"
+msgstr "sMensaje = sMensaje & sLinea & chr(13)"
+
+#: 03020202.xhp#par_id3154021.34.help.text
+msgctxt "03020202.xhp#par_id3154021.34.help.text"
+msgid "end if"
+msgstr "end if"
+
+#: 03020202.xhp#par_id3154665.35.help.text
+msgctxt "03020202.xhp#par_id3154665.35.help.text"
+msgid "wend"
+msgstr "wend"
+
+#: 03020202.xhp#par_id3155607.36.help.text
+msgctxt "03020202.xhp#par_id3155607.36.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumero"
+
+#: 03020202.xhp#par_id3153268.40.help.text
+msgctxt "03020202.xhp#par_id3153268.40.help.text"
+msgid "Msgbox sMsg"
+msgstr "Msgbox sMensaje"
+
+#: 03020202.xhp#par_id3152584.37.help.text
+msgctxt "03020202.xhp#par_id3152584.37.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03050100.xhp#tit.help.text
+msgid "Erl Function [Runtime]"
+msgstr "Función Erl [Ejecución]"
+
+#: 03050100.xhp#bm_id3157896.help.text
+msgid "<bookmark_value>Erl function</bookmark_value>"
+msgstr "<bookmark_value>Erl;función</bookmark_value>"
+
+#: 03050100.xhp#hd_id3157896.1.help.text
+msgid "<link href=\"text/sbasic/shared/03050100.xhp\" name=\"Erl Function [Runtime]\">Erl Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03050100.xhp\" name=\"Función Erl [Runtime]\">Función Erl [Ejecución]</link>"
+
+#: 03050100.xhp#par_id3153394.2.help.text
+msgid "Returns the line number where an error occurred during program execution."
+msgstr "Devuelve el número de línea en que se produjo un error durante la ejecución de un programa."
+
+#: 03050100.xhp#hd_id3147574.3.help.text
+msgctxt "03050100.xhp#hd_id3147574.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03050100.xhp#par_id3146795.4.help.text
+msgid "Erl"
+msgstr "Erl"
+
+#: 03050100.xhp#hd_id3147265.5.help.text
+msgctxt "03050100.xhp#hd_id3147265.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03050100.xhp#par_id3154924.6.help.text
+msgctxt "03050100.xhp#par_id3154924.6.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03050100.xhp#hd_id3150792.7.help.text
+msgctxt "03050100.xhp#hd_id3150792.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03050100.xhp#par_id3153771.8.help.text
+msgid "The Erl function only returns a line number, and not a line label."
+msgstr "La función Erl sólo devuelve el número, no la etiqueta de línea."
+
+#: 03050100.xhp#hd_id3146921.9.help.text
+msgctxt "03050100.xhp#hd_id3146921.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03050100.xhp#par_id3146975.10.help.text
+msgctxt "03050100.xhp#par_id3146975.10.help.text"
+msgid "sub ExampleError"
+msgstr "sub EjemploError"
+
+#: 03050100.xhp#par_id3150010.11.help.text
+msgctxt "03050100.xhp#par_id3150010.11.help.text"
+msgid "on error goto ErrorHandler REM Set up error handler"
+msgstr "on error goto ManejadorError REM Configurar manejador de errores"
+
+#: 03050100.xhp#par_id3155308.12.help.text
+msgctxt "03050100.xhp#par_id3155308.12.help.text"
+msgid "Dim iVar as Integer"
+msgstr "Dim iVar As Integer"
+
+#: 03050100.xhp#par_id3149482.13.help.text
+msgctxt "03050100.xhp#par_id3149482.13.help.text"
+msgid "Dim sVar As String"
+msgstr "Dim sVar As String"
+
+#: 03050100.xhp#par_id3153188.14.help.text
+msgid "REM Error caused by non-existent file"
+msgstr "REM Error causado por archivo no existente"
+
+#: 03050100.xhp#par_id3159155.15.help.text
+msgctxt "03050100.xhp#par_id3159155.15.help.text"
+msgid "iVar = Freefile"
+msgstr "iVar = Freefile"
+
+#: 03050100.xhp#par_id3146120.16.help.text
+msgctxt "03050100.xhp#par_id3146120.16.help.text"
+msgid "Open \"\\file9879.txt\" for Input as #iVar"
+msgstr "Open \"\\file9879.txt\" for Input as #iVar"
+
+#: 03050100.xhp#par_id3147349.17.help.text
+msgctxt "03050100.xhp#par_id3147349.17.help.text"
+msgid "Line Input #iVar, sVar"
+msgstr "Line Input #iVar, sVar"
+
+#: 03050100.xhp#par_id3151073.18.help.text
+msgctxt "03050100.xhp#par_id3151073.18.help.text"
+msgid "Close #iVar"
+msgstr "Close #iVar"
+
+#: 03050100.xhp#par_id3148456.19.help.text
+msgctxt "03050100.xhp#par_id3148456.19.help.text"
+msgid "exit sub"
+msgstr "exit sub"
+
+#: 03050100.xhp#par_id3147394.20.help.text
+msgctxt "03050100.xhp#par_id3147394.20.help.text"
+msgid "ErrorHandler:"
+msgstr "ManejadorError:"
+
+#: 03050100.xhp#par_id3155416.21.help.text
+msgid "MsgBox \"Error \" & err & \": \" & error$ + chr(13) + \"In line : \" + Erl + chr(13) + Now , 16 ,\"An error occurred\""
+msgstr "MsgBox \"Error \" & err & \": \" & Error$ + chr(13) + \"En la línea: \" + Erl + chr(13) + Now , 16 ,\"Se ha producido un error\""
+
+#: 03050100.xhp#par_id3153878.22.help.text
+msgctxt "03050100.xhp#par_id3153878.22.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03120303.xhp#tit.help.text
+msgid "Left Function [Runtime]"
+msgstr "Función Left [Ejecución]"
+
+#: 03120303.xhp#bm_id3149346.help.text
+msgid "<bookmark_value>Left function</bookmark_value>"
+msgstr "<bookmark_value>Left;función</bookmark_value>"
+
+#: 03120303.xhp#hd_id3149346.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function [Runtime]\">Left Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function [Runtime]\">Función Left [Ejecución]</link>"
+
+#: 03120303.xhp#par_id3147242.2.help.text
+msgid "Returns the number of leftmost characters that you specify of a string expression."
+msgstr "Devuelve el número de los caracteres especificados que se encuentran más a la izquierda de una expresión de cadena."
+
+#: 03120303.xhp#hd_id3156153.3.help.text
+msgctxt "03120303.xhp#hd_id3156153.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03120303.xhp#par_id3150771.4.help.text
+msgid "Left (Text As String, n As Long)"
+msgstr "Left (Texto As String, n As Integer)"
+
+#: 03120303.xhp#hd_id3153824.5.help.text
+msgctxt "03120303.xhp#hd_id3153824.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03120303.xhp#par_id3147530.6.help.text
+msgctxt "03120303.xhp#par_id3147530.6.help.text"
+msgid "String"
+msgstr "Cadena"
+
+#: 03120303.xhp#hd_id3148946.7.help.text
+msgctxt "03120303.xhp#hd_id3148946.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03120303.xhp#par_id3148552.8.help.text
+msgid "<emph>Text:</emph> Any string expression that you want to return the leftmost characters from."
+msgstr "<emph>Texto:</emph> Cualquier expresión de cadena de la que se desee devolver los caracteres que se encuentren más a la izquierda."
+
+#: 03120303.xhp#par_id3149456.9.help.text
+msgid "<emph>n:</emph> Numeric expression that specifies the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 65535."
+msgstr "<emph>n:</emph> Expresión entera que especifique el número de caracteres que se desea devolver. Si <emph>n</emph> = 0, se devuelve una cadena de longitud cero."
+
+#: 03120303.xhp#par_id3150791.10.help.text
+msgid "The following example converts a date in YYYY.MM.DD format to MM/DD/YYYY format."
+msgstr "El ejemplo siguiente convierte una fecha en formato AAAA.MM.DD a formato MM/DD/AAAA."
+
+#: 03120303.xhp#hd_id3125863.11.help.text
+msgctxt "03120303.xhp#hd_id3125863.11.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03120303.xhp#par_id3144761.12.help.text
+msgctxt "03120303.xhp#par_id3144761.12.help.text"
+msgid "Sub ExampleUSDate"
+msgstr "Sub EjemploFechaEUA"
+
+#: 03120303.xhp#par_id3153194.13.help.text
+msgctxt "03120303.xhp#par_id3153194.13.help.text"
+msgid "Dim sInput As String"
+msgstr "Dim sEntrada As String"
+
+#: 03120303.xhp#par_id3154217.14.help.text
+msgctxt "03120303.xhp#par_id3154217.14.help.text"
+msgid "Dim sUS_date As String"
+msgstr "Dim afecha_EUA As String"
+
+#: 03120303.xhp#par_id3150448.15.help.text
+msgctxt "03120303.xhp#par_id3150448.15.help.text"
+msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
+msgstr "sEntrada = InputBox(\"Escriba una fecha en formato internacional 'AAAA-MM-DD'\")"
+
+#: 03120303.xhp#par_id3149203.16.help.text
+msgctxt "03120303.xhp#par_id3149203.16.help.text"
+msgid "sUS_date = Mid(sInput, 6, 2)"
+msgstr "sfecha_EUA = Mid(sEntrada, 6, 2)"
+
+#: 03120303.xhp#par_id3150439.17.help.text
+msgctxt "03120303.xhp#par_id3150439.17.help.text"
+msgid "sUS_date = sUS_date & \"/\""
+msgstr "sfecha_EUA = sfecha_EUA & \"/\""
+
+#: 03120303.xhp#par_id3153770.18.help.text
+msgctxt "03120303.xhp#par_id3153770.18.help.text"
+msgid "sUS_date = sUS_date & Right(sInput, 2)"
+msgstr "sfecha_EUA = sfecha_EUA & Right(sEntrada, 2)"
+
+#: 03120303.xhp#par_id3161833.19.help.text
+msgctxt "03120303.xhp#par_id3161833.19.help.text"
+msgid "sUS_date = sUS_date & \"/\""
+msgstr "sfecha_EUA = sfecha_EUA & \"/\""
+
+#: 03120303.xhp#par_id3147215.20.help.text
+msgctxt "03120303.xhp#par_id3147215.20.help.text"
+msgid "sUS_date = sUS_date & Left(sInput, 4)"
+msgstr "sfecha_EUA = sfecha_EUA & Left(sEntrada, 4)"
+
+#: 03120303.xhp#par_id3149666.21.help.text
+msgctxt "03120303.xhp#par_id3149666.21.help.text"
+msgid "MsgBox sUS_date"
+msgstr "MsgBox sfecha_EUA"
+
+#: 03120303.xhp#par_id3153138.22.help.text
+msgctxt "03120303.xhp#par_id3153138.22.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03090407.xhp#tit.help.text
+msgid "Rem Statement [Runtime]"
+msgstr "Instrucción Rem [Ejecución]"
+
+#: 03090407.xhp#bm_id3154347.help.text
+msgid "<bookmark_value>Rem statement</bookmark_value><bookmark_value>comments;Rem statement</bookmark_value>"
+msgstr "<bookmark_value>Rem;instrucción</bookmark_value><bookmark_value>comentarios;Rem</bookmark_value>"
+
+#: 03090407.xhp#hd_id3154347.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090407.xhp\" name=\"Rem Statement [Runtime]\">Rem Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090407.xhp\" name=\"Rem Statement [Runtime]\">Instrucción Rem [Ejecución]</link>"
+
+#: 03090407.xhp#par_id3153525.2.help.text
+msgid "Specifies that a program line is a comment."
+msgstr "Especifica que una línea de programa es un comentario."
+
+#: 03090407.xhp#hd_id3153360.3.help.text
+msgctxt "03090407.xhp#hd_id3153360.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03090407.xhp#par_id3154141.4.help.text
+msgid "Rem Text"
+msgstr "Rem Texto"
+
+#: 03090407.xhp#hd_id3151042.5.help.text
+msgctxt "03090407.xhp#hd_id3151042.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03090407.xhp#par_id3150869.6.help.text
+msgid "<emph>Text:</emph> Any text that serves as a comment."
+msgstr "<emph>Texto:</emph> Cualquier texto que sirva de comentario."
+
+#: 03090407.xhp#par_id3147318.7.help.text
+msgid "You can use the single quotation mark instead of the Rem keyword to indicate that the text on a line is comments. This symbol can be inserted directly to the right of the program code, followed by a comment."
+msgstr "Para indicar que el texto de la línea es un comentario, puede utilizar el carácter de comilla simple en lugar de la palabra clave Rem. Este símbolo puede insertarse directamente a la derecha del código del programa seguido de un comentario."
+
+#: 03090407.xhp#par_id6187017.help.text
+msgid "You can use a space followed by the underline character _ as the last two characters of a line to continue the logical line on the next line. To continue comment lines, you must enter \"Option Compatible\" in the same Basic module."
+msgstr "Puede utilizar un espacio seguido de un guión bajo (_) como los últimos dos caracteres de una línea para continuar la línea lógica en la siguiente línea. Para continuar líneas de comentario, debe especificar \"Option Compatible\" in el mismo módulo Basic."
+
+#: 03090407.xhp#hd_id3150012.8.help.text
+msgctxt "03090407.xhp#hd_id3150012.8.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03090407.xhp#par_id3152939.9.help.text
+msgid "Sub ExampleMid"
+msgstr "Sub EjemploMid"
+
+#: 03090407.xhp#par_id3153142.10.help.text
+msgid "DIM sVar As String"
+msgstr "DIM sVar As String"
+
+#: 03090407.xhp#par_id3145365.11.help.text
+msgctxt "03090407.xhp#par_id3145365.11.help.text"
+msgid "sVar = \"Las Vegas\""
+msgstr "sVar = \"Las Vegas\""
+
+#: 03090407.xhp#par_id3146984.12.help.text
+msgid "Print Mid(sVar,3,5) REM Returns \"s Veg\""
+msgstr "Print Mid(sVar,3,5) REM Devuelve \"s Veg\""
+
+#: 03090407.xhp#par_id3153140.13.help.text
+msgid "REM Nothing occurs here"
+msgstr "REM Aquí no pasa nada"
+
+#: 03090407.xhp#par_id3152596.14.help.text
+msgctxt "03090407.xhp#par_id3152596.14.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03120315.xhp#tit.help.text
+msgid "Join Function [Runtime]"
+msgstr "Función Join [Ejecución]"
+
+#: 03120315.xhp#bm_id3149416.help.text
+msgid "<bookmark_value>Join function</bookmark_value>"
+msgstr "<bookmark_value>Join;función</bookmark_value>"
+
+#: 03120315.xhp#hd_id3149416.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120315.xhp\" name=\"Join Function [Runtime]\">Join Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120315.xhp\" name=\"Join Function [Runtime]\">Función Join [Ejecución]</link>"
+
+#: 03120315.xhp#par_id3149670.2.help.text
+msgid "Returns a string from a number of substrings in a string array."
+msgstr "Devuelve una cadena a partir de varias subcadenas de una matriz."
+
+#: 03120315.xhp#hd_id3159414.3.help.text
+msgctxt "03120315.xhp#hd_id3159414.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03120315.xhp#par_id3156344.4.help.text
+msgid "Join (Text As String Array, delimiter)"
+msgstr "Join (Texto As String Array, delimitador)"
+
+#: 03120315.xhp#hd_id3150400.5.help.text
+msgctxt "03120315.xhp#hd_id3150400.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03120315.xhp#par_id3150359.6.help.text
+msgctxt "03120315.xhp#par_id3150359.6.help.text"
+msgid "String"
+msgstr "Cadena"
+
+#: 03120315.xhp#hd_id3148798.7.help.text
+msgctxt "03120315.xhp#hd_id3148798.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03120315.xhp#par_id3145171.8.help.text
+msgid "<emph>Text:</emph> A string array."
+msgstr "<emph>Texto:</emph> Una matriz de cadenas."
+
+#: 03120315.xhp#par_id3154908.9.help.text
+msgid "<emph>delimiter (optional):</emph> A string character that is used to separate the substrings in the resulting string. The default delimiter is the space character. If delimiter is a string of length zero \"\", the substrings are joined without separator."
+msgstr "<emph>Delimitador (opcional):</emph> Un carácter que se utiliza para separar las subcadenas en la cadena resultante. El delimitador predeterminado es el carácter espacio. Si el delimitador es una cadena de longitud cero \"\", las subcadenas se unen sin utilizar ningún separador."
+
+#: 03120315.xhp#hd_id3154218.10.help.text
+msgctxt "03120315.xhp#hd_id3154218.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03080401.xhp#tit.help.text
+msgid "Sqr Function [Runtime]"
+msgstr "Función Sqr [Ejecución]"
+
+#: 03080401.xhp#bm_id3156027.help.text
+msgid "<bookmark_value>Sqr function</bookmark_value>"
+msgstr "<bookmark_value>Sqr;función</bookmark_value>"
+
+#: 03080401.xhp#hd_id3156027.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080401.xhp\" name=\"Sqr Function [Runtime]\">Sqr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080401.xhp\" name=\"Función Sqr [Runtime]\">Función Sqr [Ejecución]</link>"
+
+#: 03080401.xhp#par_id3147226.2.help.text
+msgid "Calculates the square root of a numeric expression."
+msgstr "Calcula la raíz cuadrada de una expresión numérica."
+
+#: 03080401.xhp#hd_id3143267.3.help.text
+msgctxt "03080401.xhp#hd_id3143267.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03080401.xhp#par_id3149415.4.help.text
+msgid "Sqr (Number)"
+msgstr "Sqr (Número)"
+
+#: 03080401.xhp#hd_id3156023.5.help.text
+msgctxt "03080401.xhp#hd_id3156023.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03080401.xhp#par_id3156343.6.help.text
+msgctxt "03080401.xhp#par_id3156343.6.help.text"
+msgid "Double"
+msgstr "Doble"
+
+#: 03080401.xhp#hd_id3147265.7.help.text
+msgctxt "03080401.xhp#hd_id3147265.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03080401.xhp#par_id3149457.8.help.text
+msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the square root for."
+msgstr "<emph>Número:</emph> Cualquier expresión numérica de la que se desee calcular la raíz cuadrada."
+
+#: 03080401.xhp#par_id3154365.9.help.text
+msgid "A square root is the number that you multiply by itself to produce another number, for example, the square root of 36 is 6."
+msgstr "La raíz cuadrada de un número es aquél que multiplicado por sí mismo produce el número inicial, por ejemplo: la raíz cuadrada de 36 es 6."
+
+#: 03080401.xhp#hd_id3153192.10.help.text
+msgctxt "03080401.xhp#hd_id3153192.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03080401.xhp#par_id3145172.11.help.text
+msgid "Sub ExampleSqr"
+msgstr "Sub EjemploSqr"
+
+#: 03080401.xhp#par_id3156423.12.help.text
+msgctxt "03080401.xhp#par_id3156423.12.help.text"
+msgid "Dim iVar As Single"
+msgstr "Dim iVar As Single"
+
+#: 03080401.xhp#par_id3147288.13.help.text
+msgctxt "03080401.xhp#par_id3147288.13.help.text"
+msgid "iVar = 36"
+msgstr "iVar = 36"
+
+#: 03080401.xhp#par_id3159254.14.help.text
+msgctxt "03080401.xhp#par_id3159254.14.help.text"
+msgid "Msgbox Sqr(iVar)"
+msgstr "Msgbox Sqr(iVar)"
+
+#: 03080401.xhp#par_id3161832.15.help.text
+msgctxt "03080401.xhp#par_id3161832.15.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03050500.xhp#tit.help.text
+msgid "On Error GoTo ... Resume Statement [Runtime]"
+msgstr "Instrucción On Error GoTo ... Resume [Ejecución]"
+
+#: 03050500.xhp#bm_id3146795.help.text
+msgid "<bookmark_value>Resume Next parameter</bookmark_value><bookmark_value>On Error GoTo ... Resume statement</bookmark_value>"
+msgstr "<bookmark_value>función;Resume Next</bookmark_value><bookmark_value>Resume Next;función</bookmark_value><bookmark_value>On Error GoTo ... Resume;función</bookmark_value>"
+
+#: 03050500.xhp#hd_id3146795.1.help.text
+msgid "<link href=\"text/sbasic/shared/03050500.xhp\" name=\"On Error GoTo ... Resume Statement [Runtime]\">On Error GoTo ... Resume Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03050500.xhp\" name=\"Instrucción On Error GoTo ... Resume [Runtime]\">Instrucción On Error GoTo ... Resume [Ejecución]</link>"
+
+#: 03050500.xhp#par_id3150358.2.help.text
+msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
+msgstr "Habilita una rutina de manejo de errores después de producirse éstos o continúa la ejecución del programa."
+
+#: 03050500.xhp#hd_id3151212.3.help.text
+msgctxt "03050500.xhp#hd_id3151212.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03050500.xhp#par_id3145173.4.help.text
+msgid "On {[Local] Error GoTo Labelname | GoTo 0 | Resume Next}"
+msgstr "On {[Local] Error GoTo NombreEtiqueta | GoTo 0 | Resume Next}"
+
+#: 03050500.xhp#hd_id3154125.5.help.text
+msgctxt "03050500.xhp#hd_id3154125.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03050500.xhp#par_id3150869.7.help.text
+msgid "<emph>GoTo Labelname:</emph> If an error occurs, enables the error-handling routine that starts at the line \"Labelname\"."
+msgstr "<emph>GoTo NombreEtiqueta:</emph> Si se produce un error, activa la rutina de manejo de errores que empieza en la línea \"NombreEtiqueta\"."
+
+#: 03050500.xhp#par_id3150439.8.help.text
+msgid "<emph>Resume Next:</emph> If an error occurs, program execution continues with the statement that follows the statement in which the error occurred."
+msgstr "<emph>Resume Next:</emph> Si se produce un error, la ejecución del programa continúa con la instrucción que seguía a aquélla en la que se produjo el error."
+
+#: 03050500.xhp#par_id3149482.9.help.text
+msgid "<emph>GoTo 0:</emph> Disables the error handler in the current procedure."
+msgstr "<emph>GoTo 0:</emph> Desactiva el manejador de errores para el procedimiento actual."
+
+#: 03050500.xhp#par_id3149483.9.help.text
+msgid "<emph>Local:</emph> \"On error\" is global in scope, and remains active until canceled by another \"On error\" statement. \"On Local error\" is local to the routine which invokes it. Local error handling overrides any previous global setting. When the invoking routine exits, the local error handling is canceled automatically, and any previous global setting is restored."
+msgstr "<emph>Local:</emph> El ámbito de \"On error\" es global, y permanece activo hasta que se lo cancela mediante otra sentencia \"On error\". En cambio, el ámbito de \"On Local error\" es local para la rutina que lo invoca. El manejo local de errores anula cualquier configuración global previa. Cuando finaliza la rutina invocadora, se cancela automáticamente el manejo local del error, y se restaura la configuración global previa."
+
+#: 03050500.xhp#par_id3148619.10.help.text
+msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
+msgstr "La instrucción On Error GoTo se utiliza para reaccionar a los errores que se producen en una macro."
+
+#: 03050500.xhp#hd_id3146985.11.help.text
+msgctxt "03050500.xhp#hd_id3146985.11.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03050500.xhp#par_id3152460.42.help.text
+msgctxt "03050500.xhp#par_id3152460.42.help.text"
+msgid "Sub ExampleReset"
+msgstr "Sub EjemploReset"
+
+#: 03050500.xhp#par_id3163712.43.help.text
+msgctxt "03050500.xhp#par_id3163712.43.help.text"
+msgid "On Error Goto ErrorHandler"
+msgstr "On Error Goto ManejadorError"
+
+#: 03050500.xhp#par_id3146119.44.help.text
+msgctxt "03050500.xhp#par_id3146119.44.help.text"
+msgid "Dim iNumber As Integer"
+msgstr "Dim iNumero As Integer"
+
+#: 03050500.xhp#par_id3145749.45.help.text
+msgctxt "03050500.xhp#par_id3145749.45.help.text"
+msgid "Dim iCount As Integer"
+msgstr "Dim iContador As Integer"
+
+#: 03050500.xhp#par_id3153091.46.help.text
+msgctxt "03050500.xhp#par_id3153091.46.help.text"
+msgid "Dim sLine As String"
+msgstr "Dim sLinea As String"
+
+#: 03050500.xhp#par_id3148576.47.help.text
+msgctxt "03050500.xhp#par_id3148576.47.help.text"
+msgid "Dim aFile As String"
+msgstr "Dim aArchivo As String"
+
+#: 03050500.xhp#par_id3147348.48.help.text
+msgctxt "03050500.xhp#par_id3147348.48.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr "aArchivo = \"c:\\data.txt\""
+
+#: 03050500.xhp#par_id3154944.50.help.text
+msgctxt "03050500.xhp#par_id3154944.50.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumero = Freefile"
+
+#: 03050500.xhp#par_id3153158.51.help.text
+msgctxt "03050500.xhp#par_id3153158.51.help.text"
+msgid "Open aFile For Output As #iNumber"
+msgstr "Open aArchivo For Output As #iNumero"
+
+#: 03050500.xhp#par_id3153876.52.help.text
+msgctxt "03050500.xhp#par_id3153876.52.help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr "Print #iNumero, \"Esta es una línea de texto\""
+
+#: 03050500.xhp#par_id3149581.53.help.text
+msgctxt "03050500.xhp#par_id3149581.53.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumero"
+
+#: 03050500.xhp#par_id3155602.55.help.text
+msgctxt "03050500.xhp#par_id3155602.55.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumero = Freefile"
+
+#: 03050500.xhp#par_id3153415.56.help.text
+msgctxt "03050500.xhp#par_id3153415.56.help.text"
+msgid "Open aFile For Input As iNumber"
+msgstr "Open aArchivo For Input As iNumero"
+
+#: 03050500.xhp#par_id3146970.57.help.text
+msgctxt "03050500.xhp#par_id3146970.57.help.text"
+msgid "For iCount = 1 to 5"
+msgstr "For iContador = 1 to 5"
+
+#: 03050500.xhp#par_id3153707.58.help.text
+msgctxt "03050500.xhp#par_id3153707.58.help.text"
+msgid "Line Input #iNumber, sLine"
+msgstr "Line Input #iNumero, sLinea"
+
+#: 03050500.xhp#par_id3156276.59.help.text
+msgctxt "03050500.xhp#par_id3156276.59.help.text"
+msgid "If sLine <>\"\" then"
+msgstr "If sLinea <>\"\" then"
+
+#: 03050500.xhp#par_id3148993.60.help.text
+msgctxt "03050500.xhp#par_id3148993.60.help.text"
+msgid "rem"
+msgstr "rem"
+
+#: 03050500.xhp#par_id3153764.61.help.text
+msgctxt "03050500.xhp#par_id3153764.61.help.text"
+msgid "end if"
+msgstr "end if"
+
+#: 03050500.xhp#par_id3154754.62.help.text
+msgctxt "03050500.xhp#par_id3154754.62.help.text"
+msgid "Next iCount"
+msgstr "Next iContador"
+
+#: 03050500.xhp#par_id3159264.63.help.text
+msgctxt "03050500.xhp#par_id3159264.63.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumero"
+
+#: 03050500.xhp#par_id3150042.64.help.text
+msgctxt "03050500.xhp#par_id3150042.64.help.text"
+msgid "Exit Sub"
+msgstr "Exit Sub"
+
+#: 03050500.xhp#par_id3151251.65.help.text
+msgctxt "03050500.xhp#par_id3151251.65.help.text"
+msgid "ErrorHandler:"
+msgstr "ManejadorError:"
+
+#: 03050500.xhp#par_id3149106.66.help.text
+msgctxt "03050500.xhp#par_id3149106.66.help.text"
+msgid "Reset"
+msgstr "Reset"
+
+#: 03050500.xhp#par_id3146916.67.help.text
+msgctxt "03050500.xhp#par_id3146916.67.help.text"
+msgid "MsgBox \"All files will be closed\",0,\"Error\""
+msgstr "MsgBox \"Todos los archivos se cerrarán\",0,\"Error\""
+
+#: 03050500.xhp#par_id3149568.68.help.text
+msgctxt "03050500.xhp#par_id3149568.68.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03101000.xhp#tit.help.text
+msgid "CStr Function [Runtime]"
+msgstr "Función CStr [Ejecución]"
+
+#: 03101000.xhp#bm_id3146958.help.text
+msgid "<bookmark_value>CStr function</bookmark_value>"
+msgstr "<bookmark_value>CStr;función</bookmark_value>"
+
+#: 03101000.xhp#hd_id3146958.1.help.text
+msgid "<link href=\"text/sbasic/shared/03101000.xhp\" name=\"CStr Function [Runtime]\">CStr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101000.xhp\" name=\"CStr Function [Runtime]\">Función CStr [Ejecución]</link>"
+
+#: 03101000.xhp#par_id3147574.2.help.text
+msgid "Converts any numeric expression to a string expression."
+msgstr "Convierte cualquier expresión numérica en una de cadena."
+
+#: 03101000.xhp#hd_id3148473.3.help.text
+msgctxt "03101000.xhp#hd_id3148473.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03101000.xhp#par_id3145315.4.help.text
+msgid "CStr (Expression)"
+msgstr "CStr (Expresión)"
+
+#: 03101000.xhp#hd_id3153062.5.help.text
+msgctxt "03101000.xhp#hd_id3153062.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03101000.xhp#par_id3153897.6.help.text
+msgctxt "03101000.xhp#par_id3153897.6.help.text"
+msgid "String"
+msgstr "Cadena"
+
+#: 03101000.xhp#hd_id3154760.7.help.text
+msgctxt "03101000.xhp#hd_id3154760.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03101000.xhp#par_id3149457.8.help.text
+msgid "<emph>Expression:</emph> Any valid string or numeric expression that you want to convert."
+msgstr "<emph>Expresión:</emph> Cualquier expresión de cadena o numérica válida que desee convertir."
+
+#: 03101000.xhp#hd_id3150358.9.help.text
+msgid "Expression Types and Conversion Returns"
+msgstr "Tipos de expresión y conversiones devueltas"
+
+#: 03101000.xhp#par_id3153192.10.help.text
+msgid "Boolean :"
+msgstr "Lógica :"
+
+#: 03101000.xhp#par_id3156422.11.help.text
+msgid "String that evaluates to either <emph>True</emph> or <emph>False</emph>."
+msgstr "Cadena que se evalúa a <emph>True</emph> o <emph>False</emph>."
+
+#: 03101000.xhp#par_id3147287.12.help.text
+msgid "Date :"
+msgstr "Fecha :"
+
+#: 03101000.xhp#par_id3155411.13.help.text
+msgid "String that contains the date and time."
+msgstr "Cadena que contiene la fecha y la hora."
+
+#: 03101000.xhp#par_id3147428.14.help.text
+msgid "Null :"
+msgstr "Nulo :"
+
+#: 03101000.xhp#par_id3150486.15.help.text
+msgid "Run-time error."
+msgstr "Error de tiempo de ejecución."
+
+#: 03101000.xhp#par_id3153953.16.help.text
+msgid "Empty :"
+msgstr "Vacío :"
+
+#: 03101000.xhp#par_id3155306.17.help.text
+msgid "String without any characters."
+msgstr "Cadena sin ningún carácter."
+
+#: 03101000.xhp#par_id3149260.18.help.text
+msgid "Any :"
+msgstr "Cualquiera :"
+
+#: 03101000.xhp#par_id3152938.19.help.text
+msgid "Corresponding number as string."
+msgstr "Número correspondiente como cadena."
+
+#: 03101000.xhp#par_id3155738.20.help.text
+msgid "Zeros at the end of a floating-point number are not included in the returned string."
+msgstr "Los ceros del final de los números de coma flotante no se incluyen en la cadena que se devuelve."
+
+#: 03101000.xhp#hd_id3154729.21.help.text
+msgctxt "03101000.xhp#hd_id3154729.21.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03101000.xhp#par_id3153878.22.help.text
+msgid "Sub ExampleCSTR"
+msgstr "Sub EjemploCSTR"
+
+#: 03101000.xhp#par_id3154943.23.help.text
+msgctxt "03101000.xhp#par_id3154943.23.help.text"
+msgid "Dim sVar As String"
+msgstr "Dim sVar As String"
+
+#: 03101000.xhp#par_id3156283.24.help.text
+msgctxt "03101000.xhp#par_id3156283.24.help.text"
+msgid "Msgbox CDbl(1234.5678)"
+msgstr "Msgbox CDbl(1234,5678)"
+
+#: 03101000.xhp#par_id3147396.25.help.text
+msgctxt "03101000.xhp#par_id3147396.25.help.text"
+msgid "Msgbox CInt(1234.5678)"
+msgstr "Msgbox CInt(1234,5678)"
+
+#: 03101000.xhp#par_id3155600.26.help.text
+msgctxt "03101000.xhp#par_id3155600.26.help.text"
+msgid "Msgbox CLng(1234.5678)"
+msgstr "Msgbox CLng(1234,5678)"
+
+#: 03101000.xhp#par_id3153416.27.help.text
+msgctxt "03101000.xhp#par_id3153416.27.help.text"
+msgid "Msgbox CSng(1234.5678)"
+msgstr "Msgbox CSng(1234,5678)"
+
+#: 03101000.xhp#par_id3156559.28.help.text
+msgid "sVar = CStr(1234.5678)"
+msgstr "sVar = CStr(1234,5678)"
+
+#: 03101000.xhp#par_id3153947.29.help.text
+msgid "MsgBox sVar"
+msgstr "MsgBox sVar"
+
+#: 03101000.xhp#par_id3150327.30.help.text
+msgctxt "03101000.xhp#par_id3150327.30.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03102700.xhp#tit.help.text
+msgid "IsNumeric Function [Runtime]"
+msgstr "Función IsNumeric [Ejecución]"
+
+#: 03102700.xhp#bm_id3145136.help.text
+msgid "<bookmark_value>IsNumeric function</bookmark_value>"
+msgstr "<bookmark_value>IsNumeric;función</bookmark_value>"
+
+#: 03102700.xhp#hd_id3145136.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric Function [Runtime]\">IsNumeric Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric Function [Runtime]\">Función IsNumeric [Ejecución]</link>"
+
+#: 03102700.xhp#par_id3149177.2.help.text
+msgid "Tests if an expression is a number. If the expression is a <link href=\"text/sbasic/shared/00000002.xhp#dezimal\" name=\"number\">number</link>, the function returns True, otherwise the function returns False."
+msgstr "Comprueba si una expresión es un número. Si la expresión es un <link href=\"text/sbasic/shared/00000002.xhp#dezimal\" name=\"number\">número</link> la función devuelve el valor True, en caso contrario devuelve False."
+
+#: 03102700.xhp#hd_id3149415.3.help.text
+msgctxt "03102700.xhp#hd_id3149415.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03102700.xhp#par_id3150771.4.help.text
+msgid "IsNumeric (Var)"
+msgstr "IsNumeric (Var)"
+
+#: 03102700.xhp#hd_id3148685.5.help.text
+msgctxt "03102700.xhp#hd_id3148685.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03102700.xhp#par_id3148944.6.help.text
+msgctxt "03102700.xhp#par_id3148944.6.help.text"
+msgid "Bool"
+msgstr "Lógico"
+
+#: 03102700.xhp#hd_id3148947.7.help.text
+msgctxt "03102700.xhp#hd_id3148947.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03102700.xhp#par_id3154760.8.help.text
+msgid "<emph>Var:</emph> Any expression that you want to test."
+msgstr "<emph>Var:</emph> Cualquier expresión que se desee comprobar."
+
+#: 03102700.xhp#hd_id3149656.9.help.text
+msgctxt "03102700.xhp#hd_id3149656.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03102700.xhp#par_id3154367.10.help.text
+msgid "Sub ExampleIsNumeric"
+msgstr "Sub EjemploIsNumeric"
+
+#: 03102700.xhp#par_id3156423.11.help.text
+msgid "Dim vVar as variant"
+msgstr "Dim vVar As Variant"
+
+#: 03102700.xhp#par_id3154125.12.help.text
+msgid "vVar = \"ABC\""
+msgstr "vVar = \"ABC\""
+
+#: 03102700.xhp#par_id3147230.13.help.text
+msgid "Print IsNumeric(vVar) REM Returns False"
+msgstr "Print IsNumeric(vVar) REM devuelve False"
+
+#: 03102700.xhp#par_id3156214.14.help.text
+msgid "vVar = \"123\""
+msgstr "vVar = \"123\""
+
+#: 03102700.xhp#par_id3154910.15.help.text
+msgid "Print IsNumeric(vVar) REM Returns True"
+msgstr "Print IsNumeric(vVar) REM devuelve True"
+
+#: 03102700.xhp#par_id3147289.16.help.text
+msgctxt "03102700.xhp#par_id3147289.16.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03100080.xhp#tit.help.text
+msgid "CVErr Function [Runtime]"
+msgstr "Función CVErr [Ejecución]"
+
+#: 03100080.xhp#bm_id531022.help.text
+msgid "<bookmark_value>CVErr function</bookmark_value>"
+msgstr "<bookmark_value>Función CVErr</bookmark_value>"
+
+#: 03100080.xhp#par_idN1054B.help.text
+msgid "<link href=\"text/sbasic/shared/03100080.xhp\">CVErr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100080.xhp\">Función CVErr [Ejecución]</link>"
+
+#: 03100080.xhp#par_idN1055B.help.text
+msgid "Converts a string expression or numeric expression to a variant expression of the sub type \"Error\"."
+msgstr "Convierte una expresión de cadena o una expresión numérica en una expresión variant del subtipo \"Error\"."
+
+#: 03100080.xhp#par_idN1055E.help.text
+msgctxt "03100080.xhp#par_idN1055E.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03100080.xhp#par_idN10562.help.text
+msgid "CVErr(Expression)"
+msgstr "CVErr(Expression)"
+
+#: 03100080.xhp#par_idN10565.help.text
+msgctxt "03100080.xhp#par_idN10565.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03100080.xhp#par_idN10569.help.text
+msgctxt "03100080.xhp#par_idN10569.help.text"
+msgid "Variant."
+msgstr "variant."
+
+#: 03100080.xhp#par_idN1056C.help.text
+msgctxt "03100080.xhp#par_idN1056C.help.text"
+msgid "Parameter:"
+msgstr "Parámetro:"
+
+#: 03100080.xhp#par_idN10570.help.text
+msgctxt "03100080.xhp#par_idN10570.help.text"
+msgid "Expression: Any string or numeric expression that you want to convert."
+msgstr "Expression: cualquier cadena o expresión numérica que desee convertir."
+
+#: 03030120.xhp#tit.help.text
+msgid "DateDiff Function [Runtime]"
+msgstr "Función DateDiff [Ejecución]"
+
+#: 03030120.xhp#bm_id6134830.help.text
+msgid "<bookmark_value>DateDiff function</bookmark_value>"
+msgstr "<bookmark_value>Función DateDiff</bookmark_value>"
+
+#: 03030120.xhp#par_idN10542.help.text
+msgid "<link href=\"text/sbasic/shared/03030120.xhp\">DateDiff Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030120.xhp\">Función DateDiff [Ejecución]</link>"
+
+#: 03030120.xhp#par_idN10546.help.text
+msgid "Returns the number of date intervals between two given date values."
+msgstr "Devuelve el número de intervalos de fecha entre dos valores de fecha determinados."
+
+#: 03030120.xhp#par_idN10549.help.text
+msgctxt "03030120.xhp#par_idN10549.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03030120.xhp#par_idN10648.help.text
+msgid "DateDiff (Add, Date1, Date2 [, Week_start [, Year_start]])"
+msgstr "DateDiff (Add, Date1, Date2 [, Week_start [, Year_start]])"
+
+#: 03030120.xhp#par_idN1064B.help.text
+msgctxt "03030120.xhp#par_idN1064B.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03030120.xhp#par_idN1064F.help.text
+msgid "A number."
+msgstr "un número."
+
+#: 03030120.xhp#par_idN10652.help.text
+msgctxt "03030120.xhp#par_idN10652.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03030120.xhp#par_idN10656.help.text
+msgctxt "03030120.xhp#par_idN10656.help.text"
+msgid "<emph>Add</emph> - A string expression from the following table, specifying the date interval."
+msgstr "<emph>Add</emph>: expresión de cadena de la tabla siguiente que especifica el intervalo de fechas."
+
+#: 03030120.xhp#par_idN10664.help.text
+msgid "<emph>Date1, Date2</emph> - The two date values to be compared."
+msgstr "<emph>Date1, Date2</emph>: los dos valores de fecha que se comparan."
+
+#: 03030120.xhp#par_idN1066A.help.text
+msgid "<emph>Week_start</emph> - An optional parameter that specifies the starting day of a week. "
+msgstr "<emph>Week_start</emph>: parámetro opcional que especifica el primer día de una semana. "
+
+#: 03030120.xhp#par_idN1067A.help.text
+msgid "Week_start value"
+msgstr "Valor de Week_start"
+
+#: 03030120.xhp#par_idN10680.help.text
+msgctxt "03030120.xhp#par_idN10680.help.text"
+msgid "Explanation"
+msgstr "Explicación"
+
+#: 03030120.xhp#par_idN10687.help.text
+msgctxt "03030120.xhp#par_idN10687.help.text"
+msgid "0"
+msgstr "0"
+
+#: 03030120.xhp#par_idN1068D.help.text
+msgctxt "03030120.xhp#par_idN1068D.help.text"
+msgid "Use system default value"
+msgstr "Utilizar valor predeterminado del sistema"
+
+#: 03030120.xhp#par_idN10694.help.text
+msgctxt "03030120.xhp#par_idN10694.help.text"
+msgid "1"
+msgstr "1"
+
+#: 03030120.xhp#par_idN1069A.help.text
+msgid "Sunday (default)"
+msgstr "Sunday (valor predeterminado)"
+
+#: 03030120.xhp#par_idN106A1.help.text
+msgctxt "03030120.xhp#par_idN106A1.help.text"
+msgid "2"
+msgstr "2"
+
+#: 03030120.xhp#par_idN106A7.help.text
+msgid "Monday"
+msgstr "Monday"
+
+#: 03030120.xhp#par_idN106AE.help.text
+msgctxt "03030120.xhp#par_idN106AE.help.text"
+msgid "3"
+msgstr "3"
+
+#: 03030120.xhp#par_idN106B4.help.text
+msgid "Tuesday"
+msgstr "Tuesday"
+
+#: 03030120.xhp#par_idN106BB.help.text
+msgctxt "03030120.xhp#par_idN106BB.help.text"
+msgid "4"
+msgstr "4"
+
+#: 03030120.xhp#par_idN106C1.help.text
+msgid "Wednesday"
+msgstr "Wednesday"
+
+#: 03030120.xhp#par_idN106C8.help.text
+msgctxt "03030120.xhp#par_idN106C8.help.text"
+msgid "5"
+msgstr "5"
+
+#: 03030120.xhp#par_idN106CE.help.text
+msgid "Thursday"
+msgstr "Thursday"
+
+#: 03030120.xhp#par_idN106D5.help.text
+msgctxt "03030120.xhp#par_idN106D5.help.text"
+msgid "6"
+msgstr "6"
+
+#: 03030120.xhp#par_idN106DB.help.text
+msgid "Friday"
+msgstr "Friday"
+
+#: 03030120.xhp#par_idN106E2.help.text
+msgctxt "03030120.xhp#par_idN106E2.help.text"
+msgid "7"
+msgstr "7"
+
+#: 03030120.xhp#par_idN106E8.help.text
+msgid "Saturday"
+msgstr "Saturday"
+
+#: 03030120.xhp#par_idN106EB.help.text
+msgid "<emph>Year_start</emph> - An optional parameter that specifies the starting week of a year. "
+msgstr "<emph>Year_start</emph>: parámetro opcional que especifica la primera semana de un año. "
+
+#: 03030120.xhp#par_idN106FB.help.text
+msgid "Year_start value"
+msgstr "Valor de Year_start"
+
+#: 03030120.xhp#par_idN10701.help.text
+msgctxt "03030120.xhp#par_idN10701.help.text"
+msgid "Explanation"
+msgstr "Explicación"
+
+#: 03030120.xhp#par_idN10708.help.text
+msgctxt "03030120.xhp#par_idN10708.help.text"
+msgid "0"
+msgstr "0"
+
+#: 03030120.xhp#par_idN1070E.help.text
+msgctxt "03030120.xhp#par_idN1070E.help.text"
+msgid "Use system default value"
+msgstr "Utilizar valor predeterminado del sistema"
+
+#: 03030120.xhp#par_idN10715.help.text
+msgctxt "03030120.xhp#par_idN10715.help.text"
+msgid "1"
+msgstr "1"
+
+#: 03030120.xhp#par_idN1071B.help.text
+msgid "Week 1 is the week with January, 1st (default)"
+msgstr "Week 1 es la semana del día 1 de enero (predeterminado)"
+
+#: 03030120.xhp#par_idN10722.help.text
+msgctxt "03030120.xhp#par_idN10722.help.text"
+msgid "2"
+msgstr "2"
+
+#: 03030120.xhp#par_idN10728.help.text
+msgid "Week 1 is the first week containing four or more days of that year"
+msgstr "Week 1 es la primera semana que contiene cuatro o más días de ese año"
+
+#: 03030120.xhp#par_idN1072F.help.text
+msgctxt "03030120.xhp#par_idN1072F.help.text"
+msgid "3"
+msgstr "3"
+
+#: 03030120.xhp#par_idN10735.help.text
+msgid "Week 1 is the first week containing only days of the new year"
+msgstr "Week 1 es la primera semana que únicamente contiene días del año nuevo"
+
+#: 03030120.xhp#par_idN10738.help.text
+msgctxt "03030120.xhp#par_idN10738.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03030120.xhp#par_idN1073C.help.text
+msgid "Sub example_datediff"
+msgstr "Ejemplo de datediff"
+
+#: 03030120.xhp#par_idN1073F.help.text
+msgid "msgbox DateDiff(\"d\", \"1/1/2005\", \"12/31/2005\")"
+msgstr "msgbox DateDiff(\"d\", \"1/1/2005\", \"12/31/2005\")"
+
+#: 03030120.xhp#par_idN10742.help.text
+msgctxt "03030120.xhp#par_idN10742.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03020000.xhp#tit.help.text
+msgid "File I/O Functions"
+msgstr "Funciones de E/S de archivo"
+
+#: 03020000.xhp#hd_id3156344.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020000.xhp\" name=\"File I/O Functions\">File I/O Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03020000.xhp\" name=\"Funciones de E/S de archivo\">Funciones de E/S de archivo</link>"
+
+#: 03020000.xhp#par_id3153360.2.help.text
+msgid "Use File I/O functions to create and manage user-defined (data) files."
+msgstr "Utilice las funciones de E/S de archivos para crear y administrar archivos (datos) definidos por el usuario."
+
+#: 03020000.xhp#par_id3150398.3.help.text
+msgid "You can use these functions to support the creation of \"relative\" files, so that you can save and reload certain records by specifying their record number. File I/O functions can also help you manage your files by providing you with information such as file size, current path settings, or the creation date of a file or a directory."
+msgstr "Puede usar estas funciones para dar soporte a la creación de archivos \"relativos\", de manera que puedan guardarse y volverse a cargar algunos registros especificando cuál es su posición. Las funciones de E/S de archivo también pueden ayudar a gestionar los archivos ya que proporcionan información como el tamaño, los valores de ruta de acceso actual o la fecha de creación de un archivo o directorio."
+
+#: 03020302.xhp#tit.help.text
+msgid "Loc Function [Runtime]"
+msgstr "Función Loc [Ejecución]"
+
+#: 03020302.xhp#bm_id3148663.help.text
+msgid "<bookmark_value>Loc function</bookmark_value>"
+msgstr "<bookmark_value>Loc;función</bookmark_value>"
+
+#: 03020302.xhp#hd_id3148663.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020302.xhp\" name=\"Loc Function [Runtime]\">Loc Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020302.xhp\" name=\"Función Loc [Runtime]\">Función Loc [Runtime]</link>"
+
+#: 03020302.xhp#par_id3154138.2.help.text
+msgid "Returns the current position in an open file."
+msgstr "Devuelve la posición actual en un archivo abierto."
+
+#: 03020302.xhp#hd_id3156422.3.help.text
+msgctxt "03020302.xhp#hd_id3156422.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03020302.xhp#par_id3150768.4.help.text
+msgid "Loc(FileNumber)"
+msgstr "Loc (NúmeroArchivo)"
+
+#: 03020302.xhp#hd_id3150440.5.help.text
+msgctxt "03020302.xhp#hd_id3150440.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03020302.xhp#par_id3152578.6.help.text
+msgctxt "03020302.xhp#par_id3152578.6.help.text"
+msgid "Long"
+msgstr "Largo"
+
+#: 03020302.xhp#hd_id3152462.7.help.text
+msgctxt "03020302.xhp#hd_id3152462.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03020302.xhp#par_id3153363.8.help.text
+msgid "<emph>FileNumber:</emph> Any numeric expression that contains the file number that is set by the Open statement for the respective file."
+msgstr "<emph>NúmeroArchivo:</emph> Cualquier expresión numérica que contenga el número de archivo que estableció la instrucción Open para el archivo respectivo."
+
+#: 03020302.xhp#par_id3154320.9.help.text
+msgid "If the Loc function is used for an open random access file, it returns the number of the last record that was last read or written."
+msgstr "Si se utiliza la función Loc para un archivo de acceso aleatorio abierto, ésta devuelve el número del último registro leído o escrito más recientemente."
+
+#: 03020302.xhp#par_id3151115.10.help.text
+msgid "For a sequential file, the Loc function returns the position in a file divided by 128. For binary files, the position of the last read or written byte is returned."
+msgstr "Para un archivo secuencial, la función Loc devuelve la posición en un archivo dividido por 128. Para archivos binarios, se devuelve el byte que se haya leído o escrito más recientemente."
+
+#: 03120302.xhp#tit.help.text
+msgid "LCase Function [Runtime]"
+msgstr "Función Lcase [Ejecución]"
+
+#: 03120302.xhp#bm_id3152363.help.text
+msgid "<bookmark_value>LCase function</bookmark_value>"
+msgstr "<bookmark_value>LCase;función</bookmark_value>"
+
+#: 03120302.xhp#hd_id3152363.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function [Runtime]\">LCase Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function [Runtime]\">Función Lcase [Ejecución]</link>"
+
+#: 03120302.xhp#par_id3145609.2.help.text
+msgid "Converts all uppercase letters in a string to lowercase."
+msgstr "Convierte todas las letras mayúsculas de una cadena en minúsculas."
+
+#: 03120302.xhp#par_id3154347.3.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase\">UCase</link> Function"
+msgstr "Consulte también: Función <link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase\">UCase</link>"
+
+#: 03120302.xhp#hd_id3149456.4.help.text
+msgctxt "03120302.xhp#hd_id3149456.4.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03120302.xhp#par_id3150791.5.help.text
+msgid "LCase (Text As String)"
+msgstr "LCase (Texto As String)"
+
+#: 03120302.xhp#hd_id3154940.6.help.text
+msgctxt "03120302.xhp#hd_id3154940.6.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03120302.xhp#par_id3144760.7.help.text
+msgctxt "03120302.xhp#par_id3144760.7.help.text"
+msgid "String"
+msgstr "Cadena"
+
+#: 03120302.xhp#hd_id3151043.8.help.text
+msgctxt "03120302.xhp#hd_id3151043.8.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03120302.xhp#par_id3153193.9.help.text
+msgctxt "03120302.xhp#par_id3153193.9.help.text"
+msgid "<emph>Text:</emph> Any string expression that you want to convert."
+msgstr "<emph>Texto:</emph> Cualquier expresión de cadena que se desee convertir."
+
+#: 03120302.xhp#hd_id3148451.10.help.text
+msgctxt "03120302.xhp#hd_id3148451.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03120302.xhp#par_id3149203.11.help.text
+msgctxt "03120302.xhp#par_id3149203.11.help.text"
+msgid "Sub ExampleLUCase"
+msgstr "Sub EjemploLUCase"
+
+#: 03120302.xhp#par_id3150440.12.help.text
+msgctxt "03120302.xhp#par_id3150440.12.help.text"
+msgid "Dim sVar As String"
+msgstr "Dim sVar As String"
+
+#: 03120302.xhp#par_id3153367.13.help.text
+msgctxt "03120302.xhp#par_id3153367.13.help.text"
+msgid "sVar = \"Las Vegas\""
+msgstr "sVar = \"Las Vegas\""
+
+#: 03120302.xhp#par_id3146121.14.help.text
+msgid "Print LCase(sVar) REM Returns \"las vegas\""
+msgstr "Print LCase(sVar) REM Devuelve \"las vegas\""
+
+#: 03120302.xhp#par_id3146986.15.help.text
+msgid "Print UCase(sVar) REM Returns \"LAS VEGAS\""
+msgstr "Print UCase(sVar) REM Devuelve \"LAS VEGAS\""
+
+#: 03120302.xhp#par_id3153575.16.help.text
+msgctxt "03120302.xhp#par_id3153575.16.help.text"
+msgid "end Sub"
+msgstr "end Sub"
+
+#: 03100700.xhp#tit.help.text
+msgid "Const Statement [Runtime]"
+msgstr "Instrucción Const [Ejecución]"
+
+#: 03100700.xhp#bm_id3146958.help.text
+msgid "<bookmark_value>Const statement</bookmark_value>"
+msgstr "<bookmark_value>Const;instrucción</bookmark_value>"
+
+#: 03100700.xhp#hd_id3146958.1.help.text
+msgid "<link href=\"text/sbasic/shared/03100700.xhp\" name=\"Const Statement [Runtime]\">Const Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100700.xhp\" name=\"Const Statement [Runtime]\">Instrucción Const [Ejecución]</link>"
+
+#: 03100700.xhp#par_id3154143.2.help.text
+msgid "Defines a string as a constant."
+msgstr "Define una cadena como constante."
+
+#: 03100700.xhp#hd_id3150670.3.help.text
+msgctxt "03100700.xhp#hd_id3150670.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03100700.xhp#par_id3150984.4.help.text
+msgid "Const Text = Expression"
+msgstr "Const Texto = Expresión"
+
+#: 03100700.xhp#hd_id3147530.5.help.text
+msgctxt "03100700.xhp#hd_id3147530.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03100700.xhp#par_id3153897.6.help.text
+msgid "<emph>Text:</emph> Any constant name that follows the standard variable naming conventions."
+msgstr "<emph>Texto:</emph> Cualquier nombre de constante que sigue las convenciones estándar de asignación de nombres a variables."
+
+#: 03100700.xhp#par_id3147264.7.help.text
+msgid "A constant is a variable that helps to improve the readability of a program. Constants are not defined as a specific type of variable, but rather are used as placeholders in the code. You can only define a constant once and it cannot be modified. Use the following statement to define a constant:"
+msgstr "Una constante es una variable que ayuda a mejorar la legibilidad de un programa. Las constantes no se definen como tipo específico de variable, sino como comodines en el código. Las constantes sólo se pueden definir una vez y no pueden modificarse. Use la instrucción siguiente para definir una constante:"
+
+#: 03100700.xhp#par_id3150542.8.help.text
+msgctxt "03100700.xhp#par_id3150542.8.help.text"
+msgid "CONST ConstName=Expression"
+msgstr "CONST NombreConst=Expresión"
+
+#: 03100700.xhp#par_id3150400.9.help.text
+msgid "The type of expression is irrelevant. If a program is started, $[officename] Basic converts the program code internally so that each time a constant is used, the defined expression replaces it."
+msgstr "El tipo de expresión es irrelevante. Si se inicia un programa, $[officename] Basic convierte el código del programa internamente para que, cada vez que se utilice la constante, la expresión definida la sustituya."
+
+#: 03100700.xhp#hd_id3154366.10.help.text
+msgctxt "03100700.xhp#hd_id3154366.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03100700.xhp#par_id3145420.11.help.text
+msgid "Sub ExampleConst"
+msgstr "Sub EjemploConst"
+
+#: 03100700.xhp#par_id3154217.12.help.text
+msgid "Const iVar = 1964"
+msgstr "Const iVar = 1964"
+
+#: 03100700.xhp#par_id3156281.13.help.text
+msgid "Msgbox iVar"
+msgstr "Msgbox iVar"
+
+#: 03100700.xhp#par_id3153969.14.help.text
+msgid "Const sVar = \"Program\", dVar As Double = 1.00"
+msgstr "Const sVar = \"Programa\", dVar As Double = 1.00"
+
+#: 03100700.xhp#par_id3149560.15.help.text
+msgid "Msgbox sVar & \" \" & dVar"
+msgstr "Msgbox sVar & \" \" & dVar"
+
+#: 03100700.xhp#par_id3153368.16.help.text
+msgctxt "03100700.xhp#par_id3153368.16.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03010304.xhp#tit.help.text
+msgid "QBColor Function [Runtime]"
+msgstr "Función QBColor [Ejecución]"
+
+#: 03010304.xhp#hd_id3149670.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010304.xhp\" name=\"QBColor Function [Runtime]\">QBColor Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010304.xhp\" name=\"Función QBColor [Runtime]\">Función QBColor [Runtime]</link>"
+
+#: 03010304.xhp#par_id3150359.2.help.text
+msgid "Returns the <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB\">RGB</link> color code of the color passed as a color value through an older MS-DOS based programming system."
+msgstr "Devuelve el código <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB\">RGB</link> del color que se ha pasado como valor a través de un sistema de programación antiguo basado en MS-DOS."
+
+#: 03010304.xhp#hd_id3154140.3.help.text
+msgctxt "03010304.xhp#hd_id3154140.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03010304.xhp#par_id3151042.4.help.text
+msgid "QBColor (ColorNumber As Integer)"
+msgstr "QBColor (NúmeroColor As Integer)"
+
+#: 03010304.xhp#hd_id3145172.5.help.text
+msgctxt "03010304.xhp#hd_id3145172.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03010304.xhp#par_id3154685.6.help.text
+msgctxt "03010304.xhp#par_id3154685.6.help.text"
+msgid "Long"
+msgstr "Largo"
+
+#: 03010304.xhp#hd_id3156560.7.help.text
+msgctxt "03010304.xhp#hd_id3156560.7.help.text"
+msgid "Parameter:"
+msgstr "Parámetro:"
+
+#: 03010304.xhp#par_id3161832.8.help.text
+msgid "<emph>ColorNumber</emph>: Any integer expression that specifies the color value of the color passed from an older MS-DOS based programming system."
+msgstr "<emph>NúmeroColor</emph>: Cualquier expresión de entero que especifique el valor del color que se ha pasado desde un sistema de programación antiguo basado en MS-DOS."
+
+#: 03010304.xhp#par_id3147318.9.help.text
+msgid "<emph>ColorNumber</emph> can be assigned the following values:"
+msgstr "A <emph>NúmeroColor</emph> pueden asignársele los valores siguientes:"
+
+#: 03010304.xhp#par_id3152576.10.help.text
+msgid "0 : Black"
+msgstr "0 : Negro"
+
+#: 03010304.xhp#par_id3146975.11.help.text
+msgid "1 : Blue"
+msgstr "1 : Azul"
+
+#: 03010304.xhp#par_id3151116.12.help.text
+msgid "2 : Green"
+msgstr "2 : Verde"
+
+#: 03010304.xhp#par_id3155412.13.help.text
+msgid "3 : Cyan"
+msgstr "3 : Cián"
+
+#: 03010304.xhp#par_id3155306.14.help.text
+msgid "4 : Red"
+msgstr "4 : Rojo"
+
+#: 03010304.xhp#par_id3153364.15.help.text
+msgid "5 : Magenta"
+msgstr "5 : Magenta"
+
+#: 03010304.xhp#par_id3146119.16.help.text
+msgid "6 : Yellow"
+msgstr "6 : Amarillo"
+
+#: 03010304.xhp#par_id3154730.17.help.text
+msgid "7 : White"
+msgstr "7 : Blanco"
+
+#: 03010304.xhp#par_id3153877.18.help.text
+msgid "8 : Gray"
+msgstr "8 : Gris"
+
+#: 03010304.xhp#par_id3147124.19.help.text
+msgid "9 : Light Blue"
+msgstr "9 : Azul claro"
+
+#: 03010304.xhp#par_id3145646.20.help.text
+msgid "10 : Light Green"
+msgstr "10 : Verde claro"
+
+#: 03010304.xhp#par_id3149958.21.help.text
+msgid "11 : Light Cyan"
+msgstr "11 : Cián claro"
+
+#: 03010304.xhp#par_id3154943.22.help.text
+msgid "12 : Light Red"
+msgstr "12 : Rojo claro"
+
+#: 03010304.xhp#par_id3150715.23.help.text
+msgid "13 : Light Magenta"
+msgstr "13 : Magenta claro"
+
+#: 03010304.xhp#par_id3146970.24.help.text
+msgid "14 : Light Yellow"
+msgstr "14 : Amarillo claro"
+
+#: 03010304.xhp#par_id3150750.25.help.text
+msgid "15 : Bright White"
+msgstr "15 : Blanco brillante"
+
+#: 03010304.xhp#par_id3146914.26.help.text
+msgid "This function is used only to convert from older MS-DOS based BASIC applications that use the above color codes. The function returns a long integer value indicating the color to be used in the $[officename] IDE."
+msgstr "Esta función sólo se usa para convertir desde aplicaciones BASIC antiguas basadas en MS-DOS que utilizan los códigos de color anteriores. La función devuelve un valor entero largo que indica el color que usar en $[officename] IDE."
+
+#: 03010304.xhp#hd_id3148406.27.help.text
+msgctxt "03010304.xhp#hd_id3148406.27.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03010304.xhp#par_id3145642.28.help.text
+msgid "Sub ExampleQBColor"
+msgstr "Sub EjemploQBColor"
+
+#: 03010304.xhp#par_id3154256.29.help.text
+msgid "Dim iColor As Integer"
+msgstr "Dim iColor As Integer"
+
+#: 03010304.xhp#par_id3147340.30.help.text
+msgctxt "03010304.xhp#par_id3147340.30.help.text"
+msgid "Dim sText As String"
+msgstr "Dim sTexto As String"
+
+#: 03010304.xhp#par_id3155962.31.help.text
+msgid "iColor = 7"
+msgstr "iColor = 7"
+
+#: 03010304.xhp#par_id3145230.32.help.text
+msgid "sText = \"RGB= \" & Red(QBColor( iColor) ) & \":\" & Blue(QBColor( iColor) ) & \":\" & Green(QBColor( iColor) )"
+msgstr "sTexto = \"RGB= \" & Red(QBColor( iColor) ) & \":\" & Blue(QBColor( iColor) ) & \":\" & Green(QBColor( iColor) )"
+
+#: 03010304.xhp#par_id3149566.33.help.text
+msgid "MsgBox stext,0,\"Color \" & iColor"
+msgstr "MsgBox stext,0,\"Color \" & iColor"
+
+#: 03010304.xhp#par_id3154705.34.help.text
+msgctxt "03010304.xhp#par_id3154705.34.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03090301.xhp#tit.help.text
+msgid "GoSub...Return Statement [Runtime]"
+msgstr "Instrucción GoSub...Return [Ejecución]"
+
+#: 03090301.xhp#bm_id3147242.help.text
+msgid "<bookmark_value>GoSub...Return statement</bookmark_value>"
+msgstr "<bookmark_value>GoSub...Return;instrucción</bookmark_value>"
+
+#: 03090301.xhp#hd_id3147242.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090301.xhp\" name=\"GoSub...Return Statement [Runtime]\">GoSub...Return Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090301.xhp\" name=\"GoSub...Return Statement [Runtime]\">Instrucción GoSub...Return [Ejecución]</link>"
+
+#: 03090301.xhp#par_id3145316.2.help.text
+msgid "Calls a subroutine that is indicated by a label from a subroutine or a function. The statements following the label are executed until the next Return statement. Afterwards, the program continues with the statement that follows the <emph>GoSub </emph>statement."
+msgstr "Llama a una subrutina indicada por una etiqueta de una subrutina o una función. La instrucción que sigue a la etiqueta se ejecuta mientras no se encuentre una instrucción Return. Después el programa continúa con la instrucción que sigue a <emph>GoSub </emph>."
+
+#: 03090301.xhp#hd_id3145609.3.help.text
+msgctxt "03090301.xhp#hd_id3145609.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03090301.xhp#par_id3145069.4.help.text
+msgctxt "03090301.xhp#par_id3145069.4.help.text"
+msgid "see Parameters"
+msgstr "Consulte los parámetros"
+
+#: 03090301.xhp#hd_id3147265.5.help.text
+msgctxt "03090301.xhp#hd_id3147265.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03090301.xhp#par_id3148664.6.help.text
+msgctxt "03090301.xhp#par_id3148664.6.help.text"
+msgid "Sub/Function"
+msgstr "Sub/Function"
+
+#: 03090301.xhp#par_id3150400.7.help.text
+msgctxt "03090301.xhp#par_id3150400.7.help.text"
+msgid "statement block"
+msgstr "bloque de instrucciones"
+
+#: 03090301.xhp#par_id3154140.8.help.text
+msgid " Label"
+msgstr "Etiqueta "
+
+#: 03090301.xhp#par_id3150869.9.help.text
+msgctxt "03090301.xhp#par_id3150869.9.help.text"
+msgid "statement block"
+msgstr "bloque de instrucciones"
+
+#: 03090301.xhp#par_id3154909.10.help.text
+msgid "GoSub Label"
+msgstr "Etiqueta GoSub"
+
+#: 03090301.xhp#par_id3153969.11.help.text
+msgid "Exit Sub/Function"
+msgstr "Exit Sub/Function"
+
+#: 03090301.xhp#par_id3154685.12.help.text
+msgid "Label:"
+msgstr "Etiqueta:"
+
+#: 03090301.xhp#par_id3145786.13.help.text
+msgctxt "03090301.xhp#par_id3145786.13.help.text"
+msgid "statement block"
+msgstr "bloque de instrucciones"
+
+#: 03090301.xhp#par_id3159252.14.help.text
+msgctxt "03090301.xhp#par_id3159252.14.help.text"
+msgid "Return"
+msgstr "Return"
+
+#: 03090301.xhp#par_id3154321.15.help.text
+msgctxt "03090301.xhp#par_id3154321.15.help.text"
+msgid "End Sub/Function"
+msgstr "Final de Sub/Function"
+
+#: 03090301.xhp#par_id3147318.16.help.text
+msgid "The <emph>GoSub</emph> statement calls a local subroutine indicated by a label from within a subroutine or a function. The name of the label must end with a colon (\":\")."
+msgstr "La instrucción <emph>GoSub</emph> llama a una subrutina local indicada por una etiqueta desde dentro de una subrutina o función. El nombre de la etiqueta debe terminar con un carácter de dos puntos (\":\")."
+
+#: 03090301.xhp#par_id3153190.17.help.text
+msgid "If the program encounters a Return statement not preceded by <emph>GoSub</emph>, $[officename] Basic returns an error message. Use <emph>Exit Sub</emph> or <emph>Exit Function</emph> to ensure that the program leaves a Sub or Function before reaching the next Return statement."
+msgstr "Si el programa encuentra una instrucción Return que no va precedida de <emph>GoSub</emph>, $[officename] Basic devuelve un mensaje de error. Use <emph>Exit Sub</emph> o <emph>Exit Function</emph> para asegurarse de que el programa salga de una Sub o Function antes de llegar a la siguiente instrucción Return."
+
+#: 03090301.xhp#par_id3145799.19.help.text
+msgid "The following example demonstrates the use of <emph>GoSub</emph> and <emph>Return</emph>. By executing a program section twice, the program calculates the square root of two numbers that are entered by the user."
+msgstr "El ejemplo siguiente demuestra el uso de <emph>GoSub</emph> y <emph>Return</emph>. Al ejecutar una sección de programa dos veces, éste calcula la raíz cuadrada de dos números que ha introducido el usuario."
+
+#: 03090301.xhp#hd_id3156284.20.help.text
+msgctxt "03090301.xhp#hd_id3156284.20.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03090301.xhp#par_id3151073.21.help.text
+msgid "Sub ExampleGoSub"
+msgstr "Sub EjemploGoSub"
+
+#: 03090301.xhp#par_id3154097.22.help.text
+msgid "dim iInputa as Single"
+msgstr "dim iInputa as Single"
+
+#: 03090301.xhp#par_id3150715.23.help.text
+msgid "dim iInputb as Single"
+msgstr "dim iInputb as Single"
+
+#: 03090301.xhp#par_id3153416.24.help.text
+msgid "dim iInputc as Single"
+msgstr "dim iInputc as Single"
+
+#: 03090301.xhp#par_id3146970.25.help.text
+msgid "iInputa = Int(InputBox$ \"Enter the first number: \",\"NumberInput\"))"
+msgstr "iInputa = Int(InputBox$ \"Escriba el primer número: \",\"EntradaNumero\"))"
+
+#: 03090301.xhp#par_id3150329.26.help.text
+msgid "iInputb = Int(InputBox$ \"Enter the second number: \",\"NumberInput\"))"
+msgstr "iInputb = Int(InputBox$ \"Escriba el segundo número: \",\"EntradaNumero\"))"
+
+#: 03090301.xhp#par_id3156277.27.help.text
+msgid "iInputc=iInputa"
+msgstr "iInputc=iInputa"
+
+#: 03090301.xhp#par_id3150321.28.help.text
+msgctxt "03090301.xhp#par_id3150321.28.help.text"
+msgid "GoSub SquareRoot"
+msgstr "GoSub RaizCuadrada"
+
+#: 03090301.xhp#par_id3154756.29.help.text
+msgid "Print \"The square root of\";iInputa;\" is\";iInputc"
+msgstr "Print \"La raíz cuadrada de\";iInputa;\" es\";iInputc"
+
+#: 03090301.xhp#par_id3155764.30.help.text
+msgid "iInputc=iInputb"
+msgstr "iInputc=iInputb"
+
+#: 03090301.xhp#par_id3152960.31.help.text
+msgctxt "03090301.xhp#par_id3152960.31.help.text"
+msgid "GoSub SquareRoot"
+msgstr "GoSub RaizCuadrada"
+
+#: 03090301.xhp#par_id3147340.32.help.text
+msgid "Print \"The square root of\";iInputb;\" is\";iInputc"
+msgstr "Print \"La raíz cuadrada de\";iInputb;\" es\";iInputc"
+
+#: 03090301.xhp#par_id3166450.33.help.text
+msgctxt "03090301.xhp#par_id3166450.33.help.text"
+msgid "Exit Sub"
+msgstr "Exit Sub"
+
+#: 03090301.xhp#par_id3155176.34.help.text
+msgid "SquareRoot:"
+msgstr "RaizCuadrada:"
+
+#: 03090301.xhp#par_id3149257.35.help.text
+msgid "iInputc=sqr(iInputc)"
+msgstr "iInputc=sqr(iInputc)"
+
+#: 03090301.xhp#par_id3146316.36.help.text
+msgctxt "03090301.xhp#par_id3146316.36.help.text"
+msgid "Return"
+msgstr "Return"
+
+#: 03090301.xhp#par_id3154703.37.help.text
+msgctxt "03090301.xhp#par_id3154703.37.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: main0601.xhp#tit.help.text
+msgid "$[officename] Basic Help"
+msgstr "Ayuda para $[officename] Basic"
+
+#: main0601.xhp#hd_id3154232.1.help.text
+msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
+msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">Ayuda para $[officename] Basic</link>"
+
+#: main0601.xhp#par_id3153894.4.help.text
+msgid "%PRODUCTNAME %PRODUCTVERSION provides an Application Programming Interface (API) that allows controlling the $[officename] components with different programming languages by using the $[officename] Software Development Kit (SDK). For more information about the $[officename] API and the Software Development Kit, visit <link href=\"http://api.libreoffice.org/\" name=\"http://api.libreoffice.org\">http://api.libreoffice.org</link>"
+msgstr "%PRODUCTNAME %PRODUCTVERSION incluye una Interfaz de programación de aplicaciones (API) que permite el control de los componentes de $[officename] con distintos lenguajes de programación utilizando su Kit de desarrollo de software (SDK). Si desea obtener más información sobre la API y el SDK de $[officename], visite <link href=\"http://api.libreoffice.org/\" name=\"http://api.libreoffice.org\">http://api.libreoffice.org</link>"
+
+#: main0601.xhp#par_id3147226.10.help.text
+msgid "This help section explains the most common runtime functions of %PRODUCTNAME Basic. For more in-depth information please refer to the <link href=\"http://wiki.documentfoundation.org/Documentation/BASIC_Guide\">OpenOffice.org BASIC Programming Guide</link> on the Wiki."
+msgstr "Esta sección de ayuda explica las funciones de tiempo de ejecución más comunes de %PRODUCTNAME Basic. Para obtener más información detallada consulte la <link href=\"http://wiki.documentfoundation.org/Documentation/BASIC_Guide\">Guía de programación de OpenOffice.org Basic</link> en el Wiki."
+
+#: main0601.xhp#hd_id3146957.9.help.text
+msgid "Working with %PRODUCTNAME Basic"
+msgstr "Funcionamiento de $[officename] Basic"
+
+#: main0601.xhp#hd_id3148473.7.help.text
+msgid "Help about the Help"
+msgstr "Ayuda sobre la Ayuda"
+
+#: 03080000.xhp#tit.help.text
+msgid "Numeric Functions"
+msgstr "Funciones numéricas"
+
+#: 03080000.xhp#hd_id3153127.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080000.xhp\" name=\"Numeric Functions\">Numeric Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03080000.xhp\" name=\"Funciones numéricas\">Funciones numéricas</link>"
+
+#: 03080000.xhp#par_id3148550.2.help.text
+msgid "The following numeric functions perform calculations. Mathematical and Boolean operators are described in a separate section. Functions differ from operators in that functions pass arguments and return a result, instead of operators that return a result by combining two numeric expressions."
+msgstr "Las funciones numéricas siguientes realizan cálculos. Los operadores matemáticos y lógicos se describen en una sección independiente. Las funciones difieren de los operadores en que éstas pasan argumentos y devuelven un resultado, mientras que los operadores devuelven un resultado al combinar dos expresiones numéricas."
+
+#: 03080800.xhp#tit.help.text
+msgid "Converting Numbers"
+msgstr "Conversión de números"
+
+#: 03080800.xhp#hd_id3145315.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080800.xhp\" name=\"Converting Numbers\">Converting Numbers</link>"
+msgstr "<link href=\"text/sbasic/shared/03080800.xhp\" name=\"Conversión de números\">Conversión de números</link>"
+
+#: 03080800.xhp#par_id3154760.2.help.text
+msgid "The following functions convert numbers from one number format to another."
+msgstr "Las funciones siguientes convierten números de un formato numérico a otro."
+
+#: 03070100.xhp#tit.help.text
+msgid "\"-\" Operator [Runtime]"
+msgstr "Operador \"-\" [Ejecución]"
+
+#: 03070100.xhp#bm_id3156042.help.text
+msgid "<bookmark_value>\"-\" operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>operador \"-\";operadores matemáticos</bookmark_value>"
+
+#: 03070100.xhp#hd_id3156042.1.help.text
+msgid "<link href=\"text/sbasic/shared/03070100.xhp\">\"-\" Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070100.xhp\">Operador \"-\" [Ejecución]</link>"
+
+#: 03070100.xhp#par_id3153345.2.help.text
+msgid "Subtracts two values."
+msgstr "Resta dos valores."
+
+#: 03070100.xhp#hd_id3149416.3.help.text
+msgctxt "03070100.xhp#hd_id3149416.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03070100.xhp#par_id3156023.4.help.text
+msgid "Result = Expression1 - Expression2"
+msgstr "Resultado = Expresión1 - Expresión2"
+
+#: 03070100.xhp#hd_id3154760.5.help.text
+msgctxt "03070100.xhp#hd_id3154760.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03070100.xhp#par_id3147560.6.help.text
+msgid "<emph>Result:</emph> Any numerical expression that contains the result of the subtraction."
+msgstr "Resultado: Cualquier expresión numérica que contenga el resultado de la resta."
+
+#: 03070100.xhp#par_id3150398.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to subtract."
+msgstr "Expresión1, Expresión2: Cualquier expresión numérica que se desee restar."
+
+#: 03070100.xhp#hd_id3154366.8.help.text
+msgctxt "03070100.xhp#hd_id3154366.8.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03070100.xhp#par_id3147230.9.help.text
+msgid "Sub ExampleSubtraction1"
+msgstr "Sub EjemploResta1"
+
+#: 03070100.xhp#par_id3156281.10.help.text
+msgid "Print 5 - 5"
+msgstr "Print 5 - 5"
+
+#: 03070100.xhp#par_id3145172.11.help.text
+msgctxt "03070100.xhp#par_id3145172.11.help.text"
+msgid "End sub"
+msgstr "End sub"
+
+#: 03070100.xhp#par_id3149562.13.help.text
+msgid "Sub ExampleSubtraction2"
+msgstr "Sub EjemploResta2"
+
+#: 03070100.xhp#par_id3159254.14.help.text
+msgctxt "03070100.xhp#par_id3159254.14.help.text"
+msgid "Dim iValue1 as Integer"
+msgstr "Dim iValor1 as Integer"
+
+#: 03070100.xhp#par_id3147434.15.help.text
+msgctxt "03070100.xhp#par_id3147434.15.help.text"
+msgid "Dim iValue2 as Integer"
+msgstr "Dim iValor2 as Integer"
+
+#: 03070100.xhp#par_id3150011.16.help.text
+msgctxt "03070100.xhp#par_id3150011.16.help.text"
+msgid "iValue1 = 5"
+msgstr "iValor1 = 5"
+
+#: 03070100.xhp#par_id3152576.17.help.text
+msgctxt "03070100.xhp#par_id3152576.17.help.text"
+msgid "iValue2 = 10"
+msgstr "iValor2 = 10"
+
+#: 03070100.xhp#par_id3163712.18.help.text
+msgid "Print iValue1 - iValue2"
+msgstr "Print iValor1 - iValor2"
+
+#: 03070100.xhp#par_id3156443.19.help.text
+msgctxt "03070100.xhp#par_id3156443.19.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03090102.xhp#tit.help.text
+msgid "Select...Case Statement [Runtime]"
+msgstr "Instrucción Select...Case [Ejecución]"
+
+#: 03090102.xhp#bm_id3149416.help.text
+msgid "<bookmark_value>Select...Case statement</bookmark_value><bookmark_value>Case statement</bookmark_value>"
+msgstr "<bookmark_value>Select...Case statement</bookmark_value><bookmark_value>Case statement</bookmark_value>"
+
+#: 03090102.xhp#hd_id3149416.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090102.xhp\" name=\"Select...Case Statement [Runtime]\">Select...Case Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090102.xhp\" name=\"Select...Case Statement [Runtime]\">Instrucción Select...Case [Ejecución]</link>"
+
+#: 03090102.xhp#par_id3153896.2.help.text
+msgid "Defines one or more statement blocks depending on the value of an expression."
+msgstr "Define uno o más bloques de instrucciones, dependiendo del valor de una expresión."
+
+#: 03090102.xhp#hd_id3147265.3.help.text
+msgctxt "03090102.xhp#hd_id3147265.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03090102.xhp#par_id3150400.4.help.text
+msgid "Select Case condition Case expression Statement Block [Case expression2 Statement Block][Case Else] Statement Block End Select"
+msgstr "Select Case condición Case expresión Bloque de instrucciones [Case expresión2 Bloque de instrucciones][Case Else] Bloque de instrucciones End Select"
+
+#: 03090102.xhp#hd_id3150767.5.help.text
+msgctxt "03090102.xhp#hd_id3150767.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03090102.xhp#par_id3156281.6.help.text
+msgid "<emph>Condition:</emph> Any expression that controls if the statement block that follows the respective Case clause is executed."
+msgstr "<emph>Condición:</emph> Cualquier expresión que controla si se ejecutará el bloque de instrucciones que sigue a la cláusula Case correspondiente."
+
+#: 03090102.xhp#par_id3150448.7.help.text
+msgid "<emph>Expression:</emph> Any expression that is compatible with the Condition type expression. The statement block that follows the Case clause is executed if <emph>Condition</emph> matches <emph>Expression</emph>."
+msgstr "<emph>Expresión:</emph> Cualquier expresión que es compatible con la del tipo de la condición. El bloque de instrucciones que sigue a la cláusula Case se ejecuta sólo si la <emph>Condición</emph> coincide con la <emph>Expresión</emph>."
+
+#: 03090102.xhp#hd_id3153768.8.help.text
+msgctxt "03090102.xhp#hd_id3153768.8.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03090102.xhp#par_id3150441.9.help.text
+msgctxt "03090102.xhp#par_id3150441.9.help.text"
+msgid "Sub ExampleRandomSelect"
+msgstr "Sub EjemploSelecAleatoria"
+
+#: 03090102.xhp#par_id3152462.10.help.text
+msgctxt "03090102.xhp#par_id3152462.10.help.text"
+msgid "Dim iVar As Integer"
+msgstr "Dim iVar As Integer"
+
+#: 03090102.xhp#par_id3149260.11.help.text
+msgctxt "03090102.xhp#par_id3149260.11.help.text"
+msgid "iVar = Int((15 * Rnd) -2)"
+msgstr "iVar = Int((15 * Rnd) -2)"
+
+#: 03090102.xhp#par_id3151113.12.help.text
+msgctxt "03090102.xhp#par_id3151113.12.help.text"
+msgid "Select Case iVar"
+msgstr "Select Case iVar"
+
+#: 03090102.xhp#par_id3149481.13.help.text
+msgctxt "03090102.xhp#par_id3149481.13.help.text"
+msgid "Case 1 To 5"
+msgstr "Case 1 To 5"
+
+#: 03090102.xhp#par_id3152597.14.help.text
+msgctxt "03090102.xhp#par_id3152597.14.help.text"
+msgid "Print \"Number from 1 to 5\""
+msgstr "Print \"Número de 1 a 5\""
+
+#: 03090102.xhp#par_id3147428.15.help.text
+msgctxt "03090102.xhp#par_id3147428.15.help.text"
+msgid "Case 6, 7, 8"
+msgstr "Case 6, 7, 8"
+
+#: 03090102.xhp#par_id3147349.16.help.text
+msgctxt "03090102.xhp#par_id3147349.16.help.text"
+msgid "Print \"Number from 6 to 8\""
+msgstr "Print \"Número de 6 a 8\""
+
+#: 03090102.xhp#par_id3153729.17.help.text
+msgid "Case 8 To 10"
+msgstr "Case 8 To 10"
+
+#: 03090102.xhp#par_id3152886.18.help.text
+msgctxt "03090102.xhp#par_id3152886.18.help.text"
+msgid "Print \"Greater than 8\""
+msgstr "Print \"Mayor que 8\""
+
+#: 03090102.xhp#par_id3155414.19.help.text
+msgctxt "03090102.xhp#par_id3155414.19.help.text"
+msgid "Case Else"
+msgstr "Case Else"
+
+#: 03090102.xhp#par_id3146975.20.help.text
+msgid "Print \"Out of range 1 to 10\""
+msgstr "Print \"Fuera del rango de 1 a 10\""
+
+#: 03090102.xhp#par_id3150419.21.help.text
+msgctxt "03090102.xhp#par_id3150419.21.help.text"
+msgid "End Select"
+msgstr "End Select"
+
+#: 03090102.xhp#par_id3154943.22.help.text
+msgctxt "03090102.xhp#par_id3154943.22.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03020411.xhp#tit.help.text
+msgid "MkDir Statement [Runtime]"
+msgstr "Instrucción MkDir [Ejecución]"
+
+#: 03020411.xhp#bm_id3156421.help.text
+msgid "<bookmark_value>MkDir statement</bookmark_value>"
+msgstr "<bookmark_value>MkDir;instrucción</bookmark_value>"
+
+#: 03020411.xhp#hd_id3156421.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement [Runtime]\">MkDir Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"Declaración MkDir [Runtime]\">Declaración MkDir [Runtime]</link>"
+
+#: 03020411.xhp#par_id3147000.2.help.text
+msgid "Creates a new directory on a data medium."
+msgstr "Crea un directorio nuevo en un soporte de datos."
+
+#: 03020411.xhp#hd_id3148520.3.help.text
+msgctxt "03020411.xhp#hd_id3148520.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03020411.xhp#par_id3155150.4.help.text
+msgid "MkDir Text As String"
+msgstr "MkDir Texto As String"
+
+#: 03020411.xhp#hd_id3156027.5.help.text
+msgctxt "03020411.xhp#hd_id3156027.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03020411.xhp#par_id3153750.6.help.text
+msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>Texto:</emph> Cualquier expresión de cadena que especifique el nombre y ruta del directorio que se desea crear. También se puede usar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notación URL\">notación URL</link>."
+
+#: 03020411.xhp#par_id3153311.7.help.text
+msgid "If the path is not determined, the directory is created in the current directory."
+msgstr "Si la ruta de acceso no se determina, se crea el directorio en el directorio actual."
+
+#: 03020411.xhp#hd_id3155388.8.help.text
+msgctxt "03020411.xhp#hd_id3155388.8.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03020411.xhp#par_id3148473.9.help.text
+msgid "Sub ExampleFileIO"
+msgstr "Sub EjemploFileIO"
+
+#: 03020411.xhp#par_id3149762.10.help.text
+msgid "' Example for functions of the file organization"
+msgstr "' Ejemplo de funciones par una organización de archivos."
+
+#: 03020411.xhp#par_id3145610.11.help.text
+msgid "Const sFile1 as String = \"file://c|/autoexec.bat\""
+msgstr "Const sArchivo1 as String = \"file://c|/autoexec.bat\""
+
+#: 03020411.xhp#par_id3147264.12.help.text
+msgid "Const sDir1 as String = \"file://c|/Temp\""
+msgstr "Const sDir1 as String = \"file://c|/Temp\""
+
+#: 03020411.xhp#par_id3149669.13.help.text
+msgid "Const sSubDir1 as String =\"Test\""
+msgstr "Const sSubDir1 as String =\"Test\""
+
+#: 03020411.xhp#par_id3148663.14.help.text
+msgid "Const sFile2 as String = \"Copied.tmp\""
+msgstr "Const sArchivo2 as String = \"Copiado.tmp\""
+
+#: 03020411.xhp#par_id3154071.15.help.text
+msgid "Const sFile3 as String = \"Renamed.tmp\""
+msgstr "Const sArchivo3 as String = \"NuevoNombre.tmp\""
+
+#: 03020411.xhp#par_id3150792.16.help.text
+msgid "Dim sFile as String"
+msgstr "Dim sArchivo As String"
+
+#: 03020411.xhp#par_id3154366.17.help.text
+msgid "sFile = sDir1 + \"/\" + sSubDir1"
+msgstr "sArchivo = sDir1 + \"/\" + sSubDir1"
+
+#: 03020411.xhp#par_id3149204.18.help.text
+msgctxt "03020411.xhp#par_id3149204.18.help.text"
+msgid "ChDir( sDir1 )"
+msgstr "ChDir( sDir1 )"
+
+#: 03020411.xhp#par_id3154217.19.help.text
+msgid "If Dir(sSubDir1,16)=\"\" then ' Does the directory exist ?"
+msgstr "If Dir(sSubDir1,16)=\"\" then ' ¿Existe el directorio?"
+
+#: 03020411.xhp#par_id3156423.20.help.text
+msgid "MkDir sSubDir1"
+msgstr "MkDir sSubDir1"
+
+#: 03020411.xhp#par_id3147228.21.help.text
+msgid "MsgBox sFile,0,\"Create directory\""
+msgstr "MsgBox sArchivo,0,\"Crear directorio\""
+
+#: 03020411.xhp#par_id3153970.22.help.text
+msgctxt "03020411.xhp#par_id3153970.22.help.text"
+msgid "End If"
+msgstr "End If"
+
+#: 03020411.xhp#par_id3148451.24.help.text
+msgid "sFile = sFile + \"/\" + sFile2"
+msgstr "sArchivo = sArchivo + \"/\" + sArchivo2"
+
+#: 03020411.xhp#par_id3155132.25.help.text
+msgid "FileCopy sFile1 , sFile"
+msgstr "FileCopy sArchivo1 , sArchivo"
+
+#: 03020411.xhp#par_id3153770.26.help.text
+msgid "MsgBox fSysURL(CurDir()),0,\"Current directory\""
+msgstr "MsgBox fSysURL(CurDir()),0,\"Directorio actual\""
+
+#: 03020411.xhp#par_id3159154.27.help.text
+msgid "MsgBox sFile & Chr(13) & FileDateTime( sFile ),0,\"Creation time\""
+msgstr "MsgBox sArchivo & Chr(13) & FileDateTime( sArchivo ),0,\"Fecha de creación\""
+
+#: 03020411.xhp#par_id3149484.28.help.text
+msgid "MsgBox sFile & Chr(13)& FileLen( sFile ),0,\"File length\""
+msgstr "MsgBox sArchivo & Chr(13)& FileLen( sArchivo ),0,\"Tamaño del archivo\""
+
+#: 03020411.xhp#par_id3152885.29.help.text
+msgid "MsgBox sFile & Chr(13)& GetAttr( sFile ),0,\"File attributes\""
+msgstr "MsgBox sArchivo & Chr(13)& GetAttr( sArchivo ),0,\"Atributos del archivo\""
+
+#: 03020411.xhp#par_id3152596.30.help.text
+msgid "Name sFile as sDir1 + \"/\" + sSubDir1 + \"/\" + sFile3"
+msgstr "Name sArchivo as sDir1 + \"/\" + sSubDir1 + \"/\" + sArchivo3"
+
+#: 03020411.xhp#par_id3153952.31.help.text
+msgid "' Rename in the same directory"
+msgstr "' Cambiar el nombre en el mismo directorio"
+
+#: 03020411.xhp#par_id3152576.33.help.text
+msgid "sFile = sDir1 + \"/\" + sSubDir1 + \"/\" + sFile3"
+msgstr "sArchivo = sDir1 + \"/\" + sSubDir1 + \"/\" + sArchivo3"
+
+#: 03020411.xhp#par_id3147426.34.help.text
+msgid "SetAttr( sFile, 0 ) 'Delete all attributes"
+msgstr "SetAttr( sArchivo, 0 ) 'Borrar todos los atributos"
+
+#: 03020411.xhp#par_id3148647.35.help.text
+msgid "MsgBox sFile & Chr(13) & GetAttr( sFile ),0,\"New file attributes\""
+msgstr "MsgBox sArchivo & Chr(13) & GetAttr( sArchivo ),0,\"Atributos del archivo nuevo\""
+
+#: 03020411.xhp#par_id3153363.36.help.text
+msgid "Kill sFile"
+msgstr "Kill sArchivo"
+
+#: 03020411.xhp#par_id3151113.37.help.text
+msgid "RmDir sDir1 + \"/\" + sSubDir1"
+msgstr "RmDir sDir1 + \"/\" + sSubDir1"
+
+#: 03020411.xhp#par_id3153157.38.help.text
+msgctxt "03020411.xhp#par_id3153157.38.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03020411.xhp#par_id3150092.40.help.text
+msgid "' Converts a system path in URL"
+msgstr "' Convierte una ruta del sistema en una URL"
+
+#: 03020411.xhp#par_id3147396.41.help.text
+msgid "Function fSysURL( fSysFp as String ) as String"
+msgstr "Function fSysURL( fSysFp as String ) as String"
+
+#: 03020411.xhp#par_id3153878.42.help.text
+msgid "Dim iPos As String"
+msgstr "Dim iPos As String"
+
+#: 03020411.xhp#par_id3150420.43.help.text
+msgid "iPos = 1"
+msgstr "iPos = 1"
+
+#: 03020411.xhp#par_id3145253.44.help.text
+msgid "iPos = Instr(iPos,fSysFp, getPathSeparator())"
+msgstr "iPos = Instr(iPos,fSysFp, getPathSeparator())"
+
+#: 03020411.xhp#par_id3153415.45.help.text
+msgid "do while iPos > 0"
+msgstr "do while iPos > 0"
+
+#: 03020411.xhp#par_id3153512.46.help.text
+msgid "mid( fSysFp, iPos , 1,\"/\")"
+msgstr "mid( fSysFp, iPos , 1,\"/\")"
+
+#: 03020411.xhp#par_id3146899.47.help.text
+msgid "iPos = Instr(iPos+1,fSysFp, getPathSeparator())"
+msgstr "iPos = Instr(iPos+1,fSysFp, getPathSeparator())"
+
+#: 03020411.xhp#par_id3145652.48.help.text
+msgid "loop"
+msgstr "loop"
+
+#: 03020411.xhp#par_id3156276.49.help.text
+msgid "' the colon with DOS"
+msgstr "' los dos puntos con DOS"
+
+#: 03020411.xhp#par_id3146913.50.help.text
+msgid "iPos = Instr(1,fSysFp,\":\")"
+msgstr "iPos = Instr(1,fSysFp,\":\")"
+
+#: 03020411.xhp#par_id3145640.51.help.text
+msgid "if iPos > 0 then mid( fSysFp, iPos , 1,\"|\")"
+msgstr "if iPos > 0 then mid( fSysFp, iPos , 1,\"|\")"
+
+#: 03020411.xhp#par_id3155443.52.help.text
+msgid "fSysURL = \"file://\" & fSysFp"
+msgstr "fSysURL = \"file://\" & fSysFp"
+
+#: 03020411.xhp#par_id3148995.53.help.text
+msgctxt "03020411.xhp#par_id3148995.53.help.text"
+msgid "End Function"
+msgstr "End Function"
+
+#: 03131700.xhp#tit.help.text
+msgid "GetProcessServiceManager Function [Runtime]"
+msgstr "Función GetProcessServiceManager [Ejecución]"
+
+#: 03131700.xhp#bm_id3153255.help.text
+msgid "<bookmark_value>GetProcessServiceManager function</bookmark_value><bookmark_value>ProcessServiceManager</bookmark_value>"
+msgstr "<bookmark_value>GetProcessServiceManager;función</bookmark_value><bookmark_value>ProcessServiceManager;GetProcessServiceManager</bookmark_value>"
+
+#: 03131700.xhp#hd_id3153255.1.help.text
+msgid "<link href=\"text/sbasic/shared/03131700.xhp\" name=\"GetProcessServiceManager Function [Runtime]\">GetProcessServiceManager Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131700.xhp\" name=\"GetProcessServiceManager Function [Runtime]\">Función GetProcessServiceManager [Ejecución]</link>"
+
+#: 03131700.xhp#par_id3156414.2.help.text
+msgid "Returns the ProcessServiceManager (central Uno ServiceManager)."
+msgstr "Devuelve el ProcessServiceManager (central Uno ServiceManager)."
+
+#: 03131700.xhp#par_id3145136.3.help.text
+msgid "This function is required when you want to instantiate a service using CreateInstanceWithArguments."
+msgstr "Esta función es necesaria cuando se desea crear un caso de un servicio mediante CreateInstanceWithArguments."
+
+#: 03131700.xhp#hd_id3153681.4.help.text
+msgctxt "03131700.xhp#hd_id3153681.4.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03131700.xhp#par_id3151110.5.help.text
+msgctxt "03131700.xhp#par_id3151110.5.help.text"
+msgid "oServiceManager = GetProcessServiceManager()"
+msgstr "oServiceManager = GetProcessServiceManager()"
+
+#: 03131700.xhp#hd_id3149516.6.help.text
+msgctxt "03131700.xhp#hd_id3149516.6.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03131700.xhp#par_id3143270.7.help.text
+msgctxt "03131700.xhp#par_id3143270.7.help.text"
+msgid "oServiceManager = GetProcessServiceManager()"
+msgstr "oServiceManager = GetProcessServiceManager()"
+
+#: 03131700.xhp#par_id3153825.8.help.text
+msgid "oIntrospection = oServiceManager.createInstance(\"com.sun.star.beans.Introspection\");"
+msgstr "oIntrospection = oServiceManager.createInstance(\"com.sun.star.beans.Introspection\");"
+
+#: 03131700.xhp#par_id3148473.9.help.text
+msgid "this is the same as the following statement:"
+msgstr "esto equivale a la instrucción siguiente:"
+
+#: 03131700.xhp#par_id3145609.10.help.text
+msgid "oIntrospection = CreateUnoService(\"com.sun.star.beans.Introspection\")"
+msgstr "oIntrospection = CreateUnoService(\"com.sun.star.beans.Introspection\")"
+
+#: 03104300.xhp#tit.help.text
+msgid "DimArray Function [Runtime]"
+msgstr "Función DimArray [Ejecución]"
+
+#: 03104300.xhp#bm_id3150616.help.text
+msgid "<bookmark_value>DimArray function</bookmark_value>"
+msgstr "<bookmark_value>DimArray;función</bookmark_value>"
+
+#: 03104300.xhp#hd_id3150616.1.help.text
+msgid "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray Function [Runtime]\">DimArray Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray Function [Runtime]\">Función DimArray [Ejecución]</link>"
+
+#: 03104300.xhp#par_id3153527.2.help.text
+msgid "Returns a Variant array."
+msgstr "Devuelve una matriz de tipo Variante."
+
+#: 03104300.xhp#hd_id3149762.3.help.text
+msgctxt "03104300.xhp#hd_id3149762.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03104300.xhp#par_id3148473.4.help.text
+msgid "DimArray ( Argument list)"
+msgstr "DimArray (Lista de argumentos)"
+
+#: 03104300.xhp#par_id3154142.5.help.text
+msgid "See also <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array\">Array</link>"
+msgstr "Consulte también <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array\">Array</link>"
+
+#: 03104300.xhp#par_id3156023.6.help.text
+msgid "If no parameters are passed, an empty array is created (like Dim A() that is the same as a sequence of length 0 in Uno). If parameters are specified, a dimension is created for each parameter."
+msgstr "Si no se pasan parámetros, se crea una matriz vacía (como Dim A() que equivale a una secuencia de longitud 0 en Uno). Si se especifican parámetros, se crea una dimensión para cada parámetro."
+
+#: 03104300.xhp#hd_id3154760.7.help.text
+msgctxt "03104300.xhp#hd_id3154760.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03104300.xhp#par_id3159414.8.help.text
+msgctxt "03104300.xhp#par_id3159414.8.help.text"
+msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
+msgstr "<emph>Lista de argumentos:</emph> Una lista de cualquier número de argumentos que estén separados por comas."
+
+#: 03104300.xhp#hd_id3150358.9.help.text
+msgctxt "03104300.xhp#hd_id3150358.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03104300.xhp#par_id3154939.10.help.text
+msgid "DimArray( 2, 2, 4 ) is the same as DIM a( 2, 2, 4 )"
+msgstr "DimArray( 2, 2, 4 )equivale a DIM a( 2, 2, 4 )"
+
+#: 03090303.xhp#tit.help.text
+msgid "On...GoSub Statement; On...GoTo Statement [Runtime]"
+msgstr "Instrucción On...GoSub; Instrucción On...GoTo [Ejecución]"
+
+#: 03090303.xhp#bm_id3153897.help.text
+msgid "<bookmark_value>On...GoSub statement</bookmark_value><bookmark_value>On...GoTo statement</bookmark_value>"
+msgstr "<bookmark_value>On...GoSub;instrucción</bookmark_value><bookmark_value>On...GoTo;instrucción</bookmark_value>"
+
+#: 03090303.xhp#hd_id3153897.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090303.xhp\" name=\"On...GoSub Statement; On...GoTo Statement [Runtime]\">On...GoSub Statement; On...GoTo Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090303.xhp\" name=\"On...GoSub Statement; On...GoTo Statement [Runtime]\">Instrucción On...GoSub; Instrucción On...GoTo [Ejecución]</link>"
+
+#: 03090303.xhp#par_id3150359.2.help.text
+msgid "Branches to one of several specified lines in the program code, depending on the value of a numeric expression."
+msgstr "Bifurca a una de varias líneas especificadas del código del programa, dependiendo del valor de una expresión numérica."
+
+#: 03090303.xhp#hd_id3148798.3.help.text
+msgctxt "03090303.xhp#hd_id3148798.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03090303.xhp#par_id3154366.4.help.text
+msgid "On N GoSub Label1[, Label2[, Label3[,...]]]"
+msgstr "On N GoSub Etiqueta1[, Etiqueta2[, Etiqueta3[,...]]]"
+
+#: 03090303.xhp#par_id3150769.5.help.text
+msgid "On NumExpression GoTo Label1[, Label2[, Label3[,...]]]"
+msgstr "On ExpresiónNum GoTo Etiqueta1[, Etiqueta2[, Etiqueta3[,...]]]"
+
+#: 03090303.xhp#hd_id3156215.6.help.text
+msgctxt "03090303.xhp#hd_id3156215.6.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03090303.xhp#par_id3148673.7.help.text
+msgid "<emph>NumExpression:</emph> Any numeric expression between 0 and 255 that determines which of the lines the program branches to. If NumExpression is 0, the statement is not executed. If NumExpression is greater than 0, the program jumps to the label that has a position number that corresponds to the expression (1 = First label; 2 = Second label)"
+msgstr "<emph>ExpresiónNum:</emph> Cualquier expresión numérica entre 0 y 255 que determine a qué línea bifurca el programa. Si ExpresiónNum es 0, la instrucción no se ejecuta. Si ExpresiónNum es mayor que 0, el programa salta a la etiqueta que tiene un número de posición que corresponde a la expresión (1 = Primera etiqueta; 2 = Segunda etiqueta)"
+
+#: 03090303.xhp#par_id3153194.8.help.text
+msgid "<emph>Label:</emph> Target line according to<emph> GoTo </emph>or <emph>GoSub</emph> structure."
+msgstr "<emph>Etiqueta:</emph> Línea destino de acuerdo con la estructura <emph> GoTo </emph>o <emph>GoSub</emph>."
+
+#: 03090303.xhp#par_id3156442.9.help.text
+msgid "The <emph>GoTo</emph> or <emph>GoSub </emph>conventions are valid."
+msgstr "Las convenciones de <emph>GoTo</emph> o <emph>GoSub </emph>son válidas."
+
+#: 03090303.xhp#hd_id3148645.10.help.text
+msgctxt "03090303.xhp#hd_id3148645.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03090303.xhp#par_id3154014.12.help.text
+msgid "Sub ExampleOnGosub"
+msgstr "Sub EjemploOnGosub"
+
+#: 03090303.xhp#par_id3153158.13.help.text
+msgctxt "03090303.xhp#par_id3153158.13.help.text"
+msgid "Dim iVar As Integer"
+msgstr "Dim iVar As Integer"
+
+#: 03090303.xhp#par_id3154490.14.help.text
+msgctxt "03090303.xhp#par_id3154490.14.help.text"
+msgid "Dim sVar As String"
+msgstr "Dim sVar As String"
+
+#: 03090303.xhp#par_id3155417.15.help.text
+msgid "iVar = 2"
+msgstr "iVar = 2"
+
+#: 03090303.xhp#par_id3154730.16.help.text
+msgid "sVar =\"\""
+msgstr "sVar =\"\""
+
+#: 03090303.xhp#par_id3154942.17.help.text
+msgid "On iVar GoSub Sub1, Sub2"
+msgstr "On iVar GoSub Sub1, Sub2"
+
+#: 03090303.xhp#par_id3149378.18.help.text
+msgid "On iVar GoTo Line1, Line2"
+msgstr "On iVar GoTo Linea1, Linea2"
+
+#: 03090303.xhp#par_id3153416.19.help.text
+msgctxt "03090303.xhp#par_id3153416.19.help.text"
+msgid "Exit Sub"
+msgstr "Exit Sub"
+
+#: 03090303.xhp#par_id3154015.20.help.text
+msgid "Sub1:"
+msgstr "Sub1:"
+
+#: 03090303.xhp#par_id3153948.21.help.text
+msgid "sVar =sVar & \" From Sub 1 to\" : Return"
+msgstr "sVar =sVar & \" De Sub 1 a\" : Return"
+
+#: 03090303.xhp#par_id3150750.22.help.text
+msgid "Sub2:"
+msgstr "Sub2:"
+
+#: 03090303.xhp#par_id3153708.23.help.text
+msgid "sVar =sVar & \" From Sub 2 to\" : Return"
+msgstr "sVar =sVar & \" De Sub 2 a\" : Return"
+
+#: 03090303.xhp#par_id3155067.24.help.text
+msgid "Line1:"
+msgstr "Linea1:"
+
+#: 03090303.xhp#par_id3150321.25.help.text
+msgid "sVar =sVar & \" Label 1\" : GoTo Ende"
+msgstr "sVar =sVar & \" Etiqueta 1\" : GoTo Final"
+
+#: 03090303.xhp#par_id3149019.26.help.text
+msgid "Line2:"
+msgstr "Linea2:"
+
+#: 03090303.xhp#par_id3155764.27.help.text
+msgid "sVar =sVar & \" Label 2\""
+msgstr "sVar =sVar & \" Etiqueta 2\""
+
+#: 03090303.xhp#par_id3153711.28.help.text
+msgid "Ende:"
+msgstr "Final:"
+
+#: 03090303.xhp#par_id3154253.29.help.text
+msgid "MsgBox sVar,0,\"On...Gosub\""
+msgstr "MsgBox sVar,0,\"On...Gosub\""
+
+#: 03090303.xhp#par_id3149565.30.help.text
+msgctxt "03090303.xhp#par_id3149565.30.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03120101.xhp#tit.help.text
+msgid "Asc Function [Runtime]"
+msgstr "Función Asc [Ejecución]"
+
+#: 03120101.xhp#bm_id3150499.help.text
+msgid "<bookmark_value>Asc function</bookmark_value>"
+msgstr "<bookmark_value>Asc;función</bookmark_value>"
+
+#: 03120101.xhp#hd_id3150499.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120101.xhp\" name=\"Asc Function [Runtime]\">Asc Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120101.xhp\" name=\"Asc Function [Runtime]\">Función Asc [Ejecución]</link>"
+
+#: 03120101.xhp#par_id3151384.2.help.text
+msgid "Returns the ASCII (American Standard Code for Information Interchange) value of the first character in a string expression."
+msgstr "Devuelve el valor ASCII (American Standard Code for Information Interchange) del primer carácter de una expresión de cadena."
+
+#: 03120101.xhp#hd_id3155555.3.help.text
+msgctxt "03120101.xhp#hd_id3155555.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03120101.xhp#par_id3143267.4.help.text
+msgid "Asc (Text As String)"
+msgstr "Asc (Texto As String)"
+
+#: 03120101.xhp#hd_id3147242.5.help.text
+msgctxt "03120101.xhp#hd_id3147242.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03120101.xhp#par_id3150669.6.help.text
+msgctxt "03120101.xhp#par_id3150669.6.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03120101.xhp#hd_id3148473.7.help.text
+msgctxt "03120101.xhp#hd_id3148473.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03120101.xhp#par_id3149415.8.help.text
+msgid "<emph>Text:</emph> Any valid string expression. Only the first character in the string is relevant."
+msgstr "<emph>Texto:</emph> Cualquier expresión de cadena válida. Sólo es relevante el primer carácter de la cadena."
+
+#: 03120101.xhp#par_id3145609.9.help.text
+msgid "Use the Asc function to replace keys with values. If the Asc function encounters a blank string, $[officename] Basic reports a run-time error. In addition to 7 bit ASCII characters (Codes 0-127), the ASCII function can also detect non-printable key codes in ASCII code. This function can also handle 16 bit unicode characters."
+msgstr "Mediante la función Asc, sustituya teclas por valores. Si la función Asc detecta una cadena vacía, $[officename] Basic informa de un error de tiempo de ejecución. Aparte de caracteres ASCII de 7 bits (códigos 0-127), la función ASCII detecta códigos de caracteres no imprimibles en código ASCII. Esta función también admite caracteres Unicode de 16 bits."
+
+#: 03120101.xhp#hd_id3159413.10.help.text
+msgctxt "03120101.xhp#hd_id3159413.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03120101.xhp#par_id3149457.11.help.text
+msgid "Sub ExampleASC"
+msgstr "Sub EjemploASC"
+
+#: 03120101.xhp#par_id3150792.12.help.text
+msgid "Print ASC(\"A\") REM returns 65"
+msgstr "Print ASC(\"A\") REM devuelve 65"
+
+#: 03120101.xhp#par_id3148797.13.help.text
+msgid "Print ASC(\"Z\") REM returns 90"
+msgstr "Print ASC(\"Z\") REM devuelve 90"
+
+#: 03120101.xhp#par_id3163800.14.help.text
+msgid "Print ASC(\"Las Vegas\") REM returns 76, since only the first character is taken into account"
+msgstr "Print ASC(\"Las Vegas\") REM devuelve 76, ya que sólo se tiene en cuenta el primer carácter"
+
+#: 03120101.xhp#par_id3148674.15.help.text
+msgctxt "03120101.xhp#par_id3148674.15.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03120101.xhp#par_idN1067B.help.text
+msgid "<link href=\"text/sbasic/shared/03120102.xhp\">CHR</link>"
+msgstr "<link href=\"text/sbasic/shared/03120102.xhp\">CHR</link>"
+
+#: 03080701.xhp#tit.help.text
+msgid "Sgn Function [Runtime]"
+msgstr "Función Sgn [Ejecución]"
+
+#: 03080701.xhp#bm_id3148474.help.text
+msgid "<bookmark_value>Sgn function</bookmark_value>"
+msgstr "<bookmark_value>Sgn;función</bookmark_value>"
+
+#: 03080701.xhp#hd_id3148474.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080701.xhp\" name=\"Sgn Function [Runtime]\">Sgn Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080701.xhp\" name=\"Función Sgn [Runtime]\">Función Sgn [Ejecución]</link>"
+
+#: 03080701.xhp#par_id3148686.2.help.text
+msgid "Returns an integer number between -1 and 1 that indicates if the number that is passed to the function is positive, negative, or zero."
+msgstr "Devuelve un número entero entre -1 y 1 que indica si el número que se ha pasado a la función es positivo, negativo o cero."
+
+#: 03080701.xhp#hd_id3156023.3.help.text
+msgctxt "03080701.xhp#hd_id3156023.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03080701.xhp#par_id3153897.4.help.text
+msgid "Sgn (Number)"
+msgstr "Sgn (Número)"
+
+#: 03080701.xhp#hd_id3145069.5.help.text
+msgctxt "03080701.xhp#hd_id3145069.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03080701.xhp#par_id3150359.6.help.text
+msgctxt "03080701.xhp#par_id3150359.6.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03080701.xhp#hd_id3150543.7.help.text
+msgctxt "03080701.xhp#hd_id3150543.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03080701.xhp#par_id3154365.8.help.text
+msgid "<emph>Number:</emph> Numeric expression that determines the value that is returned by the function."
+msgstr "<emph>Número:</emph> Expresión numérica que determine el valor que devuelve la función."
+
+#: 03080701.xhp#par_id3150767.9.help.text
+msgid "NumExpression"
+msgstr "ExpresiónNum"
+
+#: 03080701.xhp#par_id3150441.10.help.text
+msgctxt "03080701.xhp#par_id3150441.10.help.text"
+msgid "Return value"
+msgstr "Valor de retorno:"
+
+#: 03080701.xhp#par_id3161833.11.help.text
+msgid "negative"
+msgstr "negativo"
+
+#: 03080701.xhp#par_id3155306.12.help.text
+msgid "Sgn returns -1."
+msgstr "Sgn devuelve -1."
+
+#: 03080701.xhp#par_id3145271.13.help.text
+msgctxt "03080701.xhp#par_id3145271.13.help.text"
+msgid "0"
+msgstr "0"
+
+#: 03080701.xhp#par_id3146119.14.help.text
+msgid "Sgn returns 0."
+msgstr "Sgn devuelve 0."
+
+#: 03080701.xhp#par_id3153139.15.help.text
+msgid "positive"
+msgstr "positivo"
+
+#: 03080701.xhp#par_id3154319.16.help.text
+msgid "Sgn returns 1."
+msgstr "Sgn devuelve 1."
+
+#: 03080701.xhp#hd_id3152576.17.help.text
+msgctxt "03080701.xhp#hd_id3152576.17.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03080701.xhp#par_id3154791.18.help.text
+msgid "Sub ExampleSgn"
+msgstr "Sub EjemploSgn"
+
+#: 03080701.xhp#par_id3155416.19.help.text
+msgid "Print sgn(-10) REM returns -1"
+msgstr "Print sgn(-10) REM devuelve -1"
+
+#: 03080701.xhp#par_id3154096.20.help.text
+msgid "Print sgn(0) REM returns 0"
+msgstr "Print sgn(0) REM devuelve 0"
+
+#: 03080701.xhp#par_id3148457.21.help.text
+msgid "Print sgn(10) REM returns 1"
+msgstr "Print sgn(10) REM devuelve 1"
+
+#: 03080701.xhp#par_id3144765.22.help.text
+msgctxt "03080701.xhp#par_id3144765.22.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03080101.xhp#tit.help.text
+msgid "Atn Function [Runtime]"
+msgstr "Función Atn [Ejecución]"
+
+#: 03080101.xhp#bm_id3150616.help.text
+msgid "<bookmark_value>Atn function</bookmark_value>"
+msgstr "<bookmark_value>Atn;función</bookmark_value>"
+
+#: 03080101.xhp#hd_id3150616.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080101.xhp\" name=\"Atn Function [Runtime]\">Atn Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080101.xhp\" name=\"Función Atn [Runtime]\">Función Atn [Ejecución]</link>"
+
+#: 03080101.xhp#par_id3149346.2.help.text
+msgid "Trigonometric function that returns the arctangent of a numeric expression. The return value is in the range -Pi/2 to +Pi/2."
+msgstr "Función trigonométrica que devuelve la arcotangente de una expresión numérica. El valor de retorno está en el rango de -Pi/2 a +Pi/2."
+
+#: 03080101.xhp#par_id3143271.3.help.text
+msgid "The arctangent is the inverse of the tangent function. The Atn Function returns the angle \"Alpha\", expressed in radians, using the tangent of this angle. The function can also return the angle \"Alpha\" by comparing the ratio of the length of the side that is opposite of the angle to the length of the side that is adjacent to the angle in a right-angled triangle."
+msgstr "La arcotangente es la función inversa de la tangente. La función Atn devuelve el ángulo \"Alfa\", expresado en radianes, usando la tangente del mismo. La función también puede devolver el ángulo \"Alfa\" comparando el coeficiente de la longitud del lado que está opuesto al ángulo con la longitud del lado que está adyacente al ángulo en un triángulo rectángulo."
+
+#: 03080101.xhp#par_id3145315.4.help.text
+msgid "Atn(side opposite the angle/side adjacent to angle)= Alpha"
+msgstr "Atn(lado opuesto al ángulo/lado adyacente al ángulo)= Alfa"
+
+#: 03080101.xhp#hd_id3149669.5.help.text
+msgctxt "03080101.xhp#hd_id3149669.5.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03080101.xhp#par_id3148947.6.help.text
+msgid "Atn (Number)"
+msgstr "Atn (Número)"
+
+#: 03080101.xhp#hd_id3148664.7.help.text
+msgctxt "03080101.xhp#hd_id3148664.7.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03080101.xhp#par_id3150359.8.help.text
+msgctxt "03080101.xhp#par_id3150359.8.help.text"
+msgid "Double"
+msgstr "Doble"
+
+#: 03080101.xhp#hd_id3148798.9.help.text
+msgctxt "03080101.xhp#hd_id3148798.9.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03080101.xhp#par_id3156212.10.help.text
+msgid "<emph>Number:</emph> Any numerical expression that represents the ratio of two sides of a right triangle. The Atn function returns the corresponding angle in radians (arctangent)."
+msgstr "<emph>Número:</emph> Cualquier expresión numérica que represente la proporción entre dos lados de un triángulo rectángulo. La función Atn devuelve el ángulo correspondiente en radianes (arcotangente)"
+
+#: 03080101.xhp#par_id3153192.11.help.text
+msgid "To convert radians to degrees, multiply radians by 180/pi."
+msgstr "Para convertir radianes a grados, multiplique los radianes por 180/pi."
+
+#: 03080101.xhp#par_id3147230.12.help.text
+msgctxt "03080101.xhp#par_id3147230.12.help.text"
+msgid "degree=(radian*180)/pi"
+msgstr "grado=(radián*180)/pi"
+
+#: 03080101.xhp#par_id3125864.13.help.text
+msgctxt "03080101.xhp#par_id3125864.13.help.text"
+msgid "radian=(degree*pi)/180"
+msgstr "radián=(grado*pi)/180"
+
+#: 03080101.xhp#par_id3159252.14.help.text
+msgid "Pi is here the fixed circle constant with the rounded value 3.14159."
+msgstr "Pi es aquí la constante fija de la circunferencia, con el valor redondeado de 3,14159."
+
+#: 03080101.xhp#hd_id3153142.15.help.text
+msgctxt "03080101.xhp#hd_id3153142.15.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03080101.xhp#par_id3146985.16.help.text
+msgid "REM The following example calculates for a right-angled triangle"
+msgstr "REM El ejemplo siguiente calcula para un triángulo rectángulo"
+
+#: 03080101.xhp#par_id3145750.17.help.text
+msgid "REM the angle Alpha from the tangent of the angle Alpha:"
+msgstr "REM el ángulo Alfa desde la tangente del ángulo Alfa:"
+
+#: 03080101.xhp#par_id3146975.18.help.text
+msgid "Sub ExampleATN"
+msgstr "Sub EjemploATN"
+
+#: 03080101.xhp#par_id3151112.19.help.text
+msgid "REM rounded Pi = 3.14159 is a predefined constant"
+msgstr "REM redondeado Pi = 3,14159 es una constante predefinida"
+
+#: 03080101.xhp#par_id3159156.20.help.text
+msgid "Dim d1 As Double"
+msgstr "Dim d1 As Double"
+
+#: 03080101.xhp#par_id3147435.21.help.text
+msgid "Dim d2 As Double"
+msgstr "Dim d2 As Double"
+
+#: 03080101.xhp#par_id3149262.22.help.text
+msgid "d1 = InputBox$ (\"Enter the length of the side adjacent to the angle: \",\"Adjacent\")"
+msgstr "d1 = InputBox$ (\"Introduzca la longitud del lado adyacente al ángulo: \",\"Adyacente\")"
+
+#: 03080101.xhp#par_id3149482.23.help.text
+msgid "d2 = InputBox$ (\"Enter the length of the side opposite the angle: \",\"Opposite\")"
+msgstr "d2 = InputBox$ (\"Introduzca la longitud del lado opuesto al ángulo: \",\"Opuesto\")"
+
+#: 03080101.xhp#par_id3155415.24.help.text
+msgid "Print \"The Alpha angle is\"; (atn (d2/d1) * 180 / Pi); \" degrees\""
+msgstr "Print \"El ángulo Alfa es\"; (atn (d2/d1) * 180 / Pi); \" grados\""
+
+#: 03080101.xhp#par_id3149959.25.help.text
+msgctxt "03080101.xhp#par_id3149959.25.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03080600.xhp#tit.help.text
+msgid "Absolute Values"
+msgstr "Valores absolutos"
+
+#: 03080600.xhp#hd_id3146958.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080600.xhp\" name=\"Absolute Values\">Absolute Values</link>"
+msgstr "<link href=\"text/sbasic/shared/03080600.xhp\" name=\"Valores absolutos\">Valores absolutos</link>"
+
+#: 03080600.xhp#par_id3150771.2.help.text
+msgid "This function returns absolute values."
+msgstr "Esta función devuelve valores absolutos."
+
+#: 03101130.xhp#tit.help.text
+msgid "DefSng Statement [Runtime]"
+msgstr "Instrucción DefSng [Ejecución]"
+
+#: 03101130.xhp#bm_id2445142.help.text
+msgid "<bookmark_value>DefSng statement</bookmark_value>"
+msgstr "<bookmark_value>Instrucción DefSng</bookmark_value>"
+
+#: 03101130.xhp#par_idN10577.help.text
+msgid "<link href=\"text/sbasic/shared/03101130.xhp\">DefSng Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101130.xhp\">Instrucción DefSng [Ejecución]</link>"
+
+#: 03101130.xhp#par_idN10587.help.text
+msgid "If no type-declaration character or keyword is specified, the DefSng statement sets the default variable type, according to a letter range."
+msgstr "Si no se especifica palabra clave ni carácter de tipo de declaración, la instrucción DefSng establece el tipo de variable predeterminado según un intervalo de letras."
+
+#: 03101130.xhp#par_idN1058A.help.text
+msgctxt "03101130.xhp#par_idN1058A.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03101130.xhp#par_idN1058E.help.text
+msgctxt "03101130.xhp#par_idN1058E.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
+
+#: 03101130.xhp#par_idN10591.help.text
+msgctxt "03101130.xhp#par_idN10591.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03101130.xhp#par_idN10595.help.text
+msgctxt "03101130.xhp#par_idN10595.help.text"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Characterrange:</emph> letras que especifican el intervalo de las variables para las que desea establecer un tipo de datos predeterminado."
+
+#: 03101130.xhp#par_idN1059C.help.text
+msgctxt "03101130.xhp#par_idN1059C.help.text"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> palabra clave que define el tipo de variable predeterminado."
+
+#: 03101130.xhp#par_idN105A3.help.text
+msgctxt "03101130.xhp#par_idN105A3.help.text"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Palabra clave:</emph> tipo de variable predeterminado"
+
+#: 03101130.xhp#par_idN105AA.help.text
+msgid "<emph>DefSng:</emph> Single"
+msgstr "<emph>DefSng:</emph> simple"
+
+#: 03101130.xhp#par_idN105B1.help.text
+msgctxt "03101130.xhp#par_idN105B1.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03101130.xhp#par_idN105B5.help.text
+msgctxt "03101130.xhp#par_idN105B5.help.text"
+msgid "REM Prefix definitions for variable types:"
+msgstr "Definiciones de prefijos REM para tipos de variables:"
+
+#: 03101130.xhp#par_idN105B8.help.text
+msgctxt "03101130.xhp#par_idN105B8.help.text"
+msgid "DefBool b"
+msgstr "DefBool b"
+
+#: 03101130.xhp#par_idN105BB.help.text
+msgctxt "03101130.xhp#par_idN105BB.help.text"
+msgid "DefDate t"
+msgstr "DefDate t"
+
+#: 03101130.xhp#par_idN105BE.help.text
+msgctxt "03101130.xhp#par_idN105BE.help.text"
+msgid "DefDbL d"
+msgstr "DefDbL d"
+
+#: 03101130.xhp#par_idN105C1.help.text
+msgctxt "03101130.xhp#par_idN105C1.help.text"
+msgid "DefInt i"
+msgstr "DefInt i"
+
+#: 03101130.xhp#par_idN105C4.help.text
+msgctxt "03101130.xhp#par_idN105C4.help.text"
+msgid "DefLng l"
+msgstr "DefLng l"
+
+#: 03101130.xhp#par_idN105C7.help.text
+msgctxt "03101130.xhp#par_idN105C7.help.text"
+msgid "DefObj o"
+msgstr "DefObj o"
+
+#: 03101130.xhp#par_idN105CA.help.text
+msgctxt "03101130.xhp#par_idN105CA.help.text"
+msgid "DefVar v"
+msgstr "DefVar v"
+
+#: 03101130.xhp#par_idN105CD.help.text
+msgid "DefSng s"
+msgstr "DefSng s"
+
+#: 03101130.xhp#par_idN105D0.help.text
+msgid "Sub ExampleDefSng"
+msgstr "Sub ExampleDefSng"
+
+#: 03101130.xhp#par_idN105D3.help.text
+msgid "sSng=Single REM sSng is an implicit single variable"
+msgstr "sSng=Single REM sSng es una variable simple implícita"
+
+#: 03101130.xhp#par_idN105D6.help.text
+msgctxt "03101130.xhp#par_idN105D6.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03020408.xhp#tit.help.text
+msgid "FileLen-Function [Runtime]"
+msgstr "Función FileLen [Ejecución]"
+
+#: 03020408.xhp#bm_id3153126.help.text
+msgid "<bookmark_value>FileLen function</bookmark_value>"
+msgstr "<bookmark_value>FileLen;función</bookmark_value>"
+
+#: 03020408.xhp#hd_id3153126.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020408.xhp\" name=\"FileLen-Function [Runtime]\">FileLen Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020408.xhp\" name=\"Función FileLen [Runtime]\">Función FileLen [Runtime]</link>"
+
+#: 03020408.xhp#par_id3145068.2.help.text
+msgid "Returns the length of a file in bytes."
+msgstr "Devuelve la longitud de un archivo en bytes."
+
+#: 03020408.xhp#hd_id3159414.3.help.text
+msgctxt "03020408.xhp#hd_id3159414.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03020408.xhp#par_id3149656.4.help.text
+msgid "FileLen (Text As String)"
+msgstr "FileLen (Texto As String)"
+
+#: 03020408.xhp#hd_id3148798.5.help.text
+msgctxt "03020408.xhp#hd_id3148798.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03020408.xhp#par_id3156282.6.help.text
+msgctxt "03020408.xhp#par_id3156282.6.help.text"
+msgid "Long"
+msgstr "Largo"
+
+#: 03020408.xhp#hd_id3150768.7.help.text
+msgctxt "03020408.xhp#hd_id3150768.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03020408.xhp#par_id3153193.8.help.text
+msgctxt "03020408.xhp#par_id3153193.8.help.text"
+msgid "<emph>Text:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>Texto:</emph> Cualquier expresión de cadena que contenga una especificación de archivo inequívoca. También se puede usar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notación URL\">notación URL</link>."
+
+#: 03020408.xhp#par_id3150439.9.help.text
+msgid "This function determines the length of a file. If the FileLen function is called for an open file, it returns the file length before it was opened. To determine the current file length of an open file, use the Lof function."
+msgstr "Esta función determina la longitud de un archivo. Si se llama a la función FileLen para un archivo abierto, ésta devuelve su longitud antes de que se abriera. Para determinar la longitud actual de un archivo abierto, se debe usar la función Lof."
+
+#: 03020408.xhp#hd_id3163710.10.help.text
+msgctxt "03020408.xhp#hd_id3163710.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03020408.xhp#par_id3159154.11.help.text
+msgid "Sub ExampleFileLen"
+msgstr "Sub EjemploFileLen"
+
+#: 03020408.xhp#par_id3145271.12.help.text
+msgid "msgbox FileLen(\"C:\\autoexec.bat\")"
+msgstr "msgbox FileLen(\"C:\\autoexec.bat\")"
+
+#: 03020408.xhp#par_id3145749.13.help.text
+msgctxt "03020408.xhp#par_id3145749.13.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03070200.xhp#tit.help.text
+msgid "\"*\" Operator [Runtime]"
+msgstr "Operador \"*\" [Ejecución]"
+
+#: 03070200.xhp#bm_id3147573.help.text
+msgid "<bookmark_value>\"*\" operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>operador \"*\";operadores matemáticos</bookmark_value>"
+
+#: 03070200.xhp#hd_id3147573.1.help.text
+msgid "<link href=\"text/sbasic/shared/03070200.xhp\">\"*\" Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070200.xhp\">Operador \"*\" [Ejecución]</link>"
+
+#: 03070200.xhp#par_id3154347.2.help.text
+msgid "Multiplies two values."
+msgstr "Multiplica dos valores."
+
+#: 03070200.xhp#hd_id3148946.3.help.text
+msgctxt "03070200.xhp#hd_id3148946.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03070200.xhp#par_id3150358.4.help.text
+msgid "Result = Expression1 * Expression2"
+msgstr "Resultado = Expresión1 * Expresión2"
+
+#: 03070200.xhp#hd_id3150400.5.help.text
+msgctxt "03070200.xhp#hd_id3150400.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03070200.xhp#par_id3154365.6.help.text
+msgid "<emph>Result:</emph> Any numeric expression that records the result of a multiplication."
+msgstr "<emph>Resultado:</emph> Cualquier expresión numérica que contenga el resultado de la multiplicación."
+
+#: 03070200.xhp#par_id3154685.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to multiply."
+msgstr "<emph>Expresión1, Expresión2:</emph> Las expresiones numéricas que se desea multiplicar."
+
+#: 03070200.xhp#hd_id3153968.8.help.text
+msgctxt "03070200.xhp#hd_id3153968.8.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03070200.xhp#par_id3155132.9.help.text
+msgid "Sub ExampleMultiplication1"
+msgstr "Sub EjemploMultiplicacion1"
+
+#: 03070200.xhp#par_id3159254.10.help.text
+msgid "Print 5 * 5"
+msgstr "Print 5 * 5"
+
+#: 03070200.xhp#par_id3153091.11.help.text
+msgctxt "03070200.xhp#par_id3153091.11.help.text"
+msgid "End sub"
+msgstr "End sub"
+
+#: 03070200.xhp#par_id3149667.13.help.text
+msgid "Sub ExampleMultiplication2"
+msgstr "Sub EjemploMultiplicacion2"
+
+#: 03070200.xhp#par_id3151113.14.help.text
+msgctxt "03070200.xhp#par_id3151113.14.help.text"
+msgid "Dim iValue1 as Integer"
+msgstr "Dim iValor1 as Integer"
+
+#: 03070200.xhp#par_id3147434.15.help.text
+msgctxt "03070200.xhp#par_id3147434.15.help.text"
+msgid "Dim iValue2 as Integer"
+msgstr "Dim iValor2 as Integer"
+
+#: 03070200.xhp#par_id3153727.16.help.text
+msgctxt "03070200.xhp#par_id3153727.16.help.text"
+msgid "iValue1 = 5"
+msgstr "iValor1 = 5"
+
+#: 03070200.xhp#par_id3147348.17.help.text
+msgctxt "03070200.xhp#par_id3147348.17.help.text"
+msgid "iValue2 = 10"
+msgstr "iValor2 = 10"
+
+#: 03070200.xhp#par_id3149261.18.help.text
+msgid "Print iValue1 * iValue2"
+msgstr "Print iValor1 * iValor2"
+
+#: 03070200.xhp#par_id3148646.19.help.text
+msgctxt "03070200.xhp#par_id3148646.19.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03050000.xhp#tit.help.text
+msgid "Error-Handling Functions"
+msgstr "Funciones de manejo de errores"
+
+#: 03050000.xhp#hd_id3143271.1.help.text
+msgid "<link href=\"text/sbasic/shared/03050000.xhp\" name=\"Error-Handling Functions\">Error-Handling Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03050000.xhp\" name=\"Funciones de manejo de errores\">Funciones de manejo de errores</link>"
+
+#: 03050000.xhp#par_id3145068.2.help.text
+msgid "Use the following statements and functions to define the way $[officename] Basic reacts to run-time errors."
+msgstr "Use las instrucciones y funciones siguientes para definir la forma en que $[officename] Basic reacciona a los errores de tiempo de ejecución."
+
+#: 03050000.xhp#par_id3148946.3.help.text
+msgid "$[officename] Basic offers several methods to prevent the termination of a program when a run-time error occurs."
+msgstr "$[officename] Basic proporciona varios métodos para evitar la terminación de un programa cuando se producen errores de tiempo de ejecución."
+
+#: 03103700.xhp#tit.help.text
+msgid "Set Statement[Runtime]"
+msgstr "Instrucción Set [Ejecución]"
+
+#: 03103700.xhp#bm_id3154422.help.text
+msgid "<bookmark_value>Set statement</bookmark_value><bookmark_value>Nothing object</bookmark_value>"
+msgstr "<bookmark_value>Establecer instrucción</bookmark_value><bookmark_value>Objeto Nothing </bookmark_value>"
+
+#: 03103700.xhp#hd_id3154422.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement[Runtime]\">Set Statement[Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement[Runtime]\">Instrucción Set [Ejecución]</link>"
+
+#: 03103700.xhp#par_id3159149.2.help.text
+msgid "Sets an object reference on a variable or a Property."
+msgstr "Establece una referencia de objeto en una variable o propiedad."
+
+#: 03103700.xhp#hd_id3153105.3.help.text
+msgctxt "03103700.xhp#hd_id3153105.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03103700.xhp#par_id3154217.4.help.text
+msgid "Set ObjectVar = Object"
+msgstr "Set VarObjeto = Objeto"
+
+#: 03103700.xhp#hd_id3154685.5.help.text
+msgctxt "03103700.xhp#hd_id3154685.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03103700.xhp#par_id3156281.6.help.text
+msgid "<emph>ObjectVar:</emph> a variable or a property that requires an object reference."
+msgstr "<emph>VarObjeto:</emph> una variable o propiedad que requiere una referencia de objeto."
+
+#: 03103700.xhp#par_id3159252.7.help.text
+msgid "<emph>Object:</emph> Object that the variable or the property refers to."
+msgstr "<emph>Objeto:</emph> objeto al que hace referencia la variable o propiedad."
+
+#: 03103700.xhp#par_idN10623.help.text
+msgid "<emph>Nothing</emph> - Assign the <emph>Nothing</emph> object to a variable to remove a previous assignment."
+msgstr "<emph>Nothing</emph>: asigne el objeto <emph>Nothing</emph> a una variable para eliminar una asignación anterior."
+
+#: 03103700.xhp#hd_id3159153.8.help.text
+msgctxt "03103700.xhp#hd_id3159153.8.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03103700.xhp#par_id3147349.9.help.text
+msgid "Sub ExampleSet"
+msgstr "Sub EjemploSet"
+
+#: 03103700.xhp#par_id3149481.10.help.text
+msgid "Dim oDoc As Object"
+msgstr "Dim oDoc As Object"
+
+#: 03103700.xhp#par_id3153140.11.help.text
+msgid "Set oDoc = ActiveWindow"
+msgstr "Set oDoc = ActiveWindow"
+
+#: 03103700.xhp#par_id3153190.12.help.text
+msgid "Print oDoc.Name"
+msgstr "Print oDoc.Name"
+
+#: 03103700.xhp#par_id3161833.13.help.text
+msgctxt "03103700.xhp#par_id3161833.13.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03132400.xhp#tit.help.text
+msgid "CreateObject Function [Runtime]"
+msgstr "Función CreateObject [Ejecución]"
+
+#: 03132400.xhp#bm_id659810.help.text
+msgid "<bookmark_value>CreateObject function</bookmark_value>"
+msgstr "<bookmark_value>Función CreateObject</bookmark_value>"
+
+#: 03132400.xhp#par_idN10580.help.text
+msgid "<link href=\"text/sbasic/shared/03132400.xhp\">CreateObject Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03132400.xhp\">Función CreateObject [Ejecución]</link>"
+
+#: 03132400.xhp#par_idN10590.help.text
+msgid "<ahelp hid=\".\">Creates a UNO object. On Windows, can also create OLE objects.</ahelp>"
+msgstr "<ahelp hid=\".\">Crea un objeto UNO. En Windows, también puede crear objetos OLE.</ahelp>"
+
+#: 03132400.xhp#par_idN1059F.help.text
+msgid "This method creates instances of the type that is passed as parameter."
+msgstr "Este método crea casos del tipo que se pasa como parámetro."
+
+#: 03132400.xhp#par_idN105A2.help.text
+msgctxt "03132400.xhp#par_idN105A2.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03132400.xhp#par_idN105A6.help.text
+msgid "oObj = CreateObject( type )"
+msgstr "oObj = CreateObject( type )"
+
+#: 03132400.xhp#par_idN105A9.help.text
+msgctxt "03132400.xhp#par_idN105A9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03132400.xhp#par_idN105AD.help.text
+msgid "Type address"
+msgstr "Dirección Type"
+
+#: 03132400.xhp#par_idN105B0.help.text
+msgid "Name1 as String"
+msgstr "Nombre1 as String"
+
+#: 03132400.xhp#par_idN105B4.help.text
+msgid "City as String"
+msgstr "Ciudad as String"
+
+#: 03132400.xhp#par_idN105B8.help.text
+msgid "End Type"
+msgstr "End Type"
+
+#: 03132400.xhp#par_idN105BB.help.text
+msgid "Sub main"
+msgstr "Sub main"
+
+#: 03132400.xhp#par_idN105BE.help.text
+msgid "myaddress = CreateObject(\"address\")"
+msgstr "myaddress = CreateObject(\"address\")"
+
+#: 03132400.xhp#par_idN105C2.help.text
+msgid "MsgBox IsObject(myaddress)"
+msgstr "MsgBox IsObject(myaddress)"
+
+#: 03132400.xhp#par_idN105C6.help.text
+msgctxt "03132400.xhp#par_idN105C6.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03060100.xhp#tit.help.text
+msgid "AND Operator [Runtime]"
+msgstr "Operador And [Ejecución]"
+
+#: 03060100.xhp#bm_id3146117.help.text
+msgid "<bookmark_value>AND operator (logical)</bookmark_value>"
+msgstr "<bookmark_value>And;operadores lógicos</bookmark_value><bookmark_value>AND</bookmark_value>"
+
+#: 03060100.xhp#hd_id3146117.1.help.text
+msgid "<link href=\"text/sbasic/shared/03060100.xhp\" name=\"AND Operator [Runtime]\">AND Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03060100.xhp\" name=\"Operador And [Runtime]\">Operador And [Ejecución]</link>"
+
+#: 03060100.xhp#par_id3143268.2.help.text
+msgid "Logically combines two expressions."
+msgstr "Combina dos expresiones de manera lógica."
+
+#: 03060100.xhp#hd_id3147574.3.help.text
+msgctxt "03060100.xhp#hd_id3147574.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03060100.xhp#par_id3156344.4.help.text
+msgid "Result = Expression1 And Expression2"
+msgstr "Resultado = Expresión1 And Expresión2"
+
+#: 03060100.xhp#hd_id3148946.5.help.text
+msgctxt "03060100.xhp#hd_id3148946.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03060100.xhp#par_id3149457.6.help.text
+msgid "<emph>Result:</emph> Any numeric variable that records the result of the combination."
+msgstr "<emph>Resultado:</emph> Cualquier variable numérica que contenga el resultado de la combinación."
+
+#: 03060100.xhp#par_id3150541.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to combine."
+msgstr "<emph>Expresión1, Expresión2:</emph> Las expresiones que se desee combinar."
+
+#: 03060100.xhp#par_id3156215.8.help.text
+msgid "Boolean expressions combined with AND only return the value <emph>True</emph> if both expressions evaluate to <emph>True</emph>:"
+msgstr "Las expresiones lógicas combinadas con AND sólo devuelven el valor <emph>True</emph> si ambas se evalúan como <emph>True</emph>:"
+
+#: 03060100.xhp#par_id3150870.9.help.text
+msgid "<emph>True</emph> AND <emph>True</emph> returns <emph>True</emph>; for all other combinations the result is <emph>False</emph>."
+msgstr "<emph>True</emph> AND <emph>True</emph> devuelve <emph>True</emph>; para todas las demás combinaciones el resultado es <emph>False</emph>."
+
+#: 03060100.xhp#par_id3153768.10.help.text
+msgid "The AND operator also performs a bitwise comparison of identically positioned bits in two numeric expressions."
+msgstr "El operador AND también lleva a cabo comparaciones entre bits situados en la misma posición en dos expresiones numéricas."
+
+#: 03060100.xhp#hd_id3153727.11.help.text
+msgctxt "03060100.xhp#hd_id3153727.11.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03060100.xhp#par_id3149481.12.help.text
+msgid "Sub ExampleAnd"
+msgstr "Sub EjemploAnd"
+
+#: 03060100.xhp#par_id3152577.13.help.text
+msgctxt "03060100.xhp#par_id3152577.13.help.text"
+msgid "Dim A as Variant, B as Variant, C as Variant, D as Variant"
+msgstr "Dim A as Variant, B as Variant, C as Variant, D as Variant"
+
+#: 03060100.xhp#par_id3152598.14.help.text
+msgid "Dim vVarOut as Variant"
+msgstr "Dim vVarOut as Variant"
+
+#: 03060100.xhp#par_id3153092.15.help.text
+msgctxt "03060100.xhp#par_id3153092.15.help.text"
+msgid "A = 10: B = 8: C = 6: D = Null"
+msgstr "A = 10: B = 8: C = 6: D = Null"
+
+#: 03060100.xhp#par_id3146984.16.help.text
+msgid "vVarOut = A > B And B > C REM returns -1"
+msgstr "vVarOut = A > B And B > C REM devuelve -1"
+
+#: 03060100.xhp#par_id3154014.17.help.text
+msgid "vVarOut = B > A And B > C REM returns 0"
+msgstr "vVarOut = B > A And B > C REM devuelve 0"
+
+#: 03060100.xhp#par_id3149262.18.help.text
+msgid "vVarOut = A > B And B > D REM returns 0"
+msgstr "vVarOut = A > B And B > D REM devuelve 0"
+
+#: 03060100.xhp#par_id3145751.19.help.text
+msgid "vVarOut = (B > D And B > A) REM returns 0"
+msgstr "vVarOut = (B > D And B > A) REM devuelve 0"
+
+#: 03060100.xhp#par_id3147394.20.help.text
+msgid "vVarOut = B And A REM returns 8 due to the bitwise AND combination of both arguments"
+msgstr "vVarOut = B And A REM devuelve 8 debido al resultado de la combinación entre bits AND de ambos argumentos"
+
+#: 03060100.xhp#par_id3151073.21.help.text
+msgctxt "03060100.xhp#par_id3151073.21.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03080300.xhp#tit.help.text
+msgid "Generating Random Numbers"
+msgstr "Generación de números aleatorios"
+
+#: 03080300.xhp#hd_id3143270.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080300.xhp\" name=\"Generating Random Numbers\">Generating Random Numbers</link>"
+msgstr "<link href=\"text/sbasic/shared/03080300.xhp\" name=\"Generación de números aleatorios\">Generación de números aleatorios</link>"
+
+#: 03080300.xhp#par_id3154347.2.help.text
+msgid "The following statements and functions generate random numbers."
+msgstr "Las instrucciones y funciones siguientes generan números aleatorios."
+
+#: 03104700.xhp#tit.help.text
+msgid "Erase Function [Runtime]"
+msgstr "Función Erase [Ejecución]"
+
+#: 03104700.xhp#bm_id624713.help.text
+msgid "<bookmark_value>Erase function</bookmark_value>"
+msgstr "<bookmark_value>Función Erase</bookmark_value>"
+
+#: 03104700.xhp#par_idN10548.help.text
+msgid "<link href=\"text/sbasic/shared/03104700.xhp\">Erase Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104700.xhp\">Función Erase [Ejecución]</link>"
+
+#: 03104700.xhp#par_idN10558.help.text
+msgid "Erases the contents of array elements of fixed size arrays, and releases the memory used by arrays of variable size."
+msgstr "Elimina el contenido de elementos de matriz de matrices con tamaño fijo; libera la memoria que utilizan las matrices de tamaño variable."
+
+#: 03104700.xhp#par_idN1055D.help.text
+msgctxt "03104700.xhp#par_idN1055D.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03104700.xhp#par_idN105E6.help.text
+msgid "Erase Arraylist"
+msgstr "Erase Arraylist"
+
+#: 03104700.xhp#par_idN105E9.help.text
+msgctxt "03104700.xhp#par_idN105E9.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03104700.xhp#par_idN105ED.help.text
+msgid "<emph>Arraylist</emph> - The list of arrays to be erased."
+msgstr "<emph>Arraylist</emph>: la lista de las matrices que se deben eliminar."
+
+#: 03090400.xhp#tit.help.text
+msgid "Further Statements"
+msgstr "Otras instrucciones"
+
+#: 03090400.xhp#hd_id3145316.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"Further Statements\">Further Statements</link>"
+msgstr "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"Further Statements\">Otras instrucciones</link>"
+
+#: 03090400.xhp#par_id3154923.2.help.text
+msgid "Statements that do not belong to any of the other runtime categories are described here."
+msgstr "Aquí se describen las instrucciones que no pertenecen a ninguna de las otras categorías de tiempo de ejecución."
+
+#: 01030000.xhp#tit.help.text
+msgid "Integrated Development Environment (IDE)"
+msgstr "Entorno de desarrollo integrado (IDE)"
+
+#: 01030000.xhp#bm_id3145090.help.text
+msgid "<bookmark_value>Basic IDE;Integrated Development Environment</bookmark_value><bookmark_value>IDE;Integrated Development Environment</bookmark_value>"
+msgstr "<bookmark_value>Basic IDE;Entorno de desarrollo integrado</bookmark_value><bookmark_value>IDE; Basic IDE</bookmark_value>"
+
+#: 01030000.xhp#hd_id3145090.1.help.text
+msgid "<link href=\"text/sbasic/shared/01030000.xhp\" name=\"Integrated Development Environment (IDE)\">Integrated Development Environment (IDE)</link>"
+msgstr "<link href=\"text/sbasic/shared/01030000.xhp\" name=\"Entorno de desarrollo integrado (IDE)\">Entorno de desarrollo integrado (IDE)</link>"
+
+#: 01030000.xhp#par_id3146795.2.help.text
+msgid "This section describes the Integrated Development Environment for $[officename] Basic."
+msgstr "Esta sección describe el Entorno de desarrollo integrado para $[officename] Basic."
+
+#: 03102900.xhp#tit.help.text
+msgid "LBound Function [Runtime]"
+msgstr "Función LBound [Ejecución]"
+
+#: 03102900.xhp#bm_id3156027.help.text
+msgid "<bookmark_value>LBound function</bookmark_value>"
+msgstr "<bookmark_value>LBound;función</bookmark_value>"
+
+#: 03102900.xhp#hd_id3156027.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"LBound Function [Runtime]\">LBound Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"LBound Function [Runtime]\">Función LBound [Ejecución]</link>"
+
+#: 03102900.xhp#par_id3147226.2.help.text
+msgid "Returns the lower boundary of an array."
+msgstr "Devuelve el límite inferior de una matriz."
+
+#: 03102900.xhp#hd_id3148538.3.help.text
+msgctxt "03102900.xhp#hd_id3148538.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03102900.xhp#par_id3150503.4.help.text
+msgid "LBound (ArrayName [, Dimension])"
+msgstr "LBound (NombreMatriz [, Dimensión])"
+
+#: 03102900.xhp#hd_id3150984.5.help.text
+msgctxt "03102900.xhp#hd_id3150984.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03102900.xhp#par_id3153126.6.help.text
+msgctxt "03102900.xhp#par_id3153126.6.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03102900.xhp#hd_id3144500.7.help.text
+msgctxt "03102900.xhp#hd_id3144500.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03102900.xhp#par_id3145069.8.help.text
+msgid "<emph>ArrayName:</emph> Name of the array for which you want to return the upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) boundary of the array dimension."
+msgstr "<emph>NombreMatriz:</emph> Nombre de la matriz para la que se desee determinar el límite superior (<emph>Ubound</emph>) o inferior (<emph>LBound</emph>) de su dimensión."
+
+#: 03102900.xhp#par_id3149457.9.help.text
+msgid "<emph>[Dimension]:</emph> Integer that specifies which dimension to return the upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) boundary for. If a value is not specified, the first dimension is assumed."
+msgstr "<emph>[Dimensión]:</emph> Número entero que especifique para qué dimensión se desea que se devuelva el límite superior (<emph>Ubound</emph>) o inferior (<emph>LBound</emph>). Si no se especifica ningún valor, se asume la primera dimensión."
+
+#: 03102900.xhp#hd_id3145171.10.help.text
+msgctxt "03102900.xhp#hd_id3145171.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03102900.xhp#par_id3148673.11.help.text
+msgctxt "03102900.xhp#par_id3148673.11.help.text"
+msgid "Sub ExampleUboundLbound"
+msgstr "Sub EjemploUboundLbound"
+
+#: 03102900.xhp#par_id3153193.12.help.text
+msgctxt "03102900.xhp#par_id3153193.12.help.text"
+msgid "Dim sVar(10 to 20) As String"
+msgstr "Dim sVar(10 to 20) As String"
+
+#: 03102900.xhp#par_id3148452.13.help.text
+msgctxt "03102900.xhp#par_id3148452.13.help.text"
+msgid "print LBound(sVar())"
+msgstr "print LBound(sVar())"
+
+#: 03102900.xhp#par_id3153768.14.help.text
+msgctxt "03102900.xhp#par_id3153768.14.help.text"
+msgid "print UBound(sVar())"
+msgstr "print UBound(sVar())"
+
+#: 03102900.xhp#par_id3147288.15.help.text
+msgctxt "03102900.xhp#par_id3147288.15.help.text"
+msgid "end Sub"
+msgstr "end Sub"
+
+#: 03102900.xhp#par_id3146974.16.help.text
+msgctxt "03102900.xhp#par_id3146974.16.help.text"
+msgid "Sub ExampleUboundLbound2"
+msgstr "Sub EjemploUboundLbound2"
+
+#: 03102900.xhp#par_id3146985.17.help.text
+msgctxt "03102900.xhp#par_id3146985.17.help.text"
+msgid "Dim sVar(10 to 20,5 To 70) As String"
+msgstr "Dim sVar(10 to 20,5 To 70) As String"
+
+#: 03102900.xhp#par_id3145365.18.help.text
+msgctxt "03102900.xhp#par_id3145365.18.help.text"
+msgid "Print LBound(sVar()) REM Returns 10"
+msgstr "Print LBound(sVar()) REM Devuelve 10"
+
+#: 03102900.xhp#par_id3150486.19.help.text
+msgctxt "03102900.xhp#par_id3150486.19.help.text"
+msgid "Print UBound(sVar()) REM Returns 20"
+msgstr "Print UBound(sVar()) REM Devuelve 20"
+
+#: 03102900.xhp#par_id3149665.20.help.text
+msgctxt "03102900.xhp#par_id3149665.20.help.text"
+msgid "Print LBound(sVar(),2) REM Returns 5"
+msgstr "Print LBound(sVar(),2) REM Devuelve 5"
+
+#: 03102900.xhp#par_id3159154.21.help.text
+msgctxt "03102900.xhp#par_id3159154.21.help.text"
+msgid "Print UBound(sVar(),2) REM Returns 70"
+msgstr "Print UBound(sVar(),2) REM Devuelve 70"
+
+#: 03102900.xhp#par_id3154013.22.help.text
+msgctxt "03102900.xhp#par_id3154013.22.help.text"
+msgid "end Sub"
+msgstr "end Sub"
+
+#: 03080301.xhp#tit.help.text
+msgid "Randomize Statement [Runtime]"
+msgstr "Instrucción Randomize [Ejecución]"
+
+#: 03080301.xhp#bm_id3150616.help.text
+msgid "<bookmark_value>Randomize statement</bookmark_value>"
+msgstr "<bookmark_value>Randomize;función</bookmark_value>"
+
+#: 03080301.xhp#hd_id3150616.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080301.xhp\" name=\"Randomize Statement [Runtime]\">Randomize Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080301.xhp\" name=\"Instrucción Randomize [Runtime]\">Instrucción Randomize [Ejecución]</link>"
+
+#: 03080301.xhp#par_id3145090.2.help.text
+msgid "Initializes the random-number generator."
+msgstr "Inicializa el generador de números aleatorios."
+
+#: 03080301.xhp#hd_id3147573.3.help.text
+msgctxt "03080301.xhp#hd_id3147573.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03080301.xhp#par_id3145315.4.help.text
+msgid "Randomize [Number]"
+msgstr "Randomize [Número]"
+
+#: 03080301.xhp#hd_id3152456.5.help.text
+msgctxt "03080301.xhp#hd_id3152456.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03080301.xhp#par_id3149670.6.help.text
+msgid "<emph>Number:</emph> Any integer value that initializes the random-number generator."
+msgstr "<emph>Número:</emph> Cualquier valor entero que inicialice el generador de números aleatorios."
+
+#: 03080301.xhp#hd_id3149655.7.help.text
+msgctxt "03080301.xhp#hd_id3149655.7.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03080301.xhp#par_id3151211.8.help.text
+msgid "Sub ExampleRandomize"
+msgstr "Sub EjemploRandomize"
+
+#: 03080301.xhp#par_id3147229.9.help.text
+msgid "Dim iVar As Integer, sText As String"
+msgstr "Dim iVar As Integer, sTexto As String"
+
+#: 03080301.xhp#par_id3150870.10.help.text
+msgid "Dim iSpectral(10) As Integer"
+msgstr "Dim iSpectral(10) As Integer"
+
+#: 03080301.xhp#par_id3148673.12.help.text
+msgid "Randomize 2^14-1"
+msgstr "Randomize 2^14-1"
+
+#: 03080301.xhp#par_id3156423.13.help.text
+msgid "For iCount = 1 To 1000"
+msgstr "For iContador = 1 To 1000"
+
+#: 03080301.xhp#par_id3147288.14.help.text
+msgid "iVar = Int((10 * Rnd) ) REM Range from 0 to 9"
+msgstr "iVar = Int((10 * Rnd) ) REM Valor de 0 a 9"
+
+#: 03080301.xhp#par_id3155132.15.help.text
+msgid "iSpectral(iVar) = iSpectral(iVar) +1"
+msgstr "iSpectral(iVar) = iSpectral(iVar) +1"
+
+#: 03080301.xhp#par_id3153143.16.help.text
+msgctxt "03080301.xhp#par_id3153143.16.help.text"
+msgid "Next iCount"
+msgstr "next iContador"
+
+#: 03080301.xhp#par_id3154011.18.help.text
+msgid "sText = \" | \""
+msgstr "sText = \" | \""
+
+#: 03080301.xhp#par_id3151114.19.help.text
+msgctxt "03080301.xhp#par_id3151114.19.help.text"
+msgid "For iCount = 0 To 9"
+msgstr "For iContador = 0 To 9"
+
+#: 03080301.xhp#par_id3145748.20.help.text
+msgid "sText = sText & iSpectral(iCount) & \" | \""
+msgstr "sText = sText & iSpectral(iCount) & \" | \""
+
+#: 03080301.xhp#par_id3146921.21.help.text
+msgctxt "03080301.xhp#par_id3146921.21.help.text"
+msgid "Next iCount"
+msgstr "next iContador"
+
+#: 03080301.xhp#par_id3148617.22.help.text
+msgid "MsgBox sText,0,\"Spectral Distribution\""
+msgstr "MsgBox sText,0,\"Distribución espectral\""
+
+#: 03080301.xhp#par_id3152941.23.help.text
+msgctxt "03080301.xhp#par_id3152941.23.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03132100.xhp#tit.help.text
+msgid "GetGuiType Function [Runtime]"
+msgstr "Función GetGuiType [Ejecución]"
+
+#: 03132100.xhp#bm_id3147143.help.text
+msgid "<bookmark_value>GetGuiType function</bookmark_value>"
+msgstr "<bookmark_value>GetGuiType function</bookmark_value>"
+
+#: 03132100.xhp#hd_id3155310.1.help.text
+msgid "<link href=\"text/sbasic/shared/03132100.xhp\" name=\"GetGuiType Function [Runtime]\">GetGuiType Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03132100.xhp\" name=\"GetGuiType Function [Runtime]\">Función GetGuiType [Ejecución]</link>"
+
+#: 03132100.xhp#par_id3152459.2.help.text
+msgid "Returns a numerical value that specifies the graphical user interface."
+msgstr "Devuelve un valor numérico que especifica la interfaz gráfica de usuario."
+
+#: 03132100.xhp#par_id3153323.3.help.text
+msgid "This runtime function is only provided for downward compatibility to previous versions. The return value is not defined in client-server environments."
+msgstr "Esta función en tiempo de ejecución sólo se proporciona para compatibilidad con versiones anteriores. El valor de retorno no se define en entornos cliente-servidor."
+
+#: 03132100.xhp#hd_id3154894.4.help.text
+msgctxt "03132100.xhp#hd_id3154894.4.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03132100.xhp#par_id3147143.5.help.text
+msgid "GetGUIType()"
+msgstr "GetGUIType()"
+
+#: 03132100.xhp#hd_id3149346.6.help.text
+msgctxt "03132100.xhp#hd_id3149346.6.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03132100.xhp#par_id3153748.7.help.text
+msgctxt "03132100.xhp#par_id3153748.7.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03132100.xhp#hd_id3149177.8.help.text
+msgid "Return values:"
+msgstr "Valores de retorno:"
+
+#: 03132100.xhp#par_id3147242.9.help.text
+msgid "1: Windows"
+msgstr "1: Windows"
+
+#: 03132100.xhp#par_id3156152.11.help.text
+msgid "4: UNIX"
+msgstr "4: UNIX"
+
+#: 03132100.xhp#hd_id3148685.12.help.text
+msgctxt "03132100.xhp#hd_id3148685.12.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03132100.xhp#par_id3149233.13.help.text
+msgid "Sub ExampleEnvironment"
+msgstr "Sub EjemploEnvironment"
+
+#: 03132100.xhp#par_id3145609.14.help.text
+msgid "MsgBox GetGUIType"
+msgstr "MsgBox GetGUIType"
+
+#: 03132100.xhp#par_id3145069.15.help.text
+msgctxt "03132100.xhp#par_id3145069.15.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03020103.xhp#tit.help.text
+msgid "Open Statement[Runtime]"
+msgstr "Instrucción Open [Ejecución]"
+
+#: 03020103.xhp#bm_id3150791.help.text
+msgid "<bookmark_value>Open statement</bookmark_value>"
+msgstr "<bookmark_value>Open;instrucción</bookmark_value>"
+
+#: 03020103.xhp#hd_id3150791.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open Statement[Runtime]\">Open Statement[Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Instrucción Open [Runtime]\">Instrucción Open [Ejecución]</link>"
+
+#: 03020103.xhp#par_id3150769.2.help.text
+msgid "Opens a data channel."
+msgstr "Abre un canal de datos."
+
+#: 03020103.xhp#hd_id3147230.3.help.text
+msgctxt "03020103.xhp#hd_id3147230.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03020103.xhp#par_id3154124.4.help.text
+msgid "Open FileName As String [For Mode] [Access IOMode] [Protected] As [#]FileNumber As Integer [Len = DatasetLength]"
+msgstr "Open NombreArchivo As String [For Modo] [Access ModoES] [protección] As [#]NúmeroArchivo As Integer [Len = LongitudJuegoDatos]"
+
+#: 03020103.xhp#hd_id3156280.5.help.text
+msgctxt "03020103.xhp#hd_id3156280.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03020103.xhp#par_id3155132.6.help.text
+msgid "<emph>FileName: </emph>Name and path of the file that you wan to open. If you try to read a file that does not exist (Access = Read), an error message appears. If you try to write to a file that does not exist (Access = Write), a new file is created."
+msgstr "<emph>FileName: </emph>Nombre y ruta del archivo que quieres abrir. Si quieres leer un archivo que no exista (Access = Read), aparecera un mensaje de error. Si intentas abrir un archivo que no existe (Access = Write), un nuevo archivo será creado."
+
+#: 03020103.xhp#par_id3149262.7.help.text
+msgid "<emph>Mode:</emph> Keyword that specifies the file mode. Valid values: Append (append to sequential file), Binary (data can be accessed by bytes using Get and Put), Input (opens data channel for reading), Output (opens data channel for writing), and Random (edits relative files)."
+msgstr "<emph>Mode:</emph> Palabra clave que especifica el modo del archivo. Los valores permitidos son: Append (agrega a un archivo secuencial), Binary (datos que pueden ser accesados usando Get y Put), Input (abre datos de canal para ser leidos), Output (abre canales de datos para escritura), y Random (edita valores relativos)."
+
+#: 03020103.xhp#par_id3154014.8.help.text
+msgid "<emph>IOMode:</emph> Keyword that defines the access type. Valid values: Read (read-only), Write (write-only), Read Write (both)."
+msgstr "<emph>ModoES:</emph> Palabra clave que define el tipo de acceso. Valores válidos: Read (sólo lectura), Write (sólo escritura), Read Write (ambos)."
+
+#: 03020103.xhp#par_id3150011.9.help.text
+msgid "<emph>Protected:</emph> Keyword that defines the security status of a file after opening. Valid values: Shared (file may be opened by other applications), Lock Read (file is protected against reading), Lock Write (file is protected against writing), Lock Read Write (denies file access)."
+msgstr "Protección: Palabra clave que define el estado de seguridad de un archivo después de su apertura. Valores válidos: Shared (el archivo pueden abrirlo otras aplicaciones), Lock Read (el archivo está protegido contra lectura), Lock Write (el archivo está protegido contra escritura), Lock Read Write (impide el acceso al archivo)."
+
+#: 03020103.xhp#par_id3153190.10.help.text
+msgid "<emph>FileNumber:</emph> Any integer expression from 0 to 511 to indicate the number of a free data channel. You can then pass commands through the data channel to access the file. The file number must be determined by the FreeFile function immediately before the Open statement."
+msgstr "NúmeroArchivo: Cualquier expresión entera de 0 a 511 que indica el número de un canal de datos libre. A continuación puede pasar órdenes a través del canal de datos para acceder al archivo. El número de archivo debe determinarlo la función FreeFile inmediatamente antes de la instrucción Open."
+
+#: 03020103.xhp#par_id3151115.11.help.text
+msgid "<emph>DatasetLength:</emph> For random access files, set the length of the records."
+msgstr "<emph>LongitudJuegoDatos</emph> Para archivos de acceso aleatorio, defina la longitud de los registros."
+
+#: 03020103.xhp#par_id3153418.12.help.text
+msgid "You can only modify the contents of a file that was opened with the Open statement. If you try to open a file that is already open, an error message appears."
+msgstr "Sólo se puede modificar el contenido de los archivos que se hayan abierto con la instrucción Open. Si intenta abrir un archivo que ya está abierto, aparecerá un mensaje de error."
+
+#: 03020103.xhp#hd_id3149123.13.help.text
+msgctxt "03020103.xhp#hd_id3149123.13.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03020103.xhp#par_id3150749.14.help.text
+msgctxt "03020103.xhp#par_id3150749.14.help.text"
+msgid "Sub ExampleWorkWithAFile"
+msgstr "Sub EjemploTrabajoConArchivo"
+
+#: 03020103.xhp#par_id3155064.15.help.text
+msgctxt "03020103.xhp#par_id3155064.15.help.text"
+msgid "Dim iNumber As Integer"
+msgstr "Dim iNumero As Integer"
+
+#: 03020103.xhp#par_id3154754.16.help.text
+msgctxt "03020103.xhp#par_id3154754.16.help.text"
+msgid "Dim sLine As String"
+msgstr "Dim sLinea As String"
+
+#: 03020103.xhp#par_id3153711.17.help.text
+msgctxt "03020103.xhp#par_id3153711.17.help.text"
+msgid "Dim aFile As String"
+msgstr "Dim aArchivo As String"
+
+#: 03020103.xhp#par_id3155764.40.help.text
+msgctxt "03020103.xhp#par_id3155764.40.help.text"
+msgid "Dim sMsg as String"
+msgstr "Dim sMensaje as String"
+
+#: 03020103.xhp#par_id3159264.18.help.text
+msgctxt "03020103.xhp#par_id3159264.18.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr "aArchivo = \"c:\\data.txt\""
+
+#: 03020103.xhp#par_id3153963.20.help.text
+msgctxt "03020103.xhp#par_id3153963.20.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumero = Freefile"
+
+#: 03020103.xhp#par_id3155959.21.help.text
+msgctxt "03020103.xhp#par_id3155959.21.help.text"
+msgid "Open aFile For Output As #iNumber"
+msgstr "Open aArchivo For Output As #iNumero"
+
+#: 03020103.xhp#par_id3154705.22.help.text
+msgctxt "03020103.xhp#par_id3154705.22.help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr "Print #iNumero, \"Esta es una línea de texto\""
+
+#: 03020103.xhp#par_id3146916.23.help.text
+msgctxt "03020103.xhp#par_id3146916.23.help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr "Print #iNumero, \"Esta es otra línea de texto\""
+
+#: 03020103.xhp#par_id3150942.24.help.text
+msgctxt "03020103.xhp#par_id3150942.24.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumero"
+
+#: 03020103.xhp#par_id3150300.28.help.text
+msgctxt "03020103.xhp#par_id3150300.28.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumero = Freefile"
+
+#: 03020103.xhp#par_id3154022.29.help.text
+msgctxt "03020103.xhp#par_id3154022.29.help.text"
+msgid "Open aFile For Input As iNumber"
+msgstr "Open aArchivo For Input As iNumero"
+
+#: 03020103.xhp#par_id3150783.30.help.text
+msgctxt "03020103.xhp#par_id3150783.30.help.text"
+msgid "While not eof(iNumber)"
+msgstr "While not eof(iNumero)"
+
+#: 03020103.xhp#par_id3153270.31.help.text
+msgctxt "03020103.xhp#par_id3153270.31.help.text"
+msgid "Line Input #iNumber, sLine"
+msgstr "Line Input #iNumero, sLinea"
+
+#: 03020103.xhp#par_id3153784.32.help.text
+msgctxt "03020103.xhp#par_id3153784.32.help.text"
+msgid "If sLine <>\"\" then"
+msgstr "If sLinea <>\"\" then"
+
+#: 03020103.xhp#par_id3149208.33.help.text
+msgctxt "03020103.xhp#par_id3149208.33.help.text"
+msgid "sMsg = sMsg & sLine & chr(13)"
+msgstr "sMensaje = sMensaje & sLinea & chr(13)"
+
+#: 03020103.xhp#par_id3150304.35.help.text
+msgctxt "03020103.xhp#par_id3150304.35.help.text"
+msgid "end if"
+msgstr "end if"
+
+#: 03020103.xhp#par_id3151217.36.help.text
+msgctxt "03020103.xhp#par_id3151217.36.help.text"
+msgid "wend"
+msgstr "wend"
+
+#: 03020103.xhp#par_id3152582.37.help.text
+msgctxt "03020103.xhp#par_id3152582.37.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumero"
+
+#: 03020103.xhp#par_id3159100.41.help.text
+msgctxt "03020103.xhp#par_id3159100.41.help.text"
+msgid "Msgbox sMsg"
+msgstr "Msgbox sMensaje"
+
+#: 03020103.xhp#par_id3159091.38.help.text
+msgctxt "03020103.xhp#par_id3159091.38.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03090200.xhp#tit.help.text
+msgid "Loops"
+msgstr "Bucles"
+
+#: 03090200.xhp#hd_id3153990.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090200.xhp\" name=\"Loops\">Loops</link>"
+msgstr "<link href=\"text/sbasic/shared/03090200.xhp\" name=\"Loops\">Bucles</link>"
+
+#: 03090200.xhp#par_id3147226.2.help.text
+msgid "The following statements execute loops."
+msgstr "Las instrucciones siguientes ejecutan bucles."
+
+#: 03080200.xhp#tit.help.text
+msgid "Exponential and Logarithmic Functions"
+msgstr "Funciones exponenciales y logarítmicas"
+
+#: 03080200.xhp#hd_id3154758.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080200.xhp\" name=\"Exponential and Logarithmic Functions\">Exponential and Logarithmic Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03080200.xhp\" name=\"Funciones exponenciales y logarítmicas\">Funciones exponenciales y logarítmicas</link>"
+
+#: 03080200.xhp#par_id3148550.2.help.text
+msgid "$[officename] Basic supports the following exponential and logarithmic functions."
+msgstr "Las funciones exponenciales y logarítmicas siguientes se admiten en $[officename] Basic."
+
+#: 01050000.xhp#tit.help.text
+msgid "$[officename] Basic IDE"
+msgstr "$[officename] Basic IDE"
+
+#: 01050000.xhp#hd_id3154422.1.help.text
+msgid "<variable id=\"01050000\"><link href=\"text/sbasic/shared/01050000.xhp\" name=\"$[officename] Basic IDE\">$[officename] Basic IDE</link></variable>"
+msgstr "<variable id=\"01050000\"><link href=\"text/sbasic/shared/01050000.xhp\" name=\"$[officename] Basic IDE\">$[officename] Basic IDE</link></variable>"
+
+#: 01050000.xhp#par_id3153142.2.help.text
+msgid "This section describes the structure of the Basic IDE."
+msgstr "Esta sección describe la estructura del Basic IDE."
+
+#: 01050000.xhp#par_idN105C9.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Basic IDE where you can write and edit macros.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abre el IDE de StarOffice Basic en la que se puede escribir y editar macros.</ahelp>"
+
+#: 01050000.xhp#hd_id3153188.5.help.text
+msgid "Commands From the Context menu of the Module Tabs"
+msgstr "Órdenes del menú contextual de las fichas de módulos"
+
+#: 01050000.xhp#hd_id3154731.6.help.text
+msgid "Insert"
+msgstr "Insertar"
+
+#: 01050000.xhp#hd_id3151074.8.help.text
+msgid "Module"
+msgstr "Módulo"
+
+#: 01050000.xhp#par_id3149581.9.help.text
+msgid "<ahelp hid=\".uno:NewModule\">Inserts a new module into the current library.</ahelp>"
+msgstr "<ahelp hid=\".uno:NewModule\">Inserta un nuevo módulo en la biblioteca actual.</ahelp>"
+
+#: 01050000.xhp#hd_id3147397.10.help.text
+msgid "Dialog"
+msgstr "Diálogo"
+
+#: 01050000.xhp#par_id3144335.11.help.text
+msgid "<ahelp hid=\".uno:NewDialog\">Inserts a new dialog into the current library.</ahelp>"
+msgstr "<ahelp hid=\".uno:NewDialog\">Inserta un nuevo diálogo en la biblioteca actual.</ahelp>"
+
+#: 01050000.xhp#hd_id3155602.12.help.text
+msgctxt "01050000.xhp#hd_id3155602.12.help.text"
+msgid "Delete"
+msgstr "Borrar"
+
+#: 01050000.xhp#par_id3155064.13.help.text
+msgid "<ahelp hid=\".uno:DeleteCurrent\">Deletes the selected module.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteCurrent\">Elimina el módulo seleccionado.</ahelp>"
+
+#: 01050000.xhp#hd_id3149018.14.help.text
+msgid "Rename"
+msgstr "Cambiar nombre"
+
+#: 01050000.xhp#par_id3154754.15.help.text
+msgid "<ahelp hid=\".uno:RenameCurrent\">Renames the current module in place.</ahelp>"
+msgstr "<ahelp hid=\".uno:RenameCurrent\">Cambia el nombre del módulo actual in situ.</ahelp>"
+
+#: 01050000.xhp#hd_id3150043.16.help.text
+msgid "Hide"
+msgstr "Ocultar"
+
+#: 01050000.xhp#par_id3145147.17.help.text
+msgid "<ahelp hid=\".uno:HideCurPage\">Hides the current module.</ahelp>"
+msgstr "<ahelp hid=\".uno:HideCurPage\">Oculta el módulo actual.</ahelp>"
+
+#: 01050000.xhp#hd_id3163805.18.help.text
+msgctxt "01050000.xhp#hd_id3163805.18.help.text"
+msgid "Modules"
+msgstr "Módulos"
+
+#: 01050000.xhp#par_id3153965.19.help.text
+msgid "Opens the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> dialog."
+msgstr "Abre el diálogo <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Organizar Macros\"><emph>Organizar Macros</emph></link>."
+
+#: 03132000.xhp#tit.help.text
+msgid "CreateUnoListener Function [Runtime]"
+msgstr "Función CreateUnoListener [Ejecución]"
+
+#: 03132000.xhp#bm_id3155150.help.text
+msgid "<bookmark_value>CreateUnoListener function</bookmark_value>"
+msgstr "<bookmark_value>CreateUnoListener;función</bookmark_value>"
+
+#: 03132000.xhp#hd_id3155150.53.help.text
+msgid "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"CreateUnoListener Function [Runtime]\">CreateUnoListener Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"CreateUnoListener Function [Runtime]\">Función CreateUnoListener [Ejecución]</link>"
+
+#: 03132000.xhp#par_id3149346.52.help.text
+msgid "Creates a Listener instance."
+msgstr "Crea un caso de Listener."
+
+#: 03132000.xhp#par_id3153681.51.help.text
+msgid "Many Uno interfaces let you register listeners on a special listener interface. This allows you to listen for specific events and call up the appropriate listener method. The CreateUnoListener function waits for the called listener interface and then passes the interface an object that the interface supports. This object is then passed to the method to register the listener."
+msgstr "Muchas interfaces Uno permiten registrar listeners en una interfaz especial, lo que permite supervisar eventos específicos y llamar al método listener apropiado. La función CreateUnoListener espera a la interfaz listener llamada y después la pasa un objeto que ésta admita y que, a su vez, después se pasa al método para registrar el listener."
+
+#: 03132000.xhp#hd_id3148685.50.help.text
+msgctxt "03132000.xhp#hd_id3148685.50.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03132000.xhp#par_id3143228.49.help.text
+msgid "oListener = CreateUnoListener( Prefixname, ListenerInterfaceName )"
+msgstr "oListener = CreateUnoListener( Nombreprefijo, NombreInterfazListener )"
+
+#: 03132000.xhp#hd_id3147574.48.help.text
+msgctxt "03132000.xhp#hd_id3147574.48.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03132000.xhp#par_id3154046.47.help.text
+msgid "The following example is based on a Basic library object."
+msgstr "El ejemplo siguiente se basa en un objeto de la biblioteca Basic."
+
+#: 03132000.xhp#par_id3155136.46.help.text
+msgid "Dim oListener"
+msgstr "Dim oListener"
+
+#: 03132000.xhp#par_id3148944.45.help.text
+msgid "oListener = CreateUnoListener( \"ContListener_\",\"com.sun.star.container.XContainerListener\" )"
+msgstr "oListener = CreateUnoListener( \"ContListener_\",\"com.sun.star.container.XContainerListener\" )"
+
+#: 03132000.xhp#par_id3149294.44.help.text
+msgid "The CreateUnoListener method requires two parameters. The first is a prefix and is explained in detail below. The second parameter is the fully qualified name of the Listener interface that you want to use."
+msgstr "El método CreateUnoListener requiere dos parámetros. El primero es un prefijo y se explica detalladamente a continuación; el segundo es el nombre cualificado por completo de la interfaz Listener que se desee usar."
+
+#: 03132000.xhp#par_id3149670.43.help.text
+msgid "The Listener must then be added to the Broadcaster Object. This is done by calling the appropriate method for adding a Listener. These methods always follow the pattern \"addFooListener\", where \"Foo\" is the Listener Interface Type, without the 'X'. In this example, the addContainerListener method is called to register the XContainerListener:"
+msgstr "A continuación, el Listener debe añadirse al objeto Broadcaster lo que se consigue llamando al método apropiado para agregar un Listener. Estos métodos siempre siguen el patrón \"addFooListener\", donde \"Foo\" es el tipo de interfaz Listener sin la 'X'. En este ejemplo, el método addContainerListener se llama para registrar XContainerListener:"
+
+#: 03132000.xhp#par_id3154164.42.help.text
+msgid "Dim oLib"
+msgstr "Dim oLib"
+
+#: 03132000.xhp#par_id3154940.41.help.text
+msgid "oLib = BasicLibraries.Library1 ' Library1 must exist!"
+msgstr "oLib = BasicLibraries.Library1 ' Library1 debe existir"
+
+#: 03132000.xhp#par_id3150359.40.help.text
+msgid "oLib.addContainerListener( oListener ) ' Register the listener"
+msgstr "oLib.addContainerListener( oListener ) ' Registrar el listener"
+
+#: 03132000.xhp#par_id3154138.39.help.text
+msgid "The Listener is now registered. When an event occurs, the corresponding Listener calls the appropriate method from the com.sun.star.container.XContainerListener Interface."
+msgstr "Ahora Listener está registrado. Cuando se produce una acción, la Listener correspondiente llama al método apropiado desde la interfaz de com.sun.star.container.XContainerListener."
+
+#: 03132000.xhp#par_id3148922.38.help.text
+msgid "The prefix calls registered Listeners from Basic-subroutines. The Basic run-time system searches for Basic-subroutines or functions that have the name \"PrefixListenerMethode\" and calls them when found. Otherwise, a run-time error occurs."
+msgstr "El prefijo llama a Listeners registradas desde subrutinas Basic. El sistema en tiempo de ejecución de Basic busca subrutinas o funciones Basic que tengan el nombre \"PrefixListenerMethode\" y las llama cuando las encuentra. En caso contrario se produce un error de tiempo de ejecución."
+
+#: 03132000.xhp#par_id3150768.37.help.text
+msgid "In this example, the Listener-Interface uses the following methods:"
+msgstr "En este ejemplo, la interfaz Listener usa los métodos siguientes:"
+
+#: 03132000.xhp#par_id3151176.36.help.text
+msgid "disposing:"
+msgstr "disposing:"
+
+#: 03132000.xhp#par_id3145173.35.help.text
+msgid "Listener base interface (com.sun.star.lang.XEventListener): base interface for all Listener Interfaces"
+msgstr "Interfaz base de Listener (com.sun.star.lang.XEventListener): intefaz base para todos las intefaces de Listener"
+
+#: 03132000.xhp#par_id3156212.34.help.text
+msgid "elementInserted:"
+msgstr "elementInserted:"
+
+#: 03132000.xhp#par_id3159254.33.help.text
+msgctxt "03132000.xhp#par_id3159254.33.help.text"
+msgid "Method of the com.sun.star.container.XContainerListener interface"
+msgstr "Método de la Interfaz com.sun.star.container.XContainerListener"
+
+#: 03132000.xhp#par_id3147287.32.help.text
+msgid "elementRemoved:"
+msgstr "elementRemoved:"
+
+#: 03132000.xhp#par_id3146119.31.help.text
+msgctxt "03132000.xhp#par_id3146119.31.help.text"
+msgid "Method of the com.sun.star.container.XContainerListener interface"
+msgstr "Método de la interfaz com.sun.star.container.XContainerListener"
+
+#: 03132000.xhp#par_id3153951.30.help.text
+msgid "elementReplaced:"
+msgstr "elementReplaced:"
+
+#: 03132000.xhp#par_id3154013.29.help.text
+msgctxt "03132000.xhp#par_id3154013.29.help.text"
+msgid "Method of the com.sun.star.container.XContainerListener interface"
+msgstr "Método de la interfaz com.sun.star.container.XContainerListener"
+
+#: 03132000.xhp#par_id3147435.28.help.text
+msgid "In this example, the prefix is ContListener_. The following subroutines must therefore be implemented in Basic:"
+msgstr "En este ejemplo, el prefijo es ContListener_. Por tanto, las subrutinas siguientes deben implementarse en Basic:"
+
+#: 03132000.xhp#par_id3155411.27.help.text
+msgid "ContListener_disposing"
+msgstr "ContListener_disposing"
+
+#: 03132000.xhp#par_id3146923.26.help.text
+msgid "ContListener_elementInserted"
+msgstr "ContListener_elementInserted"
+
+#: 03132000.xhp#par_id3147318.25.help.text
+msgid "ContListener_elementRemoved"
+msgstr "ContListener_elementRemoved"
+
+#: 03132000.xhp#par_id3152578.24.help.text
+msgid "ContListener_elementReplaced"
+msgstr "ContListener_elementReplaced"
+
+#: 03132000.xhp#par_id3150592.23.help.text
+msgid "An event structure type that contains information about an event exists for every Listener type. When a Listener method is called, an instance of this event is passed to the method as a parameter. Basic Listener methods can also call these event objects, so long as the appropriate parameter is passed in the Sub declaration. For example:"
+msgstr "Existe un tipo de estructura de acción que contiene información sobre cada tipo de Listener. Cuando se llama a un método Listener, se pasa un caso de esta acción al método como parámetro. Los métodos Listener de Basic también pueden llamar a estos objetos de acción, siempre que se pase el parámetro apropiado en la declaración Sub. Por ejemplo:"
+
+#: 03132000.xhp#par_id3149582.22.help.text
+msgid "Sub ContListener_disposing( oEvent )"
+msgstr "Sub ContListener_disposing( oEvent )"
+
+#: 03132000.xhp#par_id3153876.21.help.text
+msgid "MsgBox \"disposing\""
+msgstr "MsgBox \"disposing\""
+
+#: 03132000.xhp#par_id3149959.20.help.text
+msgctxt "03132000.xhp#par_id3149959.20.help.text"
+msgid "MsgBox oEvent.Dbg_Properties"
+msgstr "MsgBox oEvent.Dbg_Properties"
+
+#: 03132000.xhp#par_id3154490.19.help.text
+msgctxt "03132000.xhp#par_id3154490.19.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03132000.xhp#par_id3156285.18.help.text
+msgid "Sub ContListener_elementInserted( oEvent )"
+msgstr "Sub ContListener_elementInserted( oEvent )"
+
+#: 03132000.xhp#par_id3154098.17.help.text
+msgid "MsgBox \"elementInserted\""
+msgstr "MsgBox \"elementInserted\""
+
+#: 03132000.xhp#par_id3155601.16.help.text
+msgctxt "03132000.xhp#par_id3155601.16.help.text"
+msgid "MsgBox oEvent.Dbg_Properties"
+msgstr "MsgBox oEvent.Dbg_Properties"
+
+#: 03132000.xhp#par_id3153415.15.help.text
+msgctxt "03132000.xhp#par_id3153415.15.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03132000.xhp#par_id3154272.14.help.text
+msgid "Sub ContListener_elementRemoved( oEvent )"
+msgstr "Sub ContListener_elementRemoved( oEvent )"
+
+#: 03132000.xhp#par_id3153947.13.help.text
+msgid "MsgBox \"elementRemoved\""
+msgstr "MsgBox \"elementRemoved\""
+
+#: 03132000.xhp#par_id3146914.12.help.text
+msgctxt "03132000.xhp#par_id3146914.12.help.text"
+msgid "MsgBox oEvent.Dbg_Properties"
+msgstr "MsgBox oEvent.Dbg_Properties"
+
+#: 03132000.xhp#par_id3150749.11.help.text
+msgctxt "03132000.xhp#par_id3150749.11.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03132000.xhp#par_id3145642.10.help.text
+msgid "Sub ContListener_elementReplaced( oEvent )"
+msgstr "Sub ContListener_elementReplaced( oEvent )"
+
+#: 03132000.xhp#par_id3148915.9.help.text
+msgid "MsgBox \"elementReplaced\""
+msgstr "MsgBox \"elementReplaced\""
+
+#: 03132000.xhp#par_id3148995.8.help.text
+msgctxt "03132000.xhp#par_id3148995.8.help.text"
+msgid "MsgBox oEvent.Dbg_Properties"
+msgstr "MsgBox oEvent.Dbg_Properties"
+
+#: 03132000.xhp#par_id3148407.7.help.text
+msgctxt "03132000.xhp#par_id3148407.7.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03132000.xhp#par_id3156056.6.help.text
+msgid "You do not need to include the parameter of an event object if the object is not used:"
+msgstr "No es necesario incluir el parámetro de un objeto de acción si éste no se va a utilizar:"
+
+#: 03132000.xhp#par_id3150042.5.help.text
+msgid "' Minimal implementation of Sub disposing"
+msgstr "' Implementación mínima de disposing Sub"
+
+#: 03132000.xhp#par_id3151249.4.help.text
+msgid "Sub ContListener_disposing"
+msgstr "Sub ContListener_disposing"
+
+#: 03132000.xhp#par_id3155333.3.help.text
+msgctxt "03132000.xhp#par_id3155333.3.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03132000.xhp#par_id3150940.2.help.text
+msgid "Listener methods must <emph>always</emph> be implemented to avoid Basic run-time errors."
+msgstr "Los métodos Listener deben implementarse <emph>siempre</emph> para evitar errores en tiempo de ejecución de Basic."
+
+#: 01020000.xhp#tit.help.text
+msgctxt "01020000.xhp#tit.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 01020000.xhp#hd_id3148946.1.help.text
+msgid "<link href=\"text/sbasic/shared/01020000.xhp\" name=\"Syntax\">Syntax</link>"
+msgstr "<link href=\"text/sbasic/shared/01020000.xhp\" name=\"Sintaxis\">Sintaxis</link>"
+
+#: 01020000.xhp#par_id3150793.2.help.text
+msgid "This section describes the basic syntax elements of $[officename] Basic. For a detailed description please refer to the $[officename] Basic Guide which is available separately."
+msgstr "Esta sección describe los elementos de sintaxis básicos de $[officename] Basic. Para obtener información más detallada consulte la Guía de $[officename] Basic que está disponible de forma separada."
+
+#: 03030204.xhp#tit.help.text
+msgid "Second Function [Runtime]"
+msgstr "Función Second [Ejecución]"
+
+#: 03030204.xhp#bm_id3153346.help.text
+msgid "<bookmark_value>Second function</bookmark_value>"
+msgstr "<bookmark_value>Second;función</bookmark_value>"
+
+#: 03030204.xhp#hd_id3153346.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second Function [Runtime]\">Second Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030204.xhp\" name=\"Función Second [Runtime]\">Función Second [Ejecución]</link>"
+
+#: 03030204.xhp#par_id3156023.2.help.text
+msgid "Returns an integer that represents the seconds of the serial time number that is generated by the TimeSerial or the TimeValue function."
+msgstr "Devuelve un entero que representa los segundos del número de hora serie que han generado las funciones TimeSerial o TimeValue."
+
+#: 03030204.xhp#hd_id3147264.3.help.text
+msgctxt "03030204.xhp#hd_id3147264.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03030204.xhp#par_id3146795.4.help.text
+msgid "Second (Number)"
+msgstr "Second (Número)"
+
+#: 03030204.xhp#hd_id3150792.5.help.text
+msgctxt "03030204.xhp#hd_id3150792.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03030204.xhp#par_id3154140.6.help.text
+msgctxt "03030204.xhp#par_id3154140.6.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03030204.xhp#hd_id3156280.7.help.text
+msgctxt "03030204.xhp#hd_id3156280.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03030204.xhp#par_id3154124.8.help.text
+msgid "<emph>Number:</emph> Numeric expression that contains the serial time number that is used to calculate the number of seconds."
+msgstr "<emph>Número:</emph> Expresión numérica que contenga el valor de tiempo serie que se use para devolver el valor de hora."
+
+#: 03030204.xhp#par_id3125864.9.help.text
+msgid "This function is the opposite of the <emph>TimeSerial </emph>function. It returns the seconds of a serial time value that is generated by the <emph>TimeSerial</emph> or <emph>TimeValue </emph>functions. For example, the expression:"
+msgstr "Esta función es la inversa a <emph>TimeSerial</emph>. Devuelve los segundos del número de hora serie que han generado las funciones <emph>TimeSerial</emph> o <emph>TimeValue </emph>. Por ejemplo, la expresión:"
+
+#: 03030204.xhp#par_id3153951.10.help.text
+msgid "Print Second(TimeSerial(12,30,41))"
+msgstr "Print Second(TimeSerial(12,30,41))"
+
+#: 03030204.xhp#par_id3151117.11.help.text
+msgid "returns the value 41."
+msgstr "devuelve el valor 41."
+
+#: 03030204.xhp#hd_id3147426.12.help.text
+msgctxt "03030204.xhp#hd_id3147426.12.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03030204.xhp#par_id3154012.13.help.text
+msgid "Sub ExampleSecond"
+msgstr "Sub EjemploSecond"
+
+#: 03030204.xhp#par_id3156441.14.help.text
+msgid "MsgBox \"The exact second of the current time is \"& Second( Now )"
+msgstr "MsgBox \"El segundo exacto de la hora actual es \"& Second( Now )"
+
+#: 03030204.xhp#par_id3151112.15.help.text
+msgctxt "03030204.xhp#par_id3151112.15.help.text"
+msgid "End sub"
+msgstr "End sub"
+
+#: 03103200.xhp#tit.help.text
+msgid "Option Base Statement [Runtime]"
+msgstr "Instrucción Option Base [Ejecución]"
+
+#: 03103200.xhp#bm_id3155805.help.text
+msgid "<bookmark_value>Option Base statement</bookmark_value>"
+msgstr "<bookmark_value>Option Base;instrucción</bookmark_value>"
+
+#: 03103200.xhp#hd_id3155805.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103200.xhp\" name=\"Option Base Statement [Runtime]\">Option Base Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103200.xhp\" name=\"Option Base Statement [Runtime]\">Instrucción Option Base [Ejecución]</link>"
+
+#: 03103200.xhp#par_id3147242.2.help.text
+msgid "Defines the default lower boundary for arrays as 0 or 1."
+msgstr "Define el límite inferior predeterminado para matrices entre 0 y 1."
+
+#: 03103200.xhp#hd_id3150771.3.help.text
+msgctxt "03103200.xhp#hd_id3150771.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03103200.xhp#par_id3147573.4.help.text
+msgid "Option Base { 0 | 1}"
+msgstr "Option Base { 0 | 1}"
+
+#: 03103200.xhp#hd_id3145315.5.help.text
+msgctxt "03103200.xhp#hd_id3145315.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03103200.xhp#par_id3147229.6.help.text
+msgctxt "03103200.xhp#par_id3147229.6.help.text"
+msgid "This statement must be added before the executable program code in a module."
+msgstr "Esta instrucción debe agregarse antes del código del programa ejecutable en un módulo."
+
+#: 03103200.xhp#hd_id3150870.7.help.text
+msgctxt "03103200.xhp#hd_id3150870.7.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03103200.xhp#par_id3152921.8.help.text
+msgid "option Base 1"
+msgstr "Option Base 1"
+
+#: 03103200.xhp#par_id3153192.10.help.text
+msgid "Sub ExampleOptionBase"
+msgstr "Sub EjemploOptionBase"
+
+#: 03103200.xhp#par_id3149561.11.help.text
+msgid "Dim sVar(20) As String"
+msgstr "Dim sVar(20) As String"
+
+#: 03103200.xhp#par_id3153770.12.help.text
+msgid "msgbox LBound(sVar())"
+msgstr "msgbox LBound(sVar())"
+
+#: 03103200.xhp#par_id3159153.13.help.text
+msgctxt "03103200.xhp#par_id3159153.13.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 01040000.xhp#tit.help.text
+msgid "Event-Driven Macros"
+msgstr "Macros ejecutadas por acciones"
+
+#: 01040000.xhp#bm_id3154581.help.text
+msgid "<bookmark_value>deleting; macro assignments to events</bookmark_value> <bookmark_value>macros; assigning to events</bookmark_value> <bookmark_value>assigning macros to events</bookmark_value> <bookmark_value>events; assigning macros</bookmark_value>"
+msgstr "<bookmark_value>borrar;asignaciones de macros a eventos</bookmark_value><bookmark_value>macros;asignar a eventos</bookmark_value><bookmark_value>asignar macros a eventos</bookmark_value><bookmark_value>eventos;asignar macros</bookmark_value>"
+
+#: 01040000.xhp#hd_id3147348.1.help.text
+msgid "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Event-Driven Macros\">Event-Driven Macros</link>"
+msgstr "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Macros ejecutadas por acciones\">Macros ejecutadas por acciones</link>"
+
+#: 01040000.xhp#par_id3146120.2.help.text
+msgid "This section describes how to assign Basic programs to program events."
+msgstr "Esta sección describe cómo asignar programas Basic a acciones de programa."
+
+#: 01040000.xhp#par_id3149263.4.help.text
+msgid "You can automatically execute a macro when a specified software event occurs by assigning the desired macro to the event. The following table provides an overview of program events and at what point an assigned macro is executed."
+msgstr "Puede especificarse la ejecución automática de una macro cuando se produzca una acción de software asignando la macro deseada a la acción. La tabla siguiente proporciona un resumen de acciones de programa y en qué punto se ejecuta una macro asignada."
+
+#: 01040000.xhp#par_id3148455.5.help.text
+msgctxt "01040000.xhp#par_id3148455.5.help.text"
+msgid "Event"
+msgstr "Evento"
+
+#: 01040000.xhp#par_id3145799.6.help.text
+msgid "An assigned macro is executed..."
+msgstr "Una macro asignada se ejecuta..."
+
+#: 01040000.xhp#par_id3149379.7.help.text
+msgid "Program Start"
+msgstr "Iniciar aplicación"
+
+#: 01040000.xhp#par_id3150715.8.help.text
+msgid "... after a $[officename] application is started."
+msgstr "... después que se inicie una aplicación de $[officename]."
+
+#: 01040000.xhp#par_id3146914.9.help.text
+msgid "Program End"
+msgstr "Cerrar aplicación"
+
+#: 01040000.xhp#par_id3153765.10.help.text
+msgid "...before a $[officename] application is terminated."
+msgstr "...antes de que termine una aplicación de $[officename]."
+
+#: 01040000.xhp#par_id3145150.11.help.text
+msgid "Create Document"
+msgstr "Crear documento"
+
+#: 01040000.xhp#par_id3163808.12.help.text
+msgid "...after a new document is created with <emph>File - New</emph> or with the <emph>New</emph> icon."
+msgstr "...después de crear un documento nuevo con <emph>Archivo - Nuevo</emph> o con el icono <emph>Nuevo</emph>."
+
+#: 01040000.xhp#par_id3145790.13.help.text
+msgid "Open Document"
+msgstr "Abrir documento"
+
+#: 01040000.xhp#par_id3154572.14.help.text
+msgid "...after a document is opened with <emph>File - Open</emph> or with the <emph>Open</emph> icon."
+msgstr "...después de abrir un documento con <emph>Archivo - Abrir</emph> o con el icono <emph>Abrir</emph>."
+
+#: 01040000.xhp#par_id3153266.15.help.text
+msgid "Save Document As"
+msgstr "Guardar documento como"
+
+#: 01040000.xhp#par_id3150208.16.help.text
+msgid "...before a document is saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or the <emph>Save</emph> icon, if a document name has not yet been specified)."
+msgstr "...antes de guardar un documento con un nombre especificado (con <emph>Archivo - Guardar como</emph> o con <emph>Archivo - Guardar</emph> o el icono <emph>Guardar</emph>, si no se ha especificado todavía un nombre de documento)."
+
+#: 01040000.xhp#par_id3158215.43.help.text
+msgid "Document has been saved as"
+msgstr "El documento se guardó como"
+
+#: 01040000.xhp#par_id3150980.44.help.text
+msgid "... after a document was saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or with the <emph>Save</emph> icon, if a document name has not yet been specified)."
+msgstr "... después de guardar un documento con un nombre especificado (con <emph>Archivo - Guardar como</emph> o con <emph>Archivo - Guardar</emph> o el icono <emph>Guardar</emph>, si no se ha especificado todavía un nombre de documento)."
+
+#: 01040000.xhp#par_id3150519.17.help.text
+msgid "Save Document"
+msgstr "Guardar documento"
+
+#: 01040000.xhp#par_id3155529.18.help.text
+msgid "...before a document is saved with <emph>File - Save</emph> or the <emph>Save</emph> icon, provided that a document name has already been specified."
+msgstr "...antes de guardar un documento con <emph>Archivo - Guardar</emph> o el icono <emph>Guardar</emph>, siempre que se haya especificado antes un nombre para el documento."
+
+#: 01040000.xhp#par_id3149404.45.help.text
+msgid "Document has been saved"
+msgstr "El documento se guardó"
+
+#: 01040000.xhp#par_id3151332.46.help.text
+msgid "...after a document is saved with <emph>File - Save</emph> or the <emph>Save</emph> icon, provided that a document name has already been specified."
+msgstr "...después de guardar un documento con <emph>Archivo - Guardar</emph> o el icono <emph>Guardar</emph>, siempre que se haya especificado antes un nombre para el documento."
+
+#: 01040000.xhp#par_id3159171.19.help.text
+msgid "Document is closing"
+msgstr "Documento esta cerrando"
+
+#: 01040000.xhp#par_id3146868.20.help.text
+msgid "...before a document is closed."
+msgstr "...antes de cerrar un documento."
+
+#: 01040000.xhp#par_id3159097.47.help.text
+msgid "Document closed"
+msgstr "Documento cerrado"
+
+#: 01040000.xhp#par_id3148606.48.help.text
+msgid "...after a document was closed. Note that the \"Save Document\" event may also occur when the document is saved before closing."
+msgstr "...después de cerrar un documento. Tenga en cuenta que la acción \"Guardar documento\" también puede activarse si el documento se guarda antes de cerrarlo."
+
+#: 01040000.xhp#par_id3144772.21.help.text
+msgid "Activate Document"
+msgstr "Activar documento"
+
+#: 01040000.xhp#par_id3149442.22.help.text
+msgid "...after a document is brought to the foreground."
+msgstr "...después de que un documento se traiga al primer plano."
+
+#: 01040000.xhp#par_id3150888.23.help.text
+msgid "Deactivate Document"
+msgstr "Desactivar documento"
+
+#: 01040000.xhp#par_id3154060.24.help.text
+msgid "...after another document is brought to the foreground."
+msgstr "...después de que otro documento se traiga al primer plano."
+
+#: 01040000.xhp#par_id3152384.25.help.text
+msgid "Print Document"
+msgstr "Imprimir documento"
+
+#: 01040000.xhp#par_id3152873.26.help.text
+msgid "...after the <emph>Print</emph> dialog is closed, but before the actual print process begins."
+msgstr "...después de que se cierre el diálogo <emph>Imprimir</emph>, pero antes de que dé comienzo el proceso real de impresión."
+
+#: 01040000.xhp#par_id3159227.49.help.text
+msgid "JavaScript run-time error"
+msgstr "Error de tiempo de ejecución de JavaScript."
+
+#: 01040000.xhp#par_id3145362.50.help.text
+msgid "...when a JavaScript run-time error occurs."
+msgstr "...cuando se produce un error de tiempo de ejecución de JavaScript."
+
+#: 01040000.xhp#par_id3154767.27.help.text
+msgid "Print Mail Merge"
+msgstr "Imprimir en serie"
+
+#: 01040000.xhp#par_id3153555.28.help.text
+msgid "...after the <emph>Print</emph> dialog is closed, but before the actual print process begins. This event occurs for each copy printed."
+msgstr "...después de que se cierra el diálogo <emph>Imprimir</emph>, pero antes de que dé comienzo el proceso real de impresión. Este acontecimiento se repite por cada copia que se imprime."
+
+#: 01040000.xhp#par_id3156366.51.help.text
+msgid "Change of the page count"
+msgstr "Cambio del número de páginas"
+
+#: 01040000.xhp#par_id3154627.52.help.text
+msgid "...when the page count changes."
+msgstr "...cuando cambie el número de páginas."
+
+#: 01040000.xhp#par_id3154737.53.help.text
+msgid "Message received"
+msgstr "Mensaje recibido"
+
+#: 01040000.xhp#par_id3150952.54.help.text
+msgid "...if a message was received."
+msgstr "...si se ha recibido un mensaje."
+
+#: 01040000.xhp#hd_id3153299.30.help.text
+msgid "Assigning a Macro to an Event"
+msgstr "Asignación de una macro a una acción"
+
+#: 01040000.xhp#par_id3147244.31.help.text
+msgctxt "01040000.xhp#par_id3147244.31.help.text"
+msgid "Choose <emph>Tools - Customize</emph> and click the <emph>Events</emph> tab."
+msgstr "Seleccione <emph>Herramientas - Configurar</emph> y pulse la pestaña <emph>Acciones</emph>."
+
+#: 01040000.xhp#par_id3146098.55.help.text
+msgid "Select whether you want the assignment to be globally valid or just valid in the current document in the <emph>Save In</emph> listbox."
+msgstr "Seleccione si desea que la asignación sea válida globalmente o que sólo sea válida en el documento actual seleccionando la opción <emph>$[officename]</emph> o <emph>Documento</emph>."
+
+#: 01040000.xhp#par_id3150431.32.help.text
+msgid "Select the event from the <emph>Event</emph> list."
+msgstr "Seleccione acción desde la lista <emph>Acción</emph>."
+
+#: 01040000.xhp#par_id3148742.33.help.text
+msgid "Click <emph>Macro</emph> and select the macro to be assigned to the selected event."
+msgstr "Da clic en <emph>Macros</emph> y selecciona la macro a ser asignada al evento escogido."
+
+#: 01040000.xhp#par_id3146321.35.help.text
+msgid "Click <emph>OK</emph> to assign the macro."
+msgstr "Da clic en <emph>Aceptar</emph> para asignar la macro.."
+
+#: 01040000.xhp#par_id3147414.56.help.text
+msgctxt "01040000.xhp#par_id3147414.56.help.text"
+msgid "Click <emph>OK</emph> to close the dialog."
+msgstr "Pulse <emph>Aceptar</emph> para cerrar el diálogo."
+
+#: 01040000.xhp#hd_id3154581.36.help.text
+msgid "Removing the Assignment of a Macro to an Event"
+msgstr "Supresión de la asignación de una macro a una acción"
+
+#: 01040000.xhp#par_id3146883.57.help.text
+msgctxt "01040000.xhp#par_id3146883.57.help.text"
+msgid "Choose <emph>Tools - Customize</emph> and click the <emph>Events</emph> tab."
+msgstr "Seleccione <emph>Herramientas - Configurar</emph> y pulse la pestaña <emph>Acciones</emph>."
+
+#: 01040000.xhp#par_id3155909.58.help.text
+msgid "Select whether you want to remove a global assignment or an assignment that is just valid in the current document by selecting the option in the <emph>Save In</emph> listbox."
+msgstr "Seleccione si desea eliminar una tarea global o una tarea que sólo es válida en el documento actual seleccionando la opción en la caja de lista <emph>$[officename]</emph> o <emph>Documento</emph>."
+
+#: 01040000.xhp#par_id3159129.59.help.text
+msgid "Select the event that contains the assignment to be removed from the <emph>Event</emph> list."
+msgstr "Seleccione la acción que contiene la asignación que desee suprimir de la lista <emph>Acciones</emph>."
+
+#: 01040000.xhp#par_id3149143.37.help.text
+msgid "Click <emph>Remove</emph>."
+msgstr "Pulse <emph>Borrar</emph>."
+
+#: 01040000.xhp#par_id3149351.60.help.text
+msgctxt "01040000.xhp#par_id3149351.60.help.text"
+msgid "Click <emph>OK</emph> to close the dialog."
+msgstr "Pulse <emph>Aceptar</emph> para cerrar el diálogo."
+
+#: 03060600.xhp#tit.help.text
+msgid "Xor-Operator [Runtime]"
+msgstr "Operador Xor [Ejecución]"
+
+#: 03060600.xhp#bm_id3156024.help.text
+msgid "<bookmark_value>Xor operator (logical)</bookmark_value>"
+msgstr "<bookmark_value>Xor;operadores lógicos</bookmark_value>"
+
+#: 03060600.xhp#hd_id3156024.1.help.text
+msgid "<link href=\"text/sbasic/shared/03060600.xhp\" name=\"Xor-Operator [Runtime]\">Xor-Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03060600.xhp\" name=\"Operador Xor [Runtime]\">Operador Xor [Ejecución]</link>"
+
+#: 03060600.xhp#par_id3159414.2.help.text
+msgid "Performs a logical Exclusive-Or combination of two expressions."
+msgstr "Realiza una combinación de comparación exclusiva entre dos expresiones."
+
+#: 03060600.xhp#hd_id3153381.3.help.text
+msgctxt "03060600.xhp#hd_id3153381.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03060600.xhp#par_id3150400.4.help.text
+msgid "Result = Expression1 Xor Expression2"
+msgstr "Resultado = Expresión1 Xor Expresión2"
+
+#: 03060600.xhp#hd_id3153968.5.help.text
+msgctxt "03060600.xhp#hd_id3153968.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03060600.xhp#par_id3150448.6.help.text
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the combination."
+msgstr "Resultado: Cualquier variable numérica que contenga el resultado de la combinación."
+
+#: 03060600.xhp#par_id3125864.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to combine."
+msgstr "<emph>Expresión1, Expresión2:</emph> Las expresiones numéricas que se desea combinar."
+
+#: 03060600.xhp#par_id3150439.8.help.text
+msgid "A logical Exclusive-Or conjunction of two Boolean expressions returns the value True only if both expressions are different from each other."
+msgstr "Una conjunción lógica de comparación exclusiva de dos expresiones lógicas devuelve el valor True sólo si ambas son distintas entre sí."
+
+#: 03060600.xhp#par_id3153770.9.help.text
+msgid "A bitwise Exclusive-Or conjunction returns a bit if the corresponding bit is set in only one of the two expressions."
+msgstr "Una conjunción de comparación exclusiva realizada bit a bit activa sólo los que están activados en una de las dos expresiones."
+
+#: 03060600.xhp#hd_id3153366.10.help.text
+msgctxt "03060600.xhp#hd_id3153366.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03060600.xhp#par_id3159154.11.help.text
+msgid "Sub ExampleXor"
+msgstr "Sub EjemploXor"
+
+#: 03060600.xhp#par_id3163710.12.help.text
+msgctxt "03060600.xhp#par_id3163710.12.help.text"
+msgid "Dim vA as Variant, vB as Variant, vC as Variant, vD as Variant"
+msgstr "Dim vA as Variant, vB as Variant, vC as Variant, vD as Variant"
+
+#: 03060600.xhp#par_id3155856.13.help.text
+msgctxt "03060600.xhp#par_id3155856.13.help.text"
+msgid "Dim vOut as Variant"
+msgstr "Dim vOut as Variant"
+
+#: 03060600.xhp#par_id3152462.14.help.text
+msgctxt "03060600.xhp#par_id3152462.14.help.text"
+msgid "vA = 10: vB = 8: vC = 6: vD = Null"
+msgstr "vA = 10: vB = 8: vC = 6: vD = Null"
+
+#: 03060600.xhp#par_id3156442.15.help.text
+msgid "vOut = vA > vB Xor vB > vC REM returns 0"
+msgstr "vOut = vA > vB Xor vB > vC REM devuelve 0"
+
+#: 03060600.xhp#par_id3153191.16.help.text
+msgid "vOut = vB > vA Xor vB > vC REM returns -1"
+msgstr "vOut = vA > vB Xor vB > vC REM devuelve -1"
+
+#: 03060600.xhp#par_id3153144.17.help.text
+msgid "vOut = vA > vB Xor vB > vD REM returns -1"
+msgstr "vOut = vA > vB Xor vB > vD REM devuelve -1"
+
+#: 03060600.xhp#par_id3154944.18.help.text
+msgid "vOut = (vB > vD Xor vB > vA) REM returns 0"
+msgstr "vOut = (vB > vD Xor vB > vA) REM devuelve 0"
+
+#: 03060600.xhp#par_id3148455.19.help.text
+msgid "vOut = vB Xor vA REM returns 2"
+msgstr "vOut = vB Xor vA REM devuelve 2"
+
+#: 03060600.xhp#par_id3156283.20.help.text
+msgctxt "03060600.xhp#par_id3156283.20.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03100050.xhp#tit.help.text
+msgid "CCur Function [Runtime]"
+msgstr "Función CCur [Ejecución]"
+
+#: 03100050.xhp#bm_id8926053.help.text
+msgid "<bookmark_value>CCur function</bookmark_value>"
+msgstr "<bookmark_value>Función CCur</bookmark_value>"
+
+#: 03100050.xhp#par_idN10541.help.text
+msgid "<link href=\"text/sbasic/shared/03100050.xhp\">CCur Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100050.xhp\">Función CCur [Ejecución]</link>"
+
+#: 03100050.xhp#par_idN10545.help.text
+msgid "Converts a string expression or numeric expression to a currency expression. The locale settings are used for decimal separators and currency symbols."
+msgstr "Convierte una expresión de cadena o una expresión numérica en una expresión de moneda. Para los decimales y los símbolos de moneda se utiliza la configuración regional."
+
+#: 03100050.xhp#par_idN10548.help.text
+msgctxt "03100050.xhp#par_idN10548.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03100050.xhp#par_idN105E8.help.text
+msgid "CCur(Expression)"
+msgstr "CCur(Expression)"
+
+#: 03100050.xhp#par_idN105EB.help.text
+msgctxt "03100050.xhp#par_idN105EB.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03100050.xhp#par_idN105EF.help.text
+msgid "Currency"
+msgstr "moneda"
+
+#: 03100050.xhp#par_idN105F2.help.text
+msgctxt "03100050.xhp#par_idN105F2.help.text"
+msgid "Parameter:"
+msgstr "Parámetro:"
+
+#: 03100050.xhp#par_idN105F6.help.text
+msgctxt "03100050.xhp#par_idN105F6.help.text"
+msgid "Expression: Any string or numeric expression that you want to convert."
+msgstr "Expression: cualquier cadena o expresión numérica que desee convertir."
+
+#: 03020303.xhp#tit.help.text
+msgid "Lof Function [Runtime]"
+msgstr "Función Lof [Ejecución]"
+
+#: 03020303.xhp#bm_id3156024.help.text
+msgid "<bookmark_value>Lof function</bookmark_value>"
+msgstr "<bookmark_value>Lof;función</bookmark_value>"
+
+#: 03020303.xhp#hd_id3156024.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Lof Function [Runtime]\">Lof Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Función Lof [Runtime]\">Función Lof [Runtime]</link>"
+
+#: 03020303.xhp#par_id3146794.2.help.text
+msgid "Returns the size of an open file in bytes."
+msgstr "Devuelve el tamaño de un archivo abierto en bytes."
+
+#: 03020303.xhp#hd_id3153380.3.help.text
+msgctxt "03020303.xhp#hd_id3153380.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03020303.xhp#par_id3150359.4.help.text
+msgid "Lof (FileNumber)"
+msgstr "Lof (NúmeroArchivo)"
+
+#: 03020303.xhp#hd_id3154141.5.help.text
+msgctxt "03020303.xhp#hd_id3154141.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03020303.xhp#par_id3147230.6.help.text
+msgctxt "03020303.xhp#par_id3147230.6.help.text"
+msgid "Long"
+msgstr "Largo"
+
+#: 03020303.xhp#hd_id3156281.7.help.text
+msgctxt "03020303.xhp#hd_id3156281.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03020303.xhp#par_id3150869.8.help.text
+msgid "<emph>FileNumber:</emph> Any numeric expression that contains the file number that is specified in the Open statement."
+msgstr "<emph>NúmeroArchivo:</emph> Cualquier expresión numérica que contenga el número de archivo especificado en la instrucción Open."
+
+#: 03020303.xhp#par_id3147349.9.help.text
+msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
+msgstr "Para obtener la longitud de un archivo que no está abierto, se utiliza la función <emph>FileLen</emph>."
+
+#: 03020303.xhp#hd_id3155415.10.help.text
+msgctxt "03020303.xhp#hd_id3155415.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03020303.xhp#par_id3151074.11.help.text
+msgctxt "03020303.xhp#par_id3151074.11.help.text"
+msgid "Sub ExampleRandomAccess"
+msgstr "Sub EjemploAccesoAleatorio"
+
+#: 03020303.xhp#par_id3145251.12.help.text
+msgctxt "03020303.xhp#par_id3145251.12.help.text"
+msgid "Dim iNumber As Integer"
+msgstr "Dim iNumero As Integer"
+
+#: 03020303.xhp#par_id3154730.13.help.text
+msgid "Dim sText As Variant REM must be a Variant"
+msgstr "Dim sTexto As Variant REM Debe ser una variante"
+
+#: 03020303.xhp#par_id3145646.14.help.text
+msgctxt "03020303.xhp#par_id3145646.14.help.text"
+msgid "Dim aFile As String"
+msgstr "Dim aArchivo As String"
+
+#: 03020303.xhp#par_id3153157.15.help.text
+msgctxt "03020303.xhp#par_id3153157.15.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr "aArchivo = \"c:\\data.txt\""
+
+#: 03020303.xhp#par_id3149403.17.help.text
+msgctxt "03020303.xhp#par_id3149403.17.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumero = Freefile"
+
+#: 03020303.xhp#par_id3149121.18.help.text
+msgctxt "03020303.xhp#par_id3149121.18.help.text"
+msgid "Open aFile For Random As #iNumber Len=32"
+msgstr "Open aArchivo For Random As #iNumero Len=32"
+
+#: 03020303.xhp#par_id3156276.19.help.text
+msgid "Seek #iNumber,1 REM Position at start"
+msgstr "Seek #iNumero,1 REM Posición al principio"
+
+#: 03020303.xhp#par_id3148405.20.help.text
+msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
+msgstr "Put #iNumero,, \"Esta es la primera línea de texto\" REM Rellenar con texto"
+
+#: 03020303.xhp#par_id3154756.21.help.text
+msgctxt "03020303.xhp#par_id3154756.21.help.text"
+msgid "Put #iNumber,, \"This is the second line of text\""
+msgstr "Print #iNumero, \"Esta es la segunda línea de texto\""
+
+#: 03020303.xhp#par_id3145643.22.help.text
+msgctxt "03020303.xhp#par_id3145643.22.help.text"
+msgid "Put #iNumber,, \"This is the third line of text\""
+msgstr "Print #iNumero, \"Esta es la tercera línea de texto\""
+
+#: 03020303.xhp#par_id3156383.23.help.text
+msgctxt "03020303.xhp#par_id3156383.23.help.text"
+msgid "Seek #iNumber,2"
+msgstr "Seek #iNumero,2"
+
+#: 03020303.xhp#par_id3155333.24.help.text
+msgctxt "03020303.xhp#par_id3155333.24.help.text"
+msgid "Get #iNumber,,sText"
+msgstr "Get #iNumero,,sTexto"
+
+#: 03020303.xhp#par_id3149255.25.help.text
+msgctxt "03020303.xhp#par_id3149255.25.help.text"
+msgid "Print sText"
+msgstr "Print sTexto"
+
+#: 03020303.xhp#par_id3154702.26.help.text
+msgctxt "03020303.xhp#par_id3154702.26.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumero"
+
+#: 03020303.xhp#par_id3153965.28.help.text
+msgctxt "03020303.xhp#par_id3153965.28.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumero = Freefile"
+
+#: 03020303.xhp#par_id3163807.29.help.text
+msgctxt "03020303.xhp#par_id3163807.29.help.text"
+msgid "Open aFile For Random As #iNumber Len=32"
+msgstr "Open aArchivo For Random As #iNumero Len=32"
+
+#: 03020303.xhp#par_id3155607.30.help.text
+msgctxt "03020303.xhp#par_id3155607.30.help.text"
+msgid "Get #iNumber,2,sText"
+msgstr "Get #iNumero,2,sTexto"
+
+#: 03020303.xhp#par_id3150299.31.help.text
+msgid "Put #iNumber,,\"This is a new line of text\""
+msgstr "Put #iNumero,,\"Esto es una línea de texto nueva\""
+
+#: 03020303.xhp#par_id3147002.32.help.text
+msgctxt "03020303.xhp#par_id3147002.32.help.text"
+msgid "Get #iNumber,1,sText"
+msgstr "Get #iNumero,1,sTexto"
+
+#: 03020303.xhp#par_id3149036.33.help.text
+msgctxt "03020303.xhp#par_id3149036.33.help.text"
+msgid "Get #iNumber,2,sText"
+msgstr "Get #iNumero,2,sTexto"
+
+#: 03020303.xhp#par_id3166425.34.help.text
+msgctxt "03020303.xhp#par_id3166425.34.help.text"
+msgid "Put #iNumber,20,\"This is the text in record 20\""
+msgstr "Put #iNumero,20,\"Este es el texto del registro 20\""
+
+#: 03020303.xhp#par_id3149817.35.help.text
+msgctxt "03020303.xhp#par_id3149817.35.help.text"
+msgid "Print Lof(#iNumber)"
+msgstr "Print Lof(#iNumero)"
+
+#: 03020303.xhp#par_id3146811.36.help.text
+msgctxt "03020303.xhp#par_id3146811.36.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumero"
+
+#: 03020303.xhp#par_id3154200.38.help.text
+msgctxt "03020303.xhp#par_id3154200.38.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03120304.xhp#tit.help.text
+msgid "LSet Statement [Runtime]"
+msgstr "Instrucción LSet [Ejecución]"
+
+#: 03120304.xhp#bm_id3143268.help.text
+msgid "<bookmark_value>LSet statement</bookmark_value>"
+msgstr "<bookmark_value>LSet;instrucción</bookmark_value>"
+
+#: 03120304.xhp#hd_id3143268.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120304.xhp\" name=\"LSet Statement [Runtime]\">LSet Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120304.xhp\" name=\"LSet Statement [Runtime]\">Instrucción LSet [Ejecución]</link>"
+
+#: 03120304.xhp#par_id3155419.2.help.text
+msgid "Aligns a string to the left of a string variable, or copies a variable of a user-defined type to another variable of a different user-defined type."
+msgstr "Alinea una cadena a la izquierda de una variable de cadena o copia una variable de un tipo definido por el usuario en otra de otro tipo distinto definido por el usuario."
+
+#: 03120304.xhp#hd_id3145317.3.help.text
+msgctxt "03120304.xhp#hd_id3145317.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03120304.xhp#par_id3150984.4.help.text
+msgid "LSet Var As String = Text or LSet Var1 = Var2"
+msgstr "LSet Var As String = Texto o LSet Var1 = Var2 "
+
+#: 03120304.xhp#hd_id3143271.5.help.text
+msgctxt "03120304.xhp#hd_id3143271.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03120304.xhp#par_id3145610.6.help.text
+msgid "<emph>Var:</emph> Any String variable that contains the string that you want align to the left."
+msgstr "<emph>Var:</emph> Cualquier variable que contenga la cadena que se desea alinear a la izquierda."
+
+#: 03120304.xhp#par_id3154346.7.help.text
+msgid "<emph>Text:</emph> String that you want to align to the left of the string variable."
+msgstr "<emph>Texto:</emph> Cadena que se desee alinear a la izquierda de la variable de cadena."
+
+#: 03120304.xhp#par_id3151054.8.help.text
+msgid "<emph>Var1:</emph> Name of the user-defined type variable that you want to copy to."
+msgstr "<emph>Var1:</emph> Nombre de la variable de tipo definido por el usuario donde se desee realizar la copia."
+
+#: 03120304.xhp#par_id3153361.9.help.text
+msgid "<emph>Var2:</emph> Name of the user-defined type variable that you want to copy from."
+msgstr "<emph>Var2:</emph> Nombre de la variable de tipo definido por el usuario desde la que se desee copiar."
+
+#: 03120304.xhp#par_id3154686.10.help.text
+msgid "If the string is shorter than the string variable, <emph>LSet</emph> left-aligns the string within the string variable. Any remaining positions in the string variable are replaced by spaces. If the string is longer than the string variable, only the leftmost characters up to the length of the string variable are copied. With the <emph>LSet</emph> statement, you can also copy a user-defined type variable to another variable of the same type."
+msgstr "Si la cadena es más corta que la variable de cadena, <emph>LSet</emph> alinea a la derecha la cadena dentro de la variable. Cualquier posición que quede en la variable de cadena se sustituye por espacios. Si la cadena es más larga que la variable, sólo se copian los caracteres que se encuentran más a la izquierda hasta completar la longitud de la variable de cadena. Con la instrucción <emph>LSet</emph> también se puede copiar una variable definida por el usuario a otra del mismo tipo."
+
+#: 03120304.xhp#hd_id3156282.11.help.text
+msgctxt "03120304.xhp#hd_id3156282.11.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03120304.xhp#par_id3153193.12.help.text
+msgctxt "03120304.xhp#par_id3153193.12.help.text"
+msgid "Sub ExampleRLSet"
+msgstr "Sub EjemploRLSet"
+
+#: 03120304.xhp#par_id3150768.13.help.text
+msgctxt "03120304.xhp#par_id3150768.13.help.text"
+msgid "Dim sVar As String"
+msgstr "Dim sVar As String"
+
+#: 03120304.xhp#par_id3150447.14.help.text
+msgid "Dim sExpr As String"
+msgstr "Dim sExpr As String"
+
+#: 03120304.xhp#par_id3149561.16.help.text
+msgctxt "03120304.xhp#par_id3149561.16.help.text"
+msgid "sVar = String(40,\"*\")"
+msgstr "sVar = String(40,\"*\")"
+
+#: 03120304.xhp#par_id3153768.17.help.text
+msgctxt "03120304.xhp#par_id3153768.17.help.text"
+msgid "sExpr = \"SBX\""
+msgstr "sExpr = \"SBX\""
+
+#: 03120304.xhp#par_id3152940.18.help.text
+msgid "REM Align \"SBX\" within the 40-character reference string"
+msgstr "REM Alinea \"SBX\" dentro de la cadena de referencia de 40 caracteres"
+
+#: 03120304.xhp#par_id3148647.19.help.text
+msgctxt "03120304.xhp#par_id3148647.19.help.text"
+msgid "REM Replace asterisks with spaces"
+msgstr "REM Sustituir asteriscos por espacios"
+
+#: 03120304.xhp#par_id3146119.20.help.text
+msgctxt "03120304.xhp#par_id3146119.20.help.text"
+msgid "RSet sVar = sExpr"
+msgstr "RSet sVar = sExpr"
+
+#: 03120304.xhp#par_id3153365.21.help.text
+msgctxt "03120304.xhp#par_id3153365.21.help.text"
+msgid "Print \">\"; sVar; \"<\""
+msgstr "Print \">\"; sVar; \"<\""
+
+#: 03120304.xhp#par_id3149260.23.help.text
+msgctxt "03120304.xhp#par_id3149260.23.help.text"
+msgid "sVar = String(5,\"*\")"
+msgstr "sVar = String(5,\"*\")"
+
+#: 03120304.xhp#par_id3147436.24.help.text
+msgctxt "03120304.xhp#par_id3147436.24.help.text"
+msgid "sExpr = \"123457896\""
+msgstr "sExpr = \"123457896\""
+
+#: 03120304.xhp#par_id3146923.25.help.text
+msgctxt "03120304.xhp#par_id3146923.25.help.text"
+msgid "RSet sVar = sExpr"
+msgstr "RSet sVar = sExpr"
+
+#: 03120304.xhp#par_id3151114.26.help.text
+msgctxt "03120304.xhp#par_id3151114.26.help.text"
+msgid "Print \">\"; sVar; \"<\""
+msgstr "Print \">\"; sVar; \"<\""
+
+#: 03120304.xhp#par_id3155855.28.help.text
+msgctxt "03120304.xhp#par_id3155855.28.help.text"
+msgid "sVar = String(40,\"*\")"
+msgstr "sVar = String(40,\"*\")"
+
+#: 03120304.xhp#par_id3145253.29.help.text
+msgctxt "03120304.xhp#par_id3145253.29.help.text"
+msgid "sExpr = \"SBX\""
+msgstr "sExpr = \"SBX\""
+
+#: 03120304.xhp#par_id3151075.30.help.text
+msgid "REM Left-align \"SBX\" within the 40-character reference string"
+msgstr "REM Alinea a la izquierda \"SBX\" dentro de la cadena de referencia de 40 caracteres"
+
+#: 03120304.xhp#par_id3147126.31.help.text
+msgctxt "03120304.xhp#par_id3147126.31.help.text"
+msgid "LSet sVar = sExpr"
+msgstr "LSet sVar = sExpr"
+
+#: 03120304.xhp#par_id3154792.32.help.text
+msgctxt "03120304.xhp#par_id3154792.32.help.text"
+msgid "Print \">\"; sVar; \"<\""
+msgstr "Print \">\"; sVar; \"<\""
+
+#: 03120304.xhp#par_id3154942.34.help.text
+msgctxt "03120304.xhp#par_id3154942.34.help.text"
+msgid "sVar = String(5,\"*\")"
+msgstr "sVar = String(5,\"*\")"
+
+#: 03120304.xhp#par_id3155603.35.help.text
+msgctxt "03120304.xhp#par_id3155603.35.help.text"
+msgid "sExpr = \"123456789\""
+msgstr "sExpr = \"123456789\""
+
+#: 03120304.xhp#par_id3150716.36.help.text
+msgctxt "03120304.xhp#par_id3150716.36.help.text"
+msgid "LSet sVar = sExpr"
+msgstr "LSet sVar = sExpr"
+
+#: 03120304.xhp#par_id3146969.37.help.text
+msgctxt "03120304.xhp#par_id3146969.37.help.text"
+msgid "Print \">\"; sVar; \"<\""
+msgstr "Print \">\"; sVar; \"<\""
+
+#: 03120304.xhp#par_id3150749.38.help.text
+msgctxt "03120304.xhp#par_id3150749.38.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03100100.xhp#tit.help.text
+msgid "CBool Function [Runtime]"
+msgstr "Función CBool [Ejecución]"
+
+#: 03100100.xhp#bm_id3150616.help.text
+msgid "<bookmark_value>CBool function</bookmark_value>"
+msgstr "<bookmark_value>CBool;función</bookmark_value>"
+
+#: 03100100.xhp#hd_id3150616.1.help.text
+msgid "<link href=\"text/sbasic/shared/03100100.xhp\" name=\"CBool Function [Runtime]\">CBool Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100100.xhp\" name=\"CBool Function [Runtime]\">Función CBool [Ejecución]</link>"
+
+#: 03100100.xhp#par_id3145136.2.help.text
+msgid "Converts a string comparison or numeric comparison to a Boolean expression, or converts a single numeric expression to a Boolean expression."
+msgstr "Convierte una comparación de cadenas o numérica en una expresión lógica, o convierte una expresión numérica simple en una de tipo lógico."
+
+#: 03100100.xhp#hd_id3153345.3.help.text
+msgctxt "03100100.xhp#hd_id3153345.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03100100.xhp#par_id3149514.4.help.text
+msgid "CBool (Expression1 {= | <> | < | > | <= | >=} Expression2) or CBool (Number)"
+msgstr "CBool (Expresión1 {= | <> | < | > | <= | >=} Expresión2) o CBool (Número)"
+
+#: 03100100.xhp#hd_id3156152.5.help.text
+msgctxt "03100100.xhp#hd_id3156152.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03100100.xhp#par_id3155419.6.help.text
+msgctxt "03100100.xhp#par_id3155419.6.help.text"
+msgid "Bool"
+msgstr "Lógico"
+
+#: 03100100.xhp#hd_id3147530.7.help.text
+msgctxt "03100100.xhp#hd_id3147530.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03100100.xhp#par_id3156344.8.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any string or numeric expressions that you want to compare. If the expressions match, the <emph>CBool</emph> function returns <emph>True</emph>, otherwise <emph>False</emph> is returned."
+msgstr "<emph>Expresión1, Expresión2:</emph> Cualquier cadena o expresión numérica que desee comparar. Si las expresiones coinciden, la función <emph>CBool</emph> devuelve el valor <emph>True</emph>, en caso contrario devuelve <emph>False</emph>."
+
+#: 03100100.xhp#par_id3149655.9.help.text
+msgid "<emph>Number:</emph> Any numeric expression that you want to convert. If the expression equals 0, <emph>False</emph> is returned, otherwise <emph>True</emph> is returned."
+msgstr "<emph>Número:</emph> Cualquier expresión numérica que desee convertir. Si la expresión es igual a 0 se devuelve <emph>False</emph>, en caso contrario se devuelve <emph>True</emph>."
+
+#: 03100100.xhp#par_id3145171.10.help.text
+msgid "The following example uses the <emph>CBool</emph> function to evaluate the value that is returned by the <emph>Instr</emph> function. The function checks if the word \"and\" is found in the sentence that was entered by the user."
+msgstr "El ejemplo siguiente usa la función <emph>CBool</emph> para evaluar el valor que devuelve la función <emph>Instr</emph>. La función comprueba si la palabra \"y\" se halla en la frase que introdujo el usuario."
+
+#: 03100100.xhp#hd_id3156212.11.help.text
+msgctxt "03100100.xhp#hd_id3156212.11.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03100100.xhp#par_id3147288.12.help.text
+msgid "Sub ExampleCBool"
+msgstr "Sub EjemploCBool"
+
+#: 03100100.xhp#par_id3153768.13.help.text
+msgctxt "03100100.xhp#par_id3153768.13.help.text"
+msgid "Dim sText As String"
+msgstr "Dim sTexto As String"
+
+#: 03100100.xhp#par_id3155132.14.help.text
+msgid "sText = InputBox(\"Please enter a short sentence:\")"
+msgstr "sTexto = InputBox(\"Por favor, escriba una frase corta:\")"
+
+#: 03100100.xhp#par_id3155855.15.help.text
+msgid "REM Proof if the word »and« appears in the sentence."
+msgstr "REM Comprobar si la palabra \"y\" aparece en la frase."
+
+#: 03100100.xhp#par_id3146984.16.help.text
+msgid "REM Instead of the command line"
+msgstr "REM En lugar de usar la línea de órdenes"
+
+#: 03100100.xhp#par_id3148576.17.help.text
+msgid "REM If Instr(Input, \"and\")<>0 Then..."
+msgstr "REM If Instr(Input, \"y\")<>0 Then..."
+
+#: 03100100.xhp#par_id3154014.18.help.text
+msgid "REM the CBool function is applied as follows:"
+msgstr "REM la función CBool se aplica de la forma siguiente:"
+
+#: 03100100.xhp#par_id3155413.19.help.text
+msgid "If CBool(Instr(sText, \"and\")) Then"
+msgstr "If CBool(Instr(sTexto, \"y\")) Then"
+
+#: 03100100.xhp#par_id3152940.20.help.text
+msgid "MsgBox \"The word »and« appears in the sentence you entered!\""
+msgstr "MsgBox \"La palabra \"y\" aparece en la frase que acaba de escribir\""
+
+#: 03100100.xhp#par_id3153954.21.help.text
+msgid "EndIf"
+msgstr "EndIf"
+
+#: 03100100.xhp#par_id3152886.22.help.text
+msgctxt "03100100.xhp#par_id3152886.22.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03030300.xhp#tit.help.text
+msgid "System Date and Time"
+msgstr "Fecha y hora del sistema"
+
+#: 03030300.xhp#hd_id3154923.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030300.xhp\" name=\"System Date and Time\">System Date and Time</link>"
+msgstr "<link href=\"text/sbasic/shared/03030300.xhp\" name=\"Fecha y hora del sistema\">Fecha y hora del sistema</link>"
+
+#: 03030300.xhp#par_id3149457.2.help.text
+msgid "The following functions and statements set or return the system date and time."
+msgstr "Las funciones e instrucciones siguientes establecen o devuelven la fecha y hora del sistema."
+
+#: 03120311.xhp#tit.help.text
+msgid "Trim Function [Runtime]"
+msgstr "Función Trim [Ejecución]"
+
+#: 03120311.xhp#bm_id3150616.help.text
+msgid "<bookmark_value>Trim function</bookmark_value>"
+msgstr "<bookmark_value>Trim;función</bookmark_value>"
+
+#: 03120311.xhp#hd_id3150616.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120311.xhp\" name=\"Trim Function [Runtime]\">Trim Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120311.xhp\" name=\"Trim Function [Runtime]\">Función Trim [Ejecución]</link>"
+
+#: 03120311.xhp#par_id3149177.2.help.text
+msgid "Removes all leading and trailing spaces from a string expression."
+msgstr "Suprime todas los espacios del principio y del final de una expresión de cadena."
+
+#: 03120311.xhp#hd_id3159157.3.help.text
+msgctxt "03120311.xhp#hd_id3159157.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03120311.xhp#par_id3155341.4.help.text
+msgid "Trim( Text As String )"
+msgstr "Trim( Texto As String )"
+
+#: 03120311.xhp#hd_id3155388.5.help.text
+msgctxt "03120311.xhp#hd_id3155388.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03120311.xhp#par_id3143228.6.help.text
+msgctxt "03120311.xhp#par_id3143228.6.help.text"
+msgid "String"
+msgstr "Cadena"
+
+#: 03120311.xhp#hd_id3145609.7.help.text
+msgctxt "03120311.xhp#hd_id3145609.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03120311.xhp#par_id3159414.8.help.text
+msgctxt "03120311.xhp#par_id3159414.8.help.text"
+msgid "<emph>Text:</emph> Any string expression."
+msgstr "<emph>Texto:</emph> Cualquier expresión de cadena."
+
+#: 03120311.xhp#hd_id3148663.10.help.text
+msgctxt "03120311.xhp#hd_id3148663.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03120311.xhp#par_id3150398.11.help.text
+msgctxt "03120311.xhp#par_id3150398.11.help.text"
+msgid "Sub ExampleSpaces"
+msgstr "Sub EjemploSpaces"
+
+#: 03120311.xhp#par_id3153525.12.help.text
+msgctxt "03120311.xhp#par_id3153525.12.help.text"
+msgid "Dim sText2 as String,sText as String,sOut as String"
+msgstr "Dim sTexto2 as String,sTexto as String,sOut as String"
+
+#: 03120311.xhp#par_id3154908.13.help.text
+msgctxt "03120311.xhp#par_id3154908.13.help.text"
+msgid "sText2 = \" <*Las Vegas*> \""
+msgstr "sTexto2 = \" <*Las Vegas*> \""
+
+#: 03120311.xhp#par_id3144760.15.help.text
+msgctxt "03120311.xhp#par_id3144760.15.help.text"
+msgid "sOut = \"'\"+sText2 +\"'\"+ Chr(13)"
+msgstr "sOut = \"'\"+sTexto2 +\"'\"+ Chr(13)"
+
+#: 03120311.xhp#par_id3151383.16.help.text
+msgctxt "03120311.xhp#par_id3151383.16.help.text"
+msgid "sText = Ltrim(sText2) REM sText = \"<*Las Vegas*> \""
+msgstr "sTexto = Ltrim(sTexto2) REM sTexto = \"<*Las Vegas*> \""
+
+#: 03120311.xhp#par_id3151044.17.help.text
+msgctxt "03120311.xhp#par_id3151044.17.help.text"
+msgid "sOut = sOut + \"'\"+sText +\"'\" + Chr(13)"
+msgstr "sOut = sOut +\"'\"+ sTexto +\"'\" + Chr(13)"
+
+#: 03120311.xhp#par_id3159149.18.help.text
+msgctxt "03120311.xhp#par_id3159149.18.help.text"
+msgid "sText = Rtrim(sText2) REM sText = \" <*Las Vegas*>\""
+msgstr "sTexto = Rtrim(sTexto2) REM sTexto = \" <*Las Vegas*>\""
+
+#: 03120311.xhp#par_id3150449.19.help.text
+msgctxt "03120311.xhp#par_id3150449.19.help.text"
+msgid "sOut = sOut +\"'\"+ sText +\"'\" + Chr(13)"
+msgstr "sOut = sOut +\"'\"+ sTexto +\"'\" + Chr(13)"
+
+#: 03120311.xhp#par_id3149562.20.help.text
+msgctxt "03120311.xhp#par_id3149562.20.help.text"
+msgid "sText = Trim(sText2) REM sText = \"<*Las Vegas*>\""
+msgstr "sTexto = Trim(sTexto2) REM sTexto = \"<*Las Vegas*>\""
+
+#: 03120311.xhp#par_id3161831.21.help.text
+msgctxt "03120311.xhp#par_id3161831.21.help.text"
+msgid "sOut = sOut +\"'\"+ sText +\"'\""
+msgstr "sOut = sOut +\"'\"+ sTexto +\"'\""
+
+#: 03120311.xhp#par_id3146120.22.help.text
+msgctxt "03120311.xhp#par_id3146120.22.help.text"
+msgid "MsgBox sOut"
+msgstr "MsgBox sOut"
+
+#: 03120311.xhp#par_id3145364.23.help.text
+msgctxt "03120311.xhp#par_id3145364.23.help.text"
+msgid "end sub"
+msgstr "End Sub"
+
+#: 03010305.xhp#tit.help.text
+msgid "RGB Function [Runtime]"
+msgstr "Función RGB [Ejecución]"
+
+#: 03010305.xhp#hd_id3150792.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB Function [Runtime]\">RGB Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"Función RGB [Runtime]\">Función RGB [Runtime]</link>"
+
+#: 03010305.xhp#par_id3150447.2.help.text
+msgid "Returns a <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"long integer color value\">long integer color value</link> consisting of red, green, and blue components."
+msgstr "Devuelve un <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"valor de color de entero largo\">valor de color de entero largo</link> que se compone de los componentes de color rojo, verde y azul."
+
+#: 03010305.xhp#hd_id3147229.3.help.text
+msgctxt "03010305.xhp#hd_id3147229.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03010305.xhp#par_id3155132.4.help.text
+msgid "RGB (Red, Green, Blue)"
+msgstr "RGB (Rojo, Verde, Azul)"
+
+#: 03010305.xhp#hd_id3156442.5.help.text
+msgctxt "03010305.xhp#hd_id3156442.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03010305.xhp#par_id3159153.6.help.text
+msgctxt "03010305.xhp#par_id3159153.6.help.text"
+msgid "Long"
+msgstr "Largo"
+
+#: 03010305.xhp#hd_id3154013.7.help.text
+msgctxt "03010305.xhp#hd_id3154013.7.help.text"
+msgid "Parameter:"
+msgstr "<emph>Parámetro</emph>:"
+
+#: 03010305.xhp#par_id3152597.8.help.text
+msgid "<emph>Red</emph>: Any integer expression that represents the red component (0-255) of the composite color."
+msgstr "<emph>Rojo</emph>: Una expresión entera que representa el componente rojo (0-255) del color compuesto."
+
+#: 03010305.xhp#par_id3146974.9.help.text
+msgid "<emph>Green</emph>: Any integer expression that represents the green component (0-255) of the composite color."
+msgstr "<emph>Verde</emph>: Una expresión entera que representa el componente verde (0-255) del color compuesto."
+
+#: 03010305.xhp#par_id3151113.10.help.text
+msgid "<emph>Blue</emph>: Any integer expression that represents the blue component (0-255) of the composite color."
+msgstr "<emph>Azul</emph>: Una expresión entera que representa el componente azul (0-255) del color compuesto."
+
+#: 03010305.xhp#hd_id3147435.11.help.text
+msgctxt "03010305.xhp#hd_id3147435.11.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03010305.xhp#par_id3156283.12.help.text
+msgctxt "03010305.xhp#par_id3156283.12.help.text"
+msgid "Sub ExampleColor"
+msgstr "Sub EjemploColor"
+
+#: 03010305.xhp#par_id3149582.13.help.text
+msgctxt "03010305.xhp#par_id3149582.13.help.text"
+msgid "Dim lVar As Long"
+msgstr "Dim lVar As Long"
+
+#: 03010305.xhp#par_id3150417.14.help.text
+msgctxt "03010305.xhp#par_id3150417.14.help.text"
+msgid "lVar = rgb(128,0,200)"
+msgstr "lVar = rgb(128,0,200)"
+
+#: 03010305.xhp#par_id3145647.15.help.text
+msgctxt "03010305.xhp#par_id3145647.15.help.text"
+msgid "msgbox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
+msgstr "msgbox \"El color \" & lVar & \" contiene los componentes:\" & Chr(13) &_"
+
+#: 03010305.xhp#par_id3154491.16.help.text
+msgctxt "03010305.xhp#par_id3154491.16.help.text"
+msgid "\"red= \" & red(lVar) & Chr(13)&_"
+msgstr "\"rojo = \" & red(lVar) & Chr(13)&_"
+
+#: 03010305.xhp#par_id3149401.17.help.text
+msgctxt "03010305.xhp#par_id3149401.17.help.text"
+msgid "\"green= \" & green(lVar) & Chr(13)&_"
+msgstr "\"verde= \" & green(lVar) & Chr(13)&_"
+
+#: 03010305.xhp#par_id3150716.18.help.text
+msgctxt "03010305.xhp#par_id3150716.18.help.text"
+msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr "\"azul= \" & blue(lVar) & Chr(13) , 64,\"colores\""
+
+#: 03010305.xhp#par_id3150752.19.help.text
+msgctxt "03010305.xhp#par_id3150752.19.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03101400.xhp#tit.help.text
+msgid "DefDbl Statement [Runtime]"
+msgstr "Instrucción DefDbl [Ejecución]"
+
+#: 03101400.xhp#bm_id3147242.help.text
+msgid "<bookmark_value>DefDbl statement</bookmark_value>"
+msgstr "<bookmark_value>DefDbl;instrucción</bookmark_value>"
+
+#: 03101400.xhp#hd_id3147242.1.help.text
+msgid "<link href=\"text/sbasic/shared/03101400.xhp\" name=\"DefDbl Statement [Runtime]\">DefDbl Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101400.xhp\" name=\"Instrucción DefDbl [Ejecución]\">Instrucción DefDbl [Ejecución]</link>"
+
+#: 03101400.xhp#par_id3153126.2.help.text
+msgctxt "03101400.xhp#par_id3153126.2.help.text"
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr "Establece el tipo de variable predeterminado, de acuerdo con un rango de letras, a no ser que se especifique un carácter o palabra clave de declaración de tipo."
+
+#: 03101400.xhp#hd_id3155420.3.help.text
+msgctxt "03101400.xhp#hd_id3155420.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03101400.xhp#par_id3147530.4.help.text
+msgctxt "03101400.xhp#par_id3147530.4.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx RangoCarácter1[, RangoCarácter2[,...]]"
+
+#: 03101400.xhp#hd_id3145069.5.help.text
+msgctxt "03101400.xhp#hd_id3145069.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03101400.xhp#par_id3147560.6.help.text
+msgctxt "03101400.xhp#par_id3147560.6.help.text"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgstr "<emph>RangoCarácter:</emph> Letras que especifican el rango de variables para las que desee establecer el tipo de datos predeterminado."
+
+#: 03101400.xhp#par_id3150791.7.help.text
+msgctxt "03101400.xhp#par_id3150791.7.help.text"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Palabra clave que define el tipo de variable predeterminada:"
+
+#: 03101400.xhp#par_id3151210.8.help.text
+msgctxt "03101400.xhp#par_id3151210.8.help.text"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Palabra clave:</emph>Tipo de variable predeterminada"
+
+#: 03101400.xhp#par_id3154123.9.help.text
+msgid "<emph>DefDbl:</emph> Double"
+msgstr "<emph>DefDbl:</emph> Doble"
+
+#: 03101400.xhp#hd_id3153192.10.help.text
+msgctxt "03101400.xhp#hd_id3153192.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03101400.xhp#par_id3156281.12.help.text
+msgctxt "03101400.xhp#par_id3156281.12.help.text"
+msgid "REM Prefix definitions for variable types:"
+msgstr "REM Añadir prefijo a definiciones para tipos de variable:"
+
+#: 03101400.xhp#par_id3153970.13.help.text
+msgctxt "03101400.xhp#par_id3153970.13.help.text"
+msgid "DefBool b"
+msgstr "DefBool b"
+
+#: 03101400.xhp#par_id3149561.14.help.text
+msgctxt "03101400.xhp#par_id3149561.14.help.text"
+msgid "DefDate t"
+msgstr "DefDate t"
+
+#: 03101400.xhp#par_id3147288.15.help.text
+msgctxt "03101400.xhp#par_id3147288.15.help.text"
+msgid "DefDbL d"
+msgstr "DefDbL d"
+
+#: 03101400.xhp#par_id3150487.16.help.text
+msgctxt "03101400.xhp#par_id3150487.16.help.text"
+msgid "DefInt i"
+msgstr "DefInt i"
+
+#: 03101400.xhp#par_id3151116.17.help.text
+msgctxt "03101400.xhp#par_id3151116.17.help.text"
+msgid "DefLng l"
+msgstr "DefLng l"
+
+#: 03101400.xhp#par_id3146922.18.help.text
+msgctxt "03101400.xhp#par_id3146922.18.help.text"
+msgid "DefObj o"
+msgstr "DefObj o"
+
+#: 03101400.xhp#par_id3146984.19.help.text
+msgctxt "03101400.xhp#par_id3146984.19.help.text"
+msgid "DefVar v"
+msgstr "DefVar v"
+
+#: 03101400.xhp#par_id3147436.21.help.text
+msgid "Sub ExampleDefDBL"
+msgstr "Sub EjemploDefDBL"
+
+#: 03101400.xhp#par_id3153144.22.help.text
+msgid "dValue=1.23e43 REM dValue is an implicit Double variable type"
+msgstr "dValue=1,23e43 REM dValue es un tipo de variable doble implícito"
+
+#: 03101400.xhp#par_id3152941.23.help.text
+msgctxt "03101400.xhp#par_id3152941.23.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03020301.xhp#tit.help.text
+msgid "Eof Function [Runtime]"
+msgstr "Función Eof [Ejecución]"
+
+#: 03020301.xhp#bm_id3154598.help.text
+msgid "<bookmark_value>Eof function</bookmark_value>"
+msgstr "<bookmark_value>función Eof</bookmark_value>"
+
+#: 03020301.xhp#hd_id3154598.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020301.xhp\" name=\"Eof Function [Runtime]\">Eof Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020301.xhp\" name=\"Función Eof [Runtime]\">Función Eof [Runtime]</link>"
+
+#: 03020301.xhp#par_id3147182.2.help.text
+msgid "Determines if the file pointer has reached the end of a file."
+msgstr "Determina si el puntero de archivo ha llegado al final de éste."
+
+#: 03020301.xhp#hd_id3149119.3.help.text
+msgctxt "03020301.xhp#hd_id3149119.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03020301.xhp#par_id3147399.4.help.text
+msgid "Eof (intexpression As Integer)"
+msgstr "Eof (ExpresiónEntero As Integer)"
+
+#: 03020301.xhp#hd_id3153539.5.help.text
+msgctxt "03020301.xhp#hd_id3153539.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03020301.xhp#par_id3156027.6.help.text
+msgctxt "03020301.xhp#par_id3156027.6.help.text"
+msgid "Bool"
+msgstr "Lógico"
+
+#: 03020301.xhp#hd_id3152924.7.help.text
+msgctxt "03020301.xhp#hd_id3152924.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03020301.xhp#par_id3153990.8.help.text
+msgid "<emph>Intexpression:</emph> Any integer expression that evaluates to the number of an open file."
+msgstr "ExpresiónEntero: Cualquier expresión de entero que produzca el número de un archivo abierto."
+
+#: 03020301.xhp#par_id3153527.9.help.text
+msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
+msgstr "EOF se utiliza para evitar errores al intentar obtener datos más allá del final de un archivo. Cuando se utiliza la instrucción Input o Get para leer de un archivo, el puntero de archivo se avanza según el número de bytes leídos. Cuando se llega al final del archivo, EOF devuelve el valor \"True\" (-1)."
+
+#: 03020301.xhp#hd_id3154046.10.help.text
+msgctxt "03020301.xhp#hd_id3154046.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03020301.xhp#par_id3143270.11.help.text
+msgctxt "03020301.xhp#par_id3143270.11.help.text"
+msgid "Sub ExampleWorkWithAFile"
+msgstr "Sub EjemploTrabajoConArchivo"
+
+#: 03020301.xhp#par_id3150670.12.help.text
+msgctxt "03020301.xhp#par_id3150670.12.help.text"
+msgid "Dim iNumber As Integer"
+msgstr "Dim iNumero As Integer"
+
+#: 03020301.xhp#par_id3154143.13.help.text
+msgctxt "03020301.xhp#par_id3154143.13.help.text"
+msgid "Dim sLine As String"
+msgstr "Dim sLinea As String"
+
+#: 03020301.xhp#par_id3148943.14.help.text
+msgctxt "03020301.xhp#par_id3148943.14.help.text"
+msgid "Dim aFile As String"
+msgstr "Dim aArchivo As String"
+
+#: 03020301.xhp#par_id3153897.37.help.text
+msgctxt "03020301.xhp#par_id3153897.37.help.text"
+msgid "Dim sMsg as String"
+msgstr "Dim sMensaje as String"
+
+#: 03020301.xhp#par_id3156344.15.help.text
+msgctxt "03020301.xhp#par_id3156344.15.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr "aArchivo = \"c:\\data.txt\""
+
+#: 03020301.xhp#par_id3148663.17.help.text
+msgctxt "03020301.xhp#par_id3148663.17.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumero = Freefile"
+
+#: 03020301.xhp#par_id3153379.18.help.text
+msgctxt "03020301.xhp#par_id3153379.18.help.text"
+msgid "Open aFile For Output As #iNumber"
+msgstr "Open aArchivo For Output As #iNumero"
+
+#: 03020301.xhp#par_id3153360.19.help.text
+msgctxt "03020301.xhp#par_id3153360.19.help.text"
+msgid "Print #iNumber, \"First line of text\""
+msgstr "Print #iNumero, \"Primera línea de texto\""
+
+#: 03020301.xhp#par_id3148797.20.help.text
+msgctxt "03020301.xhp#par_id3148797.20.help.text"
+msgid "Print #iNumber, \"Another line of text\""
+msgstr "Print #iNumero, \"Otra línea de texto\""
+
+#: 03020301.xhp#par_id3154684.21.help.text
+msgctxt "03020301.xhp#par_id3154684.21.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumero"
+
+#: 03020301.xhp#par_id3153104.25.help.text
+msgctxt "03020301.xhp#par_id3153104.25.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumero = Freefile"
+
+#: 03020301.xhp#par_id3144761.26.help.text
+msgctxt "03020301.xhp#par_id3144761.26.help.text"
+msgid "Open aFile For Input As iNumber"
+msgstr "Open aArchivo For Input As iNumero"
+
+#: 03020301.xhp#par_id3153193.27.help.text
+msgctxt "03020301.xhp#par_id3153193.27.help.text"
+msgid "While not eof(iNumber)"
+msgstr "While not eof(iNumero)"
+
+#: 03020301.xhp#par_id3158408.28.help.text
+msgctxt "03020301.xhp#par_id3158408.28.help.text"
+msgid "Line Input #iNumber, sLine"
+msgstr "Line Input #iNumero, sLinea"
+
+#: 03020301.xhp#par_id3149203.29.help.text
+msgctxt "03020301.xhp#par_id3149203.29.help.text"
+msgid "If sLine <>\"\" then"
+msgstr "If sLinea <>\"\" then"
+
+#: 03020301.xhp#par_id3153770.30.help.text
+msgctxt "03020301.xhp#par_id3153770.30.help.text"
+msgid "sMsg = sMsg & sLine & chr(13)"
+msgstr "sMensaje = sMensaje & sLinea & chr(13)"
+
+#: 03020301.xhp#par_id3153367.32.help.text
+msgctxt "03020301.xhp#par_id3153367.32.help.text"
+msgid "end if"
+msgstr "end if"
+
+#: 03020301.xhp#par_id3147318.33.help.text
+msgctxt "03020301.xhp#par_id3147318.33.help.text"
+msgid "wend"
+msgstr "wend"
+
+#: 03020301.xhp#par_id3152939.34.help.text
+msgctxt "03020301.xhp#par_id3152939.34.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumero"
+
+#: 03020301.xhp#par_id3153726.38.help.text
+msgctxt "03020301.xhp#par_id3153726.38.help.text"
+msgid "Msgbox sMsg"
+msgstr "Msgbox sMensaje"
+
+#: 03020301.xhp#par_id3153092.35.help.text
+msgctxt "03020301.xhp#par_id3153092.35.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03102300.xhp#tit.help.text
+msgid "IsDate Function [Runtime]"
+msgstr "Función IsDate [Ejecución]"
+
+#: 03102300.xhp#bm_id3145090.help.text
+msgid "<bookmark_value>IsDate function</bookmark_value>"
+msgstr "<bookmark_value>IsDate;función</bookmark_value>"
+
+#: 03102300.xhp#hd_id3145090.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102300.xhp\" name=\"IsDate Function [Runtime]\">IsDate Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102300.xhp\" name=\"IsDate Function [Runtime]\">Función IsDate [Ejecución]</link>"
+
+#: 03102300.xhp#par_id3153311.2.help.text
+msgid "Tests if a numeric or string expression can be converted to a <emph>Date</emph> variable."
+msgstr "Comprueba si una expresión numérica o de cadena puede convertirse en una variable de tipo <emph>Date</emph>."
+
+#: 03102300.xhp#hd_id3153824.3.help.text
+msgctxt "03102300.xhp#hd_id3153824.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03102300.xhp#par_id3147573.4.help.text
+msgid "IsDate (Expression)"
+msgstr "IsDate (Expresión)"
+
+#: 03102300.xhp#hd_id3143270.5.help.text
+msgctxt "03102300.xhp#hd_id3143270.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03102300.xhp#par_id3147560.6.help.text
+msgctxt "03102300.xhp#par_id3147560.6.help.text"
+msgid "Bool"
+msgstr "Lógico"
+
+#: 03102300.xhp#hd_id3148947.7.help.text
+msgctxt "03102300.xhp#hd_id3148947.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03102300.xhp#par_id3145069.8.help.text
+msgid "<emph>Expression:</emph> Any numeric or string expression that you want to test. If the expression can be converted to a date, the function returns <emph>True</emph>, otherwise the function returns <emph>False</emph>."
+msgstr "<emph>Expresión:</emph> Cualquier expresión de cadena o numérica que se desee comprobar. Si la expresión puede convertirse a una fecha, la función devuelve <emph>True</emph>, en caso contrario devuelve <emph>False</emph>."
+
+#: 03102300.xhp#hd_id3150447.9.help.text
+msgctxt "03102300.xhp#hd_id3150447.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03102300.xhp#par_id3154217.10.help.text
+msgid "Sub ExampleIsDate"
+msgstr "Sub EjemploIsDate"
+
+#: 03102300.xhp#par_id3153970.11.help.text
+msgid "Dim sDateVar as String"
+msgstr "Dim sVarFecha as String"
+
+#: 03102300.xhp#par_id3153193.12.help.text
+msgid "sDateVar = \"12.12.1997\""
+msgstr "sVarFecha = \"12.12.1997\""
+
+#: 03102300.xhp#par_id3150869.13.help.text
+msgid "print IsDate(sDateVar) REM Returns True"
+msgstr "print IsDate(sVarFecha) REM Devuelve True"
+
+#: 03102300.xhp#par_id3148453.14.help.text
+msgid "sDateVar = \"12121997\""
+msgstr "sVarFecha = \"12121997\""
+
+#: 03102300.xhp#par_id3147288.15.help.text
+msgid "print IsDate(sDateVar) REM Returns False"
+msgstr "print IsDate(sVarFecha) REM Devuelve False"
+
+#: 03102300.xhp#par_id3155132.16.help.text
+msgctxt "03102300.xhp#par_id3155132.16.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03030201.xhp#tit.help.text
+msgid "Hour Function [Runtime]"
+msgstr "Función Hour [Ejecución]"
+
+#: 03030201.xhp#bm_id3156042.help.text
+msgid "<bookmark_value>Hour function</bookmark_value>"
+msgstr "<bookmark_value>Hour;función</bookmark_value>"
+
+#: 03030201.xhp#hd_id3156042.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour Function [Runtime]\">Hour Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Función Hour [Runtime]\">Función Hour [Ejecución]</link>"
+
+#: 03030201.xhp#par_id3149346.2.help.text
+msgid "Returns the hour from a time value that is generated by the TimeSerial or the TimeValue function."
+msgstr "Devuelve la hora a partir de un valor que generan las funciones TimeSerial o TimeValue."
+
+#: 03030201.xhp#hd_id3147574.3.help.text
+msgctxt "03030201.xhp#hd_id3147574.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03030201.xhp#par_id3147264.4.help.text
+msgid "Hour (Number)"
+msgstr "Hour (Número)"
+
+#: 03030201.xhp#hd_id3145069.5.help.text
+msgctxt "03030201.xhp#hd_id3145069.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03030201.xhp#par_id3149670.6.help.text
+msgctxt "03030201.xhp#par_id3149670.6.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03030201.xhp#hd_id3150359.7.help.text
+msgctxt "03030201.xhp#hd_id3150359.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03030201.xhp#par_id3154366.8.help.text
+msgid " <emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the hour value."
+msgstr "<emph>Número:</emph> Expresión numérica que contenga el valor de tiempo serie que se use para devolver el valor de hora."
+
+#: 03030201.xhp#par_id3154909.9.help.text
+msgid "This function is the opposite of the <emph>TimeSerial</emph> function. It returns an integer value that represents the hour from a time value that is generated by the <emph>TimeSerial</emph> or the <emph>TimeValue </emph>function. For example, the expression"
+msgstr "Esta función es la inversa a <emph>TimeSerial</emph>. Devuelve un valor entero que representa la hora a partir de un valor que generan las funciones <emph>TimeSerial</emph> o <emph>TimeValue</emph>. Por ejemplo, la expresión"
+
+#: 03030201.xhp#par_id3163798.10.help.text
+msgid "Print Hour(TimeSerial(12,30,41))"
+msgstr "Print Hour(TimeSerial(12:30:41))"
+
+#: 03030201.xhp#par_id3155132.11.help.text
+msgctxt "03030201.xhp#par_id3155132.11.help.text"
+msgid "returns the value 12."
+msgstr "devuelve el valor 12."
+
+#: 03030201.xhp#hd_id3147348.12.help.text
+msgctxt "03030201.xhp#hd_id3147348.12.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03030201.xhp#par_id3146985.13.help.text
+msgid "Sub ExampleHour"
+msgstr "Sub EjemploHour"
+
+#: 03030201.xhp#par_id3156441.14.help.text
+msgid "Print \"The current hour is \" & Hour( Now )"
+msgstr "Print \"La hora actual es \" & Hour( Now )"
+
+#: 03030201.xhp#par_id3153145.15.help.text
+msgctxt "03030201.xhp#par_id3153145.15.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03020407.xhp#tit.help.text
+msgid "FileDateTime Function [Runtime]"
+msgstr "Función FileDateTime [Ejecución]"
+
+#: 03020407.xhp#bm_id3153361.help.text
+msgid "<bookmark_value>FileDateTime function</bookmark_value>"
+msgstr "<bookmark_value>FileDateTime;función</bookmark_value>"
+
+#: 03020407.xhp#hd_id3153361.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020407.xhp\" name=\"FileDateTime Function [Runtime]\">FileDateTime Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020407.xhp\" name=\"Función FileDateTime [Runtime]\">Función FileDateTime [Runtime]</link>"
+
+#: 03020407.xhp#par_id3156423.2.help.text
+msgid "Returns a string that contains the date and the time that a file was created or last modified."
+msgstr "Devuelve una cadena que contiene la fecha y la hora en que se creó o se modificó por última vez un archivo."
+
+#: 03020407.xhp#hd_id3154685.3.help.text
+msgctxt "03020407.xhp#hd_id3154685.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03020407.xhp#par_id3154124.4.help.text
+msgid "FileDateTime (Text As String)"
+msgstr "FileDateTime (Texto As String)"
+
+#: 03020407.xhp#hd_id3150448.5.help.text
+msgctxt "03020407.xhp#hd_id3150448.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03020407.xhp#par_id3159153.6.help.text
+msgid "<emph>Text:</emph> Any string expression that contains an unambiguous (no wildcards) file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>Texto:</emph> Cualquier expresión de cadena que contenga una especificación de archivo inequívoca (sin comodines). También se puede usar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notación URL\">notación URL</link>."
+
+#: 03020407.xhp#par_id3155306.7.help.text
+msgid "This function determines the exact time of creation or last modification of a file, returned in the format \"MM.DD.YYYY HH.MM.SS\"."
+msgstr "Esta función determina la hora exacta de creación o de modificación más reciente de un archivo, devuelta en el formato \"MM.DD.AAAA HH.MM.SS\"."
+
+#: 03020407.xhp#hd_id3146119.8.help.text
+msgctxt "03020407.xhp#hd_id3146119.8.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03020407.xhp#par_id3148576.9.help.text
+msgid "Sub ExampleFileDateTime"
+msgstr "Sub EjemploFileDateTime"
+
+#: 03020407.xhp#par_id3161831.10.help.text
+msgid "msgbox FileDateTime(\"C:\\autoexec.bat\")"
+msgstr "msgbox FileDateTime(\"C:\\autoexec.bat\")"
+
+#: 03020407.xhp#par_id3146986.11.help.text
+msgctxt "03020407.xhp#par_id3146986.11.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03030200.xhp#tit.help.text
+msgid "Converting Time Values"
+msgstr "Conversión de valores de hora"
+
+#: 03030200.xhp#hd_id3147226.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030200.xhp\" name=\"Converting Time Values\">Converting Time Values</link>"
+msgstr "<link href=\"text/sbasic/shared/03030200.xhp\" name=\"Conversión de valores de hora\">Conversión de valores de hora</link>"
+
+#: 03030200.xhp#par_id3149415.2.help.text
+msgid "The following functions convert time values to calculable numbers."
+msgstr "Las funciones siguientes convierten valores de hora para calcular números."
+
+#: 01010210.xhp#tit.help.text
+msgid "Basics"
+msgstr "$[officename] Basic es modular"
+
+#: 01010210.xhp#bm_id4488967.help.text
+msgid "<bookmark_value>fundamentals</bookmark_value><bookmark_value>subroutines</bookmark_value><bookmark_value>variables;global and local</bookmark_value><bookmark_value>modules;subroutines and functions</bookmark_value>"
+msgstr "<bookmark_value>fundamentals</bookmark_value><bookmark_value>subroutines</bookmark_value><bookmark_value>variables;global y local</bookmark_value><bookmark_value>modulos;subroutinas y funciones</bookmark_value>"
+
+#: 01010210.xhp#hd_id3154927.1.help.text
+msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Basics\">Basics</link>"
+msgstr "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Basics\">Basic</link>"
+
+#: 01010210.xhp#par_id3156023.14.help.text
+msgid "This section provides the fundamentals for working with $[officename] Basic."
+msgstr "Esta sección proporciona los fundamentos para trabajar con $[officename] Basic."
+
+#: 01010210.xhp#par_id3147560.2.help.text
+msgid "$[officename] Basic code is based on subroutines and functions that are specified between <emph>sub...end sub</emph> and <emph>function...end function</emph> sections. Each Sub or Function can call other Subs and Functions. If you take care to write generic code for a Sub or Function, you can probably re-use it in other programs. See also <link href=\"text/sbasic/shared/01020300.xhp\" name=\"Procedures and Functions\">Procedures and Functions</link>."
+msgstr "El código de $[officename] Basic se ba en subrutinas y funciones que se especifican entre secciones <emph>sub...end sub</emph> y <emph>function...end function</emph>. Cada Sub o Function puede llamar a otros módulos Sub y Function. Si se escribe código genérico para módulos Sub o Function, probablemente se podrá reutilizar en otros programas. Véase también <link href=\"text/sbasic/shared/01020300.xhp\" name=\"Procedimientos y funciones\">Procedimientos y funciones</link>."
+
+#: 01010210.xhp#par_id314756320.help.text
+msgctxt "01010210.xhp#par_id314756320.help.text"
+msgid "Some restrictions apply for the names of your public variables, subs, and functions. You must not use the same name as one of the modules of the same library."
+msgstr "Se aplican ciertas restricciones a los nombres de las variables públicas, subrutinas y funciones. No debe usar el mismo nombre que uno de los módulos de la misma biblioteca."
+
+#: 01010210.xhp#hd_id3150398.3.help.text
+msgid "What is a Sub?"
+msgstr "¿Qué es una Sub?"
+
+#: 01010210.xhp#par_id3148797.4.help.text
+msgid "<emph>Sub</emph> is the short form of <emph>subroutine</emph>, that is used to handle a certain task within a program. Subs are used to split a task into individual procedures. Splitting a program into procedures and sub-procedures enhances readability and reduces the error-proneness. A sub possibly takes some arguments as parameters but does not return any values back to the calling sub or function, for example:"
+msgstr "<emph>Sub</emph> es la contracción de <emph>subrutina</emph>, que se utiliza para manejar una tarea concreta dentro de un programa. Las Sub se utilizan para dividir una tarea en procedimientos individuales. Dividir un programa en procedimientos y subprocedimientos mejora su legibilidad y reduce la posibilidad de errores. Una sub puede tomar algunos argumentos como parámetros, pero no devuelve ningún valor a la sub o función que la ha llamado, por ejemplo:"
+
+#: 01010210.xhp#par_id3150868.15.help.text
+msgid "DoSomethingWithTheValues(MyFirstValue,MySecondValue)"
+msgstr "<emph>HacerAlgoConLosValores(MiPrimerValor,MiSegundoValor)</emph>"
+
+#: 01010210.xhp#hd_id3156282.5.help.text
+msgid "What is a Function?"
+msgstr "¿Qué es una Función?"
+
+#: 01010210.xhp#par_id3156424.6.help.text
+msgid "A <emph>function</emph> is essentially a sub, which returns a value. You may use a function at the right side of a variable declaration, or at other places where you normally use values, for example:"
+msgstr "Una <emph>función</emph> es esencialmente una sub que devuelve un valor. Las funciones se pueden usar en el lado derecho de una declaración de variable o en otros sitios en que normalmente se usarían valores, por ejemplo:"
+
+#: 01010210.xhp#par_id3146985.7.help.text
+msgid "MySecondValue = myFunction(MyFirstValue)"
+msgstr "<emph>MiSegundoValor = MiFunción(MiPrimerValor)</emph>"
+
+#: 01010210.xhp#hd_id3153364.8.help.text
+msgid "Global and local variables"
+msgstr "Variables globales y locales"
+
+#: 01010210.xhp#par_id3151112.9.help.text
+msgid "Global variables are valid for all subs and functions inside a module. They are declared at the beginning of a module before the first sub or function starts."
+msgstr "Las variables globales son válidas para todas las sub y funciones contenidas en un módulo. Se declaran al principio del módulo, antes de empiece la primera sub o función."
+
+#: 01010210.xhp#par_id3154012.10.help.text
+msgid "Variables that you declare within a sub or function are valid only inside this sub or function. These variables override global variables with the same name and local variables with the same name coming from superordinate subs or functions."
+msgstr "Las variables que se declaran dentro de una sub o función sólo son válidas dentro de éstas. Estas variables invalidan las variables globales con el mismo nombre así como las locales con el mismo nombre que provengan de subs o funciones de jerarquía superior."
+
+#: 01010210.xhp#hd_id3150010.11.help.text
+msgid "Structuring"
+msgstr "Estructuración"
+
+#: 01010210.xhp#par_id3153727.12.help.text
+msgid "After separating your program into procedures and functions (Subs and Functions), you can save these procedures and functions as files for reuse in other projects. $[officename] Basic supports <link href=\"text/sbasic/shared/01020500.xhp\" name=\"Modules and Libraries\">Modules and Libraries</link>. Subs and functions are always contained in modules. You can define modules to be global or part of a document. Multiple modules can be combined to a library."
+msgstr "Después de separar el programa en procedimientos y funciones (Subs y Functions), éstas se pueden guardar como archivos para reutilizarlas en otros proyectos. $[officename] Basic admite <link href=\"text/sbasic/shared/01020500.xhp\" name=\"Modules and Libraries\">Módulos y bibliotecas</link>. Tanto subs como funciones siempre se incluyen en módulos. Los módulos pueden definirse para que sean globales o formen parte de un documento. Varios módulos pueden combinarse en una biblioteca."
+
+#: 01010210.xhp#par_id3152578.13.help.text
+msgid "You can copy or move subs, functions, modules and libraries from one file to another by using the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro\">Macro</link> dialog."
+msgstr "Las subs, las funciones, los módulos y las bibliotecas se puede copiar y trasladar de un archivo a otro mediante el diálogo <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro\">Macro</link>."
+
+#: 03090103.xhp#tit.help.text
+msgid "IIf Statement [Runtime]"
+msgstr "Instrucción IIf [Ejecución]"
+
+#: 03090103.xhp#bm_id3155420.help.text
+msgid "<bookmark_value>IIf statement</bookmark_value>"
+msgstr "<bookmark_value>IIf;instrucción</bookmark_value>"
+
+#: 03090103.xhp#hd_id3155420.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"IIf Statement [Runtime]\">IIf Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"IIf Statement [Runtime]\">Instrucción IIf [Ejecución]</link>"
+
+#: 03090103.xhp#par_id3145610.2.help.text
+msgid "Returns one of two possible function results, depending on the logical value of the evaluated expression."
+msgstr "Devuelve uno de dos resultados posibles de la función, dependiendo del valor lógico de la expresión evaluada."
+
+#: 03090103.xhp#hd_id3159413.3.help.text
+msgctxt "03090103.xhp#hd_id3159413.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03090103.xhp#par_id3147560.4.help.text
+msgid "IIf (Expression, ExpressionTrue, ExpressionFalse)"
+msgstr "IIf (Expresión, ExpresiónCierta, ExpresiónFalsa)"
+
+#: 03090103.xhp#hd_id3150541.5.help.text
+msgctxt "03090103.xhp#hd_id3150541.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03090103.xhp#par_id3153381.6.help.text
+msgid "<emph>Expression:</emph> Any expression that you want to evaluate. If the expression evaluates to <emph>True</emph>, the function returns the result of ExpressionTrue, otherwise it returns the result of ExpressionFalse."
+msgstr "<emph>Expresión:</emph> Cualquier expresión que desee evaluar. Si la expresión se evalúa como <emph>Cierta</emph>, la función devuelve el resultado de ExpresiónCierta, en caso contrario devuelve el valor de ExpresiónFalsa."
+
+#: 03090103.xhp#par_id3150870.7.help.text
+msgid "<emph>ExpressionTrue, ExpressionFalse:</emph> Any expression, one of which will be returned as the function result, depending on the logical evaluation."
+msgstr "<emph>ExpresiónCierta, ExpresiónFalsa:</emph> Cualquier expresión, una de ellas se devolverá como resultado de la función, según el resultado de la evaluación lógica."
+
+#: 03131800.xhp#tit.help.text
+msgid "CreateUnoDialog Function [Runtime]"
+msgstr "Función CreateUnoDialog [Ejecución]"
+
+#: 03131800.xhp#bm_id3150040.help.text
+msgid "<bookmark_value>CreateUnoDialog function</bookmark_value>"
+msgstr "<bookmark_value>CreateUnoDialog;función</bookmark_value>"
+
+#: 03131800.xhp#hd_id3150040.1.help.text
+msgid "<link href=\"text/sbasic/shared/03131800.xhp\" name=\"CreateUnoDialog Function [Runtime]\">CreateUnoDialog Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131800.xhp\" name=\"CreateUnoDialog Function [Runtime]\">Función CreateUnoDialog [Ejecución]</link>"
+
+#: 03131800.xhp#par_id3154186.2.help.text
+msgid "Creates a Basic Uno object that represents a Uno dialog control during Basic runtime."
+msgstr "Crea un objeto Basic Uno que representa un control de diálogo Uno durante el tiempo de ejecución de Basic."
+
+#: 03131800.xhp#par_id3153750.3.help.text
+msgid "Dialogs are defined in the dialog libraries. To display a dialog, a \"live\" dialog must be created from the library."
+msgstr "Los diálogos se definen en las bibliotecas de diálogos. Para mostrar un diálogo, debe crearse un diálogo \"vivo\" desde la biblioteca."
+
+#: 03131800.xhp#par_id3153681.4.help.text
+msgid "See <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
+msgstr "Consulte <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Ejemplos\">Ejemplos</link>."
+
+#: 03131800.xhp#hd_id3154286.5.help.text
+msgctxt "03131800.xhp#hd_id3154286.5.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03131800.xhp#par_id3159176.6.help.text
+msgid "CreateUnoDialog( oDlgDesc )"
+msgstr "CreateUnoDialog( oDlgDesc )"
+
+#: 03131800.xhp#hd_id3143270.7.help.text
+msgctxt "03131800.xhp#hd_id3143270.7.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03131800.xhp#par_id3159157.8.help.text
+msgid "' Get dialog description from the dialog library"
+msgstr "' Obtener descripción de diálogo de la biblioteca de diálogos"
+
+#: 03131800.xhp#par_id3149234.9.help.text
+msgctxt "03131800.xhp#par_id3149234.9.help.text"
+msgid "oDlgDesc = DialogLibraries.Standard.Dialog1"
+msgstr "oDlgDesc = DialogLibraries.Standard.Dialog1"
+
+#: 03131800.xhp#par_id3154923.10.help.text
+msgid "' generate \"live\" dialog"
+msgstr "' generar diálogo \"vivo\""
+
+#: 03131800.xhp#par_id3149670.11.help.text
+msgid "oDlgControl = CreateUnoDialog( oDlgDesc )"
+msgstr "oDlgControl = CreateUnoDialog( oDlgDesc )"
+
+#: 03131800.xhp#par_id3148550.12.help.text
+msgid "' display \"live\" dialog"
+msgstr "' mostrar diálogo \"vivo\""
+
+#: 03131800.xhp#par_id3154072.13.help.text
+msgid "oDlgControl.execute"
+msgstr "oDlgControl.execute"
+
+#: 03130000.xhp#tit.help.text
+msgid "Other Commands"
+msgstr "Otras órdenes"
+
+#: 03130000.xhp#hd_id3156027.1.help.text
+msgid "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"Other Commands\">Other Commands</link>"
+msgstr "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"Other Commands\">Otras órdenes</link>"
+
+#: 03130000.xhp#par_id3153312.2.help.text
+msgid "This is a list of the functions and the statements that are not included in the other categories."
+msgstr "Esta es una lista de funciones e instrucciones que no pertenecen a ninguna otra categoría."
+
+#: 03060000.xhp#tit.help.text
+msgid "Logical Operators"
+msgstr "Operadores lógicos"
+
+#: 03060000.xhp#hd_id3147559.1.help.text
+msgid "<link href=\"text/sbasic/shared/03060000.xhp\" name=\"Logical Operators\">Logical Operators</link>"
+msgstr "<link href=\"text/sbasic/shared/03060000.xhp\" name=\"Operadores lógicos\">Operadores lógicos</link>"
+
+#: 03060000.xhp#par_id3153379.2.help.text
+msgid "The following logical operators are supported by $[officename] Basic."
+msgstr "Los operadores lógicos siguientes se admiten en $[officename] Basic."
+
+#: 03060000.xhp#par_id3154138.3.help.text
+msgid "Logical operators combine (bitwise) the contents of two expressions or variables, for example, to test if specific bits are set or not."
+msgstr "Los operadores lógicos combinan (a nivel de bits) el contenido de dos expresiones o variables, por ejemplo, para comprobar si bits determinados están o no activados."
+
+#: 03102400.xhp#tit.help.text
+msgid "IsEmpty Function [Runtime]"
+msgstr "Función IsEmpty [Ejecución]"
+
+#: 03102400.xhp#bm_id3153394.help.text
+msgid "<bookmark_value>IsEmpty function</bookmark_value>"
+msgstr "<bookmark_value>IsEmpty;función</bookmark_value>"
+
+#: 03102400.xhp#hd_id3153394.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102400.xhp\" name=\"IsEmpty Function [Runtime]\">IsEmpty Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102400.xhp\" name=\"IsEmpty Function [Runtime]\">Función IsEmpty [Ejecución]</link>"
+
+#: 03102400.xhp#par_id3163045.2.help.text
+msgid "Tests if a Variant variable contains the Empty value. The Empty value indicates that the variable is not initialized."
+msgstr "Comprueba si una variable de tipo variante contiene el valor Empty (vacío) que indica que la variable no se ha inicializado."
+
+#: 03102400.xhp#hd_id3159158.3.help.text
+msgctxt "03102400.xhp#hd_id3159158.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03102400.xhp#par_id3153126.4.help.text
+msgid "IsEmpty (Var)"
+msgstr "IsEmpty (Var)"
+
+#: 03102400.xhp#hd_id3148685.5.help.text
+msgctxt "03102400.xhp#hd_id3148685.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03102400.xhp#par_id3156344.6.help.text
+msgctxt "03102400.xhp#par_id3156344.6.help.text"
+msgid "Bool"
+msgstr "Lógico"
+
+#: 03102400.xhp#hd_id3148947.7.help.text
+msgctxt "03102400.xhp#hd_id3148947.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03102400.xhp#par_id3154347.8.help.text
+msgid "<emph>Var:</emph> Any variable that you want to test. If the Variant contains the Empty value, the function returns True, otherwise the function returns False."
+msgstr "<emph>Var:</emph> Cualquier expresión que se desee comprobar. Si la variante contiene el valor Empty, la función devuelve True, en caso contrario devuelve False."
+
+#: 03102400.xhp#hd_id3154138.9.help.text
+msgctxt "03102400.xhp#hd_id3154138.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03102400.xhp#par_id3125864.10.help.text
+msgid "Sub ExampleIsEmpty"
+msgstr "Sub EjemploIsEmpty"
+
+#: 03102400.xhp#par_id3150449.11.help.text
+msgid "Dim sVar as Variant"
+msgstr "Dim sVar as Variant"
+
+#: 03102400.xhp#par_id3153970.12.help.text
+msgid "sVar = Empty"
+msgstr "sVar = Empty"
+
+#: 03102400.xhp#par_id3154863.13.help.text
+msgid "Print IsEmpty(sVar) REM Returns True"
+msgstr "Print IsEmpty(sVar) REM Devuelve True"
+
+#: 03102400.xhp#par_id3151043.14.help.text
+msgctxt "03102400.xhp#par_id3151043.14.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03030303.xhp#tit.help.text
+msgid "Timer Function [Runtime]"
+msgstr "Función Timer [Ejecución]"
+
+#: 03030303.xhp#bm_id3149346.help.text
+msgid "<bookmark_value>Timer function</bookmark_value>"
+msgstr "<bookmark_value>Timer;función</bookmark_value>"
+
+#: 03030303.xhp#hd_id3149346.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030303.xhp\" name=\"Timer Function [Runtime]\">Timer Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030303.xhp\" name=\"Función Timer [Runtime]\">Función Timer [Ejecución]</link>"
+
+#: 03030303.xhp#par_id3156023.2.help.text
+msgid "Returns a value that specifies the number of seconds that have elapsed since midnight."
+msgstr "Devuelve un valor que especifica el número de segundos que han transcurrido desde medianoche."
+
+#: 03030303.xhp#par_id3156212.3.help.text
+msgid "You must first declare a variable to call the Timer function and assign it the \"Long \" data type, otherwise a Date value is returned."
+msgstr "Antes de utilizar la función Timer es necesario que declare una variable y que le asigne el tipo de datos \"Long\", en caso contrario se devuelve un valor de fecha."
+
+#: 03030303.xhp#hd_id3153768.4.help.text
+msgctxt "03030303.xhp#hd_id3153768.4.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03030303.xhp#par_id3161831.5.help.text
+msgid "Timer"
+msgstr "Timer"
+
+#: 03030303.xhp#hd_id3146975.6.help.text
+msgctxt "03030303.xhp#hd_id3146975.6.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03030303.xhp#par_id3146984.7.help.text
+msgctxt "03030303.xhp#par_id3146984.7.help.text"
+msgid "Date"
+msgstr "Fecha"
+
+#: 03030303.xhp#hd_id3156442.8.help.text
+msgctxt "03030303.xhp#hd_id3156442.8.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03030303.xhp#par_id3153951.9.help.text
+msgid "Sub ExampleTimer"
+msgstr "Sub EjemploTimer"
+
+#: 03030303.xhp#par_id3147427.10.help.text
+msgid "Dim lSec as long,lMin as long,lHour as long"
+msgstr "Dim lSeg as long,lMin as long,lHora as long"
+
+#: 03030303.xhp#par_id3153092.11.help.text
+msgid "lSec = Timer"
+msgstr "lSeg = Timer"
+
+#: 03030303.xhp#par_id3145748.12.help.text
+msgid "MsgBox lSec,0,\"Seconds since midnight\""
+msgstr "MsgBox lSec,0,\"Segundos desde medianoche\""
+
+#: 03030303.xhp#par_id3149260.13.help.text
+msgid "lMin = lSec / 60"
+msgstr "lMin = lSec / 60"
+
+#: 03030303.xhp#par_id3148646.14.help.text
+msgid "lSec = lSec Mod 60"
+msgstr "lSeg = lSeg Mod 60"
+
+#: 03030303.xhp#par_id3148575.15.help.text
+msgid "lHour = lMin / 60"
+msgstr "lHora = lMin / 60"
+
+#: 03030303.xhp#par_id3150418.16.help.text
+msgid "lMin = lMin Mod 60"
+msgstr "lMin = lMin Mod 60"
+
+#: 03030303.xhp#par_id3156283.17.help.text
+msgid "MsgBox Right(\"00\" & lHour , 2) & \":\"& Right(\"00\" & lMin , 2) & \":\" & Right(\"00\" & lSec , 2) ,0,\"The time is\""
+msgstr "MsgBox Right(\"00\" & lHora , 2) & \":\"& Right(\"00\" & lMin , 2) & \":\" & Right(\"00\" & lSeg , 2) ,0,\"La hora es\""
+
+#: 03030303.xhp#par_id3153158.18.help.text
+msgctxt "03030303.xhp#par_id3153158.18.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: keys.xhp#tit.help.text
+msgid "Keyboard Shortcuts in the Basic IDE"
+msgstr "combinaciones del teclado en Basic IDE"
+
+#: keys.xhp#bm_id3154760.help.text
+msgid "<bookmark_value>keyboard;in IDE</bookmark_value><bookmark_value>shortcut keys;Basic IDE</bookmark_value><bookmark_value>IDE;keyboard shortcuts</bookmark_value>"
+msgstr "<bookmark_value>teclado;en IDE</bookmark_value><bookmark_value>combinaciones de teclas;Basic IDE</bookmark_value><bookmark_value>IDE;teclas</bookmark_value>"
+
+#: keys.xhp#hd_id3154760.1.help.text
+msgid "<link href=\"text/sbasic/shared/keys.xhp\" name=\"Keyboard Shortcuts in the Basic IDE\">Keyboard Shortcuts in the Basic IDE</link>"
+msgstr "<link href=\"text/sbasic/shared/keys.xhp\" name=\"Keyboard Shortcuts in the Basic IDE\">combinaciones del teclado en Basic IDE</link>"
+
+#: keys.xhp#par_id3149655.2.help.text
+msgid "In the Basic IDE you can use the following keyboard shortcuts:"
+msgstr "En el Basic IDE puede usar las combinaciones de teclas siguientes:"
+
+#: keys.xhp#par_id3154908.3.help.text
+msgid "Action"
+msgstr "Acción"
+
+#: keys.xhp#par_id3153192.4.help.text
+msgid "Keyboard shortcut"
+msgstr "Combinación de teclas"
+
+#: keys.xhp#par_id3159254.5.help.text
+msgid "Run code starting from the first line, or from the current breakpoint, if the program stopped there before"
+msgstr "Ejecute el código desde la primera línea o desde el punto de ruptura actual si el programa se detuvo allí antes."
+
+#: keys.xhp#par_id3163712.6.help.text
+msgid "F5"
+msgstr "F5"
+
+#: keys.xhp#par_id3150010.7.help.text
+msgctxt "keys.xhp#par_id3150010.7.help.text"
+msgid "Stop"
+msgstr "Stop"
+
+#: keys.xhp#par_id3154319.8.help.text
+msgid "Shift+F5"
+msgstr "Mayús + F5"
+
+#: keys.xhp#par_id3151073.11.help.text
+msgid "Add <link href=\"text/sbasic/shared/01050100.xhp\" name=\"watch\">watch</link> for the variable at the cursor"
+msgstr "Añada un <link href=\"text/sbasic/shared/01050100.xhp\" name=\"watch\">observador</link> para la variable del cursor"
+
+#: keys.xhp#par_id3154731.12.help.text
+msgid "F7"
+msgstr "F7"
+
+#: keys.xhp#par_id3148455.13.help.text
+msgid "Single step through each statement, starting at the first line or at that statement where the program execution stopped before."
+msgstr "Un único paso en cada instrucción, comenzando en la primera línea o en la instrucción donde anteriormente se detuvo la ejecución del programa."
+
+#: keys.xhp#par_id3150716.14.help.text
+msgid "F8"
+msgstr "F8"
+
+#: keys.xhp#par_id3156275.15.help.text
+msgid "Single step as with F8, but a function call is considered to be only <emph>one</emph> statement"
+msgstr "Un único paso al igual que con F8, pero se considera que una llamada a una función es únicamente <emph>una</emph> instrucción"
+
+#: keys.xhp#par_id3153764.16.help.text
+msgid "Shift+F8"
+msgstr "Mayús+F8"
+
+#: keys.xhp#par_id3150323.17.help.text
+msgid "Set or remove a <link href=\"text/sbasic/shared/01030300.xhp\" name=\"breakpoint\">breakpoint</link> at the current line or all breakpoints in the current selection"
+msgstr "Establezca o borre un <link href=\"text/sbasic/shared/01030300.xhp\" name=\"breakpoint\">punto de ruptura</link> en la línea actual o en todos los puntos de ruptura en la selección actual"
+
+#: keys.xhp#par_id3147339.18.help.text
+msgid "F9"
+msgstr "F9"
+
+#: keys.xhp#par_id3153963.19.help.text
+msgid "Enable/disable the breakpoint at the current line or all breakpoints in the current selection"
+msgstr "Active o desactive el punto de ruptura en la línea actual o en todos los puntos de ruptura en la selección actual"
+
+#: keys.xhp#par_id3155175.20.help.text
+msgid "Shift+F9"
+msgstr "Mayús+F9"
+
+#: keys.xhp#par_id3154702.21.help.text
+msgid "A running macro can be aborted with Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q, also from outside of the Basic IDE. If you are inside the Basic IDE and the macro halts at a breakpoint, Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q stops execution of the macro, but you can recognize this only after the next F5, F8, or Shift+F8."
+msgstr "Una macro en ejecucción puede ser suspendida con la tecla Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q, tambien desde fuera del IDE de Basic. Si esta dentro del IDE de Basic y la macro se frena en el punto de ruptura, Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q para la ejecución de la macro, pero puede comprobar solo despues de presionar F5, F8, o Shift+F8."
+
+#: 03101700.xhp#tit.help.text
+msgid "DefObj Statement [Runtime]"
+msgstr "Instrucción DefObj [Ejecución]"
+
+#: 03101700.xhp#bm_id3149811.help.text
+msgid "<bookmark_value>DefObj statement</bookmark_value>"
+msgstr "<bookmark_value>DefObj;instrucción</bookmark_value>"
+
+#: 03101700.xhp#hd_id3149811.1.help.text
+msgid "<link href=\"text/sbasic/shared/03101700.xhp\" name=\"DefObj Statement [Runtime]\">DefObj Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101700.xhp\" name=\"DefObj Statement [Runtime]\">Instrucción DefObj [Ejecución]</link>"
+
+#: 03101700.xhp#par_id3147573.2.help.text
+msgctxt "03101700.xhp#par_id3147573.2.help.text"
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr "Establece el tipo de variable predeterminado, de acuerdo con un rango de letras, a no ser que se especifique un carácter o palabra clave de declaración de tipo."
+
+#: 03101700.xhp#hd_id3150504.3.help.text
+msgctxt "03101700.xhp#hd_id3150504.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03101700.xhp#par_id3147530.4.help.text
+msgctxt "03101700.xhp#par_id3147530.4.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx RangoCarácter1[, RangoCarácter2[,...]]"
+
+#: 03101700.xhp#hd_id3153896.5.help.text
+msgctxt "03101700.xhp#hd_id3153896.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03101700.xhp#par_id3148552.6.help.text
+msgctxt "03101700.xhp#par_id3148552.6.help.text"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgstr "<emph>RangoCarácter:</emph> Letras que especifican el rango de variables para las que desee establecer el tipo de datos predeterminado."
+
+#: 03101700.xhp#par_id3150358.7.help.text
+msgctxt "03101700.xhp#par_id3150358.7.help.text"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Palabra clave que define el tipo de variable predeterminada:"
+
+#: 03101700.xhp#par_id3148798.8.help.text
+msgctxt "03101700.xhp#par_id3148798.8.help.text"
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr "<emph>Palabra clave: Tipo de variable predeterminada</emph>"
+
+#: 03101700.xhp#par_id3150769.9.help.text
+msgid "<emph>DefObj:</emph> Object"
+msgstr "<emph>DefObj:</emph> Objeto"
+
+#: 03101700.xhp#hd_id3156212.10.help.text
+msgctxt "03101700.xhp#hd_id3156212.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03101700.xhp#par_id3153969.12.help.text
+msgctxt "03101700.xhp#par_id3153969.12.help.text"
+msgid "REM Prefix definitions for variable types:"
+msgstr "REM Añadir prefijo a definiciones para tipos de variable:"
+
+#: 03101700.xhp#par_id3156424.13.help.text
+msgctxt "03101700.xhp#par_id3156424.13.help.text"
+msgid "DefBool b"
+msgstr "DefBool b"
+
+#: 03101700.xhp#par_id3159254.14.help.text
+msgctxt "03101700.xhp#par_id3159254.14.help.text"
+msgid "DefDate t"
+msgstr "DefDate t"
+
+#: 03101700.xhp#par_id3150440.15.help.text
+msgctxt "03101700.xhp#par_id3150440.15.help.text"
+msgid "DefDbL d"
+msgstr "DefDbL d"
+
+#: 03101700.xhp#par_id3161832.16.help.text
+msgctxt "03101700.xhp#par_id3161832.16.help.text"
+msgid "DefInt i"
+msgstr "DefInt i"
+
+#: 03101700.xhp#par_id3145365.17.help.text
+msgctxt "03101700.xhp#par_id3145365.17.help.text"
+msgid "DefLng l"
+msgstr "DefLng l"
+
+#: 03101700.xhp#par_id3149481.18.help.text
+msgctxt "03101700.xhp#par_id3149481.18.help.text"
+msgid "DefObj o"
+msgstr "DefObj o"
+
+#: 03101700.xhp#par_id3152886.19.help.text
+msgctxt "03101700.xhp#par_id3152886.19.help.text"
+msgid "DefVar v"
+msgstr "DefVar v"
+
+#: 03090300.xhp#tit.help.text
+msgid "Jumps"
+msgstr "Saltos"
+
+#: 03090300.xhp#hd_id3151262.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090300.xhp\" name=\"Jumps\">Jumps</link>"
+msgstr "<link href=\"text/sbasic/shared/03090300.xhp\" name=\"Jumps\">Saltos</link>"
+
+#: 03090300.xhp#par_id3148983.2.help.text
+msgid "The following statements execute jumps."
+msgstr "Las instrucciones siguientes ejecutan saltos."
+
+#: 03132300.xhp#tit.help.text
+msgid "CreateUnoValue Function [Runtime]"
+msgstr "Función CreateUnoValue [Ejecución]"
+
+#: 03132300.xhp#bm_id3150682.help.text
+msgid "<bookmark_value>CreateUnoValue function</bookmark_value>"
+msgstr "<bookmark_value>CreateUnoValue;función</bookmark_value>"
+
+#: 03132300.xhp#hd_id3150682.1.help.text
+msgid "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"CreateUnoValue Function [Runtime]\">CreateUnoValue Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"CreateUnoValue Function [Runtime]\">Función CreateUnoValue [Ejecución]</link>"
+
+#: 03132300.xhp#par_id3147291.2.help.text
+msgid "Returns an object that represents a strictly typed value referring to the Uno type system. "
+msgstr "Devuelve un objeto que representa un valor de tipo estricto y que se refiere al sistema de tipos Uno."
+
+#: 03132300.xhp#par_id3143267.3.help.text
+msgid "This object is automatically converted to an Any of the corresponding type when passed to Uno. The type must be specified by its fully qualified Uno type name."
+msgstr "Este objeto se convierte automáticamente al tipo Any del sistema correspondiente cuando se pasa a Uno. El tipo debe estar especificado por su nombre de tipo Uno calificado."
+
+#: 03132300.xhp#par_id3153626.4.help.text
+msgid "The $[officename] API frequently uses the Any type. It is the counterpart of the Variant type known from other environments. The Any type holds one arbitrary Uno type and is used in generic Uno interfaces."
+msgstr "La API de $[officename] usa con frecuencia el tipo Any. Es el equivalente del tipo Variante utilizado en otros entornos. El tipo Any contiene un tipo Uno arbitrario y se utiliza en interfaces Uno genéricas."
+
+#: 03132300.xhp#hd_id3147560.5.help.text
+msgctxt "03132300.xhp#hd_id3147560.5.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03132300.xhp#par_id3154760.6.help.text
+msgid "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) to get a byte sequence."
+msgstr "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) para obtener una secuencia de bytes."
+
+#: 03132300.xhp#par_id3150541.7.help.text
+msgid "If CreateUnoValue cannot be converted to the specified Uno type, and error occurs. For the conversion, the TypeConverter service is used."
+msgstr "Si CreateUnoValue no puede convertirse al tipo Uno especificado, se produce un error. Para la conversión se utiliza el servicio TypeConverter."
+
+#: 03132300.xhp#par_id3153524.8.help.text
+msgid "This function is intended for use in situations where the default Basic to Uno type converting mechanism is insufficient. This can happen when you try to access generic Any based interfaces, such as XPropertySet::setPropertyValue( Name, Value ) or X???Container::insertBy???( ???, Value ), from $[officename] Basic. The Basic runtime does not recognize these types as they are only defined in the corresponding service."
+msgstr "Esta función está pensada para utilizarla en situaciones en que el mecanismo predeterminado de conversión de Basic a Uno resulta insuficiente. Esto puede producirse cuando se intenta acceder a interfaces genéricas basadas en Any, como el de XPropertySet::setPropertyValue( Nombre, Valor ) o X???Container::insertBy???( ???, Valor ), desde $[officename] Basic. El tiempo de ejecución de Basic no reconoce estos tipos, ya que sólo están definidos en el servicio correspondiente."
+
+#: 03132300.xhp#par_id3154366.9.help.text
+msgid "In this type of situation, $[officename] Basic chooses the best matching type for the Basic type that you want to convert. However, if the wrong type is selected, an error occurs. You use the CreateUnoValue() function to create a value for the unknown Uno type."
+msgstr "En estas circunstancias, $[officename] Basic elige el tipo que mejor coincida con el tipo de Basic que desea convertir. Ahora bien, si se selecciona un tipo incorrecto, se genera un error. Utilice la función CreateUnoValue() para crear un valor para el tipo desconocido Uno."
+
+#: 03132300.xhp#par_id3150769.10.help.text
+msgid "You can also use this function to pass non-Any values, but this is not recommend. If Basic already knows the target type, using the CreateUnoValue() function will only lead to additional converting operations that slow down the Basic execution."
+msgstr "También se puede utilizar esta función para pasar valores que no sean Any, aunque no es recomendable hacerlo. Si Basic ya conoce el tipo destino, utilizando la función CreateUnoValue() sólo se añadirán funciones adicionales de conversión que ralentizarán la ejecución de Basic."
+
+#: 03101500.xhp#tit.help.text
+msgid "DefInt Statement [Runtime]"
+msgstr "Instrucción DefInt [Ejecución]"
+
+#: 03101500.xhp#bm_id3149811.help.text
+msgid "<bookmark_value>DefInt statement</bookmark_value>"
+msgstr "<bookmark_value>DefInt;instrucción</bookmark_value>"
+
+#: 03101500.xhp#hd_id3149811.1.help.text
+msgid "<link href=\"text/sbasic/shared/03101500.xhp\" name=\"DefInt Statement [Runtime]\">DefInt Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101500.xhp\" name=\"DefDbl Statement [Runtime]\">Instrucción DefInt [Ejecución]</link>"
+
+#: 03101500.xhp#par_id3149762.2.help.text
+msgctxt "03101500.xhp#par_id3149762.2.help.text"
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr "Establece el tipo de variable predeterminado, de acuerdo con un rango de letras, a no ser que se especifique un carácter o palabra clave de declaración de tipo."
+
+#: 03101500.xhp#hd_id3148686.3.help.text
+msgctxt "03101500.xhp#hd_id3148686.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03101500.xhp#par_id3156023.4.help.text
+msgctxt "03101500.xhp#par_id3156023.4.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx RangoCarácter1[, RangoCarácter2[,...]]"
+
+#: 03101500.xhp#hd_id3156344.5.help.text
+msgctxt "03101500.xhp#hd_id3156344.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03101500.xhp#par_id3147560.6.help.text
+msgctxt "03101500.xhp#par_id3147560.6.help.text"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>RangoCarácter:</emph> Letras que especifican el rango de variables para las que desee establecer el tipo de datos predeterminado."
+
+#: 03101500.xhp#par_id3150398.7.help.text
+msgctxt "03101500.xhp#par_id3150398.7.help.text"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Palabra clave que define el tipo de variable predeterminada:"
+
+#: 03101500.xhp#par_id3154365.8.help.text
+msgctxt "03101500.xhp#par_id3154365.8.help.text"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Palabra clave:</emph> Tipo de variable predeterminada"
+
+#: 03101500.xhp#par_id3125863.9.help.text
+msgid "<emph>DefInt:</emph> Integer"
+msgstr "<emph>DefInt:</emph> Entero"
+
+#: 03101500.xhp#hd_id3154123.10.help.text
+msgctxt "03101500.xhp#hd_id3154123.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03101500.xhp#par_id3151042.12.help.text
+msgid "REM Prefix definitions for variable types"
+msgstr "REM Añadir prefijo a definiciones para tipos de variable"
+
+#: 03101500.xhp#par_id3156424.13.help.text
+msgctxt "03101500.xhp#par_id3156424.13.help.text"
+msgid "DefBool b"
+msgstr "DefBool b"
+
+#: 03101500.xhp#par_id3159254.14.help.text
+msgctxt "03101500.xhp#par_id3159254.14.help.text"
+msgid "DefDate t"
+msgstr "DefDate t"
+
+#: 03101500.xhp#par_id3150440.15.help.text
+msgctxt "03101500.xhp#par_id3150440.15.help.text"
+msgid "DefDbL d"
+msgstr "DefDbL d"
+
+#: 03101500.xhp#par_id3155855.16.help.text
+msgctxt "03101500.xhp#par_id3155855.16.help.text"
+msgid "DefInt i"
+msgstr "DefInt i"
+
+#: 03101500.xhp#par_id3152885.17.help.text
+msgctxt "03101500.xhp#par_id3152885.17.help.text"
+msgid "DefLng l"
+msgstr "DefLng l"
+
+#: 03101500.xhp#par_id3148646.18.help.text
+msgctxt "03101500.xhp#par_id3148646.18.help.text"
+msgid "DefObj o"
+msgstr "DefObj o"
+
+#: 03101500.xhp#par_id3153951.19.help.text
+msgctxt "03101500.xhp#par_id3153951.19.help.text"
+msgid "DefVar v"
+msgstr "DefVar v"
+
+#: 03101500.xhp#par_id3146924.21.help.text
+msgid "Sub ExampleDefInt"
+msgstr "Sub EjemploDefInt"
+
+#: 03101500.xhp#par_id3153728.22.help.text
+msgid "iCount=200 REM iCount is an implicit integer variable"
+msgstr "iCount=200 REM iCount es una variable entera implícita"
+
+#: 03101500.xhp#par_id3150010.23.help.text
+msgctxt "03101500.xhp#par_id3150010.23.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03030103.xhp#tit.help.text
+msgid "Day Function [Runtime]"
+msgstr "Función Day [Ejecución]"
+
+#: 03030103.xhp#bm_id3153345.help.text
+msgid "<bookmark_value>Day function</bookmark_value>"
+msgstr "<bookmark_value>Day;función</bookmark_value>"
+
+#: 03030103.xhp#hd_id3153345.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day Function [Runtime]\">Day Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Función Day [Runtime]\">Función Day [Runtime]</link>"
+
+#: 03030103.xhp#par_id3147560.2.help.text
+msgid "Returns a value that represents the day of the month based on a serial date number generated by <emph>DateSerial</emph> or <emph>DateValue</emph>."
+msgstr "Devuelve un valor que representa el día del mes a partir de un número de fecha serie generado por <emph>DateSerial</emph> o <emph>DateValue</emph>."
+
+#: 03030103.xhp#hd_id3149456.3.help.text
+msgctxt "03030103.xhp#hd_id3149456.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03030103.xhp#par_id3150358.4.help.text
+msgid "Day (Number)"
+msgstr "Day (Número)"
+
+#: 03030103.xhp#hd_id3148798.5.help.text
+msgctxt "03030103.xhp#hd_id3148798.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03030103.xhp#par_id3125865.6.help.text
+msgctxt "03030103.xhp#par_id3125865.6.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03030103.xhp#hd_id3150448.7.help.text
+msgctxt "03030103.xhp#hd_id3150448.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03030103.xhp#par_id3156423.8.help.text
+msgid "<emph>Number:</emph> A numeric expression that contains a serial date number from which you can determine the day of the month."
+msgstr "<emph>Número:</emph> Una expresión numérica que contenga un número de fecha serie a partir del cual se pueda determinar el día del mes."
+
+#: 03030103.xhp#par_id3145786.9.help.text
+msgid "This function is basically the opposite of the DateSerial function, returning the day of the month from a serial date number generated by the <emph>DateSerial</emph> or the <emph>DateValue</emph> function. For example, the expression"
+msgstr "Esta función es básicamente la contraria a DateSerial y devuelve el día del mes a partir de un número de fecha serie generado por las funciones <emph>DateSerial</emph> o <emph>DateValue</emph>. Por ejemplo, la expresión"
+
+#: 03030103.xhp#par_id3145364.10.help.text
+msgid "Print Day (DateSerial(1994, 12, 20))"
+msgstr "Print Day(DateSerial(1994, 12, 20))"
+
+#: 03030103.xhp#par_id3153190.11.help.text
+msgid "returns the value 20."
+msgstr "devuelve el valor 20."
+
+#: 03030103.xhp#hd_id3149481.12.help.text
+msgctxt "03030103.xhp#hd_id3149481.12.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03030103.xhp#par_id3155413.13.help.text
+msgid "sub ExampleDay"
+msgstr "sub EjemploDay"
+
+#: 03030103.xhp#par_id3149260.14.help.text
+msgid "Print \"Day \" & Day(DateSerial(1994, 12, 20)) & \" of the month\""
+msgstr "Print \"Day \" & Day(DateSerial(1994, 12, 20)) & \" del mes\""
+
+#: 03030103.xhp#par_id3148645.15.help.text
+msgctxt "03030103.xhp#par_id3148645.15.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03030105.xhp#tit.help.text
+msgid "WeekDay Function [Runtime]"
+msgstr "Función WeekDay [Ejecución]"
+
+#: 03030105.xhp#bm_id3153127.help.text
+msgid "<bookmark_value>WeekDay function</bookmark_value>"
+msgstr "<bookmark_value>WeekDay;función</bookmark_value>"
+
+#: 03030105.xhp#hd_id3153127.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030105.xhp\" name=\"WeekDay Function [Runtime]\">WeekDay Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030105.xhp\" name=\"Función WeekDay [Runtime]\">Función WeekDay [Runtime]</link>"
+
+#: 03030105.xhp#par_id3146795.2.help.text
+msgid "Returns the number corresponding to the weekday represented by a serial date number that is generated by the DateSerial or the DateValue function."
+msgstr "Devuelve el número correspondiente al día de la semana representado por un número de fecha serie que genera la función DateSerial o DateValue."
+
+#: 03030105.xhp#hd_id3145068.3.help.text
+msgctxt "03030105.xhp#hd_id3145068.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03030105.xhp#par_id3149655.4.help.text
+msgid "WeekDay (Number)"
+msgstr "WeekDay (Número)"
+
+#: 03030105.xhp#hd_id3148799.5.help.text
+msgctxt "03030105.xhp#hd_id3148799.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03030105.xhp#par_id3154125.6.help.text
+msgctxt "03030105.xhp#par_id3154125.6.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03030105.xhp#hd_id3150768.7.help.text
+msgctxt "03030105.xhp#hd_id3150768.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03030105.xhp#par_id3151042.8.help.text
+msgid "<emph>Number:</emph> Integer expression that contains the serial date number that is used to calculate the day of the week (1-7)."
+msgstr "<emph>Número:</emph> Expresión entera que contenga el número de fecha serie que se utilice para determinar el día de la semana (1-7)."
+
+#: 03030105.xhp#par_id3159254.9.help.text
+msgid "The following example determines the day of the week using the WeekDay function when you enter a date."
+msgstr "El ejemplo siguiente determina el día de la semana con la función WeekDay cuando se escribe una fecha."
+
+#: 03030105.xhp#hd_id3148616.10.help.text
+msgctxt "03030105.xhp#hd_id3148616.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03030105.xhp#par_id3145749.11.help.text
+msgid "Sub ExampleWeekDay"
+msgstr "Sub EjemploWeekDay"
+
+#: 03030105.xhp#par_id3147426.12.help.text
+msgid "Dim sDay As String"
+msgstr "Dim sDia As String"
+
+#: 03030105.xhp#par_id3148576.13.help.text
+msgid "REM Return and display the day of the week"
+msgstr "REM Devuelve y muestra el día de la semana"
+
+#: 03030105.xhp#par_id3155412.14.help.text
+msgid "Select Case WeekDay( Now )"
+msgstr "Select Case WeekDay( Now )"
+
+#: 03030105.xhp#par_id3155306.15.help.text
+msgid "case 1"
+msgstr "case 1"
+
+#: 03030105.xhp#par_id3151117.16.help.text
+msgid "sDay=\"Sunday\""
+msgstr "sDay=\"domingo\""
+
+#: 03030105.xhp#par_id3152460.17.help.text
+msgid "case 2"
+msgstr "case 2"
+
+#: 03030105.xhp#par_id3153952.18.help.text
+msgid "sDay=\"Monday\""
+msgstr "sDay=\"lunes\""
+
+#: 03030105.xhp#par_id3149666.19.help.text
+msgid "case 3"
+msgstr "case 3"
+
+#: 03030105.xhp#par_id3153157.20.help.text
+msgid "sDay=\"Tuesday\""
+msgstr "sDay=\"martes\""
+
+#: 03030105.xhp#par_id3154730.21.help.text
+msgid "case 4"
+msgstr "case 4"
+
+#: 03030105.xhp#par_id3154942.22.help.text
+msgid "sDay=\"Wednesday\""
+msgstr "sDay=\"miércoles\""
+
+#: 03030105.xhp#par_id3145799.23.help.text
+msgid "case 5"
+msgstr "case 5"
+
+#: 03030105.xhp#par_id3155416.24.help.text
+msgid "sDay=\"Thursday\""
+msgstr "sDay=\"jueves\""
+
+#: 03030105.xhp#par_id3150716.25.help.text
+msgid "case 6"
+msgstr "case 6"
+
+#: 03030105.xhp#par_id3154015.26.help.text
+msgid "sDay=\"Friday\""
+msgstr "sDay=\"viernes\""
+
+#: 03030105.xhp#par_id3146971.27.help.text
+msgid "case 7"
+msgstr "case 7"
+
+#: 03030105.xhp#par_id3153707.28.help.text
+msgid "sDay=\"Saturday\""
+msgstr "sDay=\"sábado\""
+
+#: 03030105.xhp#par_id3155065.29.help.text
+msgctxt "03030105.xhp#par_id3155065.29.help.text"
+msgid "End Select"
+msgstr "End Select"
+
+#: 03030105.xhp#par_id3148993.30.help.text
+msgid "msgbox \"\" + sDay,64,\"Today is\""
+msgstr "msgbox \"\" + sDay,64,\"Hoy es \""
+
+#: 03030105.xhp#par_id3149019.31.help.text
+msgctxt "03030105.xhp#par_id3149019.31.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03080601.xhp#tit.help.text
+msgid "Abs Function [Runtime]"
+msgstr "Función Abs [Ejecución]"
+
+#: 03080601.xhp#bm_id3159201.help.text
+msgid "<bookmark_value>Abs function</bookmark_value>"
+msgstr "<bookmark_value>Abs;función</bookmark_value>"
+
+#: 03080601.xhp#hd_id3159201.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080601.xhp\" name=\"Abs Function [Runtime]\">Abs Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080601.xhp\" name=\"Función Abs [Runtime]\">Función Abs [Ejecución]</link>"
+
+#: 03080601.xhp#par_id3153394.2.help.text
+msgid "Returns the absolute value of a numeric expression."
+msgstr "Devuelve el valor absoluto de una expresión numérica."
+
+#: 03080601.xhp#hd_id3149233.3.help.text
+msgctxt "03080601.xhp#hd_id3149233.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03080601.xhp#par_id3147573.4.help.text
+msgid "Abs (Number)"
+msgstr "Abs (Número)"
+
+#: 03080601.xhp#hd_id3156152.5.help.text
+msgctxt "03080601.xhp#hd_id3156152.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03080601.xhp#par_id3149670.6.help.text
+msgctxt "03080601.xhp#par_id3149670.6.help.text"
+msgid "Double"
+msgstr "Doble"
+
+#: 03080601.xhp#hd_id3154924.7.help.text
+msgctxt "03080601.xhp#hd_id3154924.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03080601.xhp#par_id3154347.8.help.text
+msgid "<emph>Number:</emph> Any numeric expression that you want to return the absolute value for. Positive numbers, including 0, are returned unchanged, whereas negative numbers are converted to positive numbers."
+msgstr "<emph>Número:</emph> Cualquier expresión numérica de la que se desee devolver su valor absoluto. Los números positivos, incluido el 0, se devuelven sin cambios, mientras que los números negativos se convierten en positivos."
+
+#: 03080601.xhp#par_id3153381.9.help.text
+msgid "The following example uses the Abs function to calculate the difference between two values. It does not matter which value you enter first."
+msgstr "El ejemplo siguiente usa la función Abs para calcular la diferencia entre dos valores. No importa el valor que introduzca en primer lugar."
+
+#: 03080601.xhp#hd_id3148451.10.help.text
+msgctxt "03080601.xhp#hd_id3148451.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03080601.xhp#par_id3154124.11.help.text
+msgid "Sub ExampleDifference"
+msgstr "Sub EjemploDifference"
+
+#: 03080601.xhp#par_id3150768.12.help.text
+msgid "Dim siW1 As Single"
+msgstr "Dim siW1 As Single"
+
+#: 03080601.xhp#par_id3125864.13.help.text
+msgid "Dim siW2 As Single"
+msgstr "Dim siW2 As Single"
+
+#: 03080601.xhp#par_id3145786.14.help.text
+msgid "siW1 = Int(InputBox$ (\"Please enter the first amount\",\"Value input\"))"
+msgstr "siW1 = Int(InputBox$ (\"Escriba la primera cantidad\",\"Entrada de valor\"))"
+
+#: 03080601.xhp#par_id3149561.15.help.text
+msgid "siW2 = Int(InputBox$ (\"Please enter the second amount\",\"Value input\"))"
+msgstr "siW2 = Int(InputBox$ (\"Escriba la segunda cantidad\",\"Entrada de valor\"))"
+
+#: 03080601.xhp#par_id3145750.16.help.text
+msgid "Print \"The difference is \"; Abs(siW1 - siW2)"
+msgstr "Print \"La diferencia es \"; Abs(siW1 - siW2)"
+
+#: 03080601.xhp#par_id3147319.17.help.text
+msgctxt "03080601.xhp#par_id3147319.17.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03100500.xhp#tit.help.text
+msgid "CInt Function [Runtime]"
+msgstr "Función CInt [Ejecución]"
+
+#: 03100500.xhp#bm_id3149346.help.text
+msgid "<bookmark_value>CInt function</bookmark_value>"
+msgstr "<bookmark_value>CInt;función</bookmark_value>"
+
+#: 03100500.xhp#hd_id3149346.1.help.text
+msgid "<link href=\"text/sbasic/shared/03100500.xhp\" name=\"CInt Function [Runtime]\">CInt Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100500.xhp\" name=\"CInt Function [Runtime]\">Función CInt [Ejecución]</link>"
+
+#: 03100500.xhp#par_id3155419.2.help.text
+msgid "Converts any string or numeric expression to an integer."
+msgstr "Convierte cualquier expresión de cadena o numérica en un entero."
+
+#: 03100500.xhp#hd_id3147573.3.help.text
+msgctxt "03100500.xhp#hd_id3147573.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03100500.xhp#par_id3154142.4.help.text
+msgid "CInt (Expression)"
+msgstr "CInt (Expresión)"
+
+#: 03100500.xhp#hd_id3147531.5.help.text
+msgctxt "03100500.xhp#hd_id3147531.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03100500.xhp#par_id3147560.6.help.text
+msgctxt "03100500.xhp#par_id3147560.6.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03100500.xhp#hd_id3145069.7.help.text
+msgctxt "03100500.xhp#hd_id3145069.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03100500.xhp#par_id3159414.8.help.text
+msgid "<emph>Expression:</emph> Any numeric expression that you want to convert. If the <emph>Expression</emph> exceeds the value range between -32768 and 32767, $[officename] Basic reports an overflow error. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
+msgstr "<emph>Expresión:</emph> Cualquier expresión numérica que desee convertir. Si <emph>Expresión</emph> excede el rango de valores entre -32768 y 32767, $[officename] Basic informa de un error de desbordamiento. Para convertir una expresión de cadena, el número debe introducirse como texto normal (\"123,5\") usando el formato numérico predeterminado del sistema operativo."
+
+#: 03100500.xhp#par_id3150358.9.help.text
+msgctxt "03100500.xhp#par_id3150358.9.help.text"
+msgid "This function always rounds the fractional part of a number to the nearest integer."
+msgstr "Esta función siempre redondea la parte fraccional de un número al entero más cercano."
+
+#: 03100500.xhp#hd_id3145419.10.help.text
+msgctxt "03100500.xhp#hd_id3145419.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03100500.xhp#par_id3150448.11.help.text
+msgctxt "03100500.xhp#par_id3150448.11.help.text"
+msgid "Sub ExampleCountryConvert"
+msgstr "Sub EjemploConvPais"
+
+#: 03100500.xhp#par_id3156423.12.help.text
+msgctxt "03100500.xhp#par_id3156423.12.help.text"
+msgid "Msgbox CDbl(1234.5678)"
+msgstr "Msgbox CDbl(1234,5678)"
+
+#: 03100500.xhp#par_id3150869.13.help.text
+msgctxt "03100500.xhp#par_id3150869.13.help.text"
+msgid "Msgbox CInt(1234.5678)"
+msgstr "Msgbox CInt(1234,5678)"
+
+#: 03100500.xhp#par_id3153768.14.help.text
+msgctxt "03100500.xhp#par_id3153768.14.help.text"
+msgid "Msgbox CLng(1234.5678)"
+msgstr "Msgbox CLng(1234,5678)"
+
+#: 03100500.xhp#par_id3145786.15.help.text
+msgctxt "03100500.xhp#par_id3145786.15.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03020205.xhp#tit.help.text
+msgid "Write Statement [Runtime]"
+msgstr "Instrucción Write [Ejecución]"
+
+#: 03020205.xhp#bm_id3147229.help.text
+msgid "<bookmark_value>Write statement</bookmark_value>"
+msgstr "\\<bookmark_value\\>instrucción Write\\</bookmark_value\\>"
+
+#: 03020205.xhp#hd_id3147229.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020205.xhp\" name=\"Write Statement [Runtime]\">Write Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020205.xhp\" name=\"Instrucción Write [Runtime]\">Instrucción Write [Runtime]</link>"
+
+#: 03020205.xhp#par_id3154685.2.help.text
+msgid "Writes data to a sequential file."
+msgstr "Escribe datos en un archivo secuencial."
+
+#: 03020205.xhp#hd_id3150449.3.help.text
+msgctxt "03020205.xhp#hd_id3150449.3.help.text"
+msgid "Syntax:"
+msgstr "<emph>Sintaxis</emph>:"
+
+#: 03020205.xhp#par_id3145785.4.help.text
+msgid "Write [#FileName], [Expressionlist]"
+msgstr "Write [#NombreArchivo], [ListaExpresión]"
+
+#: 03020205.xhp#hd_id3151116.5.help.text
+msgctxt "03020205.xhp#hd_id3151116.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03020205.xhp#par_id3153728.6.help.text
+msgctxt "03020205.xhp#par_id3153728.6.help.text"
+msgid "<emph>FileName:</emph> Any numeric expression that contains the file number that was set by the Open statement for the respective file."
+msgstr "<emph>NombreArchivo:</emph> Cualquier expresión numérica que contenga el número de archivo que estableció la instrucción Open para el archivo respectivo."
+
+#: 03020205.xhp#par_id3146120.7.help.text
+msgid "<emph>Expressionlist:</emph> Variables or expressions that you want to enter in a file, separated by commas."
+msgstr "<emph>ListaExpresiones:</emph> Variables o expresiones que se desee introducir en un archivo, separadas por comas."
+
+#: 03020205.xhp#par_id3150010.8.help.text
+msgid "If the expression list is omitted, the <emph>Write</emph> statement appends an empty line to the file."
+msgstr "Si se omite la lista de expresiones, la instrucción <emph>Write</emph> añade una línea vacía al archivo."
+
+#: 03020205.xhp#par_id3163713.9.help.text
+msgid "To add an expression list to a new or an existing file, the file must be opened in the <emph>Output</emph> or <emph>Append</emph> mode."
+msgstr "Para añadir una lista de expresiones a un archivo nuevo o existente, éste debe estar abierto con el modo <emph>Output</emph> o <emph>Append</emph>."
+
+#: 03020205.xhp#par_id3147428.10.help.text
+msgid "Strings that you write are enclosed by quotation marks and separated by commas. You do not need to enter these delimiters in the expression list."
+msgstr "Las cadenas que puedes escribir estan encapsulada por comillas y separado por comas. No necesitas poner estos delimitantes en una lista de expresión."
+
+#: 03020205.xhp#par_id1002838.help.text
+msgid "Each <emph>Write</emph> statement outputs a line end symbol as last entry."
+msgstr "Cada instrucción de \\<emph\\>Write\\</emph\\> genera un simbolo de salto de linea a la última entrada."
+
+#: 03020205.xhp#par_id6618854.help.text
+msgid "Numbers with decimal delimiters are converted according to the locale settings."
+msgstr "Numeros con delimitadores decimales son convertidos de acuerdo ala configuración del idioma o regionalización."
+
+#: 03020205.xhp#hd_id3151073.11.help.text
+msgctxt "03020205.xhp#hd_id3151073.11.help.text"
+msgid "Example:"
+msgstr "<emph>Ejemplo:</emph>"
+
+#: 03020205.xhp#par_id3145252.12.help.text
+msgid "Sub ExampleWrite"
+msgstr "Sub EjemploWrite"
+
+#: 03020205.xhp#par_id3149958.13.help.text
+msgctxt "03020205.xhp#par_id3149958.13.help.text"
+msgid "Dim iCount As Integer"
+msgstr "Dim iContador As Integer"
+
+#: 03020205.xhp#par_id3156284.14.help.text
+msgid "Dim sValue As String"
+msgstr "Dim sValor As String"
+
+#: 03020205.xhp#par_id3145645.15.help.text
+msgid "iCount = Freefile"
+msgstr "iContador = Freefile"
+
+#: 03020205.xhp#par_id3153417.16.help.text
+msgid "open \"C:\\data.txt\" for OutPut as iCount"
+msgstr "open \"C:\\data.txt\" for OutPut as iContador"
+
+#: 03020205.xhp#par_id3149401.17.help.text
+msgid "sValue = \"Hamburg\""
+msgstr "sValor = \"Hamburgo\""
+
+#: 03020205.xhp#par_id3156275.18.help.text
+msgid "Write #iCount,sValue,200"
+msgstr "Write #iContador,sValor,200"
+
+#: 03020205.xhp#par_id3146913.19.help.text
+msgid "sValue = \"New York\""
+msgstr "sValor = \"Nueva York\""
+
+#: 03020205.xhp#par_id3155064.20.help.text
+msgid "Write #iCount,sValue,300"
+msgstr "Write #iContador,sValor,300"
+
+#: 03020205.xhp#par_id3150322.21.help.text
+msgid "sValue = \"Miami\""
+msgstr "sValor = \"Miami\""
+
+#: 03020205.xhp#par_id3155766.22.help.text
+msgid "Write #iCount,sValue,450"
+msgstr "Write #iContador,sValor,450"
+
+#: 03020205.xhp#par_id3145643.23.help.text
+msgid "close #iCount"
+msgstr "close #iContador"
+
+#: 03020205.xhp#par_id3150044.24.help.text
+msgctxt "03020205.xhp#par_id3150044.24.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 00000002.xhp#tit.help.text
+msgid "$[officename] Basic Glossary"
+msgstr "Glosario de $[officename] Basic"
+
+#: 00000002.xhp#hd_id3145068.1.help.text
+msgid "<link href=\"text/sbasic/shared/00000002.xhp\" name=\"$[officename] Basic Glossary\">$[officename] Basic Glossary</link>"
+msgstr "<link href=\"text/sbasic/shared/00000002.xhp\" name=\"$[officename] Basic Glossary\">Glosario de $[officename] Basic</link>"
+
+#: 00000002.xhp#par_id3150792.2.help.text
+msgid "This glossary explains some technical terms that you may come across when working with $[officename] Basic."
+msgstr "Este glosario explica algunos términos técnicos que se pueden encontrar al trabajar con $[officename] Basic."
+
+#: 00000002.xhp#hd_id3155133.7.help.text
+msgid "Decimal Point"
+msgstr "Coma decimal"
+
+#: 00000002.xhp#par_id3156443.8.help.text
+msgid "When converting numbers, $[officename] Basic uses the locale settings of the system for determining the type of decimal and thousand separator."
+msgstr "Al convertir números, $[officename] Basic usa los valores locales del sistema para determinar el tipo de decimal y de separador de miles."
+
+#: 00000002.xhp#par_id3153092.9.help.text
+msgid "The behavior has an effect on both the implicit conversion ( 1 + \"2.3\" = 3.3 ) as well as the runtime function <link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric\">IsNumeric</link>."
+msgstr "La conducta tiene un efecto en la conversión implícita ( 1 + \"2,3\" = 3,3 ) y en la función en tiempo de ejecución <link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric\">IsNumeric</link>."
+
+#: 00000002.xhp#hd_id3155854.29.help.text
+msgid "Colors"
+msgstr "Colores"
+
+#: 00000002.xhp#par_id3145366.30.help.text
+msgid "In $[officename] Basic, colors are treated as long integer value. The return value of color queries is also always a long integer value. When defining properties, colors can be specified using their RGB code that is converted to a long integer value using the <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB function\">RGB function</link>."
+msgstr "En $[officename] Basic, los colores se tratan como valores enteros largos. El valor de retorno de las consultas de color también es siempre un valor entero largo. Al definir propiedades, los colores se pueden especificar mediante su código RGB que se convierte en un valor entero largo gracias a la <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB function\">función RGB</link>."
+
+#: 00000002.xhp#hd_id3146119.32.help.text
+msgid "Measurement Units"
+msgstr "Unidades de medida"
+
+#: 00000002.xhp#par_id3154013.33.help.text
+msgid "In $[officename] Basic, a <emph>method parameter</emph> or a <emph>property</emph> expecting unit information can be specified either as integer or long integer expression without a unit, or as a character string containing a unit. If no unit is passed to the method the default unit defined for the active document type will be used. If the parameter is passed as a character string containing a measurement unit, the default setting will be ignored. The default measurement unit for a document type can be set under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - (Document Type) - General</emph>."
+msgstr "En $[officename] Basic, a un <emph>parámetro de método</emph> o a una <emph>propiedad</emph> que requieran una unidad de medida, se les puede especificar la información ya sea como una expresión que devuelva un entero o un entero largo sin unidades de medida, o bien como una cadena de caracteres que contenga la unidad. Si no se pasa ninguna unidad al método, se usará la unidad predeterminada definida para el documento activo. Si se pasa el parámetro como una cadena de caracteres que contiene una unidad de medida, se ignorará la configuración predeterminada. La unidad de medida predeterminada para cada tipo de documento puede establecerse en <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - (Tipo de documento) - General</emph>."
+
+#: 00000002.xhp#bm_id3145801.help.text
+msgid "<bookmark_value>twips; definition</bookmark_value>"
+msgstr "<bookmark_value>twips; definición</bookmark_value>"
+
+#: 00000002.xhp#hd_id3145801.5.help.text
+msgid "Twips"
+msgstr "Twips"
+
+#: 00000002.xhp#par_id3154731.6.help.text
+msgid "A twip is a screen-independent unit which is used to define the uniform position and size of screen elements on all display systems. A twip is 1/1440th of an inch or 1/20 of a printer's point. There are 1440 twips to an inch or about 567 twips to a centimeter."
+msgstr "Un twip es una unidad independiente de la pantalla que se usa para definir la posición y tamaño uniformes de los elementos de pantalla en todos los sistemas de visualización. Un twip es 1/1440 de una pulgada o 1/20 del punto de una impresora. En una pulgada hay 1440 twips o unos 567 twips por centímetro."
+
+#: 00000002.xhp#hd_id3153159.106.help.text
+msgid "URL Notation"
+msgstr "Notación URL"
+
+#: 00000002.xhp#par_id3153415.108.help.text
+msgid "URLs (<emph>Uniform Resource Locators</emph>) are used to determine the location of a resource like a file in a file system, typically inside a network environment. A URL consists of a protocol specifier, a host specifier and a file and path specifier:"
+msgstr "Las URL (<emph>Uniform Resource Locators</emph>) se usan para determinar la posición de un recurso, como un archivo, en un sistema de archivos, normalmente dentro de un entorno de red. Una URL se compone de un especificador de protocolo, uno de ordenador y uno de archivo y ruta de acceso:"
+
+#: 00000002.xhp#par_id3149121.107.help.text
+msgid "<emph>protocol</emph>://<emph>host.name</emph>/<emph>path/to/the/file.html</emph>"
+msgstr "<emph>protocolo</emph>://<emph>nombre.ordenador</emph>/<emph>ruta/del/archivo.html</emph>"
+
+#: 00000002.xhp#par_id3168612.109.help.text
+msgid "The most common usage of URLs is on the internet when specifying web pages. Example for protocols are <emph>http</emph>, <emph>ftp</emph>, or <emph>file</emph>. The <emph>file</emph> protocol specifier is used when referring to a file on the local file system."
+msgstr "El uso más común para las URL en Internet es especificar páginas web. Algunos ejemplos de protocolos son <emph>http</emph>, <emph>ftp</emph> o <emph>file</emph>. El especificador de protocolo <emph>file</emph> se usa para hacer referencia a un archivo del sistema de archivos local."
+
+#: 00000002.xhp#par_id3150324.110.help.text
+msgid "URL notation does not allow certain special characters to be used. These are either replaced by other characters or encoded. A slash (<emph>/</emph>) is used as a path separator. For example, a file referred to as <emph>C:\\My File.sxw</emph> on the local host in \"Windows notation\" becomes <emph>file:///C|/My%20File.sxw</emph> in URL notation."
+msgstr "La notación URL no permite el uso de algunos caracteres especiales. Éstos se sustituyen por otros caracteres o se codifican. La barra oblicua (<emph>/</emph>) se utiliza como separador de ruta de acceso. Por ejemplo, un archivo al que se hace referencia como <emph>C:\\Mi archivo.sxw</emph> en el ordenador local con la \"notación Windows\" se convierte en <emph>file:///C|Mi%20archivo.sxw</emph> en la notación URL."
+
+#: 03090401.xhp#tit.help.text
+msgid "Call Statement [Runtime]"
+msgstr "Instrucción Call [Ejecución]"
+
+#: 03090401.xhp#bm_id3154422.help.text
+msgid "<bookmark_value>Call statement</bookmark_value>"
+msgstr "<bookmark_value>Call;instrucción</bookmark_value>"
+
+#: 03090401.xhp#hd_id3154422.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090401.xhp\" name=\"Call Statement [Runtime]\">Call Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090401.xhp\" name=\"Call Statement [Runtime]\">Instrucción Call [Ejecución]</link>"
+
+#: 03090401.xhp#par_id3153394.2.help.text
+msgid "Transfers the control of the program to a subroutine, a function, or a DLL procedure."
+msgstr "Transfiere el control del programa a una subrutina, función o procedimiento DLL."
+
+#: 03090401.xhp#hd_id3153345.3.help.text
+msgctxt "03090401.xhp#hd_id3153345.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03090401.xhp#par_id3150984.4.help.text
+msgid "[Call] Name [Parameter]"
+msgstr "[Llamada] Nombre [Parámetro]"
+
+#: 03090401.xhp#hd_id3150771.5.help.text
+msgctxt "03090401.xhp#hd_id3150771.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03090401.xhp#par_id3148473.6.help.text
+msgid "<emph>Name:</emph> Name of the subroutine, the function, or the DLL that you want to call"
+msgstr "<emph>Nombre:</emph> Nombre de la subrutina, función o DLL a la que se desee llamar"
+
+#: 03090401.xhp#par_id3148946.7.help.text
+msgid "<emph>Parameter:</emph> Parameters to pass to the procedure. The type and number of parameters is dependent on the routine that is executing."
+msgstr "<emph>Parámetro:</emph> Parámetros que pasar al procedimiento. El tipo y número de parámetros depende de la rutina que se esté ejecutando."
+
+#: 03090401.xhp#par_id3154216.8.help.text
+msgid "A keyword is optional when you call a procedure. If a function is executed as an expression, the parameters must be enclosed by brackets in the statement. If a DLL is called, it must first be specified in the <emph>Declare-Statement</emph>."
+msgstr "Cuando se llama a un procedimiento puede incluirse una palabra clave opcionalmente. Si la función se ejecuta como expresión, los parámetros deben incluirse entre corchetes en la instrucción. Si se llama a una DLL, antes debe especificarse en la instrucción <emph>Declare</emph>."
+
+#: 03090401.xhp#hd_id3125865.9.help.text
+msgctxt "03090401.xhp#hd_id3125865.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03090401.xhp#par_id3159254.12.help.text
+msgid "Sub ExampleCall"
+msgstr "Sub EjemploCall"
+
+#: 03090401.xhp#par_id3161832.13.help.text
+msgctxt "03090401.xhp#par_id3161832.13.help.text"
+msgid "Dim sVar As String"
+msgstr "Dim sVar As String"
+
+#: 03090401.xhp#par_id3147317.14.help.text
+msgctxt "03090401.xhp#par_id3147317.14.help.text"
+msgid "sVar = \"Office\""
+msgstr "sVar = \"Office\""
+
+#: 03090401.xhp#par_id3145273.15.help.text
+msgid "Call f_callFun sVar"
+msgstr "Call f_callFun sVar"
+
+#: 03090401.xhp#par_id3147435.16.help.text
+msgctxt "03090401.xhp#par_id3147435.16.help.text"
+msgid "end Sub"
+msgstr "end Sub"
+
+#: 03090401.xhp#par_id3155414.18.help.text
+msgid "Sub f_callFun (sText as String)"
+msgstr "Sub f_callFun (sTexto as String)"
+
+#: 03090401.xhp#par_id3151112.19.help.text
+msgctxt "03090401.xhp#par_id3151112.19.help.text"
+msgid "Msgbox sText"
+msgstr "Msgbox sTexto"
+
+#: 03090401.xhp#par_id3148646.20.help.text
+msgctxt "03090401.xhp#par_id3148646.20.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 01050300.xhp#tit.help.text
+msgid "Manage Breakpoints"
+msgstr "Gestión de los puntos de ruptura"
+
+#: 01050300.xhp#hd_id3154927.1.help.text
+msgid "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints\">Manage Breakpoints</link>"
+msgstr "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Gestión de los puntos de ruptura\">Gestión de los puntos de ruptura</link>"
+
+#: 01050300.xhp#par_id3148550.2.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_BRKPROPS\">Specifies the options for breakpoints.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_BRKPROPS\" visibility=\"visible\">Especifica las opciones de los puntos de ruptura.</ahelp>"
+
+#: 01050300.xhp#hd_id3149670.3.help.text
+msgid "Breakpoints"
+msgstr "Puntos de ruptura"
+
+#: 01050300.xhp#par_id3150398.4.help.text
+msgid "<ahelp hid=\"BASCTL_COMBOBOX_RID_BASICIDE_BREAKPOINTDLG_RID_CB_BRKPOINTS\">Enter the line number for a new breakpoint, then click <emph>New</emph>.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_COMBOBOX_RID_BASICIDE_BREAKPOINTDLG_RID_CB_BRKPOINTS\" visibility=\"visible\">Escriba el número de línea de un nuevo punto de ruptura y pulse Nuevo.</ahelp>"
+
+#: 01050300.xhp#hd_id3156280.6.help.text
+msgid "Active"
+msgstr "Activar"
+
+#: 01050300.xhp#par_id3154910.7.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_ACTIV\">Activates or deactivates the current breakpoint.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_ACTIV\" visibility=\"visible\">Activa o desactiva el punto de ruptura actual.</ahelp>"
+
+#: 01050300.xhp#hd_id3144500.8.help.text
+msgid "Pass Count"
+msgstr "Adaptación"
+
+#: 01050300.xhp#par_id3161831.9.help.text
+msgid "<ahelp hid=\"BASCTL_NUMERICFIELD_RID_BASICIDE_BREAKPOINTDLG_RID_FLD_PASS\">Specify the number of loops to perform before the breakpoint takes effect.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_NUMERICFIELD_RID_BASICIDE_BREAKPOINTDLG_RID_FLD_PASS\" visibility=\"visible\">Especifica el número de bucles que efectuar antes de que se active el punto de ruptura.</ahelp>"
+
+#: 01050300.xhp#hd_id3152579.10.help.text
+msgid "New"
+msgstr "Nuevo"
+
+#: 01050300.xhp#par_id3148575.11.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_NEW\">Creates a breakpoint on the line number specified.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_NEW\" visibility=\"visible\">Crea un punto de ruptura en el número de línea especificado.</ahelp>"
+
+#: 01050300.xhp#hd_id3147319.12.help.text
+msgctxt "01050300.xhp#hd_id3147319.12.help.text"
+msgid "Delete"
+msgstr "Borrar"
+
+#: 01050300.xhp#par_id3153363.13.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_DEL\">Deletes the selected breakpoint.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_DEL\" visibility=\"visible\">Borra el punto de ruptura seleccionado.</ahelp>"
+
+#: 03020415.xhp#tit.help.text
+msgid "FileExists Function [Runtime]"
+msgstr "Función FileExists [Ejecución]"
+
+#: 03020415.xhp#bm_id3148946.help.text
+msgid "<bookmark_value>FileExists function</bookmark_value>"
+msgstr "<bookmark_value>FileExists;función</bookmark_value>"
+
+#: 03020415.xhp#hd_id3148946.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020415.xhp\" name=\"FileExists Function [Runtime]\">FileExists Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020415.xhp\" name=\"Función FileExists [Runtime]\">Función FileExists [Runtime]</link>"
+
+#: 03020415.xhp#par_id3153361.2.help.text
+msgid "Determines if a file or a directory is available on the data medium."
+msgstr "Determina si un archivo o directorio están disponibles en el soporte de datos."
+
+#: 03020415.xhp#hd_id3150447.3.help.text
+msgctxt "03020415.xhp#hd_id3150447.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03020415.xhp#par_id3154685.4.help.text
+msgid "FileExists(FileName As String | DirectoryName As String)"
+msgstr "FileExists(NombreArchivo As String | NombreDirectorio As String)"
+
+#: 03020415.xhp#hd_id3154126.5.help.text
+msgctxt "03020415.xhp#hd_id3154126.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03020415.xhp#par_id3150769.6.help.text
+msgctxt "03020415.xhp#par_id3150769.6.help.text"
+msgid "Bool"
+msgstr "Lógico"
+
+#: 03020415.xhp#hd_id3153770.7.help.text
+msgctxt "03020415.xhp#hd_id3153770.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03020415.xhp#par_id3147349.8.help.text
+msgid "FileName | DirectoryName: Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "NombreArchivo | NombreDirectorio: Cualquier expresión de cadena que contenga una especificación de archivo inequívoca. También se puede usar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notación URL\">notación URL</link>."
+
+#: 03020415.xhp#hd_id3149664.9.help.text
+msgctxt "03020415.xhp#hd_id3149664.9.help.text"
+msgid "Example:"
+msgstr "<emph>Ejemplo:</emph>"
+
+#: 03020415.xhp#par_id3145272.10.help.text
+msgid "sub ExampleFileExists"
+msgstr "sub EjemploFileExists"
+
+#: 03020415.xhp#par_id3147317.12.help.text
+msgid "msgbox FileExists(\"C:\\autoexec.bat\")"
+msgstr "msgbox FileExists(\"C:\\autoexec.bat\")"
+
+#: 03020415.xhp#par_id3153190.13.help.text
+msgid "msgbox FileExists(\"file:///d|/bookmark.htm\")"
+msgstr "msgbox FileExists(\"file:///d|/bookmark.htm\")"
+
+#: 03020415.xhp#par_id3148645.14.help.text
+msgid "msgbox FileExists(\"file:///d|/private\")"
+msgstr "msgbox FileExists(\"file:///d|/private\")"
+
+#: 03020415.xhp#par_id3149262.15.help.text
+msgctxt "03020415.xhp#par_id3149262.15.help.text"
+msgid "end sub"
+msgstr "End Sub"
+
+#: 03120402.xhp#tit.help.text
+msgid "Len Function [Runtime]"
+msgstr "Función Len [Ejecución]"
+
+#: 03120402.xhp#bm_id3154136.help.text
+msgid "<bookmark_value>Len function</bookmark_value>"
+msgstr "<bookmark_value>Len;función</bookmark_value>"
+
+#: 03120402.xhp#hd_id3154136.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120402.xhp\" name=\"Len Function [Runtime]\">Len Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120402.xhp\" name=\"Len Function [Runtime]\">Función Len [Ejecución]</link>"
+
+#: 03120402.xhp#par_id3147576.2.help.text
+msgid "Returns the number of characters in a string, or the number of bytes that are required to store a variable."
+msgstr "Devuelve el número de caracteres en una cadena o el de bytes que hacen falta para almacenar una variable."
+
+#: 03120402.xhp#hd_id3159177.3.help.text
+msgctxt "03120402.xhp#hd_id3159177.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03120402.xhp#par_id3150669.4.help.text
+msgid "Len (Text As String)"
+msgstr "Len (Texto As String)"
+
+#: 03120402.xhp#hd_id3148473.5.help.text
+msgctxt "03120402.xhp#hd_id3148473.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03120402.xhp#par_id3143270.6.help.text
+msgctxt "03120402.xhp#par_id3143270.6.help.text"
+msgid "Long"
+msgstr "Largo"
+
+#: 03120402.xhp#hd_id3147531.7.help.text
+msgctxt "03120402.xhp#hd_id3147531.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03120402.xhp#par_id3147265.8.help.text
+msgid "<emph>Text:</emph> Any string expression or a variable of another type."
+msgstr "Texto: Cualquier expresión de cadena o variable de otro tipo."
+
+#: 03120402.xhp#hd_id3153360.9.help.text
+msgctxt "03120402.xhp#hd_id3153360.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03120402.xhp#par_id3150792.10.help.text
+msgctxt "03120402.xhp#par_id3150792.10.help.text"
+msgid "Sub ExampleLen"
+msgstr "Sub EjemploLen"
+
+#: 03120402.xhp#par_id3151211.11.help.text
+msgctxt "03120402.xhp#par_id3151211.11.help.text"
+msgid "Dim sText as String"
+msgstr "Dim sTexto As String"
+
+#: 03120402.xhp#par_id3154125.12.help.text
+msgctxt "03120402.xhp#par_id3154125.12.help.text"
+msgid "sText = \"Las Vegas\""
+msgstr "sText = \"Las Vegas\""
+
+#: 03120402.xhp#par_id3156214.13.help.text
+msgid "MsgBox Len(sText) REM Returns 9"
+msgstr "MsgBox Len(sTexto) REM Devuelve 9"
+
+#: 03120402.xhp#par_id3125864.14.help.text
+msgctxt "03120402.xhp#par_id3125864.14.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03103600.xhp#tit.help.text
+msgid "TypeName Function; VarType Function[Runtime]"
+msgstr "Función TypeName; Función VarType [Ejecución]"
+
+#: 03103600.xhp#bm_id3143267.help.text
+msgid "<bookmark_value>TypeName function</bookmark_value><bookmark_value>VarType function</bookmark_value>"
+msgstr "<bookmark_value>TypeName;función</bookmark_value>"
+
+#: 03103600.xhp#hd_id3143267.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function[Runtime]\">TypeName Function; VarType Function[Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function[Runtime]\">Función TypeName; Función VarType [Ejecución]</link>"
+
+#: 03103600.xhp#par_id3159157.2.help.text
+msgid "Returns a string (TypeName) or a numeric value (VarType) that contains information for a variable."
+msgstr "Devuelve una cadena (TypeName) o un valor numérico (VarType) que contiene información para una variable."
+
+#: 03103600.xhp#hd_id3153825.3.help.text
+msgctxt "03103600.xhp#hd_id3153825.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03103600.xhp#par_id3155341.4.help.text
+msgid "TypeName (Variable)VarType (Variable)"
+msgstr "TypeName (Variable)VarType (Variable)"
+
+#: 03103600.xhp#hd_id3145610.5.help.text
+msgctxt "03103600.xhp#hd_id3145610.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03103600.xhp#par_id3148947.6.help.text
+msgid "String; Integer"
+msgstr "Cadena; Entero"
+
+#: 03103600.xhp#hd_id3146795.7.help.text
+msgctxt "03103600.xhp#hd_id3146795.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03103600.xhp#par_id3148664.8.help.text
+msgid "<emph>Variable:</emph> The variable that you want to determine the type of. You can use the following values:"
+msgstr "<emph>Variable:</emph> La variable de la que se desea determinar su tipo. Pueden usarse los valores siguientes:"
+
+#: 03103600.xhp#par_id3145171.9.help.text
+msgid "key word"
+msgstr "palabra clave"
+
+#: 03103600.xhp#par_id3156212.10.help.text
+msgid "VarType"
+msgstr "VarType"
+
+#: 03103600.xhp#par_id3154684.11.help.text
+msgid "Variable type"
+msgstr "Tipo de variable"
+
+#: 03103600.xhp#par_id3151041.12.help.text
+msgid "Boolean"
+msgstr "Lógica"
+
+#: 03103600.xhp#par_id3153367.13.help.text
+msgid "11"
+msgstr "11"
+
+#: 03103600.xhp#par_id3148645.14.help.text
+msgid "Boolean variable"
+msgstr "Variable lógica"
+
+#: 03103600.xhp#par_id3153138.15.help.text
+msgctxt "03103600.xhp#par_id3153138.15.help.text"
+msgid "Date"
+msgstr "Fecha"
+
+#: 03103600.xhp#par_id3153363.16.help.text
+msgctxt "03103600.xhp#par_id3153363.16.help.text"
+msgid "7"
+msgstr "7"
+
+#: 03103600.xhp#par_id3155411.17.help.text
+msgid "Date variable"
+msgstr "Variable de fecha"
+
+#: 03103600.xhp#par_id3146975.18.help.text
+msgctxt "03103600.xhp#par_id3146975.18.help.text"
+msgid "Double"
+msgstr "Doble"
+
+#: 03103600.xhp#par_id3150486.19.help.text
+msgctxt "03103600.xhp#par_id3150486.19.help.text"
+msgid "5"
+msgstr "5"
+
+#: 03103600.xhp#par_id3148616.20.help.text
+msgid "Double floating point variable"
+msgstr "Variable doble de coma flotante"
+
+#: 03103600.xhp#par_id3148457.21.help.text
+msgctxt "03103600.xhp#par_id3148457.21.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03103600.xhp#par_id3145647.22.help.text
+msgctxt "03103600.xhp#par_id3145647.22.help.text"
+msgid "2"
+msgstr "2"
+
+#: 03103600.xhp#par_id3154490.23.help.text
+msgid "Integer variable"
+msgstr "Variable entera"
+
+#: 03103600.xhp#par_id3149960.24.help.text
+msgctxt "03103600.xhp#par_id3149960.24.help.text"
+msgid "Long"
+msgstr "Largo"
+
+#: 03103600.xhp#par_id3154513.25.help.text
+msgctxt "03103600.xhp#par_id3154513.25.help.text"
+msgid "3"
+msgstr "3"
+
+#: 03103600.xhp#par_id3151318.26.help.text
+msgid "Long integer variable"
+msgstr "Variable entera larga"
+
+#: 03103600.xhp#par_id3146972.27.help.text
+msgid "Object"
+msgstr "Objeto"
+
+#: 03103600.xhp#par_id3154482.28.help.text
+msgid "9"
+msgstr "9"
+
+#: 03103600.xhp#par_id3150323.29.help.text
+msgid "Object variable"
+msgstr "Variable de objeto"
+
+#: 03103600.xhp#par_id3148405.30.help.text
+msgctxt "03103600.xhp#par_id3148405.30.help.text"
+msgid "Single"
+msgstr "Simple"
+
+#: 03103600.xhp#par_id3149020.31.help.text
+msgctxt "03103600.xhp#par_id3149020.31.help.text"
+msgid "4"
+msgstr "4"
+
+#: 03103600.xhp#par_id3147341.32.help.text
+msgid "Single floating-point variable"
+msgstr "Variable simple de coma flotante"
+
+#: 03103600.xhp#par_id3155901.33.help.text
+msgctxt "03103600.xhp#par_id3155901.33.help.text"
+msgid "String"
+msgstr "Cadena"
+
+#: 03103600.xhp#par_id3155960.34.help.text
+msgid "8"
+msgstr "8"
+
+#: 03103600.xhp#par_id3146313.35.help.text
+msgid "String variable"
+msgstr "Variable de cadena"
+
+#: 03103600.xhp#par_id3145149.36.help.text
+msgid "Variant"
+msgstr "Variante"
+
+#: 03103600.xhp#par_id3154021.37.help.text
+msgid "12"
+msgstr "12"
+
+#: 03103600.xhp#par_id3145789.38.help.text
+msgid "Variant variable (can contain all types specified by the definition)"
+msgstr "Variable variante (puede contener todos los tipos especificados por la definición)"
+
+#: 03103600.xhp#par_id3148630.39.help.text
+msgid "Empty"
+msgstr "Vacío"
+
+#: 03103600.xhp#par_id3152584.40.help.text
+msgctxt "03103600.xhp#par_id3152584.40.help.text"
+msgid "0"
+msgstr "0"
+
+#: 03103600.xhp#par_id3151278.41.help.text
+msgid "Variable is not initialized"
+msgstr "La variable no está inicializada"
+
+#: 03103600.xhp#par_id3154576.42.help.text
+msgid "Null"
+msgstr "Nulo"
+
+#: 03103600.xhp#par_id3166424.43.help.text
+msgctxt "03103600.xhp#par_id3166424.43.help.text"
+msgid "1"
+msgstr "1"
+
+#: 03103600.xhp#par_id3145131.44.help.text
+msgid "No valid data"
+msgstr "No hay datos válidos"
+
+#: 03103600.xhp#hd_id3149338.45.help.text
+msgctxt "03103600.xhp#hd_id3149338.45.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03103600.xhp#par_id3150363.46.help.text
+msgid "Sub ExampleType"
+msgstr "Sub EjemploType"
+
+#: 03103600.xhp#par_id3159088.47.help.text
+msgctxt "03103600.xhp#par_id3159088.47.help.text"
+msgid "Dim iVar As Integer"
+msgstr "Dim iVar As Integer"
+
+#: 03103600.xhp#par_id3150089.48.help.text
+msgctxt "03103600.xhp#par_id3150089.48.help.text"
+msgid "Dim sVar As String"
+msgstr "Dim sVar As String"
+
+#: 03103600.xhp#par_id3156139.49.help.text
+msgid "Dim siVar As Single"
+msgstr "Dim siVar As Single"
+
+#: 03103600.xhp#par_id3151217.50.help.text
+msgid "Dim dVar As Double"
+msgstr "Dim dVar As Double"
+
+#: 03103600.xhp#par_id3154658.51.help.text
+msgid "Dim bVar As Boolean"
+msgstr "Dim bVar As Boolean"
+
+#: 03103600.xhp#par_id3152992.52.help.text
+msgctxt "03103600.xhp#par_id3152992.52.help.text"
+msgid "Dim lVar As Long"
+msgstr "Dim lVar As Long"
+
+#: 03103600.xhp#par_id3155509.53.help.text
+msgid "Msgbox TypeName(iVar) & \" \" & VarType(iVar) & Chr(13) &_"
+msgstr "Msgbox TypeName(iVar) & \" \" & VarType(iVar) & Chr(13) &_"
+
+#: 03103600.xhp#par_id3150370.54.help.text
+msgid "TypeName(sVar) & \" \" & VarType(sVar) & Chr(13) &_"
+msgstr "TypeName(sVar) & \" \" & VarType(sVar) & Chr(13) &_"
+
+#: 03103600.xhp#par_id3155532.55.help.text
+msgid "TypeName(siVar) & \" \" & VarType(siVar) & Chr(13) &_"
+msgstr "TypeName(siVar) & \" \" & VarType(siVar) & Chr(13) &_"
+
+#: 03103600.xhp#par_id3152988.56.help.text
+msgid "TypeName(dVar) & \" \" & VarType(dVar) & Chr(13) &_"
+msgstr "TypeName(dVar) & \" \" & VarType(dVar) & Chr(13) &_"
+
+#: 03103600.xhp#par_id3156166.57.help.text
+msgid "TypeName(bVar) & \" \" & VarType(bVar) & Chr(13) &_"
+msgstr "TypeName(bVar) & \" \" & VarType(bVar) & Chr(13) &_"
+
+#: 03103600.xhp#par_id3148817.58.help.text
+msgid "TypeName(lVar) & \" \" & VarType(lVar),0,\"Some types in $[officename] Basic\""
+msgstr "TypeName(lVar) & \" \" & VarType(lVar),0,\"Algunos tipos en $[officename] Basic\""
+
+#: 03103600.xhp#par_id3154259.59.help.text
+msgctxt "03103600.xhp#par_id3154259.59.help.text"
+msgid "end Sub"
+msgstr "end Sub"
+
+#: 03110000.xhp#tit.help.text
+msgid "Comparison Operators"
+msgstr "Operadores de comparación"
+
+#: 03110000.xhp#hd_id3155555.1.help.text
+msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
+msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Operadores de comparación</link>"
+
+#: 03110000.xhp#par_id3153528.2.help.text
+msgid "The available comparison operators are described here."
+msgstr "Los operadores de comparación disponibles se describen aquí."
+
+#: 03070300.xhp#tit.help.text
+msgid "\"+\" Operator [Runtime]"
+msgstr "Operador \"+\" [Ejecución]"
+
+#: 03070300.xhp#bm_id3145316.help.text
+msgid "<bookmark_value>\"+\" operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>operador \"+\";operadores matemáticos</bookmark_value>"
+
+#: 03070300.xhp#hd_id3145316.1.help.text
+msgid "<link href=\"text/sbasic/shared/03070300.xhp\">\"+\" Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070300.xhp\">Operador \"+\" [Ejecución]</link>"
+
+#: 03070300.xhp#par_id3145068.2.help.text
+msgid "Adds or combines two expressions."
+msgstr "Suma o combina dos expresiones."
+
+#: 03070300.xhp#hd_id3144500.3.help.text
+msgctxt "03070300.xhp#hd_id3144500.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03070300.xhp#par_id3150358.4.help.text
+msgid "Result = Expression1 + Expression2"
+msgstr "Resultado = Expresión1 + Expresión2"
+
+#: 03070300.xhp#hd_id3150400.5.help.text
+msgctxt "03070300.xhp#hd_id3150400.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03070300.xhp#par_id3154123.6.help.text
+msgid "<emph>Result:</emph> Any numerical expression that contains the result of the addition."
+msgstr "<emph>Resultado:</emph> Cualquier expresión numérica que contenga el resultado de la suma."
+
+#: 03070300.xhp#par_id3150870.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to combine or to add."
+msgstr "<emph>Expresión1, Expresión2:</emph> Cualquier expresión numérica que desee combinar o sumar."
+
+#: 03070300.xhp#hd_id3153969.8.help.text
+msgctxt "03070300.xhp#hd_id3153969.8.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03070300.xhp#par_id3150440.9.help.text
+msgid "Sub ExampleAddition1"
+msgstr "Sub EjemploSuma1"
+
+#: 03070300.xhp#par_id3159254.10.help.text
+msgid "Print 5 + 5"
+msgstr "Print 5 + 5"
+
+#: 03070300.xhp#par_id3152460.11.help.text
+msgctxt "03070300.xhp#par_id3152460.11.help.text"
+msgid "End sub"
+msgstr "End sub"
+
+#: 03070300.xhp#par_id3153191.13.help.text
+msgid "Sub ExampleAddition2"
+msgstr "Sub EjemploSuma2"
+
+#: 03070300.xhp#par_id3146120.14.help.text
+msgctxt "03070300.xhp#par_id3146120.14.help.text"
+msgid "Dim iValue1 as Integer"
+msgstr "Dim iValor1 as Integer"
+
+#: 03070300.xhp#par_id3155411.15.help.text
+msgctxt "03070300.xhp#par_id3155411.15.help.text"
+msgid "Dim iValue2 as Integer"
+msgstr "Dim iValor2 as Integer"
+
+#: 03070300.xhp#par_id3147435.16.help.text
+msgctxt "03070300.xhp#par_id3147435.16.help.text"
+msgid "iValue1 = 5"
+msgstr "iValor1 = 5"
+
+#: 03070300.xhp#par_id3163710.17.help.text
+msgctxt "03070300.xhp#par_id3163710.17.help.text"
+msgid "iValue2 = 10"
+msgstr "iValor2 = 10"
+
+#: 03070300.xhp#par_id3151118.18.help.text
+msgid "Print iValue1 + iValue2"
+msgstr "Print iValor1 + iValor2"
+
+#: 03070300.xhp#par_id3146974.19.help.text
+msgctxt "03070300.xhp#par_id3146974.19.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03130600.xhp#tit.help.text
+msgid "Wait Statement [Runtime]"
+msgstr "Instrucción Wait [Ejecución]"
+
+#: 03130600.xhp#bm_id3154136.help.text
+msgid "<bookmark_value>Wait statement</bookmark_value>"
+msgstr "<bookmark_value>Wait;instrucción</bookmark_value>"
+
+#: 03130600.xhp#hd_id3154136.1.help.text
+msgid "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Wait Statement [Runtime]\">Wait Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Wait Statement [Runtime]\">Instrucción Wait [Ejecución]</link>"
+
+#: 03130600.xhp#par_id3149236.2.help.text
+msgid "Interrupts the program execution for the amount of time that you specify in milliseconds."
+msgstr "Interrumpe la ejecución del programa durante la cantidad de tiempo especificada en milisegundos."
+
+#: 03130600.xhp#hd_id3143229.3.help.text
+msgctxt "03130600.xhp#hd_id3143229.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03130600.xhp#par_id3150669.4.help.text
+msgid "Wait millisec"
+msgstr "Wait miliseg"
+
+#: 03130600.xhp#hd_id3148943.5.help.text
+msgctxt "03130600.xhp#hd_id3148943.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03130600.xhp#par_id3154924.6.help.text
+msgid "<emph>millisec:</emph> Numeric expression that contains the amount of time (in milliseconds) to wait before the program is executed."
+msgstr "<emph>miliseg:</emph> Expresión numérica que contenga la cantidad de tiempo (en milisegundos) que se haya de esperar antes de que se ejecute el programa."
+
+#: 03130600.xhp#hd_id3150541.7.help.text
+msgctxt "03130600.xhp#hd_id3150541.7.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03130600.xhp#par_id3154138.8.help.text
+msgctxt "03130600.xhp#par_id3154138.8.help.text"
+msgid "Sub ExampleWait"
+msgstr "Sub EjemploWait"
+
+#: 03130600.xhp#par_id3154367.9.help.text
+msgctxt "03130600.xhp#par_id3154367.9.help.text"
+msgid "Dim lTick As Long"
+msgstr "Dim lTick As Long"
+
+#: 03130600.xhp#par_id3154909.10.help.text
+msgctxt "03130600.xhp#par_id3154909.10.help.text"
+msgid "lTick = GetSystemTicks()"
+msgstr "lTick = GetSystemTicks()"
+
+#: 03130600.xhp#par_id3151042.11.help.text
+msgctxt "03130600.xhp#par_id3151042.11.help.text"
+msgid "wait 2000"
+msgstr "wait 2000"
+
+#: 03130600.xhp#par_id3154217.12.help.text
+msgctxt "03130600.xhp#par_id3154217.12.help.text"
+msgid "lTick = (GetSystemTicks() - lTick)"
+msgstr "lTick = (GetSystemTicks() - lTick)"
+
+#: 03130600.xhp#par_id3156214.13.help.text
+msgctxt "03130600.xhp#par_id3156214.13.help.text"
+msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
+msgstr "MsgBox \"\" & lTick & \" Ticks\" ,0,\"La pausa ha durado\""
+
+#: 03130600.xhp#par_id3148922.14.help.text
+msgctxt "03130600.xhp#par_id3148922.14.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03020403.xhp#tit.help.text
+msgid "CurDir Function [Runtime]"
+msgstr "Función CurDir [Ejecución]"
+
+#: 03020403.xhp#bm_id3153126.help.text
+msgid "<bookmark_value>CurDir function</bookmark_value>"
+msgstr "<bookmark_value>CurDir;función</bookmark_value>"
+
+#: 03020403.xhp#hd_id3153126.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020403.xhp\">CurDir Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020403.xhp\">Función CurDir [Ejecución]</link>"
+
+#: 03020403.xhp#par_id3156343.2.help.text
+msgid "Returns a variant string that represents the current path of the specified drive."
+msgstr "Devuelve una cadena variante que representa la ruta de acceso actual de la unidad especificada."
+
+#: 03020403.xhp#hd_id3149457.3.help.text
+msgctxt "03020403.xhp#hd_id3149457.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03020403.xhp#par_id3153381.4.help.text
+msgid "CurDir [(Text As String)]"
+msgstr "CurDir [(Texto As String)] "
+
+#: 03020403.xhp#hd_id3154366.5.help.text
+msgctxt "03020403.xhp#hd_id3154366.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03020403.xhp#par_id3156281.6.help.text
+msgctxt "03020403.xhp#par_id3156281.6.help.text"
+msgid "String"
+msgstr "Cadena"
+
+#: 03020403.xhp#hd_id3156423.7.help.text
+msgctxt "03020403.xhp#hd_id3156423.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03020403.xhp#par_id3153193.8.help.text
+msgid "<emph>Text:</emph> Any string expression that specifies an existing drive (for example, \"C\" for the first partition of the first hard drive)."
+msgstr "<emph>Texto:</emph> Cualquier expresión de cadena que especifique una unidad existente (por ejemplo, \"C\" para la primera partición de la primera unidad de disco duro)."
+
+#: 03020403.xhp#par_id3155133.9.help.text
+msgid "If no drive is specified or if the drive is a zero-length string (\"\"), CurDir returns the path for the current drive. $[officename] Basic reports an error if the syntax of the drive description is incorrect, the drive does not exist, or if the drive letter occurs after the letter defined in the CONFIG.SYS with the Lastdrive statement."
+msgstr "Si no se ha especificado ninguna unidad o ésta es una cadena de longitud cero (\"\"), CurDir devuelve la ruta de acceso para la unidad actual. $[officename] Basic informa de un error si la sintaxis de la descripción de la unidad es incorrecta, ésta no existe o su letra es posterior a la definida en CONFIG.SYS con la instrucción Lastdrive."
+
+#: 03020403.xhp#par_id3150010.10.help.text
+msgid "This function is not case-sensitive."
+msgstr "Esta función no distingue entre mayúsculas y minúsculas."
+
+#: 03020403.xhp#hd_id3155411.11.help.text
+msgctxt "03020403.xhp#hd_id3155411.11.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03020403.xhp#par_id3151113.12.help.text
+msgid "Sub ExampleCurDir"
+msgstr "Sub EjemploCurDir"
+
+#: 03020403.xhp#par_id3155306.13.help.text
+msgctxt "03020403.xhp#par_id3155306.13.help.text"
+msgid "Dim sDir1 as String , sDir2 as String"
+msgstr "Dim sDir1 as String , sDir2 as String"
+
+#: 03020403.xhp#par_id3156444.14.help.text
+msgctxt "03020403.xhp#par_id3156444.14.help.text"
+msgid "sDir1 = \"c:\\Test\""
+msgstr "sDir1 = \"c:\\Test\""
+
+#: 03020403.xhp#par_id3147318.15.help.text
+msgctxt "03020403.xhp#par_id3147318.15.help.text"
+msgid "sDir2 = \"d:\\private\""
+msgstr "sDir2 = \"d:\\private\""
+
+#: 03020403.xhp#par_id3154013.16.help.text
+msgctxt "03020403.xhp#par_id3154013.16.help.text"
+msgid "ChDir( sDir1 )"
+msgstr "ChDir( sDir1 )"
+
+#: 03020403.xhp#par_id3153877.17.help.text
+msgctxt "03020403.xhp#par_id3153877.17.help.text"
+msgid "msgbox CurDir"
+msgstr "msgbox CurDir"
+
+#: 03020403.xhp#par_id3144764.18.help.text
+msgctxt "03020403.xhp#par_id3144764.18.help.text"
+msgid "ChDir( sDir2 )"
+msgstr "ChDir( sDir2 )"
+
+#: 03020403.xhp#par_id3147125.19.help.text
+msgctxt "03020403.xhp#par_id3147125.19.help.text"
+msgid "msgbox CurDir"
+msgstr "msgbox CurDir"
+
+#: 03020403.xhp#par_id3149581.20.help.text
+msgctxt "03020403.xhp#par_id3149581.20.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03120201.xhp#tit.help.text
+msgid "Space Function [Runtime]"
+msgstr "Función Space [Ejecución]"
+
+#: 03120201.xhp#bm_id3150499.help.text
+msgid "<bookmark_value>Space function</bookmark_value>"
+msgstr "<bookmark_value>Space;función</bookmark_value>"
+
+#: 03120201.xhp#hd_id3150499.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120201.xhp\" name=\"Space Function [Runtime]\">Space Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120201.xhp\" name=\"Space Function [Runtime]\">Función Space [Ejecución]</link>"
+
+#: 03120201.xhp#par_id3154927.2.help.text
+msgid "Returns a string that consists of a specified amount of spaces."
+msgstr "Devuelve una cadena que se compone de una cantidad determinada de espacios."
+
+#: 03120201.xhp#hd_id3153394.3.help.text
+msgctxt "03120201.xhp#hd_id3153394.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03120201.xhp#par_id3143267.4.help.text
+msgid "Space (n As Long)"
+msgstr "Space (n As Integer)"
+
+#: 03120201.xhp#hd_id3147242.5.help.text
+msgctxt "03120201.xhp#hd_id3147242.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03120201.xhp#par_id3149233.6.help.text
+msgctxt "03120201.xhp#par_id3149233.6.help.text"
+msgid "String"
+msgstr "Cadena"
+
+#: 03120201.xhp#hd_id3156152.7.help.text
+msgctxt "03120201.xhp#hd_id3156152.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03120201.xhp#par_id3143228.8.help.text
+msgid "<emph>n:</emph> Numeric expression that defines the number of spaces in the string. The maximum allowed value of n is 65535."
+msgstr "n: expresión numérica que define el número de espacios en la cadena."
+
+#: 03120201.xhp#hd_id3154760.9.help.text
+msgctxt "03120201.xhp#hd_id3154760.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03120201.xhp#par_id3147560.10.help.text
+msgid "Sub ExampleSpace"
+msgstr "Sub EjemploSpace"
+
+#: 03120201.xhp#par_id3149670.11.help.text
+msgid "Dim sText As String,sOut As String"
+msgstr "Dim sText As String,sOut As String"
+
+#: 03120201.xhp#par_id3154938.12.help.text
+msgid "DIm iLen As Integer"
+msgstr "Dim iLen As Integer"
+
+#: 03120201.xhp#par_id3153525.13.help.text
+msgid "iLen = 10"
+msgstr "iLen = 10"
+
+#: 03120201.xhp#par_id3151211.14.help.text
+msgctxt "03120201.xhp#par_id3151211.14.help.text"
+msgid "sText = \"Las Vegas\""
+msgstr "sText = \"Las Vegas\""
+
+#: 03120201.xhp#par_id3156282.15.help.text
+msgid "sOut = sText & Space(iLen) & sText & Chr(13) &_"
+msgstr "sOut = sText & Space(iLen) & sText & Chr(13) &_"
+
+#: 03120201.xhp#par_id3144760.16.help.text
+msgid "sText & Space(iLen*2) & sText & Chr(13) &_"
+msgstr "sText & Space(iLen*2) & sText & Chr(13) &_"
+
+#: 03120201.xhp#par_id3159149.17.help.text
+msgid "sText & Space(iLen*4) & sText & Chr(13)"
+msgstr "sText & Space(iLen*4) & sText & Chr(13)"
+
+#: 03120201.xhp#par_id3154216.18.help.text
+msgid "msgBox sOut,0,\"Info:\""
+msgstr "msgBox sOut,0,\"Información:\""
+
+#: 03120201.xhp#par_id3158409.19.help.text
+msgctxt "03120201.xhp#par_id3158409.19.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03030130.xhp#tit.help.text
+msgid "DatePart Function [Runtime]"
+msgstr "Función DatePart [Ejecución]"
+
+#: 03030130.xhp#bm_id249946.help.text
+msgid "<bookmark_value>DatePart function</bookmark_value>"
+msgstr "<bookmark_value>Función DatePart</bookmark_value>"
+
+#: 03030130.xhp#par_idN10542.help.text
+msgid "<link href=\"text/sbasic/shared/03030130.xhp\">DatePart Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030130.xhp\">Función DatePart [Ejecución]</link>"
+
+#: 03030130.xhp#par_idN10546.help.text
+msgid "The DatePart function returns a specified part of a date."
+msgstr "La función DatePart devuelve una parte concreta de una fecha."
+
+#: 03030130.xhp#par_idN10549.help.text
+msgctxt "03030130.xhp#par_idN10549.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03030130.xhp#par_idN105E8.help.text
+msgid "DatePart (Add, Date [, Week_start [, Year_start]])"
+msgstr "DatePart (Add, Date [, Week_start [, Year_start]])"
+
+#: 03030130.xhp#par_idN105EB.help.text
+msgctxt "03030130.xhp#par_idN105EB.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03030130.xhp#par_idN105EF.help.text
+msgctxt "03030130.xhp#par_idN105EF.help.text"
+msgid "A Variant containing a date."
+msgstr "Variante que contiene una fecha."
+
+#: 03030130.xhp#par_idN105F2.help.text
+msgctxt "03030130.xhp#par_idN105F2.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03030130.xhp#par_idN105F6.help.text
+msgctxt "03030130.xhp#par_idN105F6.help.text"
+msgid "<emph>Add</emph> - A string expression from the following table, specifying the date interval."
+msgstr "<emph>Add</emph>: expresión de cadena de la tabla siguiente que especifica el intervalo de fechas."
+
+#: 03030130.xhp#par_idN10604.help.text
+msgid "<emph>Date</emph> - The date from which the result is calculated."
+msgstr "<emph>Date</emph>: fecha a partir de la cual se calcula el resultado."
+
+#: 03030130.xhp#par_idN10611.help.text
+msgctxt "03030130.xhp#par_idN10611.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03030130.xhp#par_idN10615.help.text
+msgid "Sub example_datepart"
+msgstr "Ejemplo de datepart"
+
+#: 03030130.xhp#par_idN10618.help.text
+msgid "msgbox DatePart(\"ww\", \"12/31/2005\")"
+msgstr "msgbox DatePart(\"ww\", \"12/31/2005\")"
+
+#: 03030130.xhp#par_idN1061B.help.text
+msgctxt "03030130.xhp#par_idN1061B.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03090405.xhp#tit.help.text
+msgid "FreeLibrary Function [Runtime]"
+msgstr "Función FreeLibrary [Ejecución]"
+
+#: 03090405.xhp#bm_id3143270.help.text
+msgid "<bookmark_value>FreeLibrary function</bookmark_value>"
+msgstr "<bookmark_value>FreeLibrary;función</bookmark_value>"
+
+#: 03090405.xhp#hd_id3143270.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary Function [Runtime]\">FreeLibrary Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary Function [Runtime]\">Función FreeLibrary [Ejecución]</link>"
+
+#: 03090405.xhp#par_id3147559.2.help.text
+msgid "Releases DLLs that were loaded by a Declare statement. A released DLL is automatically reloaded if one of its functions is called. See also: <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare\">Declare</link>"
+msgstr "Libera DLL cargadas por una instrucción Declare. Una DLL liberada se volverá a cargar automáticamente si se llama a una de sus funciones. Consulte también: <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare\">Declare</link>"
+
+#: 03090405.xhp#hd_id3148550.3.help.text
+msgctxt "03090405.xhp#hd_id3148550.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03090405.xhp#par_id3153361.4.help.text
+msgid "FreeLibrary (LibName As String)"
+msgstr "FreeLibrary (NombreBilioteca As String)"
+
+#: 03090405.xhp#hd_id3153380.5.help.text
+msgctxt "03090405.xhp#hd_id3153380.5.help.text"
+msgid "Parameters:"
+msgstr "<emph>Parámetro</emph>:"
+
+#: 03090405.xhp#par_id3154138.6.help.text
+msgid "<emph>LibName:</emph> String expression that specifies the name of the DLL."
+msgstr "NombreBiblioteca: Expresión de cadena que especifica el nombre de la DLL."
+
+#: 03090405.xhp#par_id3146923.7.help.text
+msgid "FreeLibrary can only release DLLs that are loaded during Basic runtime."
+msgstr "FreeLibrary sólo puede liberar DLL que se hayan cargado durante el tiempo de ejecución de Basic."
+
+#: 03090405.xhp#hd_id3153363.8.help.text
+msgctxt "03090405.xhp#hd_id3153363.8.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03090405.xhp#par_id3155855.9.help.text
+msgctxt "03090405.xhp#par_id3155855.9.help.text"
+msgid "Declare Sub MyMessageBeep Lib \"user32.dll\" Alias \"MessageBeep\" ( long )"
+msgstr "Declare Sub MiPitidoMensaje Lib \"user32.dll\" Alias \"MessageBeep\" ( long )"
+
+#: 03090405.xhp#par_id3149664.11.help.text
+msgctxt "03090405.xhp#par_id3149664.11.help.text"
+msgid "Sub ExampleDeclare"
+msgstr "Sub EjemploDeclare"
+
+#: 03090405.xhp#par_id3148618.12.help.text
+msgctxt "03090405.xhp#par_id3148618.12.help.text"
+msgid "Dim lValue As Long"
+msgstr "Dim lValor As Long"
+
+#: 03090405.xhp#par_id3147350.13.help.text
+msgctxt "03090405.xhp#par_id3147350.13.help.text"
+msgid "lValue = 5000"
+msgstr "lValor = 5000"
+
+#: 03090405.xhp#par_id3148648.14.help.text
+msgctxt "03090405.xhp#par_id3148648.14.help.text"
+msgid "MyMessageBeep( lValue )"
+msgstr "MiPitidoMensaje( lValor )"
+
+#: 03090405.xhp#par_id3145750.15.help.text
+msgctxt "03090405.xhp#par_id3145750.15.help.text"
+msgid "FreeLibrary(\"user32.dll\" )"
+msgstr "FreeLibrary(\"user32.dll\" )"
+
+#: 03090405.xhp#par_id3149412.16.help.text
+msgctxt "03090405.xhp#par_id3149412.16.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03080502.xhp#tit.help.text
+msgid "Int Function [Runtime]"
+msgstr "Función Int [Ejecución]"
+
+#: 03080502.xhp#bm_id3153345.help.text
+msgid "<bookmark_value>Int function</bookmark_value>"
+msgstr "<bookmark_value>Int;función</bookmark_value>"
+
+#: 03080502.xhp#hd_id3153345.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Int Function [Runtime]\">Int Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Función Int [Runtime]\">Función Int [Ejecución]</link>"
+
+#: 03080502.xhp#par_id3155420.2.help.text
+msgid "Returns the integer portion of a number."
+msgstr "Devuelve la parte entera de un número."
+
+#: 03080502.xhp#hd_id3147559.3.help.text
+msgctxt "03080502.xhp#hd_id3147559.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03080502.xhp#par_id3146795.4.help.text
+msgid "Int (Number)"
+msgstr "Int (Número)"
+
+#: 03080502.xhp#hd_id3149670.5.help.text
+msgctxt "03080502.xhp#hd_id3149670.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03080502.xhp#par_id3150400.6.help.text
+msgctxt "03080502.xhp#par_id3150400.6.help.text"
+msgid "Double"
+msgstr "Doble"
+
+#: 03080502.xhp#hd_id3149656.7.help.text
+msgctxt "03080502.xhp#hd_id3149656.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03080502.xhp#par_id3148797.8.help.text
+msgid "<emph>Number:</emph> Any valid numeric expression."
+msgstr "<emph>Número:</emph> Cualquier expresión númerico valido."
+
+#: 03080502.xhp#hd_id3148672.9.help.text
+msgctxt "03080502.xhp#hd_id3148672.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03080502.xhp#par_id3156214.10.help.text
+msgid "sub ExampleINT"
+msgstr "sub EjemploINT"
+
+#: 03080502.xhp#par_id3125864.11.help.text
+msgid "Print Int(3.99) REM returns the value 3"
+msgstr "Print Int(3.99) REM devuelve el valor 3"
+
+#: 03080502.xhp#par_id3145787.12.help.text
+msgid "Print Int(0) REM returns the value 0"
+msgstr "Print Int(0) REM devuelve el valor 0"
+
+#: 03080502.xhp#par_id3153143.13.help.text
+msgid "Print Int(-3.14159) REM returns the value -4"
+msgstr "Print Int(-3.14159) REM devuelve el valor -4"
+
+#: 03080502.xhp#par_id3152578.14.help.text
+msgctxt "03080502.xhp#par_id3152578.14.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03020409.xhp#tit.help.text
+msgid "GetAttr Function [Runtime]"
+msgstr "Función GetAttr [Ejecución]"
+
+#: 03020409.xhp#bm_id3150984.help.text
+msgid "<bookmark_value>GetAttr function</bookmark_value>"
+msgstr "<bookmark_value>GetAttr;función</bookmark_value>"
+
+#: 03020409.xhp#hd_id3150984.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020409.xhp\" name=\"GetAttr Function [Runtime]\">GetAttr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020409.xhp\" name=\"Función GetAttr [Runtime]\">Función GetAttr [Runtime]</link>"
+
+#: 03020409.xhp#par_id3154347.2.help.text
+msgid "Returns a bit pattern that identifies the file type or the name of a volume or a directory."
+msgstr "Devuelve un patrón de bits que identifica el tipo de archivo o el nombre de un volumen o de un directorio."
+
+#: 03020409.xhp#hd_id3149457.3.help.text
+msgctxt "03020409.xhp#hd_id3149457.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03020409.xhp#par_id3150359.4.help.text
+msgid "GetAttr (Text As String)"
+msgstr "GetAttr (Texto As String)"
+
+#: 03020409.xhp#hd_id3151211.5.help.text
+msgctxt "03020409.xhp#hd_id3151211.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03020409.xhp#par_id3154909.6.help.text
+msgctxt "03020409.xhp#par_id3154909.6.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03020409.xhp#hd_id3145172.7.help.text
+msgctxt "03020409.xhp#hd_id3145172.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03020409.xhp#par_id3151042.8.help.text
+msgctxt "03020409.xhp#par_id3151042.8.help.text"
+msgid "<emph>Text:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>Texto:</emph> Cualquier expresión de cadena que contenga una especificación de archivo inequívoca. También se puede usar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notación URL\">notación URL</link>."
+
+#: 03020409.xhp#par_id3161831.9.help.text
+msgid "This function determines the attributes for a specified file and returns the bit pattern that can help you to identify the following file attributes:"
+msgstr "Esta función determina los atributos de un archivo especificado y devuelve el patrón de bits que puede ayudar a identificar los atributos de archivo siguientes:"
+
+#: 03020409.xhp#hd_id3145364.10.help.text
+msgctxt "03020409.xhp#hd_id3145364.10.help.text"
+msgid "Value"
+msgstr "Valor"
+
+#: 03020409.xhp#par_id3147349.11.help.text
+msgctxt "03020409.xhp#par_id3147349.11.help.text"
+msgid "0 : Normal files."
+msgstr "0 : Archivos normales."
+
+#: 03020409.xhp#par_id3147434.12.help.text
+msgctxt "03020409.xhp#par_id3147434.12.help.text"
+msgid "1 : Read-only files."
+msgstr "1 : Archivos de sólo lectura."
+
+#: 03020409.xhp#par_id3159154.15.help.text
+msgid "8 : Returns the name of the volume"
+msgstr "8 : Devuelve el nombre del volumen"
+
+#: 03020409.xhp#par_id3145271.16.help.text
+msgctxt "03020409.xhp#par_id3145271.16.help.text"
+msgid "16 : Returns the name of the directory only."
+msgstr "16 : Sólo devuelve el nombre del directorio."
+
+#: 03020409.xhp#par_id3153953.17.help.text
+msgctxt "03020409.xhp#par_id3153953.17.help.text"
+msgid "32 : File was changed since last backup (Archive bit)."
+msgstr "32 : El archivo se cambió desde la última copia de seguridad (bit Archive)."
+
+#: 03020409.xhp#par_id3156444.18.help.text
+msgid "If you want to know if a bit of the attribute byte is set, use the following query method:"
+msgstr "Para saber si está activado algún bit de atributo, se utiliza el método de consulta siguiente:"
+
+#: 03020409.xhp#hd_id3153094.19.help.text
+msgctxt "03020409.xhp#hd_id3153094.19.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03020409.xhp#par_id3154491.20.help.text
+msgctxt "03020409.xhp#par_id3154491.20.help.text"
+msgid "Sub ExampleSetGetAttr"
+msgstr "Sub EjemploSetGetAttr"
+
+#: 03020409.xhp#par_id3155415.21.help.text
+msgctxt "03020409.xhp#par_id3155415.21.help.text"
+msgid "On Error Goto ErrorHandler REM Define target for error-handler"
+msgstr "On Error Goto ManejadorError REM Define destino para manejar errores"
+
+#: 03020409.xhp#par_id3154944.22.help.text
+msgctxt "03020409.xhp#par_id3154944.22.help.text"
+msgid "If Dir(\"C:\\test\",16)=\"\" Then MkDir \"C:\\test\""
+msgstr "If Dir(\"C:\\test\",16)=\"\" Then MkDir \"C:\\test\""
+
+#: 03020409.xhp#par_id3151075.23.help.text
+msgctxt "03020409.xhp#par_id3151075.23.help.text"
+msgid "If Dir(\"C:\\test\\autoexec.sav\")=\"\" THEN Filecopy \"c:\\autoexec.bat\", \"c:\\test\\autoexec.sav\""
+msgstr "If Dir(\"C:\\test\\autoexec.sav\")=\"\" THEN Filecopy \"c:\\autoexec.bat\", \"c:\\test\\autoexec.sav\""
+
+#: 03020409.xhp#par_id3149959.24.help.text
+msgctxt "03020409.xhp#par_id3149959.24.help.text"
+msgid "SetAttr \"c:\\test\\autoexec.sav\" ,0"
+msgstr "SetAttr \"c:\\test\\autoexec.sav\" ,0"
+
+#: 03020409.xhp#par_id3153418.25.help.text
+msgctxt "03020409.xhp#par_id3153418.25.help.text"
+msgid "Filecopy \"c:\\autoexec.bat\", \"c:\\test\\autoexec.sav\""
+msgstr "Filecopy \"c:\\autoexec.bat\", \"c:\\temp\\autoexec.sav\""
+
+#: 03020409.xhp#par_id3149122.26.help.text
+msgctxt "03020409.xhp#par_id3149122.26.help.text"
+msgid "SetAttr \"c:\\test\\autoexec.sav\" ,1"
+msgstr "SetAttr \"c:\\test\\autoexec.sav\" 0,1"
+
+#: 03020409.xhp#par_id3154480.27.help.text
+msgctxt "03020409.xhp#par_id3154480.27.help.text"
+msgid "print GetAttr( \"c:\\test\\autoexec.sav\" )"
+msgstr "print GetAttr( \"c:\\test\\autoexec.sav\" )"
+
+#: 03020409.xhp#par_id3150753.28.help.text
+msgctxt "03020409.xhp#par_id3150753.28.help.text"
+msgid "end"
+msgstr "end"
+
+#: 03020409.xhp#par_id3150323.29.help.text
+msgctxt "03020409.xhp#par_id3150323.29.help.text"
+msgid "ErrorHandler:"
+msgstr "ManejadorError:"
+
+#: 03020409.xhp#par_id3154754.30.help.text
+msgctxt "03020409.xhp#par_id3154754.30.help.text"
+msgid "Print Error"
+msgstr "Print Error"
+
+#: 03020409.xhp#par_id3155764.31.help.text
+msgctxt "03020409.xhp#par_id3155764.31.help.text"
+msgid "end"
+msgstr "end"
+
+#: 03020409.xhp#par_id3156382.32.help.text
+msgctxt "03020409.xhp#par_id3156382.32.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03090203.xhp#tit.help.text
+msgid "While...Wend Statement[Runtime]"
+msgstr "Instrucción While...Wend [Ejecución]"
+
+#: 03090203.xhp#bm_id3150400.help.text
+msgid "<bookmark_value>While;While...Wend loop</bookmark_value>"
+msgstr "<bookmark_value>Bucle While;While...Wend</bookmark_value>"
+
+#: 03090203.xhp#hd_id3150400.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement[Runtime]\">While...Wend Statement[Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement[Runtime]\">Instrucción While...Wend [Ejecución]</link>"
+
+#: 03090203.xhp#par_id3151211.2.help.text
+msgid "When a program encounters a While statement, it tests the condition. If the condition is False, the program continues directly following the Wend statement. If the condition is True, the loop is executed until the program finds Wend and then jumps back to the<emph> While </emph>statement. If the condition is still True, the loop is executed again."
+msgstr "Cuando un programa encuentra una instrucción While, comprueba la condición. Si ésta es False, el programa continúa directamente a continuación de la instrucción Wend; Si es True, el bucle se ejecuta hasta que el programa encuentra Wend y después vuelve a la instrucción While . Si la condición sigue siendo cierta, el bucle se ejecuta de nuevo."
+
+#: 03090203.xhp#par_id3151041.3.help.text
+msgid "Unlike the <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop\">Do...Loop</link> statement, you cannot cancel a <emph>While...Wend</emph> loop with <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link>. Never exit a While...Wend loop with <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">GoTo</link>, since this can cause a run-time error."
+msgstr "Al contrario que el bucle <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop\">Do...Loop</link>, <emph>While...Wend</emph> no puede cancelarse con <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link>. No salga nunca de un bucle <emph>While...Wend</emph> con <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">GoTo</link>, ya que ello podría provocar un error de tiempo de ejecución."
+
+#: 03090203.xhp#par_id3145172.4.help.text
+msgid "A Do...Loop is more flexible than a While...Wend."
+msgstr "El uso de <emph>Do...Loop</emph> es más flexible y, por tanto, más recomendable."
+
+#: 03090203.xhp#hd_id3155133.5.help.text
+msgctxt "03090203.xhp#hd_id3155133.5.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03090203.xhp#par_id3147288.6.help.text
+msgid "While Condition [Statement] Wend"
+msgstr "While Condición [Instrucción] Wend"
+
+#: 03090203.xhp#hd_id3153139.7.help.text
+msgctxt "03090203.xhp#hd_id3153139.7.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03090203.xhp#par_id3159153.8.help.text
+msgid "Sub ExampleWhileWend"
+msgstr "Sub EjemploWhileWend"
+
+#: 03090203.xhp#par_id3151114.9.help.text
+msgid "Dim stext As String"
+msgstr "Dim sTexto As String"
+
+#: 03090203.xhp#par_id3153143.10.help.text
+msgid "Dim iRun As Integer"
+msgstr "Dim iEjec As Integer"
+
+#: 03090203.xhp#par_id3155306.11.help.text
+msgid "sText =\"This is a short text\""
+msgstr "sTexto =\"Esto es un texto corto\""
+
+#: 03090203.xhp#par_id3154011.12.help.text
+msgid "iRun = 1"
+msgstr "iEjec = 1"
+
+#: 03090203.xhp#par_id3147215.13.help.text
+msgid "while iRun < Len(sText)"
+msgstr "while iRun < Len(sTexto)"
+
+#: 03090203.xhp#par_id3147427.14.help.text
+msgid "if Mid(sText,iRun,1 )<> \" \" then Mid( sText ,iRun, 1, Chr( 1 + Asc( Mid(sText,iRun,1 )) )"
+msgstr "if Mid(sTexto,iEjec,1 )<> \" \" then Mid( sTexto ,iEjec, 1, Chr( 1 + Asc( Mid(sTexto,iEjec,1 )) )"
+
+#: 03090203.xhp#par_id3149665.15.help.text
+msgid "iRun = iRun + 1"
+msgstr "iRun = iRun + 1"
+
+#: 03090203.xhp#par_id3152939.16.help.text
+msgid "Wend"
+msgstr "Wend"
+
+#: 03090203.xhp#par_id3153189.17.help.text
+msgid "MsgBox sText,0,\"Text encoded\""
+msgstr "MsgBox sTexto,0,\"Texto codificado\""
+
+#: 03090203.xhp#par_id3145251.18.help.text
+msgctxt "03090203.xhp#par_id3145251.18.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03090201.xhp#tit.help.text
+msgid "Do...Loop Statement [Runtime]"
+msgstr "Instrucción Do...Loop [Ejecución]"
+
+#: 03090201.xhp#bm_id3156116.help.text
+msgid "<bookmark_value>Do...Loop statement</bookmark_value><bookmark_value>While; Do loop</bookmark_value><bookmark_value>Until</bookmark_value><bookmark_value>loops</bookmark_value>"
+msgstr "<bookmark_value>Do;instrucción</bookmark_value><bookmark_value>bucle While;Do</bookmark_value><bookmark_value>Until</bookmark_value><bookmark_value>loops</bookmark_value>"
+
+#: 03090201.xhp#hd_id3156116.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop Statement [Runtime]\">Do...Loop Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop Statement [Runtime]\">Instrucción Do...Loop [Ejecución]</link>"
+
+#: 03090201.xhp#par_id3109850.2.help.text
+msgid "Repeats the statements between the Do and the Loop statement while the condition is True or until the condition becomes True."
+msgstr "Repite las instrucciones que haya entre Do y Loop mientras la condición sea cierta o hasta que la condición resulte ser cierta."
+
+#: 03090201.xhp#hd_id3149119.3.help.text
+msgctxt "03090201.xhp#hd_id3149119.3.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 03090201.xhp#par_id3155150.4.help.text
+msgid "Do [{While | Until} condition = True]"
+msgstr "Do [{While | Until} condición = cierta]"
+
+#: 03090201.xhp#par_id3154422.5.help.text
+msgctxt "03090201.xhp#par_id3154422.5.help.text"
+msgid "statement block"
+msgstr "bloque de instrucciones"
+
+#: 03090201.xhp#par_id3150789.6.help.text
+msgctxt "03090201.xhp#par_id3150789.6.help.text"
+msgid "[Exit Do]"
+msgstr "[Exit Do]"
+
+#: 03090201.xhp#par_id3155805.7.help.text
+msgctxt "03090201.xhp#par_id3155805.7.help.text"
+msgid "statement block"
+msgstr "bloque de instrucciones"
+
+#: 03090201.xhp#par_id3145090.8.help.text
+msgctxt "03090201.xhp#par_id3145090.8.help.text"
+msgid "Loop"
+msgstr "Loop"
+
+#: 03090201.xhp#par_id3154749.9.help.text
+msgid "or"
+msgstr "o"
+
+#: 03090201.xhp#par_id3150503.10.help.text
+msgctxt "03090201.xhp#par_id3150503.10.help.text"
+msgid "Do"
+msgstr "Do"
+
+#: 03090201.xhp#par_id3149762.11.help.text
+msgctxt "03090201.xhp#par_id3149762.11.help.text"
+msgid "statement block"
+msgstr "bloque de instrucciones"
+
+#: 03090201.xhp#par_id3150984.12.help.text
+msgctxt "03090201.xhp#par_id3150984.12.help.text"
+msgid "[Exit Do]"
+msgstr "[Exit Do]"
+
+#: 03090201.xhp#par_id3143228.13.help.text
+msgctxt "03090201.xhp#par_id3143228.13.help.text"
+msgid "statement block"
+msgstr "bloque de instrucciones"
+
+#: 03090201.xhp#par_id3149235.14.help.text
+msgid "Loop [{While | Until} condition = True]"
+msgstr "Loop [{While | Until} condición = cierta]"
+
+#: 03090201.xhp#hd_id3156024.15.help.text
+msgid "Parameters/Elements"
+msgstr "Parámetros/Elementos"
+
+#: 03090201.xhp#par_id3156344.16.help.text
+msgid "<emph>Condition:</emph> A comparison, numeric or string expression, that evaluates either True or False."
+msgstr "<emph>Condición:</emph> Una comparación, expresión numérica o de cadena, que se evalúa como cierta o falsa."
+
+#: 03090201.xhp#par_id3149669.17.help.text
+msgid "<emph>Statement block:</emph> Statements that you want to repeat while or until the condition is True."
+msgstr "<emph>Bloque de instrucciones:</emph> Instrucciones que se desee repetir mientras o hasta que la condición resulte ser cierta."
+
+#: 03090201.xhp#par_id3150791.18.help.text
+msgid "The <emph>Do...Loop</emph> statement executes a loop as long as, or until, a certain condition is True. The condition for exiting the loop must be entered following either the <emph>Do</emph> or the <emph>Loop</emph> statement. The following examples are valid combinations:"
+msgstr "La instrucción <emph>Do...Loop</emph> ejecuta un bucle mientras o hasta que una condición concreta sea cierta. La condición para salir del bucle debe introducirse siguiendo las intrucciones de <emph>Do</emph> o <emph>Loop</emph>. Los ejemplos siguientes son combinaciones válidas:"
+
+#: 03090201.xhp#hd_id3154366.19.help.text
+msgctxt "03090201.xhp#hd_id3154366.19.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 03090201.xhp#par_id3145171.20.help.text
+msgid "Do While condition = True"
+msgstr "Do While condición = cierta"
+
+#: 03090201.xhp#par_id3149203.21.help.text
+msgctxt "03090201.xhp#par_id3149203.21.help.text"
+msgid "...statement block"
+msgstr "...bloque de instrucciones"
+
+#: 03090201.xhp#par_id3125864.22.help.text
+msgctxt "03090201.xhp#par_id3125864.22.help.text"
+msgid "Loop"
+msgstr "Loop"
+
+#: 03090201.xhp#par_id3154124.24.help.text
+msgid "The statement block between the Do While and the Loop statements is repeated so long as the condition is true."
+msgstr "El bloque de instrucciones situado entre Do While y Loop se repite mientras la condición siga siendo cierta."
+
+#: 03090201.xhp#par_id3153968.25.help.text
+msgid "Do Until condition = True"
+msgstr "Do Until condición = cierta"
+
+#: 03090201.xhp#par_id3154909.26.help.text
+msgctxt "03090201.xhp#par_id3154909.26.help.text"
+msgid "...statement block"
+msgstr "...bloque de instrucciones"
+
+#: 03090201.xhp#par_id3159151.27.help.text
+msgctxt "03090201.xhp#par_id3159151.27.help.text"
+msgid "Loop"
+msgstr "Loop"
+
+#: 03090201.xhp#par_id3150440.29.help.text
+msgid "The statement block between the Do Until and the Loop statements is repeated if the condition so long as the condition is false."
+msgstr "El bloque de instrucciones situado entre Do Until y Loop se repite mientras la condición sea falsa."
+
+#: 03090201.xhp#par_id3153952.30.help.text
+msgctxt "03090201.xhp#par_id3153952.30.help.text"
+msgid "Do"
+msgstr "Do"
+
+#: 03090201.xhp#par_id3147349.31.help.text
+msgctxt "03090201.xhp#par_id3147349.31.help.text"
+msgid "...statement block"
+msgstr "...bloque de instrucciones"
+
+#: 03090201.xhp#par_id3159153.32.help.text
+msgid "Loop While condition = True"
+msgstr "Loop While condición = cierta"
+
+#: 03090201.xhp#par_id3146985.34.help.text
+msgid "The statement block between the Do and the Loop statements repeats so long as the condition is true."
+msgstr "El bloque de instrucciones situado entre Do y Loop se repite mientras la condición siga siendo cierta."
+
+#: 03090201.xhp#par_id3150488.35.help.text
+msgctxt "03090201.xhp#par_id3150488.35.help.text"
+msgid "Do"
+msgstr "Do"
+
+#: 03090201.xhp#par_id3153189.36.help.text
+msgctxt "03090201.xhp#par_id3153189.36.help.text"
+msgid "...statement block"
+msgstr "...bloque de instrucciones"
+
+#: 03090201.xhp#par_id3155411.37.help.text
+msgid "Loop Until condition = True"
+msgstr "Loop Until condición = cierta"
+
+#: 03090201.xhp#par_id3151117.39.help.text
+msgid "The statement block between the Do and the Loop statements repeats until the condition is true."
+msgstr "El bloque de instrucciones situado entre Do y Loop se repite hasta que la condición sea cierta."
+
+#: 03090201.xhp#par_id3149484.41.help.text
+msgid "Use the <emph>Exit Do</emph> statement to unconditionally end the loop. You can add this statement anywhere in a <emph>Do</emph>...<emph>Loop</emph> statement. You can also define an exit condition using the <emph>If...Then</emph> structure as follows:"
+msgstr "La instrucción <emph>Exit Do</emph> se utiliza para finalizar el bucle incondicionalmente. Esta instrucción se puede añadir en cualquier parte de una estructura <emph>Do</emph>...<emph>Loop</emph>. También puede definir una condición de salida utilizando la estructura <emph>If...Then</emph> de la manera siguiente:"
+
+#: 03090201.xhp#par_id3149262.42.help.text
+msgid "Do..."
+msgstr "Do..."
+
+#: 03090201.xhp#par_id3149298.43.help.text
+msgctxt "03090201.xhp#par_id3149298.43.help.text"
+msgid "statements"
+msgstr "instrucciones"
+
+#: 03090201.xhp#par_id3145646.44.help.text
+msgid "If condition = True Then Exit Do"
+msgstr "If condición = cierta Then Exit Do"
+
+#: 03090201.xhp#par_id3154490.45.help.text
+msgctxt "03090201.xhp#par_id3154490.45.help.text"
+msgid "statements"
+msgstr "instrucciones"
+
+#: 03090201.xhp#par_id3153159.46.help.text
+msgid "Loop..."
+msgstr "Loop..."
+
+#: 03090201.xhp#hd_id3147396.47.help.text
+msgctxt "03090201.xhp#hd_id3147396.47.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 03090201.xhp#par_id3144764.49.help.text
+msgid "Sub ExampleDoLoop"
+msgstr "Sub EjemploDoLoop"
+
+#: 03090201.xhp#par_id3154791.50.help.text
+msgid "Dim sFile As String"
+msgstr "Dim sArchivo As String"
+
+#: 03090201.xhp#par_id3149401.51.help.text
+msgctxt "03090201.xhp#par_id3149401.51.help.text"
+msgid "Dim sPath As String"
+msgstr "Dim sRuta As String"
+
+#: 03090201.xhp#par_id3155600.52.help.text
+msgid "sPath = \"c:\\\""
+msgstr "sRuta = \"c:\\\""
+
+#: 03090201.xhp#par_id3150717.53.help.text
+msgid "sFile = Dir$( sPath ,22)"
+msgstr "sArchivo = Dir$( sRuta ,22)"
+
+#: 03090201.xhp#par_id3146898.54.help.text
+msgctxt "03090201.xhp#par_id3146898.54.help.text"
+msgid "If sFile <> \"\" Then"
+msgstr "If sArchivo <>\"\" Then"
+
+#: 03090201.xhp#par_id3156333.55.help.text
+msgctxt "03090201.xhp#par_id3156333.55.help.text"
+msgid "Do"
+msgstr "Do"
+
+#: 03090201.xhp#par_id3153947.56.help.text
+msgid "MsgBox sFile"
+msgstr "MsgBox sArchivo"
+
+#: 03090201.xhp#par_id3150327.57.help.text
+msgctxt "03090201.xhp#par_id3150327.57.help.text"
+msgid "sFile = Dir$"
+msgstr "sArchivo = Dir$"
+
+#: 03090201.xhp#par_id3150749.58.help.text
+msgctxt "03090201.xhp#par_id3150749.58.help.text"
+msgid "Loop Until sFile = \"\""
+msgstr "Loop Until sArchivo = \"\""
+
+#: 03090201.xhp#par_id3153765.59.help.text
+msgctxt "03090201.xhp#par_id3153765.59.help.text"
+msgid "End If"
+msgstr "End If"
+
+#: 03090201.xhp#par_id3148914.60.help.text
+msgctxt "03090201.xhp#par_id3148914.60.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 01030400.xhp#tit.help.text
+msgid "Organizing Libraries and Modules"
+msgstr "Organizar bibliotecas y módulos"
+
+#: 01030400.xhp#bm_id3148797.help.text
+msgid "<bookmark_value>libraries;organizing</bookmark_value><bookmark_value>modules;organizing</bookmark_value><bookmark_value>copying;modules</bookmark_value><bookmark_value>adding libraries</bookmark_value><bookmark_value>deleting;libraries/modules/dialogs</bookmark_value><bookmark_value>dialogs;organizing</bookmark_value><bookmark_value>moving;modules</bookmark_value><bookmark_value>organizing;modules/libraries/dialogs</bookmark_value><bookmark_value>renaming modules and dialogs</bookmark_value>"
+msgstr "<bookmark_value>bibliotecas;organizando</bookmark_value><bookmark_value>módulos;organizando</bookmark_value><bookmark_value>copiando;modulos</bookmark_value><bookmark_value>agregando bibliotecas</bookmark_value><bookmark_value>quitando;bibliotecas/modules/diálogos</bookmark_value><bookmark_value>diálogos;organizando</bookmark_value><bookmark_value>moviendo;módulos</bookmark_value><bookmark_value>organizando;módulos/bibliotecas/diálogos</bookmark_value><bookmark_value>renombrando módulos y diálogos</bookmark_value>"
+
+#: 01030400.xhp#hd_id3148797.1.help.text
+msgid "<variable id=\"01030400\"><link href=\"text/sbasic/shared/01030400.xhp\">Organizing Libraries and Modules</link></variable>"
+msgstr "<variable id=\"01030400\"><link href=\"text/sbasic/shared/01030400.xhp\">Organizar bibliotecas y módulos</link></variable>"
+
+#: 01030400.xhp#hd_id3150868.4.help.text
+msgid "Organizing Libraries"
+msgstr "Organización de bibliotecas"
+
+#: 01030400.xhp#hd_id3125864.5.help.text
+msgid "Creating a New Library"
+msgstr "Creación de una biblioteca nueva"
+
+#: 01030400.xhp#par_id3152576.6.help.text
+msgctxt "01030400.xhp#par_id3152576.6.help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Seleccione <emph>Herramientas - Macros - Organizar macros - %PRODUCTNAME Basic</emph> y haga clic en <emph>Organizador</emph>, o haga clic en el icono <emph>Seleccionar módulo</emph> en el IDE de StarOffice Basic para abrir el diálogo <emph>Organizador de macros</emph>."
+
+#: 01030400.xhp#par_id3153726.8.help.text
+msgctxt "01030400.xhp#par_id3153726.8.help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr "Pulse en la ficha <emph>Bibliotecas</emph>."
+
+#: 01030400.xhp#par_id3149664.9.help.text
+msgid "Select to where you want to attach the library in the <emph>Location</emph> list. If you select %PRODUCTNAME Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be attached to this document and only available from there."
+msgstr "Seleccione el lugar en que desea anexar la biblioteca en la lista <emph>Ubicación</emph>. Si selecciona Macros y diálogos de %PRODUCTNAME, la biblioteca pertenecerá a la aplicación de $[officename] y quedará disponible para todos los documentos. Si selecciona un documento, la biblioteca se anexará a este documento y sólo estará disponible desde él."
+
+#: 01030400.xhp#par_id3153365.10.help.text
+msgid "Click <emph>New</emph> and insert a name to create a new library."
+msgstr "Pulse en <emph>Nueva</emph> e inserte un nombre para crear una biblioteca nueva."
+
+#: 01030400.xhp#hd_id3147394.48.help.text
+msgid "Appending a Library"
+msgstr "Anexión de una biblioteca"
+
+#: 01030400.xhp#par_id3153157.49.help.text
+msgctxt "01030400.xhp#par_id3153157.49.help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Seleccione <emph>Herramientas - Macros - Organizar macros - %PRODUCTNAME Basic</emph> y haga clic en <emph>Organizador</emph>, o haga clic en el icono <emph>Seleccionar módulo</emph> en el IDE de StarOffice Basic para abrir el diálogo <emph>Organizador de macros</emph>."
+
+#: 01030400.xhp#par_id3146972.50.help.text
+msgctxt "01030400.xhp#par_id3146972.50.help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr "Pulse en la ficha <emph>Bibliotecas</emph>."
+
+#: 01030400.xhp#par_id3145640.51.help.text
+msgid "Select to where you want to append the library in the <emph>Location</emph> list. If you select %PRODUCTNAME Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be appended to this document and only available from there."
+msgstr "Seleccione el lugar en que desea anexar la biblioteca en la lista <emph>Ubicación</emph>. Si selecciona Macros y diálogos de %PRODUCTNAME, la biblioteca pertenecerá a la aplicación de $[officename] y quedará disponible para todos los documentos. Si selecciona un documento, la biblioteca se anexará a este documento y sólo estará disponible desde él."
+
+#: 01030400.xhp#par_id3154253.52.help.text
+msgid "Click <emph>Append</emph> and select an external library to append."
+msgstr "Pulse en <emph>Adjuntar</emph> y seleccione una biblioteca externa que añadir."
+
+#: 01030400.xhp#par_id3154705.53.help.text
+msgid "Select all libraries to be appended in the <emph>Append Libraries</emph> dialog. The dialog displays all libraries that are contained in the selected file."
+msgstr "Seleccione todas las bibliotecas que adjuntar en el diálogo <emph>Añadir biblioteca</emph>. El diálogo muestra todas las bibliotecas que están contenidas en el archivo seleccionado."
+
+#: 01030400.xhp#par_id3163807.54.help.text
+msgid "If you want to insert the library as a reference only check the <emph>Insert as reference (read-only)</emph> box. Read-only libraries are fully functional but cannot be modified in the Basic IDE."
+msgstr "Si desea insertar la biblioteca sólo como referencia, marque la casilla <emph>Insertar como referencia (sólo lectura)</emph>. Las bibliotecas de sólo lectura son completamente funcionales, pero no pueden modificarse desde Basic IDE."
+
+#: 01030400.xhp#par_id3145228.55.help.text
+msgid "Check the <emph>Replace existing libraries</emph> box if you want existing libraries of the same name to be overwritten."
+msgstr "Marque la casilla <emph>Reemplazar bibliotecas existentes</emph> si desea que se sobrescriban las bibliotecas existentes que tienen el mismo nombre."
+
+#: 01030400.xhp#par_id3147004.56.help.text
+msgid "Click <emph>OK</emph> to append the library."
+msgstr "Pulse en <emph>Aceptar</emph> para adjuntar la biblioteca."
+
+#: 01030400.xhp#hd_id3159100.17.help.text
+msgid "Deleting a Library"
+msgstr "Supresión de una biblioteca"
+
+#: 01030400.xhp#par_id3150086.18.help.text
+msgctxt "01030400.xhp#par_id3150086.18.help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Seleccione <emph>Herramientas - Macros - Organizar macros - %PRODUCTNAME Basic</emph> y haga clic en <emph>Organizador</emph>, o haga clic en el icono <emph>Seleccionar módulo</emph> en el IDE de StarOffice Basic para abrir el diálogo <emph>Organizador de macros</emph>."
+
+#: 01030400.xhp#par_id3146808.57.help.text
+msgctxt "01030400.xhp#par_id3146808.57.help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr "Pulse en la ficha <emph>Bibliotecas</emph>."
+
+#: 01030400.xhp#par_id3158212.58.help.text
+msgid "Select the library to be deleted from the list."
+msgstr "Seleccione la biblioteca que se debe eliminar de la lista."
+
+#: 01030400.xhp#par_id3150361.20.help.text
+msgctxt "01030400.xhp#par_id3150361.20.help.text"
+msgid "Click <emph>Delete</emph>."
+msgstr "Pulse en <emph>Borrar</emph>."
+
+#: 01030400.xhp#par_id3152986.19.help.text
+msgid "Deleting a library permanently deletes all existing modules and corresponding procedures and functions."
+msgstr "Nota: En cuanto se borra una biblioteca, todos los módulos existentes y sus SUBS y FUNCIONES correspondientes se borran de forma permanente."
+
+#: 01030400.xhp#par_id3148868.59.help.text
+msgid "You cannot delete the default library named \"Standard\"."
+msgstr "La biblioteca predeterminada \"Standard\" no puede borrarse."
+
+#: 01030400.xhp#par_id3146869.60.help.text
+msgid "If you delete a library that was inserted as reference only the reference is deleted but not the library itself."
+msgstr "Si se borra una biblioteca que se ha insertado como referencia, sólo se borra la referencia pero no la biblioteca en sí."
+
+#: 01030400.xhp#hd_id3147070.21.help.text
+msgid "Organizing Modules and Dialogs"
+msgstr "Organización de módulos y diálogos"
+
+#: 01030400.xhp#hd_id3155265.61.help.text
+msgid "Creating a New Module or Dialog"
+msgstr "Creación de un módulo o diálogo nuevos"
+
+#: 01030400.xhp#par_id3154537.62.help.text
+msgctxt "01030400.xhp#par_id3154537.62.help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Seleccione <emph>Herramientas - Macros - Organizar macros - %PRODUCTNAME Basic</emph> y haga clic en <emph>Organizador</emph>, o haga clic en el icono <emph>Seleccionar módulo</emph> en el IDE de StarOffice Basic para abrir el diálogo <emph>Organizador de macros</emph>."
+
+#: 01030400.xhp#par_id3146781.63.help.text
+msgctxt "01030400.xhp#par_id3146781.63.help.text"
+msgid "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab."
+msgstr "Haga clic en la ficha <emph>Módulos</emph> o la ficha <emph>Diálogos</emph>."
+
+#: 01030400.xhp#par_id3159206.64.help.text
+msgid "Select the library where the module will be inserted and click <emph>New</emph>."
+msgstr "Seleccione la biblioteca en la que se inserta el módulo y haga clic en <emph>Nuevo</emph>."
+
+#: 01030400.xhp#par_id3152389.65.help.text
+msgid "Enter a name for the module or the dialog and click <emph>OK</emph>."
+msgstr "Escriba un nombre para el módulo o el diálogo y pulse <emph>Aceptar</emph>."
+
+#: 01030400.xhp#hd_id3152872.25.help.text
+msgid "Renaming a Module or Dialog"
+msgstr "Cambio de nombre de un módulo o diálogo"
+
+#: 01030400.xhp#par_id3159230.66.help.text
+msgctxt "01030400.xhp#par_id3159230.66.help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Seleccione <emph>Herramientas - Macros - Organizar macros - %PRODUCTNAME Basic</emph> y haga clic en <emph>Organizador</emph>, o haga clic en el icono <emph>Seleccionar módulo</emph> en el IDE de StarOffice Basic para abrir el diálogo <emph>Organizador de macros</emph>."
+
+#: 01030400.xhp#par_id3150046.67.help.text
+msgid "Click the module to be renamed twice, with a pause between the clicks. Enter the new name."
+msgstr "Haga doble clic en el módulo cuyo nombre debe cambiarse, con una pausa entre los clics. Especifique el nombre nuevo."
+
+#: 01030400.xhp#par_id3153801.27.help.text
+msgid "In the Basic IDE, right-click the name of the module or dialog in the tabs at the bottom of the screen, choose <emph>Rename</emph> and type in the new name."
+msgstr "En el IDE de StarOffice Basic, con el botón derecho haga clic en el nombre del módulo o diálogo en las fichas de la parte inferior de la pantalla, seleccione <emph>Cambiar nombre</emph> y escriba el nombre nuevo."
+
+#: 01030400.xhp#par_id3155526.28.help.text
+msgid "Press Enter to confirm your changes."
+msgstr "Pulse Intro para confirmar los cambios."
+
+#: 01030400.xhp#hd_id3146963.29.help.text
+msgid "Deleting a Module or Dialog"
+msgstr "Supresión de un módulo o diálogo"
+
+#: 01030400.xhp#par_id3147547.68.help.text
+msgctxt "01030400.xhp#par_id3147547.68.help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Seleccione <emph>Herramientas - Macros - Organizar macros - %PRODUCTNAME Basic</emph> y haga clic en <emph>Organizador</emph>, o haga clic en el icono <emph>Seleccionar módulo</emph> en el IDE de StarOffice Basic para abrir el diálogo <emph>Organizador de macros</emph>."
+
+#: 01030400.xhp#par_id3150958.69.help.text
+msgctxt "01030400.xhp#par_id3150958.69.help.text"
+msgid "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab."
+msgstr "Haga clic en la ficha <emph>Módulos</emph> o la ficha <emph>Diálogos</emph>."
+
+#: 01030400.xhp#par_id3149870.30.help.text
+msgid "Select the module or dialog to be deleted from the list. Double-click an entry to reveal sub-entries, if required."
+msgstr "Seleccione el módulo o diálogo que se debe eliminar de la lista. Haga doble clic para mostrar las subentradas, si es necesario."
+
+#: 01030400.xhp#par_id3147248.32.help.text
+msgctxt "01030400.xhp#par_id3147248.32.help.text"
+msgid "Click <emph>Delete</emph>."
+msgstr "Pulse <emph>Borrar</emph>."
+
+#: 01030400.xhp#par_id3151339.31.help.text
+msgid "Deleting a module permanently deletes all existing procedures and functions in that module."
+msgstr "Al borrar un módulo se borran permanentemente todos sus procedimientos y funciones."
+
+#: 01030400.xhp#hd_id3151392.33.help.text
+msgid "Organizing Projects among Documents or Templates"
+msgstr "Organización de proyectos entre documentos y plantillas"
+
+#: 01030400.xhp#hd_id3156400.36.help.text
+msgid "Moving or copying modules between documents, templates and the application."
+msgstr "Desplazamiento o copia de módulos entre documentos, plantillas y la aplicación."
+
+#: 01030400.xhp#par_id3146819.37.help.text
+msgid "Open all documents or templates among which you want to move or copy the modules or dialogs."
+msgstr "Abra todos los documentos o plantillas entre los que desee desplazar o copiar módulos o diálogos."
+
+#: 01030400.xhp#par_id3149319.38.help.text
+msgctxt "01030400.xhp#par_id3149319.38.help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Seleccione <emph>Herramientas - Macros - Organizar macros - %PRODUCTNAME Basic</emph> y haga clic en <emph>Organizador</emph>, o haga clic en el icono <emph>Seleccionar módulo</emph> en el IDE de StarOffice Basic para abrir el diálogo <emph>Organizador de macros</emph>."
+
+#: 01030400.xhp#par_id3145637.39.help.text
+msgid "To move a module or dialog to another document, click the corresponding object in the list and drag it to the desired position. A horizontal line indicates the target position of the current object while dragging. Hold the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while dragging to copy the object instead of moving it."
+msgstr "Para colocar un módulo o diálogo en otro documento, haga clic en el objeto pertinente de la lista y arrástrelo a la nueva posición. Una línea horizontal indica la posición de destino del objeto seleccionado mientras se arrastra. Mantenga pulsada la tecla <switchinline select=\"sys\"><caseinline select=\"MAC\">Opción </caseinline><defaultinline>Control</defaultinline></switchinline> mientras arrastra para copiar el objeto en lugar de desplazarlo."
+
+#: 03080103.xhp#tit.help.text
+msgid "Sin Function [Runtime]"
+msgstr "Función Sin [Ejecución]"
+
+#: 03080103.xhp#bm_id3153896.help.text
+msgid "<bookmark_value>Sin function</bookmark_value>"
+msgstr "<bookmark_value>Sin;función</bookmark_value>"
+
+#: 03080103.xhp#hd_id3153896.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080103.xhp\" name=\"Sin Function [Runtime]\">Sin Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080103.xhp\" name=\"Función Sin [Runtime]\">Función Sin [Ejecución]</link>"
+
+#: 03080103.xhp#par_id3149456.2.help.text
+msgid "Returns the sine of an angle. The angle is specified in radians. The result lies between -1 and 1."
+msgstr "Devuelve el seno de un ángulo. El ángulo se especifica en radianes. El resultado está entre -1 y 1."
+
+#: 03080103.xhp#par_id3153379.3.help.text
+msgid "Using the angle Alpha, the Sin Function returns the ratio of the length of the opposite side of an angle to the length of the hypotenuse in a right-angled triangle."
+msgstr "Usando el ángulo Alfa, la función Sin devuelve el coeficiente de la longitud del lado opuesto de un ángulo con la longitud de la hipotenusa en un triángulo rectángulo."
+
+#: 03080103.xhp#par_id3148798.4.help.text
+msgid "Sin(Alpha) = side opposite the angle/hypotenuse"
+msgstr "Sin(Alfa) = lado opuesto al ángulo/hipotenusa"
+
+#: 03080103.xhp#hd_id3147230.5.help.text
+msgctxt "03080103.xhp#hd_id3147230.5.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03080103.xhp#par_id3154909.6.help.text
+msgid "Sin (Number)"
+msgstr "Sin (Número)"
+
+#: 03080103.xhp#hd_id3156214.7.help.text
+msgctxt "03080103.xhp#hd_id3156214.7.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03080103.xhp#par_id3150870.8.help.text
+msgctxt "03080103.xhp#par_id3150870.8.help.text"
+msgid "Double"
+msgstr "Doble"
+
+#: 03080103.xhp#hd_id3155132.9.help.text
+msgctxt "03080103.xhp#hd_id3155132.9.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03080103.xhp#par_id3145786.10.help.text
+msgid "<emph>Number:</emph> Numeric expression that defines the angle in radians that you want to calculate the sine for."
+msgstr "<emph>Número:</emph> Expresión numérica que define el ángulo en radianes para el que se desee calcular el seno."
+
+#: 03080103.xhp#par_id3155413.11.help.text
+msgid "To convert degrees to radians, multiply degrees by Pi/180, and to convert radians to degrees, multiply radians by 180/Pi."
+msgstr "Para convertir grados en radianes, multiplique los grados por Pi/180 y para convertir radianes en grados, multiplique radianes por 180/Pi."
+
+#: 03080103.xhp#par_id3149664.12.help.text
+msgid "grad=(radiant*180)/pi"
+msgstr "grado=(radián*180)/pi"
+
+#: 03080103.xhp#par_id3153143.13.help.text
+msgid "radiant=(grad*pi)/180"
+msgstr "radián=(grado*pi)/180"
+
+#: 03080103.xhp#par_id3151112.14.help.text
+msgctxt "03080103.xhp#par_id3151112.14.help.text"
+msgid "Pi is approximately 3.141593."
+msgstr "Pi es aproximadamente 3,141593."
+
+#: 03080103.xhp#hd_id3163712.15.help.text
+msgctxt "03080103.xhp#hd_id3163712.15.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03080103.xhp#par_id3149482.16.help.text
+msgctxt "03080103.xhp#par_id3149482.16.help.text"
+msgid "REM In this example, the following entry is possible for a right-angled triangle:"
+msgstr "REM En este ejemplo, la entrada siguiente es posible para un triángulo rectángulo:"
+
+#: 03080103.xhp#par_id3148577.17.help.text
+msgid "REM The side opposite the angle and the angle (in degrees) to calculate the length of the hypotenuse:"
+msgstr "REM El lado opuesto al ángulo y éste (en grados) para calcular la longitud de la hipotenusa:"
+
+#: 03080103.xhp#par_id3152941.18.help.text
+msgid "Sub ExampleSine"
+msgstr "Sub EjemploSeno"
+
+#: 03080103.xhp#par_id3150011.19.help.text
+msgid "REM Pi = 3.1415926 is a predefined variable"
+msgstr "REM Pi = 3,1415926 es una variable predefinida"
+
+#: 03080103.xhp#par_id3153159.20.help.text
+msgctxt "03080103.xhp#par_id3153159.20.help.text"
+msgid "Dim d1 as Double"
+msgstr "Dim d1 As Double"
+
+#: 03080103.xhp#par_id3154491.21.help.text
+msgctxt "03080103.xhp#par_id3154491.21.help.text"
+msgid "Dim dAlpha as Double"
+msgstr "Dim dAlpha as Double"
+
+#: 03080103.xhp#par_id3145251.22.help.text
+msgid "d1 = InputBox$ (\"Enter the length of the opposite side: \",\"Opposite Side\")"
+msgstr "d1 = InputBox$ (\"Escriba la longitud del lado opuesto: \",\"Lado opuesto\")"
+
+#: 03080103.xhp#par_id3148456.23.help.text
+msgid "dAlpha = InputBox$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
+msgstr "dAngle = InputBox$ (\"Escriba el ángulo Alfa (en grados): \",\"Alfa\")"
+
+#: 03080103.xhp#par_id3153877.24.help.text
+msgid "Print \"The length of the hypotenuse is\"; (d1 / sin (dAlpha * Pi / 180))"
+msgstr "Print \"La longitud de la hipotenusa es \"; (d1 / sin (dAlpha * Pi / 180))"
+
+#: 03080103.xhp#par_id3150717.25.help.text
+msgctxt "03080103.xhp#par_id3150717.25.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03090409.xhp#tit.help.text
+msgid "Sub Statement [Runtime]"
+msgstr "Instrucción Sub [Ejecución]"
+
+#: 03090409.xhp#bm_id3147226.help.text
+msgid "<bookmark_value>Sub statement</bookmark_value>"
+msgstr "<bookmark_value>Sub;instrucción</bookmark_value>"
+
+#: 03090409.xhp#hd_id3147226.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090409.xhp\" name=\"Sub Statement [Runtime]\">Sub Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090409.xhp\" name=\"Sub Statement [Runtime]\">Instrucción Sub [Ejecución]</link>"
+
+#: 03090409.xhp#par_id3153311.2.help.text
+msgid "Defines a subroutine."
+msgstr "Define una subrutina."
+
+#: 03090409.xhp#hd_id3149416.3.help.text
+msgctxt "03090409.xhp#hd_id3149416.3.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 03090409.xhp#par_idN105E7.help.text
+msgid "Sub Name[(VarName1 [As Type][, VarName2 [As Type][,...]])]"
+msgstr "Sub Nombre [(NombVar1 [As Tipo][, NombVar2 [As Tipo][,...]])]"
+
+#: 03090409.xhp#par_id3147530.5.help.text
+msgctxt "03090409.xhp#par_id3147530.5.help.text"
+msgid "statement block"
+msgstr "bloque de instrucciones"
+
+#: 03090409.xhp#par_id3146795.8.help.text
+msgctxt "03090409.xhp#par_id3146795.8.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03090409.xhp#hd_id3153525.9.help.text
+msgctxt "03090409.xhp#hd_id3153525.9.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03090409.xhp#par_id3150792.10.help.text
+msgid "<emph>Name:</emph> Name of the subroutine ."
+msgstr "<emph>Nombre:</emph> Nombre de la subrutina."
+
+#: 03090409.xhp#par_id3154138.11.help.text
+msgid "<emph>VarName: </emph>Parameter that you want to pass to the subroutine."
+msgstr "<emph>NombVar: </emph>Parámetro que desee pasar a la subrutina."
+
+#: 03090409.xhp#par_id3154908.12.help.text
+msgid "<emph>Type:</emph> Type-declaration key word."
+msgstr "<emph>Tipo:</emph> Palabra clave de declaración de tipo."
+
+#: 03090409.xhp#hd_id3153770.16.help.text
+msgctxt "03090409.xhp#hd_id3153770.16.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03090409.xhp#par_id3151113.17.help.text
+msgctxt "03090409.xhp#par_id3151113.17.help.text"
+msgid "Sub Example"
+msgstr "Sub EjemploShell"
+
+#: 03090409.xhp#par_idN1063F.help.text
+msgid "REM some statements"
+msgstr "REM algunas instrucciones"
+
+#: 03090409.xhp#par_id3154319.19.help.text
+msgctxt "03090409.xhp#par_id3154319.19.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03060400.xhp#tit.help.text
+msgid "Not-Operator [Runtime]"
+msgstr "Operador Not [Ejecución]"
+
+#: 03060400.xhp#bm_id3156024.help.text
+msgid "<bookmark_value>Not operator (logical)</bookmark_value>"
+msgstr "<bookmark_value>Not;operadores lógicos</bookmark_value>"
+
+#: 03060400.xhp#hd_id3156024.1.help.text
+msgid "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not-Operator [Runtime]\">Not-Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Operador Not [Runtime]\">Operador Not [Ejecución]</link>"
+
+#: 03060400.xhp#par_id3159414.2.help.text
+msgid "Negates an expression by inverting the bit values."
+msgstr "Se utiliza para negar una expresión invirtiendo sus valores de bit."
+
+#: 03060400.xhp#hd_id3149457.3.help.text
+msgctxt "03060400.xhp#hd_id3149457.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03060400.xhp#par_id3150360.4.help.text
+msgid "Result = Not Expression"
+msgstr "Resultado = Not Expresión"
+
+#: 03060400.xhp#hd_id3151211.5.help.text
+msgctxt "03060400.xhp#hd_id3151211.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03060400.xhp#par_id3147228.6.help.text
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the negation."
+msgstr "<emph>Resultado:</emph> Cualquier variable numérica que contenga el resultado de la implicación."
+
+#: 03060400.xhp#par_id3154124.7.help.text
+msgid "<emph>Expression:</emph> Any expression that you want to negate."
+msgstr "<emph>Expresión:</emph> Cualquier expresión que desee negar."
+
+#: 03060400.xhp#par_id3150868.8.help.text
+msgid "When a Boolean expression is negated, the value True changes to False, and the value False changes to True."
+msgstr "Cuando se niega una expresión lógica, el valor True cambia a False y viceversa."
+
+#: 03060400.xhp#par_id3145785.9.help.text
+msgid "In a bitwise negation each individual bit is inverted."
+msgstr "En una negación entre bits se invierten todos los bits individualmente."
+
+#: 03060400.xhp#hd_id3153093.10.help.text
+msgctxt "03060400.xhp#hd_id3153093.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03060400.xhp#par_id3153143.11.help.text
+msgid "Sub ExampleNot"
+msgstr "Sub EjemploNot"
+
+#: 03060400.xhp#par_id3147317.12.help.text
+msgctxt "03060400.xhp#par_id3147317.12.help.text"
+msgid "Dim vA as Variant, vB as Variant, vC as Variant, vD as Variant"
+msgstr "Dim vA as Variant, vB as Variant, vC as Variant, vD as Variant"
+
+#: 03060400.xhp#par_id3145274.13.help.text
+msgctxt "03060400.xhp#par_id3145274.13.help.text"
+msgid "Dim vOut as Variant"
+msgstr "Dim vOut as Variant"
+
+#: 03060400.xhp#par_id3153363.14.help.text
+msgctxt "03060400.xhp#par_id3153363.14.help.text"
+msgid "vA = 10: vB = 8: vC = 6: vD = Null"
+msgstr "vA = 10: vB = 8: vC = 6: vD = Null"
+
+#: 03060400.xhp#par_id3145749.15.help.text
+msgid "vOut = Not vA REM Returns -11"
+msgstr "vOut = Not vA REM Devuelve -11"
+
+#: 03060400.xhp#par_id3148645.16.help.text
+msgid "vOut = Not(vC > vD) REM Returns -1"
+msgstr "vOut = Not(vC > vD) REM devuelve -1"
+
+#: 03060400.xhp#par_id3156441.17.help.text
+msgid "vOut = Not(vB > vA) REM Returns -1"
+msgstr "vOut = Not(vB > vA) REM Devuelve -1"
+
+#: 03060400.xhp#par_id3152596.18.help.text
+msgid "vOut = Not(vA > vB) REM Returns 0"
+msgstr "vOut = Not(vA > vB) REM Devuelve 0"
+
+#: 03060400.xhp#par_id3154319.19.help.text
+msgctxt "03060400.xhp#par_id3154319.19.help.text"
+msgid "end Sub"
+msgstr "end Sub"
+
+#: 03103300.xhp#tit.help.text
+msgid "Option Explicit Statement [Runtime]"
+msgstr "Instrucción Option Explicit [Ejecución]"
+
+#: 03103300.xhp#bm_id3145090.help.text
+msgid "<bookmark_value>Option Explicit statement</bookmark_value>"
+msgstr "<bookmark_value>Option Explicit;instrucción</bookmark_value>"
+
+#: 03103300.xhp#hd_id3145090.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement [Runtime]\">Option Explicit Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement [Runtime]\">Instrucción Option Explicit [Ejecución]</link>"
+
+#: 03103300.xhp#par_id3148538.2.help.text
+msgid "Specifies that every variable in the program code must be explicitly declared with the Dim statement."
+msgstr "Especifica que todas las variables del código del programa deben declararse de forma explícita con la instrucción Dim."
+
+#: 03103300.xhp#hd_id3149763.3.help.text
+msgctxt "03103300.xhp#hd_id3149763.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03103300.xhp#par_id3149514.4.help.text
+msgctxt "03103300.xhp#par_id3149514.4.help.text"
+msgid "Option Explicit"
+msgstr "Option Explicit"
+
+#: 03103300.xhp#hd_id3145315.5.help.text
+msgctxt "03103300.xhp#hd_id3145315.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03103300.xhp#par_id3145172.6.help.text
+msgctxt "03103300.xhp#par_id3145172.6.help.text"
+msgid "This statement must be added before the executable program code in a module."
+msgstr "Esta instrucción debe agregarse antes del código del programa ejecutable en un módulo."
+
+#: 03103300.xhp#hd_id3125864.7.help.text
+msgctxt "03103300.xhp#hd_id3125864.7.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03103300.xhp#par_id3154217.8.help.text
+msgctxt "03103300.xhp#par_id3154217.8.help.text"
+msgid "Option Explicit"
+msgstr "Option Explicit"
+
+#: 03103300.xhp#par_id3156214.9.help.text
+msgid "Sub ExampleExplicit"
+msgstr "Sub EjemploExplicit"
+
+#: 03103300.xhp#par_id3153193.10.help.text
+msgctxt "03103300.xhp#par_id3153193.10.help.text"
+msgid "Dim sVar As String"
+msgstr "Dim sVar As String"
+
+#: 03103300.xhp#par_id3159252.11.help.text
+msgctxt "03103300.xhp#par_id3159252.11.help.text"
+msgid "sVar = \"Las Vegas\""
+msgstr "sVar = \"Las Vegas\""
+
+#: 03103300.xhp#par_id3145787.12.help.text
+msgid "For i% = 1 to 10 REM This results in a run-time error"
+msgstr "For i% = 1 to 10 REM Esto provoca un error en tiempo de ejecución"
+
+#: 03103300.xhp#par_id3152598.13.help.text
+msgid "REM"
+msgstr "REM"
+
+#: 03103300.xhp#par_id3145749.14.help.text
+msgid "Next i%"
+msgstr "Next i%"
+
+#: 03103300.xhp#par_id3150010.15.help.text
+msgctxt "03103300.xhp#par_id3150010.15.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03100900.xhp#tit.help.text
+msgid "CSng Function[Runtime]"
+msgstr "Función CSng [Ejecución]"
+
+#: 03100900.xhp#bm_id3153753.help.text
+msgid "<bookmark_value>CSng function</bookmark_value>"
+msgstr "<bookmark_value>CSng;función</bookmark_value>"
+
+#: 03100900.xhp#hd_id3153753.1.help.text
+msgid "<link href=\"text/sbasic/shared/03100900.xhp\" name=\"CSng Function[Runtime]\">CSng Function[Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100900.xhp\" name=\"CSng Function[Runtime]\">Función CSng [Ejecución]</link>"
+
+#: 03100900.xhp#par_id3149748.2.help.text
+msgid "Converts any string or numeric expression to data type Single."
+msgstr "Convierte cualquier cadena o expresión numérica en el tipo de datos Simple."
+
+#: 03100900.xhp#hd_id3153255.3.help.text
+msgctxt "03100900.xhp#hd_id3153255.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03100900.xhp#par_id3148983.4.help.text
+msgid "CSng (Expression)"
+msgstr "CSng (Expresión)"
+
+#: 03100900.xhp#hd_id3152347.5.help.text
+msgctxt "03100900.xhp#hd_id3152347.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03100900.xhp#par_id3153750.6.help.text
+msgctxt "03100900.xhp#par_id3153750.6.help.text"
+msgid "Single"
+msgstr "Simple"
+
+#: 03100900.xhp#hd_id3146957.7.help.text
+msgctxt "03100900.xhp#hd_id3146957.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03100900.xhp#par_id3153345.8.help.text
+msgctxt "03100900.xhp#par_id3153345.8.help.text"
+msgid "<emph>Expression:</emph> Any string or numeric expression that you want to convert. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
+msgstr "<emph>Expresión:</emph> Cualquier expresión de cadena o numérica que desee convertir. Para convertir una expresión de cadena, el número debe introducirse como texto normal (\"123,5\") usando el formato numérico predeterminado del sistema operativo."
+
+#: 03100900.xhp#hd_id3149514.9.help.text
+msgctxt "03100900.xhp#hd_id3149514.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03100900.xhp#par_id3154142.10.help.text
+msgid "Sub ExampleCSNG"
+msgstr "Sub EjemploCSNG"
+
+#: 03100900.xhp#par_id3147573.11.help.text
+msgctxt "03100900.xhp#par_id3147573.11.help.text"
+msgid "Msgbox CDbl(1234.5678)"
+msgstr "Msgbox CDbl(1234,5678)"
+
+#: 03100900.xhp#par_id3150772.12.help.text
+msgctxt "03100900.xhp#par_id3150772.12.help.text"
+msgid "Msgbox CInt(1234.5678)"
+msgstr "Msgbox CInt(1234,5678)"
+
+#: 03100900.xhp#par_id3147531.13.help.text
+msgctxt "03100900.xhp#par_id3147531.13.help.text"
+msgid "Msgbox CLng(1234.5678)"
+msgstr "Msgbox CLng(1234,5678)"
+
+#: 03100900.xhp#par_id3147265.14.help.text
+msgctxt "03100900.xhp#par_id3147265.14.help.text"
+msgid "Msgbox CSng(1234.5678)"
+msgstr "Msgbox CSng(1234,5678)"
+
+#: 03100900.xhp#par_id3159414.15.help.text
+msgctxt "03100900.xhp#par_id3159414.15.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 01020200.xhp#tit.help.text
+msgid "Using Objects"
+msgstr "Uso de objetos"
+
+#: 01020200.xhp#hd_id3145645.1.help.text
+msgid "<variable id=\"01020200\"><link href=\"text/sbasic/shared/01020200.xhp\">Using the Object Catalog</link></variable>"
+msgstr "<variable id=\"01020200\"><link href=\"text/sbasic/shared/01020200.xhp\">Uso del catálogo de objetos</link></variable>"
+
+#: 01020200.xhp#par_id3153707.76.help.text
+msgid "The object catalog provides an overview of all modules and dialogs you have created in $[officename]."
+msgstr "El catálogo de objetos proporciona un resumen de todos los módulos y diálogos que se han creado en $[officename]."
+
+#: 01020200.xhp#par_id3147346.78.help.text
+msgid "Click the <emph>Object Catalog</emph> icon <image id=\"img_id3147341\" src=\"cmd/sc_objectcatalog.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147341\">Icon</alt></image> in the Macro toolbar to display the object catalog."
+msgstr "Pulse en el icono <emph>Catálogo de objetos</emph> <image id=\"img_id3147341\" src=\"cmd/sc_objectcatalog.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147341\">Icono</alt></image>de la barra de herramientas Macro para que éste se muestre."
+
+#: 01020200.xhp#par_id3155114.79.help.text
+msgid "The dialog shows a list of all existing objects in a hierarchical representation. Double-clicking a list entry opens its subordinate objects."
+msgstr "El diálogo muestra una lista de todos los objetos existentes en una representación jerárquica. Pulse dos veces en una entrada de la lista para que se abran sus objetos subordinados."
+
+#: 01020200.xhp#par_id3150786.83.help.text
+msgid "To display a certain module in the Editor or to position the cursor in a selected SUB or FUNCTION, select the corresponding entry and click the <emph>Show</emph> icon <image id=\"img_id3149527\" src=\"basctl/res/im01.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3149527\">Icon</alt></image>."
+msgstr "Para que se muestre un módulo concreto en el Editor o para situar el cursor en un SUB o FUNCIÓN seleccionados, seleccione la entrada correspondiente y pulse en el icono <emph>Mostrar</emph> <image id=\"img_id3149527\" src=\"basctl/res/im01.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3149527\">Icono</alt></image>."
+
+#: 01020200.xhp#par_id3153266.81.help.text
+msgid "Click the (X) icon in the title bar to close the object catalog."
+msgstr "Pulse en el icono (X) de la barra de título para que se cierre el catálogo de objetos."
+
+#: 03030203.xhp#tit.help.text
+msgid "Now Function [Runtime]"
+msgstr "Función Now [Ejecución]"
+
+#: 03030203.xhp#bm_id3149416.help.text
+msgid "<bookmark_value>Now function</bookmark_value>"
+msgstr "<bookmark_value>Now;función</bookmark_value>"
+
+#: 03030203.xhp#hd_id3149416.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030203.xhp\" name=\"Now Function [Runtime]\">Now Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030203.xhp\" name=\"Función Now [Runtime]\">Función Now [Ejecución]</link>"
+
+#: 03030203.xhp#par_id3149670.2.help.text
+msgid "Returns the current system date and time as a <emph>Date</emph> value."
+msgstr "Devuelve la fecha y hora del sistema como valor de tipo <emph>Date</emph>."
+
+#: 03030203.xhp#hd_id3149456.3.help.text
+msgctxt "03030203.xhp#hd_id3149456.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03030203.xhp#par_id3149655.4.help.text
+msgid "Now"
+msgstr "Now"
+
+#: 03030203.xhp#hd_id3154366.5.help.text
+msgctxt "03030203.xhp#hd_id3154366.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03030203.xhp#par_id3154909.6.help.text
+msgctxt "03030203.xhp#par_id3154909.6.help.text"
+msgid "Date"
+msgstr "Fecha"
+
+#: 03030203.xhp#hd_id3147229.7.help.text
+msgctxt "03030203.xhp#hd_id3147229.7.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03030203.xhp#par_id3145172.8.help.text
+msgid "Sub ExampleNow"
+msgstr "Sub EjemploNow"
+
+#: 03030203.xhp#par_id3150870.9.help.text
+msgid "msgbox \"It is now \" & Now"
+msgstr "msgbox \"Ahora son las \" & Now"
+
+#: 03030203.xhp#par_id3145787.10.help.text
+msgctxt "03030203.xhp#par_id3145787.10.help.text"
+msgid "End sub"
+msgstr "End sub"
+
+#: 03131400.xhp#tit.help.text
+msgid "TwipsPerPixelY Function [Runtime]"
+msgstr "Función TwipsPerPixelY [Ejecución]"
+
+#: 03131400.xhp#bm_id3150040.help.text
+msgid "<bookmark_value>TwipsPerPixelY function</bookmark_value>"
+msgstr "<bookmark_value>TwipsPerPixelY;función</bookmark_value>"
+
+#: 03131400.xhp#hd_id3150040.1.help.text
+msgid "<link href=\"text/sbasic/shared/03131400.xhp\" name=\"TwipsPerPixelY Function [Runtime]\">TwipsPerPixelY Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131400.xhp\" name=\"TwipsPerPixelY Function [Runtime]\">Función TwipsPerPixelY [Ejecución]</link>"
+
+#: 03131400.xhp#par_id3154186.2.help.text
+msgid "Returns the number of twips that represent the height of a pixel."
+msgstr "Devuelve el número de twips que representan la altura de un píxel."
+
+#: 03131400.xhp#hd_id3145090.3.help.text
+msgctxt "03131400.xhp#hd_id3145090.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03131400.xhp#par_id3153681.4.help.text
+msgid "n = TwipsPerPixelY"
+msgstr "n = TwipsPerPixelY"
+
+#: 03131400.xhp#hd_id3148473.5.help.text
+msgctxt "03131400.xhp#hd_id3148473.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03131400.xhp#par_id3154306.6.help.text
+msgctxt "03131400.xhp#par_id3154306.6.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03131400.xhp#hd_id3149235.7.help.text
+msgctxt "03131400.xhp#hd_id3149235.7.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03131400.xhp#par_id3150503.8.help.text
+msgctxt "03131400.xhp#par_id3150503.8.help.text"
+msgid "Sub ExamplePixelTwips"
+msgstr "Sub EjemploPixelTwips"
+
+#: 03131400.xhp#par_id3154142.9.help.text
+msgctxt "03131400.xhp#par_id3154142.9.help.text"
+msgid "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
+msgstr "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Tamaño de píxel\""
+
+#: 03131400.xhp#par_id3148944.10.help.text
+msgctxt "03131400.xhp#par_id3148944.10.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03020414.xhp#tit.help.text
+msgid "SetAttr Statement [Runtime]"
+msgstr "Instrucción SetAttr [Ejecución]"
+
+#: 03020414.xhp#bm_id3147559.help.text
+msgid "<bookmark_value>SetAttr statement</bookmark_value>"
+msgstr "<bookmark_value>SetAttr;instrucción</bookmark_value>"
+
+#: 03020414.xhp#hd_id3147559.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020414.xhp\" name=\"SetAttr Statement [Runtime]\">SetAttr Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020414.xhp\" name=\"Instrucción SetAttr [Runtime]\">Instrucción SetAttr [Ejecución]</link>"
+
+#: 03020414.xhp#par_id3147264.2.help.text
+msgid "Sets the attribute information for a specified file."
+msgstr "Configura la información de atributo de un archivo especificado."
+
+#: 03020414.xhp#hd_id3150359.3.help.text
+msgctxt "03020414.xhp#hd_id3150359.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03020414.xhp#par_id3154365.4.help.text
+msgid "SetAttr FileName As String, Attribute As Integer"
+msgstr "SetAttr NombreArchivo As String, Atributo As Integer"
+
+#: 03020414.xhp#hd_id3125863.5.help.text
+msgctxt "03020414.xhp#hd_id3125863.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03020414.xhp#par_id3154909.6.help.text
+msgid "FileName: Name of the file, including the path, that you want to test attributes of. If you do not enter a path, <emph>SetAttr</emph> searches for the file in the current directory. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "NombreArchivo: Nombre del archivo, incluida la ruta de acceso, cuyos atributos se desee comprobar. Si no se escribe ninguna ruta de acceso, <emph>SetAttr</emph> busca el archivo en el directorio actual. También se puede usar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notación URL\">notación URL</link>."
+
+#: 03020414.xhp#par_id3153192.7.help.text
+msgid "<emph>Attribute:</emph> Bit pattern defining the attributes that you want to set or to clear:"
+msgstr "<emph>Atributo:</emph> Patrón de bits que define los atributos que se desea activar o desactivar:"
+
+#: 03020414.xhp#par_id3145786.8.help.text
+msgid "<emph>Value</emph>"
+msgstr "<emph>Valor</emph>"
+
+#: 03020414.xhp#par_id3152596.9.help.text
+msgctxt "03020414.xhp#par_id3152596.9.help.text"
+msgid "0 : Normal files."
+msgstr "0 : Archivos normales."
+
+#: 03020414.xhp#par_id3149262.10.help.text
+msgctxt "03020414.xhp#par_id3149262.10.help.text"
+msgid "1 : Read-only files."
+msgstr "1 : Archivos de sólo lectura."
+
+#: 03020414.xhp#par_id3152576.13.help.text
+msgctxt "03020414.xhp#par_id3152576.13.help.text"
+msgid "32 : File was changed since last backup (Archive bit)."
+msgstr "32 : El archivo se cambió desde la última copia de seguridad (bit Archive)."
+
+#: 03020414.xhp#par_id3153093.14.help.text
+msgid "You can set multiple attributes by combining the respective values with a logic OR statement."
+msgstr "Puede establecer varios atributos combinando los valores respectivos con una instrucción OR lógica."
+
+#: 03020414.xhp#hd_id3147434.15.help.text
+msgctxt "03020414.xhp#hd_id3147434.15.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03020414.xhp#par_id3154012.16.help.text
+msgctxt "03020414.xhp#par_id3154012.16.help.text"
+msgid "Sub ExampleSetGetAttr"
+msgstr "Sub EjemploSetGetAttr"
+
+#: 03020414.xhp#par_id3148645.17.help.text
+msgctxt "03020414.xhp#par_id3148645.17.help.text"
+msgid "On Error Goto ErrorHandler REM Define target for error-handler"
+msgstr "On Error Goto ManejadorError REM Define destino para manejar errores"
+
+#: 03020414.xhp#par_id3145647.18.help.text
+msgctxt "03020414.xhp#par_id3145647.18.help.text"
+msgid "If Dir(\"C:\\test\",16)=\"\" Then MkDir \"C:\\test\""
+msgstr "If Dir(\"C:\\test\",16)=\"\" Then MkDir \"C:\\test\""
+
+#: 03020414.xhp#par_id3147126.19.help.text
+msgctxt "03020414.xhp#par_id3147126.19.help.text"
+msgid "If Dir(\"C:\\test\\autoexec.sav\")=\"\" THEN Filecopy \"c:\\autoexec.bat\", \"c:\\test\\autoexec.sav\""
+msgstr "If Dir(\"C:\\test\\autoexec.sav\")=\"\" THEN Filecopy \"c:\\autoexec.bat\", \"c:\\test\\autoexec.sav\""
+
+#: 03020414.xhp#par_id3151074.20.help.text
+msgctxt "03020414.xhp#par_id3151074.20.help.text"
+msgid "SetAttr \"c:\\test\\autoexec.sav\" ,0"
+msgstr "SetAttr \"c:\\test\\autoexec.sav\" ,0"
+
+#: 03020414.xhp#par_id3153158.21.help.text
+msgctxt "03020414.xhp#par_id3153158.21.help.text"
+msgid "Filecopy \"c:\\autoexec.bat\", \"c:\\test\\autoexec.sav\""
+msgstr "Filecopy \"c:\\autoexec.bat\", \"c:\\temp\\autoexec.sav\""
+
+#: 03020414.xhp#par_id3149378.22.help.text
+msgctxt "03020414.xhp#par_id3149378.22.help.text"
+msgid "SetAttr \"c:\\test\\autoexec.sav\" ,1"
+msgstr "SetAttr \"c:\\test\\autoexec.sav\" 0,1"
+
+#: 03020414.xhp#par_id3150716.23.help.text
+msgctxt "03020414.xhp#par_id3150716.23.help.text"
+msgid "print GetAttr( \"c:\\test\\autoexec.sav\" )"
+msgstr "print GetAttr( \"c:\\test\\autoexec.sav\" )"
+
+#: 03020414.xhp#par_id3154018.24.help.text
+msgctxt "03020414.xhp#par_id3154018.24.help.text"
+msgid "end"
+msgstr "end"
+
+#: 03020414.xhp#par_id3149121.25.help.text
+msgctxt "03020414.xhp#par_id3149121.25.help.text"
+msgid "ErrorHandler:"
+msgstr "ManejadorError:"
+
+#: 03020414.xhp#par_id3156275.26.help.text
+msgctxt "03020414.xhp#par_id3156275.26.help.text"
+msgid "Print Error"
+msgstr "Print Error"
+
+#: 03020414.xhp#par_id3153707.27.help.text
+msgctxt "03020414.xhp#par_id3153707.27.help.text"
+msgid "end"
+msgstr "end"
+
+#: 03020414.xhp#par_id3145640.28.help.text
+msgctxt "03020414.xhp#par_id3145640.28.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03020200.xhp#tit.help.text
+msgid "File Input/Output Functions"
+msgstr "Funciones de entrada/salida de archivos"
+
+#: 03020200.xhp#hd_id3150791.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020200.xhp\" name=\"File Input/Output Functions\">File Input/Output Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03020200.xhp\" name=\"Funciones de entrada/salida de archivos\">Funciones de entrada/salida de archivos</link>"
+
+#: 03060500.xhp#tit.help.text
+msgid "Or-Operator [Runtime]"
+msgstr "Operador Or [Ejecución]"
+
+#: 03060500.xhp#bm_id3150986.help.text
+msgid "<bookmark_value>Or operator (logical)</bookmark_value>"
+msgstr "<bookmark_value>Or;operadores lógicos</bookmark_value>"
+
+#: 03060500.xhp#hd_id3150986.1.help.text
+msgid "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Or-Operator [Runtime]\">Or Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Operador Or [Runtime]\">Operador Or [Ejecución]</link>"
+
+#: 03060500.xhp#par_id3148552.2.help.text
+msgid "Performs a logical OR disjunction on two expressions."
+msgstr "Lleva a cabo una disyunción lógica OR en dos expresiones."
+
+#: 03060500.xhp#hd_id3148664.3.help.text
+msgctxt "03060500.xhp#hd_id3148664.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03060500.xhp#par_id3150358.4.help.text
+msgid "Result = Expression1 Or Expression2"
+msgstr "Resultado = Expresión1 Or Expresión2"
+
+#: 03060500.xhp#hd_id3151211.5.help.text
+msgctxt "03060500.xhp#hd_id3151211.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03060500.xhp#par_id3153192.6.help.text
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the disjunction."
+msgstr "Resultado: Cualquier variable numérica que contenga el resultado de la disyunción."
+
+#: 03060500.xhp#par_id3147229.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to compare."
+msgstr "<emph>Expresión1, Expresión2:</emph> Las expresiones numéricas que se desea comparar."
+
+#: 03060500.xhp#par_id3154684.8.help.text
+msgid "A logical OR disjunction of two Boolean expressions returns the value True if at least one comparison expression is True."
+msgstr "Una disyunción OR de dos expresiones lógicas devuelve True si al menos una de las expresiones de la comparación es True."
+
+#: 03060500.xhp#par_id3153768.9.help.text
+msgid "A bit-wise comparison sets a bit in the result if the corresponding bit is set in at least one of the two expressions."
+msgstr "Una comparación entre bits activa un bit en el resultado si éste está activado en al menos una de las dos expresiones."
+
+#: 03060500.xhp#hd_id3161831.10.help.text
+msgctxt "03060500.xhp#hd_id3161831.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03060500.xhp#par_id3147427.11.help.text
+msgid "Sub ExampleOr"
+msgstr "Sub EjemploOr"
+
+#: 03060500.xhp#par_id3153142.12.help.text
+msgctxt "03060500.xhp#par_id3153142.12.help.text"
+msgid "Dim vA as Variant, vB as Variant, vC as Variant, vD as Variant"
+msgstr "Dim vA as Variant, vB as Variant, vC as Variant, vD as Variant"
+
+#: 03060500.xhp#par_id3154014.13.help.text
+msgctxt "03060500.xhp#par_id3154014.13.help.text"
+msgid "Dim vOut as Variant"
+msgstr "Dim vOut as Variant"
+
+#: 03060500.xhp#par_id3155856.14.help.text
+msgctxt "03060500.xhp#par_id3155856.14.help.text"
+msgid "vA = 10: vB = 8: vC = 6: vD = Null"
+msgstr "vA = 10: vB = 8: vC = 6: vD = Null"
+
+#: 03060500.xhp#par_id3152460.15.help.text
+msgid "vOut = vA > vB Or vB > vC REM -1"
+msgstr "vOut = vA > vB Or vB > vC REM -1"
+
+#: 03060500.xhp#par_id3147349.16.help.text
+msgid "vOut = vB > vA Or vB > vC REM -1"
+msgstr "vOut = vB > vA Or vB > vC REM -1"
+
+#: 03060500.xhp#par_id3151114.17.help.text
+msgid "vOut = vA > vB Or vB > vD REM -1"
+msgstr "vOut = vA > vB Or vB > vD REM -1"
+
+#: 03060500.xhp#par_id3153726.18.help.text
+msgid "vOut = (vB > vD Or vB > vA) REM 0"
+msgstr "vOut = (vB > vD Or vB > vA) REM 0"
+
+#: 03060500.xhp#par_id3152598.19.help.text
+msgid "vOut = vB Or vA REM 10"
+msgstr "vOut = vB Or vA REM 10"
+
+#: 03060500.xhp#par_id3150420.20.help.text
+msgctxt "03060500.xhp#par_id3150420.20.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03120102.xhp#tit.help.text
+msgid "Chr Function [Runtime]"
+msgstr "Función Chr [Ejecución]"
+
+#: 03120102.xhp#bm_id3149205.help.text
+msgid "<bookmark_value>Chr function</bookmark_value>"
+msgstr "<bookmark_value>Chr;función</bookmark_value>"
+
+#: 03120102.xhp#hd_id3149205.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120102.xhp\" name=\"Chr Function [Runtime]\">Chr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120102.xhp\" name=\"Chr Function [Runtime]\">Función Chr [Ejecución]</link>"
+
+#: 03120102.xhp#par_id3153311.2.help.text
+msgid "Returns the character that corresponds to the specified character code."
+msgstr "Devuelve el carácter que corresponde al código de carácter especificado."
+
+#: 03120102.xhp#hd_id3149514.3.help.text
+msgctxt "03120102.xhp#hd_id3149514.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03120102.xhp#par_id3150669.4.help.text
+msgid "Chr(Expression As Integer)"
+msgstr "Chr(Expresión As Integer)"
+
+#: 03120102.xhp#hd_id3143228.5.help.text
+msgctxt "03120102.xhp#hd_id3143228.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03120102.xhp#par_id3153824.6.help.text
+msgctxt "03120102.xhp#par_id3153824.6.help.text"
+msgid "String"
+msgstr "Cadena"
+
+#: 03120102.xhp#hd_id3148944.7.help.text
+msgctxt "03120102.xhp#hd_id3148944.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03120102.xhp#par_id3149295.8.help.text
+msgid "<emph>Expression:</emph> Numeric variables that represent a valid 8 bit ASCII value (0-255) or a 16 bit Unicode value."
+msgstr "<emph>Expresión:</emph> Variables numéricas que representan un valor ASCII válido de 8 bits (0-255) o un valor Unicode de 16 bits."
+
+#: 03120102.xhp#par_id3159414.9.help.text
+msgid "Use the <emph>Chr$</emph> function to send special control sequences to a printer or to another output source. You can also use it to insert quotation marks in a string expression."
+msgstr "Use la función <emph>Chr$</emph> para enviar secuencias de control especiales a una impresora o a otra fuente de salida. También puede usarlo para insertar comillas en una expresión de cadena."
+
+#: 03120102.xhp#hd_id3154366.10.help.text
+msgctxt "03120102.xhp#hd_id3154366.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03120102.xhp#par_id3144502.11.help.text
+msgid "sub ExampleChr"
+msgstr "sub EjemploChr"
+
+#: 03120102.xhp#par_id3154909.12.help.text
+msgid "REM This example inserts quotation marks (ASCII value 34) in a string."
+msgstr "REM Este ejemplo inserta comillas (valor ASCII 34) en una cadena."
+
+#: 03120102.xhp#par_id3151380.13.help.text
+msgid "MsgBox \"A \"+ Chr$(34)+\"short\" + Chr$(34)+\" trip.\""
+msgstr "MsgBox \"Un \"+ Chr$(34)+\"viaje\" + Chr$(34)+\" corto.\""
+
+#: 03120102.xhp#par_id3145174.14.help.text
+msgid "REM The printout appears in the dialog as: A \"short\" trip."
+msgstr "REM El mensaje que aparecerá en el diálogo será éste: Un \"viaje\" corto."
+
+#: 03120102.xhp#par_id3154685.15.help.text
+msgctxt "03120102.xhp#par_id3154685.15.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03120102.xhp#par_idN10668.help.text
+msgid "<link href=\"text/sbasic/shared/03120101.xhp\">ASC</link>"
+msgstr "<link href=\"text/sbasic/shared/03120101.xhp\">ASC</link>"
+
+#: 01000000.xhp#tit.help.text
+msgid "Programming with $[officename] Basic "
+msgstr "Programación con $[officename] Basic "
+
+#: 01000000.xhp#hd_id3156027.1.help.text
+msgid "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/01000000.xhp\" name=\"Programming with $[officename] Basic \">Programming with $[officename] Basic </link></variable>"
+msgstr "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/01000000.xhp\" name=\"Programación con $[officename] Basic\">Programación con $[officename] Basic </link></variable>"
+
+#: 01000000.xhp#par_id3153708.2.help.text
+msgid "This is where you find general information about working with macros and $[officename] Basic."
+msgstr "Aquí es donde encontrará información general sobre cómo trabajar con macros y $[officename] Basic."
+
+#: 03030302.xhp#tit.help.text
+msgid "Time Statement [Runtime]"
+msgstr "Instrucción Time [Ejecución]"
+
+#: 03030302.xhp#bm_id3145090.help.text
+msgid "<bookmark_value>Time statement</bookmark_value>"
+msgstr "<bookmark_value>Time;función</bookmark_value>"
+
+#: 03030302.xhp#hd_id3145090.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030302.xhp\">Time Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030302.xhp\">Instrucción Time [Ejecución]</link>"
+
+#: 03030302.xhp#par_id3150984.2.help.text
+msgid "This function returns the current system time as a string in the format \"HH:MM:SS\"."
+msgstr "Esta función devuelve la hora actual del sistema como cadena en el formato \"HH:MM:SS\"."
+
+#: 03030302.xhp#hd_id3154346.3.help.text
+msgctxt "03030302.xhp#hd_id3154346.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03030302.xhp#par_id3149670.4.help.text
+msgid "Time"
+msgstr "Time "
+
+#: 03030302.xhp#hd_id3150792.5.help.text
+msgctxt "03030302.xhp#hd_id3150792.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03030302.xhp#par_id3149656.6.help.text
+msgid "<emph>Text:</emph> Any string expression that specifies the new time in the format \"HH:MM:SS\"."
+msgstr "Texto: Cualquier expresión de cadena que especifique la hora nueva en el formato \"HH:MM:SS\"."
+
+#: 03030302.xhp#hd_id3145173.7.help.text
+msgctxt "03030302.xhp#hd_id3145173.7.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03030302.xhp#par_id3156281.8.help.text
+msgid "Sub ExampleTime"
+msgstr "Sub EjemploTime"
+
+#: 03030302.xhp#par_id3150870.9.help.text
+msgid "MsgBox Time,0,\"The time is\""
+msgstr "MsgBox Time,0,\"La hora actual es\""
+
+#: 03030302.xhp#par_id3154123.10.help.text
+msgctxt "03030302.xhp#par_id3154123.10.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03090404.xhp#tit.help.text
+msgid "End Statement [Runtime]"
+msgstr "Instrucción End [Ejecución]"
+
+#: 03090404.xhp#bm_id3150771.help.text
+msgid "<bookmark_value>End statement</bookmark_value>"
+msgstr "<bookmark_value>End;instrucción</bookmark_value>"
+
+#: 03090404.xhp#hd_id3150771.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"End Statement [Runtime]\">End Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"End Statement [Runtime]\">Instrucción End [Ejecución]</link>"
+
+#: 03090404.xhp#par_id3153126.2.help.text
+msgid "Ends a procedure or block."
+msgstr "Finaliza un procedimiento o bloque."
+
+#: 03090404.xhp#hd_id3147264.3.help.text
+msgctxt "03090404.xhp#hd_id3147264.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03090404.xhp#par_id3148552.4.help.text
+msgid "End, End Function, End If, End Select, End Sub"
+msgstr "End, End Function, End If, End Select, End Sub"
+
+#: 03090404.xhp#hd_id3149456.5.help.text
+msgctxt "03090404.xhp#hd_id3149456.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03090404.xhp#par_id3150398.6.help.text
+msgid "Use the End statement as follows:"
+msgstr "Use la instrucción End de esta manera:"
+
+#: 03090404.xhp#hd_id3154366.7.help.text
+msgid "Statement"
+msgstr "Instrucción"
+
+#: 03090404.xhp#par_id3151043.8.help.text
+msgid "End: Is not required, but can be entered anywhere within a procedure to end the program execution."
+msgstr "End: no es necesario, pero puede introducirse en cualquier parte de un procedimiento para finalizar la ejecución del programa."
+
+#: 03090404.xhp#par_id3145171.9.help.text
+msgid "End Function: Ends a <emph>Function</emph> statement."
+msgstr "End Function: finaliza una instrucción <emph>Function</emph>."
+
+#: 03090404.xhp#par_id3153192.10.help.text
+msgid "End If: Marks the end of a <emph>If...Then...Else</emph> block."
+msgstr "End If: marca el final de un bloque <emph>If...Then...Else</emph>."
+
+#: 03090404.xhp#par_id3148451.11.help.text
+msgid "End Select: Marks the end of a <emph>Select Case</emph> block."
+msgstr "End Select: marca el final de un bloque <emph>Select Case</emph>."
+
+#: 03090404.xhp#par_id3155131.12.help.text
+msgid "End Sub: Ends a <emph>Sub</emph> statement."
+msgstr "End Sub: finaliza una instrucción <emph>Sub</emph>."
+
+#: 03090404.xhp#hd_id3146120.13.help.text
+msgctxt "03090404.xhp#hd_id3146120.13.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03090404.xhp#par_id3146985.14.help.text
+msgctxt "03090404.xhp#par_id3146985.14.help.text"
+msgid "Sub ExampleRandomSelect"
+msgstr "Sub EjemploSelecAleatoria"
+
+#: 03090404.xhp#par_id3153363.15.help.text
+msgctxt "03090404.xhp#par_id3153363.15.help.text"
+msgid "Dim iVar As Integer"
+msgstr "Dim iVar As Integer"
+
+#: 03090404.xhp#par_id3153727.16.help.text
+msgctxt "03090404.xhp#par_id3153727.16.help.text"
+msgid "iVar = Int((15 * Rnd) -2)"
+msgstr "iVar = Int((15 * Rnd) -2)"
+
+#: 03090404.xhp#par_id3150011.17.help.text
+msgctxt "03090404.xhp#par_id3150011.17.help.text"
+msgid "Select Case iVar"
+msgstr "Select Case iVar"
+
+#: 03090404.xhp#par_id3149481.18.help.text
+msgctxt "03090404.xhp#par_id3149481.18.help.text"
+msgid "Case 1 To 5"
+msgstr "Case 1 To 5"
+
+#: 03090404.xhp#par_id3152887.19.help.text
+msgctxt "03090404.xhp#par_id3152887.19.help.text"
+msgid "Print \"Number from 1 to 5\""
+msgstr "Print \"Número de 1 a 5\""
+
+#: 03090404.xhp#par_id3163713.20.help.text
+msgctxt "03090404.xhp#par_id3163713.20.help.text"
+msgid "Case 6, 7, 8"
+msgstr "Case 6, 7, 8"
+
+#: 03090404.xhp#par_id3148618.21.help.text
+msgctxt "03090404.xhp#par_id3148618.21.help.text"
+msgid "Print \"Number from 6 to 8\""
+msgstr "Print \"Número de 6 a 8\""
+
+#: 03090404.xhp#par_id3153144.22.help.text
+msgctxt "03090404.xhp#par_id3153144.22.help.text"
+msgid "Case Is > 8 And iVar < 11"
+msgstr "Case Is > 8 And iVar < 11"
+
+#: 03090404.xhp#par_id3147436.23.help.text
+msgctxt "03090404.xhp#par_id3147436.23.help.text"
+msgid "Print \"Greater than 8\""
+msgstr "Print \"Mayor que 8\""
+
+#: 03090404.xhp#par_id3155418.24.help.text
+msgctxt "03090404.xhp#par_id3155418.24.help.text"
+msgid "Case Else"
+msgstr "Case Else"
+
+#: 03090404.xhp#par_id3150418.25.help.text
+msgctxt "03090404.xhp#par_id3150418.25.help.text"
+msgid "Print \"Outside range 1 to 10\""
+msgstr "Print \"Fuera del rango de 1 a 10\""
+
+#: 03090404.xhp#par_id3156285.26.help.text
+msgctxt "03090404.xhp#par_id3156285.26.help.text"
+msgid "End Select"
+msgstr "End Select"
+
+#: 03090404.xhp#par_id3149582.27.help.text
+msgctxt "03090404.xhp#par_id3149582.27.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03090000.xhp#tit.help.text
+msgid "Controlling Program Execution"
+msgstr "Control de la ejecución del programa"
+
+#: 03090000.xhp#hd_id3145136.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090000.xhp\" name=\"Controlling Program Execution\">Controlling Program Execution</link>"
+msgstr "<link href=\"text/sbasic/shared/03090000.xhp\" name=\"Controlling Program Execution\">Control de la ejecución del programa</link>"
+
+#: 03090000.xhp#par_id3143268.2.help.text
+msgid "The following statements control the execution of a program."
+msgstr "Las instrucciones siguientes controlan la ejecución de un programa."
+
+#: 03090000.xhp#par_id3156152.3.help.text
+msgid "A program generally executes from the first line of code to the last line of code. You can also execute certain procedures within the program according to specific conditions, or repeat a section of the program within a sub-procedure or function. You can use loops to repeat parts of a program as many times as necessary, or until a certain condition is met. These type of control statements are classified as Condition, Loop, or Jump statements."
+msgstr "Un programa normalmente se ejecuta desde la primera a la última línea de código. También se pueden ejecutar algunos procedimientos dentro del programa según condiciones específicas o repetir una sección del programa dentro de un subprocedimiento o función. Se pueden usar bucles para repetir partes de un programa tantas veces como sea necesario o hasta que se cumpla alguna condición. Este tipo de instrucciones de control se clasifican como instrucciones de Condición, Bucle o Salto."
+
+#: 03090202.xhp#tit.help.text
+msgid "For...Next Statement [Runtime]"
+msgstr "Instrucción For...Next [Ejecución]"
+
+#: 03090202.xhp#bm_id3149205.help.text
+msgid "<bookmark_value>For statement</bookmark_value><bookmark_value>To statement</bookmark_value><bookmark_value>Step statement</bookmark_value><bookmark_value>Next statement</bookmark_value>"
+msgstr "<bookmark_value>For;instrucción</bookmark_value><bookmark_value>To;instrucción</bookmark_value><bookmark_value>Step;instrucción</bookmark_value><bookmark_value>Next;instrucción</bookmark_value>"
+
+#: 03090202.xhp#hd_id3149205.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">For...Next Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Instrucción For...Next [Ejecución]</link>"
+
+#: 03090202.xhp#par_id3143267.2.help.text
+msgid "Repeats the statements between the For...Next block a specified number of times."
+msgstr "Repite las instrucciones que se encuentran en el bloque For...Next un número determinado de veces."
+
+#: 03090202.xhp#hd_id3156153.3.help.text
+msgctxt "03090202.xhp#hd_id3156153.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03090202.xhp#par_id3148473.4.help.text
+msgid "For counter=start To end [Step step]"
+msgstr "For contador=inicio To final [Step incremento]"
+
+#: 03090202.xhp#par_id3156024.5.help.text
+msgctxt "03090202.xhp#par_id3156024.5.help.text"
+msgid "statement block"
+msgstr "bloque de instrucciones"
+
+#: 03090202.xhp#par_id3146796.6.help.text
+msgid "[Exit For]"
+msgstr "[Exit For]"
+
+#: 03090202.xhp#par_id3159414.7.help.text
+msgctxt "03090202.xhp#par_id3159414.7.help.text"
+msgid "statement block"
+msgstr "bloque de instrucciones"
+
+#: 03090202.xhp#par_id3153897.8.help.text
+msgid "Next [counter]"
+msgstr "Next [contador]"
+
+#: 03090202.xhp#hd_id3150400.9.help.text
+msgid "Variables:"
+msgstr "Variables:"
+
+#: 03090202.xhp#par_id3150358.10.help.text
+msgid "<emph>Counter:</emph> Loop counter initially assigned the value to the right of the equal sign (start). Only numeric variables are valid. The loop counter increases or decreases according to the variable Step until End is passed."
+msgstr "<emph>Contador:</emph> Contador de bucle al que se asigna inicialmente el valor de la derecha del signo igual (inicio). Sólo las variables numéricas son válidas. El contador de bucles aumenta o disminuye según la variable Incremento hasta que se alcanza el valor final."
+
+#: 03090202.xhp#par_id3152455.11.help.text
+msgid "<emph>Start:</emph> Numeric variable that defines the initial value at the beginning of the loop."
+msgstr "<emph>Inicio:</emph> Variable numérica que define el valor inicial al principio del bucle."
+
+#: 03090202.xhp#par_id3151043.12.help.text
+msgid "<emph>End:</emph> Numeric variable that defines the final value at the end of the loop."
+msgstr "<emph>Final:</emph> Variable numérica que define el valor final cuando termina el bucle."
+
+#: 03090202.xhp#par_id3156281.13.help.text
+msgid "<emph>Step:</emph> Sets the value by which to increase or decrease the loop counter. If Step is not specified, the loop counter is incremented by 1. In this case, End must be greater than Start. If you want to decrease Counter, End must be less than Start, and Step must be assigned a negative value."
+msgstr "<emph>Incremento:</emph> Define el valor con el que incrementar o decrementar el contador del bucle. Si Incremento no se especifica, el contador del bucle se incrementa en 1. En ese caso, Final debe ser mayor que Inicio. Si desea decrementar el Contador, Final debe ser inferior a Inicio e Incremento debe tener asignado un valor negativo."
+
+#: 03090202.xhp#par_id3154684.14.help.text
+msgid "The <emph>For...Next</emph> loop repeats all of the statements in the loop for the number of times that is specified by the parameters."
+msgstr "El bucle <emph>For...Next</emph> repite todas las instrucciones del bucle tantas veces como especifiquen los parámetros."
+
+#: 03090202.xhp#par_id3147287.15.help.text
+msgid "As the counter variable is decreased, $[officename] Basic checks if the end value has been reached. As soon as the counter passes the end value, the loop automatically ends."
+msgstr "A medida que la variable de contador se decrementa, $[officename] Basic comprueba si se ha llegado al valor final. Tan pronto como el contador llega al valor final, el bucle finaliza automáticamente."
+
+#: 03090202.xhp#par_id3159154.16.help.text
+msgid "It is possible to nest <emph>For...Next</emph> statements. If you do not specify a variable following the <emph>Next</emph> statement, <emph>Next</emph> automatically refers to the most recent <emph>For</emph> statement."
+msgstr "Es posible anidar instrucciones <emph>For...Next</emph>. Si no se especifica ninguna variable después de la instrucción <emph>Next</emph>, ésta hace referencia automáticamente a la instrucción <emph>For</emph> más reciente."
+
+#: 03090202.xhp#par_id3155306.17.help.text
+msgid "If you specify an increment of 0, the statements between <emph>For</emph> and <emph>Next</emph> are repeated continuously."
+msgstr "Si se especifica un incremento 0, las instrucciones entre <emph>For</emph> y <emph>Next</emph> se repiten indefinidamente."
+
+#: 03090202.xhp#par_id3155854.18.help.text
+msgid "When counting down the counter variable, $[officename] Basic checks for overflow or underflow. The loop ends when Counter exceeds End (positive Step value) or is less than End (negative Step value)."
+msgstr "Al realizar la cuenta atrás con la variable Contador, $[officename] Basic comprueba que no se produzca un desbordamiento o vacuidad. El bucle termina cuando el Contador supera a Final (valor de Incremento positivo) o es inferior a Final (valor de Incremento negativo)."
+
+#: 03090202.xhp#par_id3145273.19.help.text
+msgid "Use the <emph>Exit For</emph> statement to exit the loop unconditionally. This statement must be within a <emph>For...Next</emph> loop. Use the <emph>If...Then</emph> statement to test the exit condition as follows:"
+msgstr "La instrucción <emph>Exit For</emph> se utiliza para salir del bucle incondicionalmente. Esta instrucción debe estar incluida dentro del bucle <emph>For...Next</emph>. Use la instrucción <emph>If...Then</emph> para comprobar la condición de salida de la forma siguiente:"
+
+#: 03090202.xhp#par_id3153190.20.help.text
+msgid "For..."
+msgstr "For..."
+
+#: 03090202.xhp#par_id3149482.21.help.text
+msgctxt "03090202.xhp#par_id3149482.21.help.text"
+msgid "statements"
+msgstr "instrucciones"
+
+#: 03090202.xhp#par_id3147124.22.help.text
+msgid "If condition = True Then Exit For"
+msgstr "If condición = Cierta Then Exit For"
+
+#: 03090202.xhp#par_id3153159.23.help.text
+msgctxt "03090202.xhp#par_id3153159.23.help.text"
+msgid "statements"
+msgstr "instrucciones"
+
+#: 03090202.xhp#par_id3154096.24.help.text
+msgid "Next"
+msgstr "Next"
+
+#: 03090202.xhp#par_id3156286.25.help.text
+msgid "Note: In nested <emph>For...Next</emph> loops, if you exit a loop unconditionally with <emph>Exit For</emph>, only one loop is exited."
+msgstr "Nota: En bucles <emph>For...Next</emph> anidados, si se sale de un bucle de forma incondicional con <emph>Exit For</emph>, sólo se sale de un bucle."
+
+#: 03090202.xhp#hd_id3148457.26.help.text
+msgctxt "03090202.xhp#hd_id3148457.26.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 03090202.xhp#par_id3151074.27.help.text
+msgid "The following example uses two nested loops to sort a string array with 10 elements ( sEntry() ), that are first filled with various contents:"
+msgstr "El ejemplo siguiente usa dos bucles anidados para ordenar una matriz de cadenas con 10 elementos ( sEntry() ) que primero se rellenan con varios contenidos:"
+
+#: 03090202.xhp#par_id3155603.28.help.text
+msgid "Sub ExampleSort"
+msgstr "Sub EjemploOrdenar"
+
+#: 03090202.xhp#par_id3156275.29.help.text
+msgid "Dim sEntry(9) As String"
+msgstr "Dim sEntrada(9) As String"
+
+#: 03090202.xhp#par_id3155066.30.help.text
+msgctxt "03090202.xhp#par_id3155066.30.help.text"
+msgid "Dim iCount As Integer"
+msgstr "Dim iContador As Integer"
+
+#: 03090202.xhp#par_id3150751.31.help.text
+msgid "Dim iCount2 As Integer"
+msgstr "Dim iContador2 As Integer"
+
+#: 03090202.xhp#par_id3155446.32.help.text
+msgctxt "03090202.xhp#par_id3155446.32.help.text"
+msgid "Dim sTemp As String"
+msgstr "Dim sTemp As String"
+
+#: 03090202.xhp#par_id3155767.42.help.text
+msgid "sEntry(0) = \"Jerry\""
+msgstr "sEntrada(0) = \"Juan\""
+
+#: 03090202.xhp#par_id3153711.33.help.text
+msgid "sEntry(1) = \"Patty\""
+msgstr "sEntrada(1) = \"Patricia\""
+
+#: 03090202.xhp#par_id3148993.34.help.text
+msgid "sEntry(2) = \"Kurt\""
+msgstr "sEntrada(3) = \"Koldo\""
+
+#: 03090202.xhp#par_id3156382.35.help.text
+msgid "sEntry(3) = \"Thomas\""
+msgstr "sEntrada(3) = \"Tomás\""
+
+#: 03090202.xhp#par_id3155174.36.help.text
+msgid "sEntry(4) = \"Michael\""
+msgstr "sEntrada(4) = \"Miguel\""
+
+#: 03090202.xhp#par_id3166448.37.help.text
+msgid "sEntry(5) = \"David\""
+msgstr "sEntrada(5) = \"David\""
+
+#: 03090202.xhp#par_id3149255.38.help.text
+msgid "sEntry(6) = \"Cathy\""
+msgstr "sEntrada(6) = \"Catalina\""
+
+#: 03090202.xhp#par_id3149565.39.help.text
+msgid "sEntry(7) = \"Susie\""
+msgstr "sEntrada(7) = \"Susana\""
+
+#: 03090202.xhp#par_id3145148.40.help.text
+msgid "sEntry(8) = \"Edward\""
+msgstr "sEntrada(8) = \"Eduardo\""
+
+#: 03090202.xhp#par_id3145229.41.help.text
+msgid "sEntry(9) = \"Christine\""
+msgstr "sEntrada(9) = \"Cristina\""
+
+#: 03090202.xhp#par_id3149107.44.help.text
+msgctxt "03090202.xhp#par_id3149107.44.help.text"
+msgid "For iCount = 0 To 9"
+msgstr "For iContador = 0 To 9"
+
+#: 03090202.xhp#par_id3148485.45.help.text
+msgid "For iCount2 = iCount + 1 To 9"
+msgstr "For iContador2 = iContador + 1 To 9"
+
+#: 03090202.xhp#par_id3155608.46.help.text
+msgid "If sEntry(iCount) > sEntry(iCount2) Then"
+msgstr "If sEntrada(iContador) > sEntrada(iContador2) Then"
+
+#: 03090202.xhp#par_id3150938.47.help.text
+msgid "sTemp = sEntry(iCount)"
+msgstr "sTemp = sEntrada(iContador)"
+
+#: 03090202.xhp#par_id3153790.48.help.text
+msgid "sEntry(iCount) = sEntry(iCount2)"
+msgstr "sEntrada(iContador) = sEntrada(iContador2)"
+
+#: 03090202.xhp#par_id3149210.49.help.text
+msgid "sEntry(iCount2) = sTemp"
+msgstr "sEntrada(iContador2) = sTemp"
+
+#: 03090202.xhp#par_id3153781.50.help.text
+msgctxt "03090202.xhp#par_id3153781.50.help.text"
+msgid "End If"
+msgstr "End If"
+
+#: 03090202.xhp#par_id3158446.51.help.text
+msgid "Next iCount2"
+msgstr "Next iContador2"
+
+#: 03090202.xhp#par_id3150783.52.help.text
+msgctxt "03090202.xhp#par_id3150783.52.help.text"
+msgid "Next iCount"
+msgstr "Next iContador"
+
+#: 03090202.xhp#par_id3151278.57.help.text
+msgctxt "03090202.xhp#par_id3151278.57.help.text"
+msgid "For iCount = 0 To 9"
+msgstr "For iContador = 0 To 9"
+
+#: 03090202.xhp#par_id3148462.58.help.text
+msgid "Print sEntry(iCount)"
+msgstr "Print sEntrada(iContador)"
+
+#: 03090202.xhp#par_id3149528.59.help.text
+msgctxt "03090202.xhp#par_id3149528.59.help.text"
+msgid "Next iCount"
+msgstr "Next iContador"
+
+#: 03090202.xhp#par_id3152580.60.help.text
+msgctxt "03090202.xhp#par_id3152580.60.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03010101.xhp#tit.help.text
+msgid "MsgBox Statement [Runtime]"
+msgstr "Instrucción MsgBox [Ejecución]"
+
+#: 03010101.xhp#bm_id1807916.help.text
+msgid "<bookmark_value>MsgBox statement</bookmark_value>"
+msgstr "<bookmark_value>Instrucción MsgBox</bookmark_value>"
+
+#: 03010101.xhp#hd_id3154927.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010101.xhp\">MsgBox Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010101.xhp\">Instrucción MsgBox [Ejecución]</link>"
+
+#: 03010101.xhp#par_id3148947.2.help.text
+msgid "Displays a dialog box containing a message."
+msgstr "Muestra un cuadro de diálogo que contiene un mensaje."
+
+#: 03010101.xhp#hd_id3153897.3.help.text
+msgctxt "03010101.xhp#hd_id3153897.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03010101.xhp#par_id3148664.4.help.text
+msgid "MsgBox Text As String [,Type As Integer [,Dialogtitle As String]] (As Statement) or MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]]) (As Function)"
+msgstr "MsgBox Texto As String [,Tipo As Integer [,TítuloDiálogo As String]] (As Statement) o bien MsgBox (Texto As String [,Tipo As Integer [,TítuloDiálogo As String]]) (As Function)"
+
+#: 03010101.xhp#hd_id3153361.5.help.text
+msgctxt "03010101.xhp#hd_id3153361.5.help.text"
+msgid "Parameter:"
+msgstr "Parámetros:"
+
+#: 03010101.xhp#par_id3148798.6.help.text
+msgctxt "03010101.xhp#par_id3148798.6.help.text"
+msgid "<emph>Text</emph>: String expression displayed as a message in the dialog box. Line breaks can be inserted with Chr$(13)."
+msgstr "<emph>Texto</emph>: Expresión de cadena que se muestra como mensaje en el cuadro de diálogo. Los saltos de línea se pueden insertar con Chr$(13)."
+
+#: 03010101.xhp#par_id3150769.7.help.text
+msgid "<emph>DialogTitle</emph>: String expression displayed in the title bar of the dialog. If omitted, the title bar displays the name of the respective application."
+msgstr "<emph>TítuloDiálogo</emph>: Expresión de cadena que se muestra en la barra de título del diálogo. Si se omite, la barra de título muestra el nombre de la aplicación respectiva."
+
+#: 03010101.xhp#par_id3147228.8.help.text
+msgid "<emph>Type</emph>: Any integer expression that specifies the dialog type, as well as the number and type of buttons to display, and the icon type. <emph>Type</emph> represents a combination of bit patterns, that is, a combination of elements can be defined by adding their respective values:"
+msgstr "<emph>Tipo</emph>: Cualquier expresión entera que especifique el tipo de diálogo, así como el número y tipo de botones que mostrar y el tipo de icono. <emph>Tipo</emph> representa una combinación de patrones de bits, por lo que se pueden definir varios elementos sumando sus valores respectivos:"
+
+#: 03010101.xhp#par_id3161832.9.help.text
+msgctxt "03010101.xhp#par_id3161832.9.help.text"
+msgid "0 : Display OK button only."
+msgstr "0 : Mostrar sólo el botón Aceptar."
+
+#: 03010101.xhp#par_id3153726.10.help.text
+msgctxt "03010101.xhp#par_id3153726.10.help.text"
+msgid "1 : Display OK and Cancel buttons."
+msgstr "1 : Mostrar los botones Aceptar y Cancelar."
+
+#: 03010101.xhp#par_id3149665.11.help.text
+msgctxt "03010101.xhp#par_id3149665.11.help.text"
+msgid "2 : Display Abort, Retry, and Ignore buttons."
+msgstr "2 : Muestre los botones Cancelar, Reintentar y Cancelar."
+
+#: 03010101.xhp#par_id3147318.12.help.text
+msgid "3 : Display Yes, No and Cancel buttons."
+msgstr "3 : Mostrar los botones Sí, No y Cancelar."
+
+#: 03010101.xhp#par_id3155412.13.help.text
+msgctxt "03010101.xhp#par_id3155412.13.help.text"
+msgid "4 : Display Yes and No buttons."
+msgstr "4 : Mostrar los botones Sí y No."
+
+#: 03010101.xhp#par_id3146119.14.help.text
+msgctxt "03010101.xhp#par_id3146119.14.help.text"
+msgid "5 : Display Retry and Cancel buttons."
+msgstr "5 : Mostrar los botones Reintentar y Cancelar."
+
+#: 03010101.xhp#par_id3159155.15.help.text
+msgctxt "03010101.xhp#par_id3159155.15.help.text"
+msgid "16 : Add the Stop icon to the dialog."
+msgstr "16 : Añadir el icono de Stop al diálogo."
+
+#: 03010101.xhp#par_id3145366.16.help.text
+msgctxt "03010101.xhp#par_id3145366.16.help.text"
+msgid "32 : Add the Question icon to the dialog."
+msgstr "32 : Añadir el icono de Pregunta al diálogo."
+
+#: 03010101.xhp#par_id3147350.17.help.text
+msgid "48 : Add the Exclamation icon to the dialog."
+msgstr "48 : Añadir el icono de Exclamación al diálogo."
+
+#: 03010101.xhp#par_id3149960.18.help.text
+msgctxt "03010101.xhp#par_id3149960.18.help.text"
+msgid "64 : Add the Information icon to the dialog."
+msgstr "64 : Añadir el icono de Información al diálogo."
+
+#: 03010101.xhp#par_id3154944.19.help.text
+msgctxt "03010101.xhp#par_id3154944.19.help.text"
+msgid "128 : First button in the dialog as default button."
+msgstr "128 : El primer botón del diálogo es el predeterminado."
+
+#: 03010101.xhp#par_id3155417.20.help.text
+msgctxt "03010101.xhp#par_id3155417.20.help.text"
+msgid "256 : Second button in the dialog as default button."
+msgstr "256 : El segundo botón del diálogo es el predeterminado."
+
+#: 03010101.xhp#par_id3153878.21.help.text
+msgctxt "03010101.xhp#par_id3153878.21.help.text"
+msgid "512 : Third button in the dialog as default button."
+msgstr "512 : El tercer botón del diálogo es el predeterminado."
+
+#: 03010101.xhp#hd_id3150715.22.help.text
+msgctxt "03010101.xhp#hd_id3150715.22.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03010101.xhp#par_id3154511.23.help.text
+msgctxt "03010101.xhp#par_id3154511.23.help.text"
+msgid "Sub ExampleMsgBox"
+msgstr "Sub EjemploMsgBox"
+
+#: 03010101.xhp#par_id3150327.24.help.text
+msgid "Const sText1 = \"An unexpected error occurred.\""
+msgstr "Const sTexto1 = \"Se ha producido un error inesperado.\""
+
+#: 03010101.xhp#par_id3146912.25.help.text
+msgid "Const sText2 = \"The program execution will continue, however.\""
+msgstr "Const sTexto2 = \"Sin embargo, la ejecución del programa continuará.\""
+
+#: 03010101.xhp#par_id3154757.26.help.text
+msgid "Const sText3 = \"Error\""
+msgstr "Const sTexto3 = \"Error\""
+
+#: 03010101.xhp#par_id3155445.27.help.text
+msgid "MsgBox(sText1 + Chr(13) + sText2,16,sText3)"
+msgstr "MsgBox(sTexto1 + Chr(13) + sTexto2,16,sTexto3)"
+
+#: 03010101.xhp#par_id3155768.28.help.text
+msgctxt "03010101.xhp#par_id3155768.28.help.text"
+msgid "End sub"
+msgstr "End Sub"
+
+#: 03132200.xhp#tit.help.text
+msgid "ThisComponent Statement [Runtime]"
+msgstr "Instrucción ThisComponent [Ejecución]"
+
+#: 03132200.xhp#bm_id3155342.help.text
+msgid "<bookmark_value>ThisComponent property</bookmark_value><bookmark_value>components;addressing</bookmark_value>"
+msgstr "\\<bookmark_value\\>ThisComponent;instrucción\\</bookmark_value\\>\\<bookmark_value\\>componentes;direccionamiento\\</bookmark_value\\>"
+
+#: 03132200.xhp#hd_id3155342.1.help.text
+msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent [Runtime]\">ThisComponent [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent [Runtime]\">Instrucción ThisComponent [Ejecución]</link>"
+
+#: 03132200.xhp#par_id3154923.2.help.text
+msgid "Addresses the active component so that its properties can be read and set. ThisComponent is used from document Basic, where it represents the document the Basic belongs to. The type of object accessed by ThisComponent depends on the document type."
+msgstr "Direcciona el componente activo para que sus propiedades puedan leerse y establecerse. ThisComponent es usado desde el documento Basic, donde muestra el documento al que pertenece Basic. El tipo de objeto accesado por ThisComponent depende en el tipo de documento."
+
+#: 03132200.xhp#hd_id3154346.3.help.text
+msgctxt "03132200.xhp#hd_id3154346.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03132200.xhp#par_id3151056.4.help.text
+msgid "ThisComponent"
+msgstr "ThisComponent"
+
+#: 03132200.xhp#hd_id3154940.5.help.text
+msgctxt "03132200.xhp#hd_id3154940.5.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03132200.xhp#par_id3151211.6.help.text
+msgctxt "03132200.xhp#par_id3151211.6.help.text"
+msgid "Sub Main"
+msgstr "Sub Main"
+
+#: 03132200.xhp#par_id3154123.7.help.text
+msgid " REM updates the \"Table of Contents\" in a text doc"
+msgstr "REM actualiza le \"Índice\" de un documento de texto"
+
+#: 03132200.xhp#par_id3151381.8.help.text
+msgid " Dim allindexes, index As Object"
+msgstr "Dim todosindices, indice As Object"
+
+#: 03132200.xhp#par_id3150769.9.help.text
+msgid " allindexes = ThisComponent.getDocumentIndexes()"
+msgstr "todosindices = ThisComponent.getDocumentIndexes()"
+
+#: 03132200.xhp#par_id3153194.10.help.text
+msgid " index = allindexes.getByName(\"Table of Contents1\")"
+msgstr "indice = allindexes.getByName(\"Índice1\")"
+
+#: 03132200.xhp#par_id3156422.11.help.text
+msgid " REM use the default name for Table of Contents and a 1"
+msgstr "REM usa el nombre predeterminado para un Índice y el número 1"
+
+#: 03132200.xhp#par_id3153368.12.help.text
+msgid " index.update()"
+msgstr "index.update()"
+
+#: 03132200.xhp#par_id3161832.13.help.text
+msgctxt "03132200.xhp#par_id3161832.13.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03102200.xhp#tit.help.text
+msgid "IsArray Function [Runtime]"
+msgstr "Función IsArray [Ejecución]"
+
+#: 03102200.xhp#bm_id3154346.help.text
+msgid "<bookmark_value>IsArray function</bookmark_value>"
+msgstr "<bookmark_value>IsArray;función</bookmark_value>"
+
+#: 03102200.xhp#hd_id3154346.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102200.xhp\" name=\"IsArray Function [Runtime]\">IsArray Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102200.xhp\" name=\"IsArray Function [Runtime]\">Función IsArray [Ejecución]</link>"
+
+#: 03102200.xhp#par_id3159413.2.help.text
+msgid "Determines if a variable is a data field in an array."
+msgstr "Determina si una variable es un campo de datos de una matriz."
+
+#: 03102200.xhp#hd_id3150792.3.help.text
+msgctxt "03102200.xhp#hd_id3150792.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03102200.xhp#par_id3153379.4.help.text
+msgid "IsArray (Var)"
+msgstr "IsArray (Var)"
+
+#: 03102200.xhp#hd_id3154365.5.help.text
+msgctxt "03102200.xhp#hd_id3154365.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03102200.xhp#par_id3154685.6.help.text
+msgctxt "03102200.xhp#par_id3154685.6.help.text"
+msgid "Bool"
+msgstr "Lógico"
+
+#: 03102200.xhp#hd_id3153969.7.help.text
+msgctxt "03102200.xhp#hd_id3153969.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03102200.xhp#par_id3145172.8.help.text
+msgid "<emph>Var:</emph> Any variable that you want to test if it is declared as an array. If the variable is an array, then the function returns <emph>True</emph>, otherwise <emph>False </emph>is returned."
+msgstr "<emph>Var:</emph> Cualquier variable que se desea comprobar para ver si está declarada como matriz. Si la variable es una matriz, la función devuelve el valor <emph>True</emph>, en caso contrario devuelve <emph>False</emph>."
+
+#: 03102200.xhp#hd_id3155131.9.help.text
+msgctxt "03102200.xhp#hd_id3155131.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03102200.xhp#par_id3153365.10.help.text
+msgid "Sub ExampleIsArray"
+msgstr "Sub EjemploIsArray"
+
+#: 03102200.xhp#par_id3150487.11.help.text
+msgid "Dim sDatf(10) as String"
+msgstr "Dim sDatf(10) as String"
+
+#: 03102200.xhp#par_id3155414.12.help.text
+msgid "print isarray(sdatf())"
+msgstr "print isarray(sdatf())"
+
+#: 03102200.xhp#par_id3153727.13.help.text
+msgctxt "03102200.xhp#par_id3153727.13.help.text"
+msgid "end Sub"
+msgstr "end Sub"
+
+#: 03080802.xhp#tit.help.text
+msgid "Oct Function [Runtime]"
+msgstr "Función Oct [Ejecución]"
+
+#: 03080802.xhp#bm_id3155420.help.text
+msgid "<bookmark_value>Oct function</bookmark_value>"
+msgstr "<bookmark_value>Oct;función</bookmark_value>"
+
+#: 03080802.xhp#hd_id3155420.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080802.xhp\" name=\"Oct Function [Runtime]\">Oct Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080802.xhp\" name=\"Oct Function [Runtime]\">Función Oct [Ejecución]</link>"
+
+#: 03080802.xhp#par_id3154924.2.help.text
+msgid "Returns the octal value of a number."
+msgstr "Devuelve el valor octal de un número."
+
+#: 03080802.xhp#hd_id3148947.3.help.text
+msgctxt "03080802.xhp#hd_id3148947.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03080802.xhp#par_id3150543.4.help.text
+msgid "Oct (Number)"
+msgstr "Oct (Número)"
+
+#: 03080802.xhp#hd_id3153360.5.help.text
+msgctxt "03080802.xhp#hd_id3153360.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03080802.xhp#par_id3154138.6.help.text
+msgctxt "03080802.xhp#par_id3154138.6.help.text"
+msgid "String"
+msgstr "Cadena"
+
+#: 03080802.xhp#hd_id3156422.7.help.text
+msgctxt "03080802.xhp#hd_id3156422.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03080802.xhp#par_id3150768.8.help.text
+msgid "<emph>Number:</emph> Any numeric expression that you want to convert to an octal value."
+msgstr "<emph>Número:</emph> Cualquier expresión numérica que desee convertir en valor octal."
+
+#: 03080802.xhp#hd_id3148672.9.help.text
+msgctxt "03080802.xhp#hd_id3148672.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03080802.xhp#par_id3147287.10.help.text
+msgid "Sub ExampleOkt"
+msgstr "Sub EjemploOct"
+
+#: 03080802.xhp#par_id3161831.11.help.text
+msgid "Msgbox Oct(255)"
+msgstr "Msgbox Oct(255)"
+
+#: 03080802.xhp#par_id3147318.12.help.text
+msgctxt "03080802.xhp#par_id3147318.12.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03120308.xhp#tit.help.text
+msgid "RSet Statement [Runtime]"
+msgstr "Instrucción RSet [Ejecución]"
+
+#: 03120308.xhp#bm_id3153345.help.text
+msgid "<bookmark_value>RSet statement</bookmark_value>"
+msgstr "<bookmark_value>RSet;instrucción</bookmark_value>"
+
+#: 03120308.xhp#hd_id3153345.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">Instrucción RSet [Ejecución]</link>"
+
+#: 03120308.xhp#par_id3150503.2.help.text
+msgid "Right-aligns a string within a string variable, or copies a user-defined variable type into another."
+msgstr "Alinea a la derecha una cadena dentro de una variable de cadena o copia una variable de tipo definido por el usuario en otra."
+
+#: 03120308.xhp#hd_id3149234.3.help.text
+msgctxt "03120308.xhp#hd_id3149234.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03120308.xhp#par_id3150669.4.help.text
+msgid "RSet Text As String = Text or RSet Variable1 = Variable2"
+msgstr "RSet Texto As String = Texto o RSet Variable1 = Variable2"
+
+#: 03120308.xhp#hd_id3156024.5.help.text
+msgctxt "03120308.xhp#hd_id3156024.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03120308.xhp#par_id3148552.6.help.text
+msgid "<emph>Text:</emph> Any string variable."
+msgstr "<emph>Texto:</emph> Cualquier variable de cadena."
+
+#: 03120308.xhp#par_id3154924.7.help.text
+msgid "<emph>Text</emph>: String that you want to right-align in the string variable."
+msgstr "<emph>Texto</emph>: Cadena que se desea alinear a la derecha en la variable de cadena."
+
+#: 03120308.xhp#par_id3149456.8.help.text
+msgid "<emph>Variable1:</emph> User-defined variable that is the target for the copied variable."
+msgstr "<emph>Variable1:</emph> Variable definida por el usuario que es el destino para la copia."
+
+#: 03120308.xhp#par_id3153381.9.help.text
+msgid "<emph>Variable2:</emph> User-defined variable that you want to copy to another variable."
+msgstr "<emph>Variable2:</emph> Variable definida por el usuario que se desea copiar."
+
+#: 03120308.xhp#par_id3154140.10.help.text
+msgid "If the string is shorter than the string variable, <emph>RSet</emph> aligns the string to the right within the string variable. Any remaining characters in the string variable are replaced with spaces. If the string is longer than the string variable, characters exceeding the length of the variable are truncated, and only the remaining characters are right-aligned within the string variable."
+msgstr "Si la cadena es más corta que la variable de cadena, <emph>RSet</emph> alinea la cadena a la derecha dentro de la variable de cadena. Los caracteres que queden en la variable de cadena se sustituyen por espacios. Si la cadena es más larga que la variable de cadena, los caracteres que sobrepasan la longitud de ésta se truncan y sólo los restantes se alinean a la derecha dentro de la variable de cadena."
+
+#: 03120308.xhp#par_id3149202.11.help.text
+msgid "You can also use the <emph>RSet statement</emph> to assign variables of one user-defined type to another."
+msgstr "También se puede usar la instrucción <emph>RSet</emph> para asignar variables de un tipo definido por el usuario a otro."
+
+#: 03120308.xhp#par_id3151042.12.help.text
+msgid "The following example uses the <emph>RSet</emph> and <emph>LSet</emph> statements to modify the left and right alignment of a string."
+msgstr "El ejemplo siguiente usa las instrucciones <emph>RSet</emph> y <emph>LSet</emph> para modificar la alineación derecha e izquierda de una cadena."
+
+#: 03120308.xhp#hd_id3154909.13.help.text
+msgctxt "03120308.xhp#hd_id3154909.13.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03120308.xhp#par_id3154218.14.help.text
+msgctxt "03120308.xhp#par_id3154218.14.help.text"
+msgid "Sub ExampleRLSet"
+msgstr "Sub EjemploRLSet"
+
+#: 03120308.xhp#par_id3147288.15.help.text
+msgid "Dim sVar as string"
+msgstr "Dim sVar as string"
+
+#: 03120308.xhp#par_id3153367.16.help.text
+msgid "Dim sExpr as string"
+msgstr "Dim sExpr as string"
+
+#: 03120308.xhp#par_id3153952.18.help.text
+msgctxt "03120308.xhp#par_id3153952.18.help.text"
+msgid "sVar = String(40,\"*\")"
+msgstr "sVar = String(40,\"*\")"
+
+#: 03120308.xhp#par_id3154013.19.help.text
+msgctxt "03120308.xhp#par_id3154013.19.help.text"
+msgid "sExpr = \"SBX\""
+msgstr "sExpr = \"SBX\""
+
+#: 03120308.xhp#par_id3155856.20.help.text
+msgid "REM Right-align \"SBX\" in a 40-character string"
+msgstr "REM Alinea a la derecha \"SBX\" dentro de una cadena de 40 caracteres"
+
+#: 03120308.xhp#par_id3152577.21.help.text
+msgctxt "03120308.xhp#par_id3152577.21.help.text"
+msgid "REM Replace asterisks with spaces"
+msgstr "REM Sustituir asteriscos por espacios"
+
+#: 03120308.xhp#par_id3149260.22.help.text
+msgctxt "03120308.xhp#par_id3149260.22.help.text"
+msgid "RSet sVar = sExpr"
+msgstr "RSet sVar = sExpr"
+
+#: 03120308.xhp#par_id3156444.23.help.text
+msgctxt "03120308.xhp#par_id3156444.23.help.text"
+msgid "Print \">\"; sVar; \"<\""
+msgstr "Print \">\"; sVar; \"<\""
+
+#: 03120308.xhp#par_id3148575.25.help.text
+msgctxt "03120308.xhp#par_id3148575.25.help.text"
+msgid "sVar = String(5,\"*\")"
+msgstr "sVar = String(5,\"*\")"
+
+#: 03120308.xhp#par_id3153140.26.help.text
+msgctxt "03120308.xhp#par_id3153140.26.help.text"
+msgid "sExpr = \"123457896\""
+msgstr "sExpr = \"123457896\""
+
+#: 03120308.xhp#par_id3153144.27.help.text
+msgctxt "03120308.xhp#par_id3153144.27.help.text"
+msgid "RSet sVar = sExpr"
+msgstr "RSet sVar = sExpr"
+
+#: 03120308.xhp#par_id3150116.28.help.text
+msgctxt "03120308.xhp#par_id3150116.28.help.text"
+msgid "Print \">\"; sVar; \"<\""
+msgstr "Print \">\"; sVar; \"<\""
+
+#: 03120308.xhp#par_id3154491.30.help.text
+msgctxt "03120308.xhp#par_id3154491.30.help.text"
+msgid "sVar = String(40,\"*\")"
+msgstr "sVar = String(40,\"*\")"
+
+#: 03120308.xhp#par_id3149412.31.help.text
+msgctxt "03120308.xhp#par_id3149412.31.help.text"
+msgid "sExpr = \"SBX\""
+msgstr "sExpr = \"SBX\""
+
+#: 03120308.xhp#par_id3145801.32.help.text
+msgid "REM Left-align \"SBX\" in a 40-character string"
+msgstr "REM Alinea a la izquierda \"SBX\" dentro de una cadena de 40 caracteres"
+
+#: 03120308.xhp#par_id3145646.33.help.text
+msgctxt "03120308.xhp#par_id3145646.33.help.text"
+msgid "LSet sVar = sExpr"
+msgstr "LSet sVar = sExpr"
+
+#: 03120308.xhp#par_id3154511.34.help.text
+msgctxt "03120308.xhp#par_id3154511.34.help.text"
+msgid "Print \">\"; sVar; \"<\""
+msgstr "Print \">\"; sVar; \"<\""
+
+#: 03120308.xhp#par_id3153839.36.help.text
+msgctxt "03120308.xhp#par_id3153839.36.help.text"
+msgid "sVar = String(5,\"*\")"
+msgstr "sVar = String(5,\"*\")"
+
+#: 03120308.xhp#par_id3149122.37.help.text
+msgctxt "03120308.xhp#par_id3149122.37.help.text"
+msgid "sExpr = \"123456789\""
+msgstr "sExpr = \"123456789\""
+
+#: 03120308.xhp#par_id3150330.38.help.text
+msgctxt "03120308.xhp#par_id3150330.38.help.text"
+msgid "LSet sVar = sExpr"
+msgstr "LSet sVar = sExpr"
+
+#: 03120308.xhp#par_id3154480.39.help.text
+msgctxt "03120308.xhp#par_id3154480.39.help.text"
+msgid "Print \">\"; sVar; \"<\""
+msgstr "Print \">\"; sVar; \"<\""
+
+#: 03120308.xhp#par_id3148914.40.help.text
+msgctxt "03120308.xhp#par_id3148914.40.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03020405.xhp#tit.help.text
+msgid "FileAttr-Function [Runtime]"
+msgstr "Función FileAttr [Ejecución]"
+
+#: 03020405.xhp#bm_id3153380.help.text
+msgid "<bookmark_value>FileAttr function</bookmark_value>"
+msgstr "<bookmark_value>FileAttr;función</bookmark_value>"
+
+#: 03020405.xhp#hd_id3153380.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020405.xhp\" name=\"FileAttr-Function [Runtime]\">FileAttr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020405.xhp\" name=\"Función FileAttr [Runtime]\">Función FileAttr [Runtime]</link>"
+
+#: 03020405.xhp#par_id3154366.2.help.text
+msgid "Returns the access mode or the file access number of a file that was opened with the Open statement. The file access number is dependent on the operating system (OSH = Operating System Handle)."
+msgstr "Devuelve el modo de acceso o el número de acceso de un archivo que se abrió con la instrucción Open. El número de acceso de archivo depende del sistema operativo (OSH = manejador de sistema operativo)."
+
+#: 03020405.xhp#par_id3153364.3.help.text
+msgid "If you use a 32-Bit operating system, you cannot use the FileAttr-Function to determine the file access number."
+msgstr "Si se utiliza un sistema operativo de 32 bits, no es posible usar la función FileAttr para determinar el número de acceso de archivo."
+
+#: 03020405.xhp#par_id3163713.4.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
+msgstr "Consulte también: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
+
+#: 03020405.xhp#hd_id3151116.5.help.text
+msgctxt "03020405.xhp#hd_id3151116.5.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03020405.xhp#par_id3154012.6.help.text
+msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
+msgstr "FileAttr (NúmeroArchivo As Integer, Atributo As Integer)"
+
+#: 03020405.xhp#hd_id3147349.7.help.text
+msgctxt "03020405.xhp#hd_id3147349.7.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03020405.xhp#par_id3146974.8.help.text
+msgctxt "03020405.xhp#par_id3146974.8.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03020405.xhp#hd_id3153728.9.help.text
+msgctxt "03020405.xhp#hd_id3153728.9.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03020405.xhp#par_id3151074.10.help.text
+msgid "<emph>FileNumber:</emph> The number of the file that was opened with the Open statement."
+msgstr "<emph>NúmeroArchivo:</emph> El número del archivo que se abrió con la instrucción Open."
+
+#: 03020405.xhp#par_id3144766.11.help.text
+msgid "<emph>Attribute:</emph> Integer expression that indicates the type of file information that you want to return. The following values are possible:"
+msgstr "<emph>Atributo:</emph> Expresión de entero que indica el tipo de información que se desea devolver. Se pueden especificar los valores siguientes:"
+
+#: 03020405.xhp#par_id3147396.12.help.text
+msgid "1: The FileAttr-Function indicates the access mode of the file."
+msgstr "1: La función FileAttr indica el modo de acceso del archivo."
+
+#: 03020405.xhp#par_id3149959.13.help.text
+msgid "2: The FileAttr-Function returns the file access number of the operating system."
+msgstr "2: La función FileAttr devuelve el número de acceso de archivo del sistema operativo."
+
+#: 03020405.xhp#par_id3154018.14.help.text
+msgid "If you specify a parameter attribute with a value of 1, the following return values apply:"
+msgstr "Si se especifica un atributo de parámetro con un valor de 1, se aplican los valores de retorno siguientes:"
+
+#: 03020405.xhp#par_id3149124.15.help.text
+msgid "1 - INPUT (file open for input)"
+msgstr "1 - INPUT (archivo abierto para entrada)"
+
+#: 03020405.xhp#par_id3156275.16.help.text
+msgid "2 - OUTPUT (file open for output)"
+msgstr "2 - OUTPUT (archivo abierto para salida)"
+
+#: 03020405.xhp#par_id3155066.17.help.text
+msgid "4 - RANDOM (file open for random access)"
+msgstr "4 - RANDOM (archivo abierto para acceso aleatorio)"
+
+#: 03020405.xhp#par_id3148406.18.help.text
+msgid "8 - APPEND (file open for appending)"
+msgstr "8 - APPEND (archivo abierto para adjunción)"
+
+#: 03020405.xhp#par_id3154757.19.help.text
+msgid "32 - BINARY (file open in binary mode)."
+msgstr "32 - BINARY (archivo abierto en modo binario)."
+
+#: 03020405.xhp#hd_id3147339.20.help.text
+msgctxt "03020405.xhp#hd_id3147339.20.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03020405.xhp#par_id3155959.21.help.text
+msgid "Sub ExampleFileAttr"
+msgstr "Sub EjemploFileAttr"
+
+#: 03020405.xhp#par_id3145147.22.help.text
+msgctxt "03020405.xhp#par_id3145147.22.help.text"
+msgid "Dim iNumber As Integer"
+msgstr "Dim iNumero As Integer"
+
+#: 03020405.xhp#par_id3153966.23.help.text
+msgctxt "03020405.xhp#par_id3153966.23.help.text"
+msgid "Dim sLine As String"
+msgstr "Dim sLinea As String"
+
+#: 03020405.xhp#par_id3155336.24.help.text
+msgctxt "03020405.xhp#par_id3155336.24.help.text"
+msgid "Dim aFile As String"
+msgstr "Dim aArchivo As String"
+
+#: 03020405.xhp#par_id3163807.25.help.text
+msgctxt "03020405.xhp#par_id3163807.25.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr "aArchivo = \"c:\\data.txt\""
+
+#: 03020405.xhp#par_id3154021.27.help.text
+msgctxt "03020405.xhp#par_id3154021.27.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumero = Freefile"
+
+#: 03020405.xhp#par_id3153786.28.help.text
+msgctxt "03020405.xhp#par_id3153786.28.help.text"
+msgid "Open aFile For Output As #iNumber"
+msgstr "Open aArchivo For Output As #iNumero"
+
+#: 03020405.xhp#par_id3155607.29.help.text
+msgctxt "03020405.xhp#par_id3155607.29.help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr "Print #iNumero, \"Esta es una línea de texto\""
+
+#: 03020405.xhp#par_id3150361.30.help.text
+msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
+msgstr "MsgBox FileAttr(#iNumero, 1 ),0,\"Modo de acceso\""
+
+#: 03020405.xhp#par_id3149817.31.help.text
+msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
+msgstr "MsgBox FileAttr(#iNumero, 2 ),0,\"Atributo de archivo\""
+
+#: 03020405.xhp#par_id3155115.32.help.text
+msgctxt "03020405.xhp#par_id3155115.32.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumero"
+
+#: 03020405.xhp#par_id3147130.33.help.text
+msgctxt "03020405.xhp#par_id3147130.33.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 01030100.xhp#tit.help.text
+msgid "IDE Overview"
+msgstr "Resumen de IDE"
+
+#: 01030100.xhp#hd_id3147291.1.help.text
+msgid "<link href=\"text/sbasic/shared/01030100.xhp\" name=\"IDE Overview\">IDE Overview</link>"
+msgstr "<link href=\"text/sbasic/shared/01030100.xhp\" name=\"Resumen de IDE\">Resumen de IDE</link>"
+
+#: 01030100.xhp#par_id3156344.3.help.text
+msgid "The <link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\"><emph>Macro Toolbar</emph></link> in the IDE provides various icons for editing and testing programs."
+msgstr "La <link href=\"text/sbasic/shared/main0211.xhp\" name=\"Barra de macros\"><emph>Barra de macros</emph></link> de IDE incluye varios iconos para editar y comprobar programas."
+
+#: 01030100.xhp#par_id3151210.4.help.text
+msgid "In the <link href=\"text/sbasic/shared/01030200.xhp\" name=\"Editor window\"><emph>Editor window</emph></link>, directly below the Macro toolbar, you can edit the Basic program code. The column on the left side is used to set breakpoints in the program code."
+msgstr "En la <link href=\"text/sbasic/shared/01030200.xhp\" name=\"Ventana de edición\"><emph>Ventana de edición</emph></link> que se encuentra justo debajo de la Barra de macros, puede editar el código del programa Basic. La columna de la parte izquierda se utiliza para establecer puntos de interrupción en el código del programa."
+
+#: 01030100.xhp#par_id3154686.5.help.text
+msgid "The <link href=\"text/sbasic/shared/01050100.xhp\" name=\"Watch\"><emph>Watch window</emph></link> (observer) is located below the Editor window at the left, and displays the contents of variables or arrays during a single step process."
+msgstr "El <link href=\"text/sbasic/shared/01050100.xhp\" name=\"Observador\"><emph>Observador</emph></link> está situado debajo de la ventana de edición, en la parte izquierda, y muestra el contenido de variables o matrices durante un proceso paso a paso."
+
+#: 01030100.xhp#par_id3145787.8.help.text
+msgid "The <emph>Call Stack</emph> window to the right provides information about the call stack of SUBS and FUNCTIONS when a program runs."
+msgstr "La ventana <emph>Pila de llamada</emph> de la derecha proporciona información sobre la pila de llamadas de SUBS y FUNCIONES cuando se ejecuta un programa."
+
+#: 01030100.xhp#par_id3147434.6.help.text
+msgctxt "01030100.xhp#par_id3147434.6.help.text"
+msgid "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
+msgstr "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">IDE Basic</link>"
+
+#: 03010201.xhp#tit.help.text
+msgid "InputBox Function [Runtime]"
+msgstr "Función InputBox [Ejecución]"
+
+#: 03010201.xhp#bm_id3148932.help.text
+msgid "<bookmark_value>InputBox function</bookmark_value>"
+msgstr "<bookmark_value>InputBox;función</bookmark_value>"
+
+#: 03010201.xhp#hd_id3148932.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010201.xhp\" name=\"InputBox Function [Runtime]\">InputBox Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010201.xhp\" name=\"Función InputBox [Runtime]\">Función InputBox [Runtime]</link>"
+
+#: 03010201.xhp#par_id3151262.2.help.text
+msgid "Displays a prompt in a dialog at which the user can input text. The input is assigned to a variable."
+msgstr "Muestra un indicador en un diálogo en el que el usuario puede introducir texto. La entrada se asigna a una variable."
+
+#: 03010201.xhp#par_id3151100.3.help.text
+msgid "The <emph>InputBox</emph> statement is a convenient method of entering text through a dialog. Confirm the input by clicking OK or pressing Return. The input is returned as the function return value. If you close the dialog with Cancel, <emph>InputBox</emph> returns a zero-length string (\"\")."
+msgstr "La instrucción <emph>InputBox</emph> es un método cómodo para introducir texto a través de un diálogo. Confirme la entrada pulsando Aceptar o la tecla Retorno. La entrada se devuelve como valor de retorno de la función. Si se cierra el diálogo con Cancelar, <emph>InputBox</emph> devuelve una cadena de longitud cero (\"\")."
+
+#: 03010201.xhp#hd_id3152347.4.help.text
+msgctxt "03010201.xhp#hd_id3152347.4.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03010201.xhp#par_id3159201.5.help.text
+msgid "InputBox (Msg As String[, Title As String[, Default As String[, x_pos As Integer, y_pos As Integer]]]]) "
+msgstr "InputBox (Mensaje As String[, Título As String[, Predeterminado As String[, pos_x As Integer, pos_y As Integer]]]])"
+
+#: 03010201.xhp#hd_id3150713.6.help.text
+msgctxt "03010201.xhp#hd_id3150713.6.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03010201.xhp#par_id3145090.7.help.text
+msgctxt "03010201.xhp#par_id3145090.7.help.text"
+msgid "String"
+msgstr "Cadena"
+
+#: 03010201.xhp#hd_id3149346.8.help.text
+msgctxt "03010201.xhp#hd_id3149346.8.help.text"
+msgid "Parameter:"
+msgstr "Parámetro:"
+
+#: 03010201.xhp#par_id3153311.9.help.text
+msgid "<emph>Msg</emph>: String expression displayed as the message in the dialog box."
+msgstr "<emph>Mensaje</emph>: Expresión de cadena que se muestra como mensaje en el cuadro de diálogo."
+
+#: 03010201.xhp#par_id3145315.10.help.text
+msgid "<emph>Title</emph>: String expression displayed in the title bar of the dialog box."
+msgstr "<emph>Título</emph>: Expresión de cadena que se muestra en la barra de título del cuadro de diálogo."
+
+#: 03010201.xhp#par_id3154307.11.help.text
+msgid "<emph>Default</emph>: String expression displayed in the text box as default if no other input is given."
+msgstr "<emph>Predeterminado</emph>: Expresión de cadena que se muestra en el cuadro de texto como valor predeterminado si no se introduce nada."
+
+#: 03010201.xhp#par_id3147573.12.help.text
+msgid "<emph>x_pos</emph>: Integer expression that specifies the horizontal position of the dialog. The position is an absolute coordinate and does not refer to the window of the office application."
+msgstr "<emph>pos_x</emph>: Expresión entera que especifica la posición horizontal del diálogo. La posición es una coordenada absoluta y no hace referencia a la ventana de la aplicación de office."
+
+#: 03010201.xhp#par_id3156024.13.help.text
+msgid "<emph>y_pos</emph>: Integer expression that specifies the vertical position of the dialog. The position is an absolute coordinate and does not refer to the window of the office application."
+msgstr "<emph>pos_y</emph>: Expresión entera que especifica la posición vertical del diálogo. La posición es una coordenada absoluta y no hace referencia a la ventana de la aplicación de office."
+
+#: 03010201.xhp#par_id3153897.14.help.text
+msgid "If <emph>x_pos</emph> and <emph>y_pos</emph> are omitted, the dialog is centered on the screen. The position is specified in <link href=\"text/sbasic/shared/00000002.xhp#twips\" name=\"twips\">twips</link>."
+msgstr "Si se omiten <emph>pos_x</emph> y <emph>pos_y</emph>, el diálogo aparece centrado en la pantalla. La posición se especifica en <link href=\"text/sbasic/shared/00000002.xhp#twips\" name=\"twips\">twips</link>."
+
+#: 03010201.xhp#hd_id3149456.15.help.text
+msgctxt "03010201.xhp#hd_id3149456.15.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03010201.xhp#par_id3153379.16.help.text
+msgid "Sub ExampleInputBox"
+msgstr "Sub EjemploInputBox"
+
+#: 03010201.xhp#par_id3149656.17.help.text
+msgctxt "03010201.xhp#par_id3149656.17.help.text"
+msgid "Dim sText As String"
+msgstr "Dim sTexto As String"
+
+#: 03010201.xhp#par_id3154367.18.help.text
+msgid "sText = InputBox (\"Please enter a phrase:\",\"Dear User\")"
+msgstr "sTexto = InputBox (\"Escriba una frase:\",\"Estimado usuario\")"
+
+#: 03010201.xhp#par_id3151042.19.help.text
+msgid "MsgBox ( sText , 64, \"Confirmation of phrase\")"
+msgstr "MsgBox ( sTexto , 64, \"Confirmación de frase\")"
+
+#: 03010201.xhp#par_id3150768.20.help.text
+msgctxt "03010201.xhp#par_id3150768.20.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03070400.xhp#tit.help.text
+msgid "\"/\" Operator [Runtime]"
+msgstr "Operador \"/\" [Ejecución]"
+
+#: 03070400.xhp#bm_id3150669.help.text
+msgid "<bookmark_value>\"/\" operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>operador \"/\";operadores matemáticos</bookmark_value>"
+
+#: 03070400.xhp#hd_id3150669.1.help.text
+msgid "<link href=\"text/sbasic/shared/03070400.xhp\">\"/\" Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070400.xhp\">Operador \"/\" [Ejecución]</link>"
+
+#: 03070400.xhp#par_id3149670.2.help.text
+msgid "Divides two values."
+msgstr "Divide dos valores."
+
+#: 03070400.xhp#hd_id3148946.3.help.text
+msgctxt "03070400.xhp#hd_id3148946.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03070400.xhp#par_id3153360.4.help.text
+msgid "Result = Expression1 / Expression2 "
+msgstr "Resultado = Expresión1 / Expresión2"
+
+#: 03070400.xhp#hd_id3150359.5.help.text
+msgctxt "03070400.xhp#hd_id3150359.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03070400.xhp#par_id3154141.6.help.text
+msgid "<emph>Result:</emph> Any numerical value that contains the result of the division."
+msgstr "<emph>Resultado:</emph> Cualquier valor numérico que contenga el resultado de la división."
+
+#: 03070400.xhp#par_id3150448.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to divide."
+msgstr "<emph>Expresión1, Expresión2:</emph> Las expresiones numéricas que se desea dividir."
+
+#: 03070400.xhp#hd_id3154684.8.help.text
+msgctxt "03070400.xhp#hd_id3154684.8.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03070400.xhp#par_id3145786.9.help.text
+msgid "Sub ExampleDivision1"
+msgstr "Sub EjemploDivision1"
+
+#: 03070400.xhp#par_id3153768.10.help.text
+msgid "Print 5 / 5"
+msgstr "Print 5 / 5"
+
+#: 03070400.xhp#par_id3161832.11.help.text
+msgctxt "03070400.xhp#par_id3161832.11.help.text"
+msgid "End sub"
+msgstr "End sub"
+
+#: 03070400.xhp#par_id3149484.13.help.text
+msgid "Sub ExampleDivision2"
+msgstr "Sub EjemploDivision2"
+
+#: 03070400.xhp#par_id3145365.14.help.text
+msgctxt "03070400.xhp#par_id3145365.14.help.text"
+msgid "Dim iValue1 as Integer"
+msgstr "Dim iValor1 as Integer"
+
+#: 03070400.xhp#par_id3146119.15.help.text
+msgctxt "03070400.xhp#par_id3146119.15.help.text"
+msgid "Dim iValue2 as Integer"
+msgstr "Dim iValor2 as Integer"
+
+#: 03070400.xhp#par_id3150011.16.help.text
+msgctxt "03070400.xhp#par_id3150011.16.help.text"
+msgid "iValue1 = 5"
+msgstr "iValor1 = 5"
+
+#: 03070400.xhp#par_id3153726.17.help.text
+msgctxt "03070400.xhp#par_id3153726.17.help.text"
+msgid "iValue2 = 10"
+msgstr "iValor2 = 10"
+
+#: 03070400.xhp#par_id3151117.18.help.text
+msgid "Print iValue1 / iValue2"
+msgstr "Print iValor1 / iValor2"
+
+#: 03070400.xhp#par_id3146975.19.help.text
+msgctxt "03070400.xhp#par_id3146975.19.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03060300.xhp#tit.help.text
+msgid "Imp-Operator [Runtime]"
+msgstr "Operador Imp [Ejecución]"
+
+#: 03060300.xhp#bm_id3156024.help.text
+msgid "<bookmark_value>Imp operator (logical)</bookmark_value>"
+msgstr "<bookmark_value>Imp;operadores lógicos</bookmark_value>"
+
+#: 03060300.xhp#hd_id3156024.1.help.text
+msgid "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp-Operator [Runtime]\">Imp Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Operador Imp [Runtime]\">Operador Imp [Ejecución]</link>"
+
+#: 03060300.xhp#par_id3148947.2.help.text
+msgid "Performs a logical implication on two expressions."
+msgstr "Lleva a cabo una implicación lógica en dos expresiones."
+
+#: 03060300.xhp#hd_id3148664.3.help.text
+msgctxt "03060300.xhp#hd_id3148664.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03060300.xhp#par_id3149656.4.help.text
+msgid "Result = Expression1 Imp Expression2"
+msgstr "Resultado = Expresión1 Imp Expresión2"
+
+#: 03060300.xhp#hd_id3151212.5.help.text
+msgctxt "03060300.xhp#hd_id3151212.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03060300.xhp#par_id3154910.6.help.text
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the implication."
+msgstr "Resultado: Cualquier variable numérica que contenga el resultado de la implicación."
+
+#: 03060300.xhp#par_id3156281.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to evaluate with the Imp operator."
+msgstr "<emph>Expresión1, Expresión2:</emph> Las expresiones que se desee evaluar con el operador Imp."
+
+#: 03060300.xhp#par_id3150440.8.help.text
+msgid "If you use the Imp operator in Boolean expressions, False is only returned if the first expression evaluates to True and the second expression to False."
+msgstr "Si se utiliza el operador Imp en expresiones lógicas, sólo se devuelve False si el resultado de la primera expresión es True y el de la segunda es False."
+
+#: 03060300.xhp#par_id3163710.9.help.text
+msgid "If you use the Imp operator in bit expressions, a bit is deleted from the result if the corresponding bit is set in the first expression and the corresponding bit is deleted in the second expression."
+msgstr "Si se utiliza el operador Imp en expresiones de bits, para cada posición toman el valor cero los bits del resultado que tienen el valor 1 en la primera expresión y el valor 0 en la segunda."
+
+#: 03060300.xhp#hd_id3147318.10.help.text
+msgctxt "03060300.xhp#hd_id3147318.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03060300.xhp#par_id3155854.11.help.text
+msgid "Sub ExampleImp"
+msgstr "Sub EjemploImp"
+
+#: 03060300.xhp#par_id3145272.12.help.text
+msgctxt "03060300.xhp#par_id3145272.12.help.text"
+msgid "Dim A as Variant, B as Variant, C as Variant, D as Variant"
+msgstr "Dim A as Variant, B as Variant, C as Variant, D as Variant"
+
+#: 03060300.xhp#par_id3159156.13.help.text
+msgctxt "03060300.xhp#par_id3159156.13.help.text"
+msgid "Dim vOut as Variant"
+msgstr "Dim vOut as Variant"
+
+#: 03060300.xhp#par_id3151116.14.help.text
+msgctxt "03060300.xhp#par_id3151116.14.help.text"
+msgid "A = 10: B = 8: C = 6: D = Null"
+msgstr "A = 10: B = 8: C = 6: D = Null"
+
+#: 03060300.xhp#par_id3145750.15.help.text
+msgid "vOut = A > B Imp B > C REM returns -1"
+msgstr "vOut = A > B Imp B > C REM devuelve -1"
+
+#: 03060300.xhp#par_id3156441.16.help.text
+msgid "vOut = B > A Imp B > C REM returns -1"
+msgstr "vOut = B > A Imp B > C REM devuelve -1"
+
+#: 03060300.xhp#par_id3152596.17.help.text
+msgid "vOut = A > B Imp B > D REM returns 0"
+msgstr "vOut = A > B Imp B > D REM devuelve 0"
+
+#: 03060300.xhp#par_id3154942.18.help.text
+msgid "vOut = (B > D Imp B > A) REM returns -1"
+msgstr "vOut = (B > D Imp B > A) REM devuelve -1"
+
+#: 03060300.xhp#par_id3154492.19.help.text
+msgid "vOut = B Imp A REM returns -1"
+msgstr "vOut = B Imp A REM devuelve -1"
+
+#: 03060300.xhp#par_id3147394.20.help.text
+msgctxt "03060300.xhp#par_id3147394.20.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 00000003.xhp#tit.help.text
+msgctxt "00000003.xhp#tit.help.text"
+msgid "Information"
+msgstr "Información"
+
+#: 00000003.xhp#hd_id3148550.1.help.text
+msgctxt "00000003.xhp#hd_id3148550.1.help.text"
+msgid "Information"
+msgstr "Información"
+
+#: 00000003.xhp#par_id3153381.102.help.text
+msgid "You can set the locale used for controlling the formatting numbers, dates and currencies in $[officename] Basic in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</emph>. In Basic format codes, the decimal point (<emph>.</emph>) is always used as <emph>placeholder</emph> for the decimal separator defined in your locale and will be replaced by the corresponding character."
+msgstr "Puede establecer la configuración que se usará para controlar el formato de números, fechas e importes monetarios en $[officename] Basic a través de <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - Configuración de idiomas - Idiomas</emph>"
+
+#: 00000003.xhp#par_id3150870.103.help.text
+msgid "The same applies to the locale settings for date, time and currency formats. The Basic format code will be interpreted and displayed according to your locale setting."
+msgstr "Lo mismo se aplica a los valores de configuración de los formatos de fecha, hora y moneda. El código de formato de Basic se interpretará y se mostrará según los valores de configuración del entorno local correspondientes."
+
+#: 00000003.xhp#par_id3156424.2.help.text
+msgid "The color values of the 16 basic colors are as follows:"
+msgstr "Los valores de los 16 colores básicos son los siguientes:"
+
+#: 00000003.xhp#par_id3153091.3.help.text
+msgid "<emph>Color Value</emph>"
+msgstr "<emph>Valor de color</emph>"
+
+#: 00000003.xhp#par_id3154319.4.help.text
+msgid "<emph>Color Name</emph>"
+msgstr "<emph>Nombre de color</emph>"
+
+#: 00000003.xhp#par_id3151112.5.help.text
+msgctxt "00000003.xhp#par_id3151112.5.help.text"
+msgid "0"
+msgstr "0"
+
+#: 00000003.xhp#par_id3155854.6.help.text
+msgid "Black"
+msgstr "Negro"
+
+#: 00000003.xhp#par_id3154942.7.help.text
+msgid "128"
+msgstr "128"
+
+#: 00000003.xhp#par_id3154731.8.help.text
+msgid "Blue"
+msgstr "Azul"
+
+#: 00000003.xhp#par_id3145645.9.help.text
+msgid "32768"
+msgstr "32768"
+
+#: 00000003.xhp#par_id3149400.10.help.text
+msgid "Green"
+msgstr "Verde"
+
+#: 00000003.xhp#par_id3150753.11.help.text
+msgid "32896"
+msgstr "32896"
+
+#: 00000003.xhp#par_id3153765.12.help.text
+msgid "Cyan"
+msgstr "Cián"
+
+#: 00000003.xhp#par_id3154756.13.help.text
+msgid "8388608"
+msgstr "8388608"
+
+#: 00000003.xhp#par_id3159266.14.help.text
+msgid "Red"
+msgstr "Rojo"
+
+#: 00000003.xhp#par_id3163807.15.help.text
+msgid "8388736"
+msgstr "8388736"
+
+#: 00000003.xhp#par_id3145150.16.help.text
+msgid "Magenta"
+msgstr "Magenta"
+
+#: 00000003.xhp#par_id3147002.17.help.text
+msgid "8421376"
+msgstr "8421376"
+
+#: 00000003.xhp#par_id3152778.18.help.text
+msgid "Yellow"
+msgstr "Amarillo"
+
+#: 00000003.xhp#par_id3150088.19.help.text
+msgid "8421504"
+msgstr "8421504"
+
+#: 00000003.xhp#par_id3159239.20.help.text
+msgid "White"
+msgstr "Blanco"
+
+#: 00000003.xhp#par_id3150206.21.help.text
+msgid "12632256"
+msgstr "12632256"
+
+#: 00000003.xhp#par_id3149817.22.help.text
+msgid "Gray"
+msgstr "Gris"
+
+#: 00000003.xhp#par_id3150363.23.help.text
+msgid "255"
+msgstr "255"
+
+#: 00000003.xhp#par_id3154576.24.help.text
+msgid "Light blue"
+msgstr "Azul claro"
+
+#: 00000003.xhp#par_id3150367.25.help.text
+msgid "65280"
+msgstr "65280"
+
+#: 00000003.xhp#par_id3150202.26.help.text
+msgid "Light green"
+msgstr "Verde claro"
+
+#: 00000003.xhp#par_id3154487.27.help.text
+msgid "65535"
+msgstr "65535"
+
+#: 00000003.xhp#par_id3151332.28.help.text
+msgid "Light cyan"
+msgstr "Cián claro"
+
+#: 00000003.xhp#par_id3148702.29.help.text
+msgid "16711680"
+msgstr "16711680"
+
+#: 00000003.xhp#par_id3153067.30.help.text
+msgid "Light red"
+msgstr "Rojo claro"
+
+#: 00000003.xhp#par_id3153912.31.help.text
+msgid "16711935"
+msgstr "16711935"
+
+#: 00000003.xhp#par_id3159097.32.help.text
+msgid "Light magenta"
+msgstr "Magenta claro"
+
+#: 00000003.xhp#par_id3155266.33.help.text
+msgid "16776960"
+msgstr "16776960"
+
+#: 00000003.xhp#par_id3157978.34.help.text
+msgid "Light yellow"
+msgstr "Amarillo claro"
+
+#: 00000003.xhp#par_id3153286.35.help.text
+msgid "16777215"
+msgstr "16777215"
+
+#: 00000003.xhp#par_id3151302.36.help.text
+msgid "Transparent white"
+msgstr "Blanco transparente"
+
+#: 00000003.xhp#hd_id3152869.37.help.text
+msgid "<variable id=\"errorcode\">Error Codes</variable>"
+msgstr "<variable id=\"errorcode\">Códigos de error</variable>"
+
+#: 00000003.xhp#par_id315509599.help.text
+msgid "<variable id=\"err1\">1 An exception occurred</variable>"
+msgstr "<variable id=\"err1\">1 Interrupción de usuario</variable>"
+
+#: 00000003.xhp#par_id3155095.38.help.text
+msgid "<variable id=\"err2\">2 Syntax error</variable>"
+msgstr "<variable id=\"err2\">2 Error de sintaxis no especificado</variable>"
+
+#: 00000003.xhp#par_id3149126.39.help.text
+msgid "<variable id=\"err3\">3 Return without Gosub</variable>"
+msgstr "<variable id=\"err3\">3 Return sin Gosub</variable>"
+
+#: 00000003.xhp#par_id3153976.40.help.text
+msgid "<variable id=\"err4\">4 Incorrect entry; please retry</variable>"
+msgstr "<variable id=\"err4\">4 Parámetro no válido</variable>"
+
+#: 00000003.xhp#par_id3150891.41.help.text
+msgid "<variable id=\"err5\">5 Invalid procedure call</variable>"
+msgstr "<variable id=\"err5\">5 Llamada a procedimiento no válida</variable>"
+
+#: 00000003.xhp#par_id3159227.42.help.text
+msgid "<variable id=\"err6\">6 Overflow</variable>"
+msgstr "<variable id=\"err6\">6 Desbordamiento</variable>"
+
+#: 00000003.xhp#par_id3154649.43.help.text
+msgid "<variable id=\"err7\">7 Not enough memory</variable>"
+msgstr "<variable id=\"err7\">7 Memoria agotada</variable>"
+
+#: 00000003.xhp#par_id3150050.44.help.text
+msgid "<variable id=\"err8\">8 Array already dimensioned</variable>"
+msgstr "<variable id=\"err8\">8 Matriz ya dimensionada</variable>"
+
+#: 00000003.xhp#par_id3148900.45.help.text
+msgid "<variable id=\"err9\">9 Index out of defined range</variable>"
+msgstr "<variable id=\"err9\">9 Índice fuera de rango</variable>"
+
+#: 00000003.xhp#par_id3153806.46.help.text
+msgid "<variable id=\"err10\">10 Duplicate definition</variable>"
+msgstr "<variable id=\"err10\">10 Definición duplicada</variable>"
+
+#: 00000003.xhp#par_id3146963.47.help.text
+msgid "<variable id=\"err11\">11 Division by zero</variable>"
+msgstr "<variable id=\"err11\">11 División por cero</variable>"
+
+#: 00000003.xhp#par_id3153013.48.help.text
+msgid "<variable id=\"err12\">12 Variable not defined</variable>"
+msgstr "<variable id=\"err12\">12 Variable no definida </variable>"
+
+#: 00000003.xhp#par_id3155593.49.help.text
+msgid "<variable id=\"err13\">13 Data type mismatch</variable>"
+msgstr "<variable id=\"err13\">13 Discordancia de tipo</variable>"
+
+#: 00000003.xhp#par_id3151197.50.help.text
+msgid "<variable id=\"err14\">14 Invalid parameter</variable>"
+msgstr "<variable id=\"err14\">14 Parámetro no válido</variable>"
+
+#: 00000003.xhp#par_id3154710.51.help.text
+msgid "<variable id=\"err18\">18 Process interrupted by user</variable>"
+msgstr "<variable id=\"err18\">18 Proceso interrumpido por el usuario</variable>"
+
+#: 00000003.xhp#par_id3147504.52.help.text
+msgid "<variable id=\"err20\">20 Resume without error</variable>"
+msgstr "<variable id=\"err20\">20 Continuar sin error</variable>"
+
+#: 00000003.xhp#par_id3145319.53.help.text
+msgid "<variable id=\"err28\">28 Not enough stack memory</variable>"
+msgstr "<variable id=\"err28\">28 No hay suficiente memoria de pila disponible</variable>"
+
+#: 00000003.xhp#par_id3146110.54.help.text
+msgid "<variable id=\"err35\">35 Sub-procedure or function procedure not defined</variable>"
+msgstr "<variable id=\"err35\">35 Subfunción o función no definida</variable>"
+
+#: 00000003.xhp#par_id3147246.55.help.text
+msgid "<variable id=\"err48\">48 Error loading DLL file</variable>"
+msgstr "<variable id=\"err48\">48 Error al cargar archivo DLL</variable>"
+
+#: 00000003.xhp#par_id3146101.56.help.text
+msgid "<variable id=\"err49\">49 Wrong DLL call convention</variable>"
+msgstr "<variable id=\"err49\">49 Convención de llamada a DLL incorrecta</variable>"
+
+#: 00000003.xhp#par_id3153957.57.help.text
+msgid "<variable id=\"err51\">51 Internal error</variable>"
+msgstr "<variable id=\"err51\">51 Error interno</variable>"
+
+#: 00000003.xhp#par_id3154404.58.help.text
+msgid "<variable id=\"err52\">52 Invalid file name or file number</variable>"
+msgstr "<variable id=\"err52\">52 Nombre de archivo o número incorrectos</variable>"
+
+#: 00000003.xhp#par_id3151338.59.help.text
+msgid "<variable id=\"err53\">53 File not found</variable>"
+msgstr "<variable id=\"err53\">53 Archivo no encontrado</variable>"
+
+#: 00000003.xhp#par_id3147298.60.help.text
+msgid "<variable id=\"err54\">54 Incorrect file mode</variable>"
+msgstr "<variable id=\"err54\">54 Modo de archivo incorrecto</variable>"
+
+#: 00000003.xhp#par_id3148747.61.help.text
+msgid "<variable id=\"err55\">55 File already open</variable>"
+msgstr "<variable id=\"err55\">55 Archivo ya abierto</variable>"
+
+#: 00000003.xhp#par_id3145233.62.help.text
+msgid "<variable id=\"err57\">57 Device I/O error</variable>"
+msgstr "<variable id=\"err57\">57 Error de E/S de dispositivo</variable>"
+
+#: 00000003.xhp#par_id3156399.63.help.text
+msgid "<variable id=\"err58\">58 File already exists</variable>"
+msgstr "<variable id=\"err58\">58 Archivo ya existente</variable>"
+
+#: 00000003.xhp#par_id3149324.64.help.text
+msgid "<variable id=\"err59\">59 Incorrect record length</variable>"
+msgstr "<variable id=\"err59\">59 Longitud de registro incorrecta</variable>"
+
+#: 00000003.xhp#par_id3147409.65.help.text
+msgid "<variable id=\"err61\">61 Disk or hard drive full</variable>"
+msgstr "<variable id=\"err61\">61 Disco lleno</variable>"
+
+#: 00000003.xhp#par_id3149146.66.help.text
+msgid "<variable id=\"err62\">62 Reading exceeds EOF</variable>"
+msgstr "<variable id=\"err62\">62 Demasiados archivos</variable>"
+
+#: 00000003.xhp#par_id3150456.67.help.text
+msgid "<variable id=\"err63\">63 Incorrect record number</variable>"
+msgstr "<variable id=\"err63\">63 Número de registro incorrecto</variable>"
+
+#: 00000003.xhp#par_id3146883.68.help.text
+msgid "<variable id=\"err67\">67 Too many files</variable>"
+msgstr "<variable id=\"err67\">67 Demasiados archivos</variable>"
+
+#: 00000003.xhp#par_id3146818.69.help.text
+msgid "<variable id=\"err68\">68 Device not available</variable>"
+msgstr "<variable id=\"err68\">68 Dispositivo no disponible</variable>"
+
+#: 00000003.xhp#par_id3145225.70.help.text
+msgid "<variable id=\"err70\">70 Access denied</variable>"
+msgstr "<variable id=\"err70\">70 Acceso denegado</variable>"
+
+#: 00000003.xhp#par_id3150372.71.help.text
+msgid "<variable id=\"err71\">71 Disk not ready</variable>"
+msgstr "<variable id=\"err71\">71 Disco no preparado</variable>"
+
+#: 00000003.xhp#par_id3148894.72.help.text
+msgid "<variable id=\"err73\">73 Not implemented</variable>"
+msgstr "<variable id=\"err73\">73 No implementado</variable>"
+
+#: 00000003.xhp#par_id3152981.73.help.text
+msgid "<variable id=\"err74\">74 Renaming on different drives impossible</variable>"
+msgstr "<variable id=\"err74\">74 Imposible cambiar nombre con unidad distinta</variable>"
+
+#: 00000003.xhp#par_id3149355.74.help.text
+msgid "<variable id=\"err75\">75 Path/file access error</variable>"
+msgstr "<variable id=\"err75\">75 Error de acceso a ruta/archivo</variable>"
+
+#: 00000003.xhp#par_id3150477.75.help.text
+msgid "<variable id=\"err76\">76 Path not found</variable>"
+msgstr "<variable id=\"err76\">76 Ruta no encontrada</variable>"
+
+#: 00000003.xhp#par_id3154678.76.help.text
+msgid "<variable id=\"err91\">91 Object variable not set</variable>"
+msgstr "<variable id=\"err91\">91 Variable de objeto no definida</variable>"
+
+#: 00000003.xhp#par_id3149890.77.help.text
+msgid "<variable id=\"err93\">93 Invalid string pattern</variable>"
+msgstr "<variable id=\"err93\">93 Patrón de cadena no válido</variable>"
+
+#: 00000003.xhp#par_id3146942.78.help.text
+msgid "<variable id=\"err94\">94 Use of zero not permitted</variable>"
+msgstr "<variable id=\"err94\">94 Restaurar desde el principio</variable>"
+
+#: 00000003.xhp#par_id31469429.help.text
+msgid "<variable id=\"err250\">250 DDE Error</variable>"
+msgstr "<variable id=\"err250\">250 Error DDE</variable>"
+
+#: 00000003.xhp#par_id31469428.help.text
+msgid "<variable id=\"err280\">280 Awaiting response to DDE connection</variable>"
+msgstr "<variable id=\"err280\">280 Esperando respuesta de la conexión DDE</variable>"
+
+#: 00000003.xhp#par_id31469427.help.text
+msgid "<variable id=\"err281\">281 No DDE channels available</variable>"
+msgstr "<variable id=\"err281\">281 Canales DDE no disponibles</variable>"
+
+#: 00000003.xhp#par_id31469426.help.text
+msgid "<variable id=\"err282\">282 No application responded to DDE connect initiation</variable>"
+msgstr "<variable id=\"err282\">282 No respondió la aplicación al inicio de conexión DDE</variable>"
+
+#: 00000003.xhp#par_id31469425.help.text
+msgid "<variable id=\"err283\">283 Too many applications responded to DDE connect initiation</variable>"
+msgstr "<variable id=\"err283\">283 Demasiadas aplicaciones respondieron a la iniciación de conexión DDE</variable>"
+
+#: 00000003.xhp#par_id31469424.help.text
+msgid "<variable id=\"err284\">284 DDE channel locked</variable>"
+msgstr "<variable id=\"err284\">284 Canal DDE bloqueado</variable>"
+
+#: 00000003.xhp#par_id31469423.help.text
+msgid "<variable id=\"err285\">285 External application cannot execute DDE operation</variable>"
+msgstr "<variable id=\"err285\">285 Una aplicación externa no puede ejecutar una operación DDE</variable>"
+
+#: 00000003.xhp#par_id31469422.help.text
+msgid "<variable id=\"err286\">286 Timeout while waiting for DDE response</variable>"
+msgstr "<variable id=\"err286\">286 Se agotó el tiempo de espera para respuesta de DDE</variable>"
+
+#: 00000003.xhp#par_id31469421.help.text
+msgid "<variable id=\"err287\">287 user pressed ESCAPE during DDE operation</variable>"
+msgstr "<variable id=\"err287\">287 El usuario presionó ESCAPE durante una operación de DDE</variable>"
+
+#: 00000003.xhp#par_id31469420.help.text
+msgid "<variable id=\"err288\">288 External application busy</variable>"
+msgstr "<variable id=\"err288\">288 Aplicación externa ocupada</variable>"
+
+#: 00000003.xhp#par_id31469419.help.text
+msgid "<variable id=\"err289\">289 DDE operation without data</variable>"
+msgstr "<variable id=\"err289\">289 Operación de DDE sin datos</variable>"
+
+#: 00000003.xhp#par_id31469418.help.text
+msgid "<variable id=\"err290\">290 Data are in wrong format</variable>"
+msgstr "<variable id=\"err290\">290 Los datos están en el formato equivocado</variable>"
+
+#: 00000003.xhp#par_id31469417.help.text
+msgid "<variable id=\"err291\">291 External application has been terminated</variable>"
+msgstr "<variable id=\"err291\">291 La aplicación externa ha sido finalizada</variable>"
+
+#: 00000003.xhp#par_id31469416.help.text
+msgid "<variable id=\"err292\">292 DDE connection interrupted or modified</variable>"
+msgstr "<variable id=\"err292\">292 Conexión DDE interrumpida o modificada</variable>"
+
+#: 00000003.xhp#par_id31469415.help.text
+msgid "<variable id=\"err293\">293 DDE method invoked with no channel open</variable>"
+msgstr "<variable id=\"err293\">293 Método DDE invocado sin un canal abierto</variable>"
+
+#: 00000003.xhp#par_id31469414.help.text
+msgid "<variable id=\"err294\">294 Invalid DDE link format</variable>"
+msgstr "<variable id=\"err294\">294 Formato de enlace DDE no válido</variable>"
+
+#: 00000003.xhp#par_id31469413.help.text
+msgid "<variable id=\"err295\">295 DDE message has been lost</variable>"
+msgstr "<variable id=\"err295\">295 Se perdió el mensaje DDE</variable>"
+
+#: 00000003.xhp#par_id31469412.help.text
+msgid "<variable id=\"err296\">296 Paste link already performed</variable>"
+msgstr "<variable id=\"err296\">296 Ya se realizó el pegado del enlace</variable>"
+
+#: 00000003.xhp#par_id31469411.help.text
+msgid "<variable id=\"err297\">297 Link mode cannot be set due to invalid link topic</variable>"
+msgstr "<variable id=\"err297\">297 No se puede definir el modo de enlace debido a un enlace a tema no válido</variable>"
+
+#: 00000003.xhp#par_id31469410.help.text
+msgid "<variable id=\"err298\">298 DDE requires the DDEML.DLL file</variable>"
+msgstr "<variable id=\"err298\">298 DDE requiere el archivo DDEML.DLL</variable>"
+
+#: 00000003.xhp#par_id3150028.79.help.text
+msgid "<variable id=\"err323\">323 Module cannot be loaded; invalid format</variable>"
+msgstr "<variable id=\"err323\">323 No se puede cargar el módulo; el formato no es válido</variable>"
+
+#: 00000003.xhp#par_id3148434.80.help.text
+msgid "<variable id=\"err341\">341 Invalid object index</variable>"
+msgstr "<variable id=\"err341\">341 Índice de objeto no válido</variable>"
+
+#: 00000003.xhp#par_id3143219.81.help.text
+msgid "<variable id=\"err366\">366 Object is not available</variable>"
+msgstr "<variable id=\"err366\">366 El objeto no está disponible</variable>"
+
+#: 00000003.xhp#par_id3144744.82.help.text
+msgid "<variable id=\"err380\">380 Incorrect property value</variable>"
+msgstr "<variable id=\"err380\">380 Valor de propiedad incorrecto</variable>"
+
+#: 00000003.xhp#par_id3147420.83.help.text
+msgid "<variable id=\"err382\">382 This property is read-only</variable>"
+msgstr "<variable id=\"err382\">382 Esta propiedad es de solo lectura</variable>"
+
+#: 00000003.xhp#par_id3147472.84.help.text
+msgid "<variable id=\"err394\">394 This property is write-only</variable>"
+msgstr "<variable id=\"err394\">394 Esta propiedad es de solo escritura</variable>"
+
+#: 00000003.xhp#par_id3148583.85.help.text
+msgid "<variable id=\"err420\">420 Invalid object reference</variable>"
+msgstr "<variable id=\"err420\">420 Referencia a objeto no válida</variable>"
+
+#: 00000003.xhp#par_id3153329.86.help.text
+msgid "<variable id=\"err423\">423 Property or method not found</variable>"
+msgstr "<variable id=\"err423\">423 Propiedad o método no encontrado</variable>"
+
+#: 00000003.xhp#par_id3148738.87.help.text
+msgid "<variable id=\"err424\">424 Object required</variable>"
+msgstr "<variable id=\"err424\">424 Objeto requerido</variable>"
+
+#: 00000003.xhp#par_id3159084.88.help.text
+msgid "<variable id=\"err425\">425 Invalid use of an object</variable>"
+msgstr "<variable id=\"err425\">425 Uso de objeto no válido</variable>"
+
+#: 00000003.xhp#par_id3146806.89.help.text
+msgid "<variable id=\"err430\">430 OLE Automation is not supported by this object</variable>"
+msgstr "<variable id=\"err430\">430 La automatización OLE no es compatible con este objeto</variable>"
+
+#: 00000003.xhp#par_id3146130.90.help.text
+msgid "<variable id=\"err438\">438 This property or method is not supported by the object</variable>"
+msgstr "<variable id=\"err438\">438 Esta propiedad o método no es compatible con el objeto</variable>"
+
+#: 00000003.xhp#par_id3154374.91.help.text
+msgid "<variable id=\"err440\">440 OLE automation error</variable>"
+msgstr "<variable id=\"err440\">440 Error de automatización OLE</variable>"
+
+#: 00000003.xhp#par_id3149685.92.help.text
+msgid "<variable id=\"err445\">445 This action is not supported by given object</variable>"
+msgstr "<variable id=\"err445\">445 El objeto no admite esta acción</variable>"
+
+#: 00000003.xhp#par_id3150282.93.help.text
+msgid "<variable id=\"err446\">446 Named arguments are not supported by given object</variable>"
+msgstr "<variable id=\"err446\">446 Los argumentos dados no son compatibles con el objeto dado</variable>"
+
+#: 00000003.xhp#par_id3150142.94.help.text
+msgid "<variable id=\"err447\">447 The current locale setting is not supported by the given object</variable>"
+msgstr "<variable id=\"err447\">447 La configuración regional actual no es admitida por el objeto dado</variable>"
+
+#: 00000003.xhp#par_id3152771.95.help.text
+msgid "<variable id=\"err448\">448 Named argument not found</variable>"
+msgstr "<variable id=\"err448\">448 No se encontró el argumento nombrado</variable>"
+
+#: 00000003.xhp#par_id3145145.96.help.text
+msgid "<variable id=\"err449\">449 Argument is not optional</variable>"
+msgstr "<variable id=\"err449\">449 El argumento no es opcional</variable>"
+
+#: 00000003.xhp#par_id3154399.97.help.text
+msgid "<variable id=\"err450\">450 Invalid number of arguments</variable>"
+msgstr "<variable id=\"err450\">450 El número de argumentos no es válido</variable>"
+
+#: 00000003.xhp#par_id3146137.98.help.text
+msgid "<variable id=\"err451\">451 Object is not a list</variable>"
+msgstr "<variable id=\"err451\">451 El objeto no es una lista</variable>"
+
+#: 00000003.xhp#par_id3149507.99.help.text
+msgid "<variable id=\"err452\">452 Invalid ordinal number</variable>"
+msgstr "<variable id=\"err452\">452 El número ordinal no es válido</variable>"
+
+#: 00000003.xhp#par_id3154566.100.help.text
+#, fuzzy
+msgid "<variable id=\"err453\">453 Specified DLL function not found</variable>"
+msgstr "<variable id=\"err453\">453 Función DLL especificada no encontrada</variable>"
+
+#: 00000003.xhp#par_id3145595.101.help.text
+#, fuzzy
+msgid "<variable id=\"err460\">460 Invalid clipboard format</variable>"
+msgstr "<variable id=\"err460\">460 Formato de portapapeles no válido</variable>"
+
+#: 00000003.xhp#par_id31455951.help.text
+msgid "<variable id=\"err951\">951 Unexpected symbol:</variable>"
+msgstr "<variable id=\"err951\">951 Error inesperado:</variable>"
+
+#: 00000003.xhp#par_id31455952.help.text
+msgid "<variable id=\"err952\">952 Expected:</variable>"
+msgstr "<variable id=\"err952\">952 Se esperaba:</variable>"
+
+#: 00000003.xhp#par_id31455953.help.text
+msgid "<variable id=\"err953\">953 Symbol expected</variable>"
+msgstr "<variable id=\"err953\">953 Se esperaba un símbolo</variable>"
+
+#: 00000003.xhp#par_id31455954.help.text
+msgid "<variable id=\"err954\">954 Variable expected</variable>"
+msgstr "<variable id=\"err954\">954 Se esperaba una variable</variable>"
+
+#: 00000003.xhp#par_id31455955.help.text
+msgid "<variable id=\"err955\">955 Label expected</variable>"
+msgstr "<variable id=\"err955\">955 Se esperaba una etiqueta</variable>"
+
+#: 00000003.xhp#par_id31455956.help.text
+msgid "<variable id=\"err956\">956 Value cannot be applied</variable>"
+msgstr "<variable id=\"err956\">956 No se puede aplicar el valor</variable>"
+
+#: 00000003.xhp#par_id31455957.help.text
+msgid "<variable id=\"err957\">957 Variable already defined</variable>"
+msgstr "<variable id=\"err957\">957 Ya se definió la variable</variable>"
+
+#: 00000003.xhp#par_id31455958.help.text
+msgid "<variable id=\"err958\">958 Sub procedure or function procedure already defined</variable>"
+msgstr "<variable id=\"err958\">958 El subprocedimiento o la función ya se definieron</variable>"
+
+#: 00000003.xhp#par_id31455959.help.text
+msgid "<variable id=\"err959\">959 Label already defined</variable>"
+msgstr "<variable id=\"err959\">959 Ya se definió la etiqueta</variable>"
+
+#: 00000003.xhp#par_id31455960.help.text
+msgid "<variable id=\"err960\">960 Variable not found</variable>"
+msgstr "<variable id=\"err960\">960 No se encontró la variable</variable>"
+
+#: 00000003.xhp#par_id31455961.help.text
+msgid "<variable id=\"err961\">961 Array or procedure not found</variable>"
+msgstr "<variable id=\"err961\">961 No se encontró la matriz o el procedimiento</variable>"
+
+#: 00000003.xhp#par_id31455962.help.text
+msgid "<variable id=\"err962\">962 Procedure not found</variable>"
+msgstr "<variable id=\"err962\">962 No se encontró el procedimiento</variable>"
+
+#: 00000003.xhp#par_id31455963.help.text
+msgid "<variable id=\"err963\">963 Label undefined</variable>"
+msgstr "<variable id=\"err963\">963 No se definió la etiqueta</variable>"
+
+#: 00000003.xhp#par_id31455964.help.text
+msgid "<variable id=\"err964\">964 Unknown data type</variable>"
+msgstr "<variable id=\"err964\">964 Tipo de datos desconocido</variable>"
+
+#: 00000003.xhp#par_id31455965.help.text
+msgid "<variable id=\"err965\">965 Exit expected</variable>"
+msgstr "<variable id=\"err965\">965 Se esperaba una salida</variable>"
+
+#: 00000003.xhp#par_id31455966.help.text
+#, fuzzy
+msgid "<variable id=\"err966\">966 Statement block still open: missing</variable>"
+msgstr "<variable id=\"err62\">62 Entrada más allá del final del archivo</variable>"
+
+#: 00000003.xhp#par_id31455967.help.text
+msgid "<variable id=\"err967\">967 Parentheses do not match</variable>"
+msgstr "<variable id=\"err967\">967 Los paréntesis no coinciden</variable>"
+
+#: 00000003.xhp#par_id31455968.help.text
+msgid "<variable id=\"err968\">968 Symbol already defined differently</variable>"
+msgstr "<variable id=\"err968\">968 Ya se definió el símbolo de manera diferente</variable>"
+
+#: 00000003.xhp#par_id31455969.help.text
+msgid "<variable id=\"err969\">969 Parameters do not correspond to procedure</variable>"
+msgstr "<variable id=\"err969\">969 Los parámetros no corresponden con el procedimiento</variable>"
+
+#: 00000003.xhp#par_id31455970.help.text
+msgid "<variable id=\"err970\">970 Invalid character in number</variable>"
+msgstr "<variable id=\"err970\">970 Carácter no válido en el número</variable>"
+
+#: 00000003.xhp#par_id31455971.help.text
+msgid "<variable id=\"err971\">971 Array must be dimensioned</variable>"
+msgstr "<variable id=\"err971\">971 Debe dimensionar la matriz</variable>"
+
+#: 00000003.xhp#par_id31455972.help.text
+msgid "<variable id=\"err972\">972 Else/Endif without If</variable>"
+msgstr "<variable id=\"err972\">972 Else/Endif sin If</variable>"
+
+#: 00000003.xhp#par_id31455973.help.text
+msgid "<variable id=\"err973\">973 not allowed within a procedure</variable>"
+msgstr "<variable id=\"err973\">973 no se permite dentro de un procedimiento</variable>"
+
+#: 00000003.xhp#par_id31455974.help.text
+msgid "<variable id=\"err974\">974 not allowed outside a procedure</variable>"
+msgstr "<variable id=\"err974\">974 no se permite fuera de un procedimiento</variable>"
+
+#: 00000003.xhp#par_id31455975.help.text
+#, fuzzy
+msgid "<variable id=\"err975\">975 Dimension specifications do not match</variable>"
+msgstr "<variable id=\"err53\">53 Archivo no encontrado</variable>"
+
+#: 00000003.xhp#par_id31455976.help.text
+msgid "<variable id=\"err976\">976 Unknown option:</variable>"
+msgstr "<variable id=\"err976\">976 Opción desconocida:</variable>"
+
+#: 00000003.xhp#par_id31455977.help.text
+msgid "<variable id=\"err977\">977 Constant redefined</variable>"
+msgstr "<variable id=\"err977\">977 Constante redefinida</variable>"
+
+#: 00000003.xhp#par_id31455978.help.text
+msgid "<variable id=\"err978\">978 Program too large</variable>"
+msgstr "<variable id=\"err978\">978 El programa es demasiado grande</variable>"
+
+#: 00000003.xhp#par_id31455979.help.text
+msgid "<variable id=\"err979\">979 Strings or arrays not permitted</variable>"
+msgstr "<variable id=\"err979\">979 No se permiten las cadenas o las matrices</variable>"
+
+#: 00000003.xhp#par_id31455980.help.text
+msgid "<variable id=\"err1000\">1000 Object does not have this property</variable>"
+msgstr "<variable id=\"err1000\">1000 El objeto no tiene esta propiedad</variable>"
+
+#: 00000003.xhp#par_id31455981.help.text
+msgid "<variable id=\"err1001\">1001 Object does not have this method</variable>"
+msgstr "<variable id=\"err1001\">1001 El objeto no tiene este método</variable>"
+
+#: 00000003.xhp#par_id31455982.help.text
+msgid "<variable id=\"err1002\">1002 Required argument lacking</variable>"
+msgstr "<variable id=\"err1002\">1002 Falta el argumento requerido</variable>"
+
+#: 00000003.xhp#par_id31455983.help.text
+msgid "<variable id=\"err1003\">1003 Invalid number of arguments</variable>"
+msgstr "<variable id=\"err1003\">1003 Número de argumentos no válido</variable>"
+
+#: 00000003.xhp#par_id31455984.help.text
+msgid "<variable id=\"err1004\">1004 Error executing a method</variable>"
+msgstr "<variable id=\"err1004\">1004 Error al ejecutar un método</variable>"
+
+#: 00000003.xhp#par_id31455985.help.text
+msgid "<variable id=\"err1005\">1005 Unable to set property</variable>"
+msgstr "<variable id=\"err1005\">1005 No se pudo establecer la propiedad</variable>"
+
+#: 00000003.xhp#par_id31455986.help.text
+msgid "<variable id=\"err1006\">1006 Unable to determine property</variable>"
+msgstr "<variable id=\"err1006\">1006 No se pudo determinar la propiedad</variable>"
+
+#: 05060700.xhp#tit.help.text
+msgid "Macro"
+msgstr "Macro"
+
+#: 05060700.xhp#bm_id3153894.help.text
+msgid "<bookmark_value>events;linked to objects</bookmark_value>"
+msgstr "<bookmark_value>Macro; asignar</bookmark_value><bookmark_value>Acontecimiento; asignar macro</bookmark_value>"
+
+#: 05060700.xhp#hd_id3153894.1.help.text
+msgid "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Macro\">Macro</link>"
+msgstr "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Macro\">Macro</link>"
+
+#: 05060700.xhp#par_id3153748.2.help.text
+msgid "<ahelp hid=\".\">Choose the macro that you want to execute when the selected graphic, frame, or OLE object is selected.</ahelp> Depending on the object that is selected, the function is either found on the <emph>Macro</emph> tab of the <emph>Object</emph> dialog, or in the <emph>Assign Macro</emph> dialog."
+msgstr "<ahelp hid=\".\">Elija la macro que desea que se ejecute al seleccionar un determinado gráfico, marco u objeto OLE.</ahelp> Según el objeto que se seleccione, la función se ubica en la ficha <emph>Macro</emph> del diálogo <emph>Objeto</emph> o en el diálogo <emph>Asignar macro</emph>."
+
+#: 05060700.xhp#hd_id3150503.3.help.text
+msgctxt "05060700.xhp#hd_id3150503.3.help.text"
+msgid "Event"
+msgstr "Acontecimiento"
+
+#: 05060700.xhp#par_id3149763.4.help.text
+msgid "<ahelp hid=\"HID_MACRO_LB_EVENT\">Lists the events that are relevant to the macros that are currently assigned to the selected object.</ahelp>"
+msgstr "<ahelp hid=\"HID_MACRO_LB_EVENT\" visibility=\"visible\">Lista la acción que es relevante para las macros que están asignadas actualmente al objeto seleccionado.</ahelp>"
+
+#: 05060700.xhp#par_id3150670.23.help.text
+msgid "The following table describes the macros and the events that can by linked to objects in your document:"
+msgstr "La tabla siguiente describe las macros y las acciones que pueden enlazarse a objetos del documento:"
+
+#: 05060700.xhp#par_id3153360.24.help.text
+msgctxt "05060700.xhp#par_id3153360.24.help.text"
+msgid "Event"
+msgstr "<emph>Acontecimiento</emph>"
+
+#: 05060700.xhp#par_id3154365.25.help.text
+msgid "Event trigger"
+msgstr "Ejecutor de la acción"
+
+#: 05060700.xhp#par_id3159149.26.help.text
+msgid "OLE object"
+msgstr "<emph>Objeto OLE</emph>"
+
+#: 05060700.xhp#par_id3148451.27.help.text
+msgctxt "05060700.xhp#par_id3148451.27.help.text"
+msgid "Graphics"
+msgstr "<emph>Imagen</emph>"
+
+#: 05060700.xhp#par_id3125863.28.help.text
+msgid "Frame"
+msgstr "<emph>Marco</emph>"
+
+#: 05060700.xhp#par_id3154216.29.help.text
+msgid "AutoText"
+msgstr "<emph>AutoTexto</emph>"
+
+#: 05060700.xhp#par_id3145785.30.help.text
+msgid "ImageMap area"
+msgstr "<emph>Área ImageMap</emph>"
+
+#: 05060700.xhp#par_id3153138.31.help.text
+msgid "Hyperlink"
+msgstr "<emph>Hiperenlace</emph>"
+
+#: 05060700.xhp#par_id3155306.32.help.text
+msgid "Click object"
+msgstr "Pulsar objeto"
+
+#: 05060700.xhp#par_id3152460.33.help.text
+msgid "Object is selected."
+msgstr "El objeto se selecciona."
+
+#: 05060700.xhp#par_id3147348.34.help.text
+msgctxt "05060700.xhp#par_id3147348.34.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3147426.35.help.text
+msgctxt "05060700.xhp#par_id3147426.35.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3153951.36.help.text
+msgctxt "05060700.xhp#par_id3153951.36.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3150116.37.help.text
+msgid "Mouse over object"
+msgstr "Ratón sobre objeto"
+
+#: 05060700.xhp#par_id3145253.38.help.text
+msgid "Mouse moves over the object."
+msgstr "El ratón se mueve sobre el objeto."
+
+#: 05060700.xhp#par_id3144765.39.help.text
+msgctxt "05060700.xhp#par_id3144765.39.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3153418.40.help.text
+msgctxt "05060700.xhp#par_id3153418.40.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3153948.41.help.text
+msgctxt "05060700.xhp#par_id3153948.41.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3145652.42.help.text
+msgctxt "05060700.xhp#par_id3145652.42.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3155066.43.help.text
+msgctxt "05060700.xhp#par_id3155066.43.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3155446.44.help.text
+msgid "Trigger Hyperlink"
+msgstr "Ejecutar hiperenlace"
+
+#: 05060700.xhp#par_id3154756.45.help.text
+msgid "Hyperlink assigned to the object is clicked."
+msgstr "Se pulsa el hiperenlace asignado al objeto."
+
+#: 05060700.xhp#par_id3150042.46.help.text
+msgctxt "05060700.xhp#par_id3150042.46.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3151252.47.help.text
+msgctxt "05060700.xhp#par_id3151252.47.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3147344.48.help.text
+msgctxt "05060700.xhp#par_id3147344.48.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3146920.49.help.text
+msgctxt "05060700.xhp#par_id3146920.49.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3159333.50.help.text
+msgid "Mouse leaves object "
+msgstr "El ratón abandona el objeto"
+
+#: 05060700.xhp#par_id3147003.51.help.text
+msgid "Mouse moves off of the object."
+msgstr "El ratón se mueve fuera del objeto."
+
+#: 05060700.xhp#par_id3151278.52.help.text
+msgctxt "05060700.xhp#par_id3151278.52.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3145257.53.help.text
+msgctxt "05060700.xhp#par_id3145257.53.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3154122.54.help.text
+msgctxt "05060700.xhp#par_id3154122.54.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3156139.55.help.text
+msgctxt "05060700.xhp#par_id3156139.55.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3149036.56.help.text
+msgctxt "05060700.xhp#par_id3149036.56.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3150785.57.help.text
+msgid "Graphics load successful "
+msgstr "La carga de la imagen ha finalizado con éxito"
+
+#: 05060700.xhp#par_id3153705.58.help.text
+msgid "Graphics are loaded successfully."
+msgstr "Los gráficos se cargan satisfactoriamente."
+
+#: 05060700.xhp#par_id3150343.59.help.text
+msgctxt "05060700.xhp#par_id3150343.59.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3150202.60.help.text
+msgid "Graphics load terminated"
+msgstr "Interrumpida la carga de la imagen"
+
+#: 05060700.xhp#par_id3145584.61.help.text
+msgid "Loading of graphics is stopped by the user (for example, when downloading the page)."
+msgstr "El usuario detiene la carga de los gráficos (por ejemplo, al descargar una página)."
+
+#: 05060700.xhp#par_id3154259.62.help.text
+msgctxt "05060700.xhp#par_id3154259.62.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3155089.63.help.text
+msgid "Graphics load faulty"
+msgstr "Error al cargar la imagen"
+
+#: 05060700.xhp#par_id3153307.64.help.text
+msgid "Graphics not successfully loaded, for example, if a graphic was not found."
+msgstr "Los gráficos no se cargan satisfactoriamente, por ejemplo si uno de ellos no se encuentra."
+
+#: 05060700.xhp#par_id3148840.65.help.text
+msgctxt "05060700.xhp#par_id3148840.65.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3154533.66.help.text
+msgid "Input of alpha characters "
+msgstr "Entrada de caracteres alfa"
+
+#: 05060700.xhp#par_id3155266.67.help.text
+msgid "Text is entered from the keyboard."
+msgstr "Texto introducido desde el teclado."
+
+#: 05060700.xhp#par_id3144768.68.help.text
+msgctxt "05060700.xhp#par_id3144768.68.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3145659.69.help.text
+msgid "Input of non-alpha characters "
+msgstr "Entrada de caracteres no-alfa"
+
+#: 05060700.xhp#par_id3151131.70.help.text
+msgid "Nonprinting characters are entered from the keyboard, for example, tabs and line breaks."
+msgstr "Se introducen caracteres no imprimibles desde el teclado, por ejemplo tabuladores y saltos de línea."
+
+#: 05060700.xhp#par_id3159206.71.help.text
+msgctxt "05060700.xhp#par_id3159206.71.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3150405.72.help.text
+msgid "Resize frame"
+msgstr "Modificar el tamaño del marco"
+
+#: 05060700.xhp#par_id3153972.73.help.text
+msgid "Frame is resized with the mouse."
+msgstr "El marco cambia de tamaño con el ratón."
+
+#: 05060700.xhp#par_id3152873.74.help.text
+msgctxt "05060700.xhp#par_id3152873.74.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3148900.75.help.text
+msgid "Move frame"
+msgstr "Desplazar marco"
+
+#: 05060700.xhp#par_id3154767.76.help.text
+msgid "Frame is moved with the mouse."
+msgstr "El marco se mueve con el ratón."
+
+#: 05060700.xhp#par_id3155914.77.help.text
+msgctxt "05060700.xhp#par_id3155914.77.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3153010.78.help.text
+msgid "Before inserting AutoText"
+msgstr "Antes de insertar el texto automático"
+
+#: 05060700.xhp#par_id3147515.79.help.text
+msgid "Before a text block is inserted."
+msgstr "Antes de que se inserte un bloque de texto."
+
+#: 05060700.xhp#par_id3151191.80.help.text
+msgctxt "05060700.xhp#par_id3151191.80.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3150956.81.help.text
+msgid "After inserting AutoText"
+msgstr "Tras insertar el texto automático"
+
+#: 05060700.xhp#par_id3147502.82.help.text
+msgid "After a text block is inserted."
+msgstr "Después de que se inserte un bloque de texto."
+
+#: 05060700.xhp#par_id3147555.83.help.text
+msgctxt "05060700.xhp#par_id3147555.83.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#hd_id3153958.5.help.text
+msgid "Macros"
+msgstr "Macros"
+
+#: 05060700.xhp#par_id3150432.6.help.text
+msgid "Choose the macro that you want to execute when the selected event occurs."
+msgstr "Elija la macro que desee ejecutar cuando la acción seleccionada se produzca."
+
+#: 05060700.xhp#par_id3147296.84.help.text
+msgid "Frames allow you to link events to a function, so that the function can determine if it processes the event or $[officename] Writer."
+msgstr "Los marcos permiten enlazar acciones a una función, de forma que ésta pueda determinar si procesa la acción o lo hace $[officename] Writer."
+
+#: 05060700.xhp#hd_id3155587.7.help.text
+msgid "Category"
+msgstr "Área"
+
+#: 05060700.xhp#par_id3154068.8.help.text
+msgid "<ahelp hid=\"HID_MACRO_GROUP\">Lists the open $[officename] documents and applications. Click the name of the location where you want to save the macros.</ahelp>"
+msgstr "<ahelp hid=\"HID_MACRO_GROUP\" visibility=\"visible\">Lista los documentos y aplicaciones abiertos de $[officename]. Pulse en el nombre de la ubicación donde desee guardar las macros.</ahelp>"
+
+#: 05060700.xhp#hd_id3149744.9.help.text
+msgid "Macro name"
+msgstr "Nombre de macro"
+
+#: 05060700.xhp#par_id3151391.10.help.text
+msgid "<ahelp hid=\"HID_MACRO_MACROS\">Lists the available macros. Click the macro that you want to assign to the selected object.</ahelp>"
+msgstr "<ahelp hid=\"HID_MACRO_MACROS\" visibility=\"visible\">Lista las macros disponibles. Pulse en la macro que desee asignar al objeto seleccionado.</ahelp>"
+
+#: 05060700.xhp#hd_id3159260.11.help.text
+msgid "Assign"
+msgstr "Asignar"
+
+#: 05060700.xhp#par_id3147406.12.help.text
+msgid "<ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_ASSIGN\">Assigns the selected macro to the specified event.</ahelp> The assigned macro's entries are set after the event."
+msgstr "<ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_ASSIGN\" visibility=\"visible\">Asigna la macro seleccionada a la acción especificada.</ahelp> Las entradas de la macro asignada se establecen después de la acción."
+
+#: 05060700.xhp#hd_id3150533.15.help.text
+msgid "Remove"
+msgstr "Borrar"
+
+#: 05060700.xhp#par_id3166456.16.help.text
+msgid "<variable id=\"aufheb\"><ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_DELETE\">Removes the macro that is assigned to the selected item.</ahelp></variable>"
+msgstr "<variable id=\"aufheb\"><ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_DELETE\" visibility=\"visible\">Borra la macro que está asignada al elemento seleccionado.</ahelp></variable>"
+
+#: 05060700.xhp#hd_id3159126.85.help.text
+msgid "Macro selection"
+msgstr "Campo de selección de macros"
+
+#: 05060700.xhp#par_id3149149.86.help.text
+msgid "<ahelp hid=\"SFX2_LISTBOX_RID_SFX_TP_MACROASSIGN_LB_SCRIPTTYPE\">Select the macro that you want to assign.</ahelp>"
+msgstr "<ahelp hid=\"SFX2_LISTBOX_RID_SFX_TP_MACROASSIGN_LB_SCRIPTTYPE\" visibility=\"visible\">Seleccione la biblioteca que desee asignar.</ahelp>"
+
+#: 03101110.xhp#tit.help.text
+msgid "DefCur Statement [Runtime]"
+msgstr "Instrucción DefCur [Ejecución]"
+
+#: 03101110.xhp#bm_id9555345.help.text
+msgid "<bookmark_value>DefCur statement</bookmark_value>"
+msgstr "<bookmark_value>Instrucción DefCur</bookmark_value>"
+
+#: 03101110.xhp#par_idN1057D.help.text
+msgid "<link href=\"text/sbasic/shared/03101110.xhp\">DefCur Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101110.xhp\">Instrucción DefCur [Ejecución]</link>"
+
+#: 03101110.xhp#par_idN1058D.help.text
+msgid "If no type-declaration character or keyword is specified, the DefCur statement sets the default variable type, according to a letter range."
+msgstr "Si no se especifica palabra clave ni carácter de tipo de declaración, la instrucción DefCur establece el tipo de variable predeterminado según un intervalo de letras."
+
+#: 03101110.xhp#par_idN10590.help.text
+msgctxt "03101110.xhp#par_idN10590.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03101110.xhp#par_idN10594.help.text
+msgctxt "03101110.xhp#par_idN10594.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
+
+#: 03101110.xhp#par_idN10597.help.text
+msgctxt "03101110.xhp#par_idN10597.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03101110.xhp#par_idN1059B.help.text
+msgctxt "03101110.xhp#par_idN1059B.help.text"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Characterrange:</emph> letras que especifican el intervalo de las variables para las que desea establecer un tipo de datos predeterminado."
+
+#: 03101110.xhp#par_idN105A2.help.text
+msgctxt "03101110.xhp#par_idN105A2.help.text"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> palabra clave que define el tipo de variable predeterminado."
+
+#: 03101110.xhp#par_idN105A9.help.text
+msgctxt "03101110.xhp#par_idN105A9.help.text"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Palabra clave:</emph> tipo de variable predeterminado"
+
+#: 03101110.xhp#par_idN105B0.help.text
+msgid "<emph>DefCur:</emph> Currency"
+msgstr "<emph>DefCur:</emph> moneda"
+
+#: 03101110.xhp#par_idN105B7.help.text
+msgctxt "03101110.xhp#par_idN105B7.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03101110.xhp#par_idN105BB.help.text
+msgctxt "03101110.xhp#par_idN105BB.help.text"
+msgid "REM Prefix definitions for variable types:"
+msgstr "Definiciones de prefijos REM para tipos de variables:"
+
+#: 03101110.xhp#par_idN105BE.help.text
+msgctxt "03101110.xhp#par_idN105BE.help.text"
+msgid "DefBool b"
+msgstr "DefBool b"
+
+#: 03101110.xhp#par_idN105C1.help.text
+msgctxt "03101110.xhp#par_idN105C1.help.text"
+msgid "DefDate t"
+msgstr "DefDate t"
+
+#: 03101110.xhp#par_idN105C4.help.text
+msgctxt "03101110.xhp#par_idN105C4.help.text"
+msgid "DefDbL d"
+msgstr "DefDbL d"
+
+#: 03101110.xhp#par_idN105C7.help.text
+msgctxt "03101110.xhp#par_idN105C7.help.text"
+msgid "DefInt i"
+msgstr "DefInt i"
+
+#: 03101110.xhp#par_idN105CA.help.text
+msgctxt "03101110.xhp#par_idN105CA.help.text"
+msgid "DefLng l"
+msgstr "DefLng l"
+
+#: 03101110.xhp#par_idN105CD.help.text
+msgctxt "03101110.xhp#par_idN105CD.help.text"
+msgid "DefObj o"
+msgstr "DefObj o"
+
+#: 03101110.xhp#par_idN105D0.help.text
+msgctxt "03101110.xhp#par_idN105D0.help.text"
+msgid "DefVar v"
+msgstr "DefVar v"
+
+#: 03101110.xhp#par_idN105D3.help.text
+msgid "DefCur c"
+msgstr "DefCur c"
+
+#: 03101110.xhp#par_idN105D6.help.text
+msgid "Sub ExampleDefCur"
+msgstr "Sub ExampleDefCur"
+
+#: 03101110.xhp#par_idN105D9.help.text
+msgid "cCur=Currency REM cCur is an implicit currency variable"
+msgstr "cCur=Currency REM cCur es una variable de moneda implícita"
+
+#: 03101110.xhp#par_idN105DC.help.text
+msgctxt "03101110.xhp#par_idN105DC.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03090408.xhp#tit.help.text
+msgid "Stop Statement [Runtime]"
+msgstr "instrucción Stop [Ejecución]"
+
+#: 03090408.xhp#bm_id3153311.help.text
+msgid "<bookmark_value>Stop statement</bookmark_value>"
+msgstr "<bookmark_value>Stop;instrucción</bookmark_value>"
+
+#: 03090408.xhp#hd_id3153311.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090408.xhp\" name=\"Stop Statement [Runtime]\">Stop Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090408.xhp\" name=\"Stop Statement [Runtime]\">instrucción Stop [Ejecución]</link>"
+
+#: 03090408.xhp#par_id3154142.2.help.text
+msgid "Stops the execution of the Basic program."
+msgstr "Detiene la ejecución del programa Basic."
+
+#: 03090408.xhp#hd_id3153126.3.help.text
+msgctxt "03090408.xhp#hd_id3153126.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03090408.xhp#par_id3156023.4.help.text
+msgctxt "03090408.xhp#par_id3156023.4.help.text"
+msgid "Stop"
+msgstr "Stop"
+
+#: 03090408.xhp#hd_id3156344.5.help.text
+msgctxt "03090408.xhp#hd_id3156344.5.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03090408.xhp#par_id3148552.6.help.text
+msgid "Sub ExampleStop"
+msgstr "Sub EjemploStop"
+
+#: 03090408.xhp#par_id3153897.7.help.text
+msgctxt "03090408.xhp#par_id3153897.7.help.text"
+msgid "Dim iVar As Single"
+msgstr "Dim iVar As Single"
+
+#: 03090408.xhp#par_id3153380.8.help.text
+msgctxt "03090408.xhp#par_id3153380.8.help.text"
+msgid "iVar = 36"
+msgstr "iVar = 36"
+
+#: 03090408.xhp#par_id3150400.9.help.text
+msgctxt "03090408.xhp#par_id3150400.9.help.text"
+msgid "Stop"
+msgstr "Stop"
+
+#: 03090408.xhp#par_id3148799.10.help.text
+msgctxt "03090408.xhp#par_id3148799.10.help.text"
+msgid "Msgbox Sqr(iVar)"
+msgstr "Msgbox Sqr(iVar)"
+
+#: 03090408.xhp#par_id3151043.11.help.text
+msgctxt "03090408.xhp#par_id3151043.11.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03101100.xhp#tit.help.text
+msgid "DefBool Statement [Runtime]"
+msgstr "Instrucción DefBool [Ejecución]"
+
+#: 03101100.xhp#bm_id3145759.help.text
+msgid "<bookmark_value>DefBool statement</bookmark_value>"
+msgstr "<bookmark_value>DefBool;instrucción</bookmark_value>"
+
+#: 03101100.xhp#hd_id3145759.1.help.text
+msgid "<link href=\"text/sbasic/shared/03101100.xhp\" name=\"DefBool Statement [Runtime]\">DefBool Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101100.xhp\" name=\"DefBool Statement [Runtime]\">Instrucción DefBool [Ejecución]</link>"
+
+#: 03101100.xhp#par_id3153089.2.help.text
+msgid "If no type-declaration character or keyword is specified, the DefBool statement sets the default data type for variables, according to a letter range."
+msgstr "Si no se especifica el carácter o la palabra clave de declaración de tipo, la instrucción DefBool establece el tipo de datos predeterminado para las variables según un rango de letras."
+
+#: 03101100.xhp#hd_id3149495.3.help.text
+msgctxt "03101100.xhp#hd_id3149495.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03101100.xhp#par_id3150682.4.help.text
+msgctxt "03101100.xhp#par_id3150682.4.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx RangoCarácter1[, RangoCarácter2[,...]]"
+
+#: 03101100.xhp#hd_id3159201.5.help.text
+msgctxt "03101100.xhp#hd_id3159201.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03101100.xhp#par_id3147226.6.help.text
+msgctxt "03101100.xhp#par_id3147226.6.help.text"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgstr "<emph>RangoCarácter:</emph> Letras que especifican el rango de variables para las que desee establecer el tipo de datos predeterminado."
+
+#: 03101100.xhp#par_id3149178.7.help.text
+msgctxt "03101100.xhp#par_id3149178.7.help.text"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Palabra clave que define el tipo de variable predeterminada:"
+
+#: 03101100.xhp#par_id3150669.8.help.text
+msgctxt "03101100.xhp#par_id3150669.8.help.text"
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr "<emph>Palabra clave: </emph>Tipo de variable predeterminada"
+
+#: 03101100.xhp#par_id3149233.9.help.text
+msgid "<emph>DefBool:</emph> Boolean"
+msgstr "<emph>DefBool:</emph> Lógico"
+
+#: 03101100.xhp#hd_id3149762.10.help.text
+msgctxt "03101100.xhp#hd_id3149762.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03101100.xhp#par_id3156152.12.help.text
+msgid "REM Prefix definition for variable types:"
+msgstr "REM Definición de prefijo para tipos de variable:"
+
+#: 03101100.xhp#par_id3153627.13.help.text
+msgctxt "03101100.xhp#par_id3153627.13.help.text"
+msgid "DefBool b"
+msgstr "DefBool b"
+
+#: 03101100.xhp#par_id3145610.14.help.text
+msgctxt "03101100.xhp#par_id3145610.14.help.text"
+msgid "DefDate t"
+msgstr "DefDate t"
+
+#: 03101100.xhp#par_id3154760.15.help.text
+msgctxt "03101100.xhp#par_id3154760.15.help.text"
+msgid "DefDbL d"
+msgstr "DefDbL d"
+
+#: 03101100.xhp#par_id3148552.16.help.text
+msgctxt "03101100.xhp#par_id3148552.16.help.text"
+msgid "DefInt i"
+msgstr "DefInt i"
+
+#: 03101100.xhp#par_id3152812.17.help.text
+msgctxt "03101100.xhp#par_id3152812.17.help.text"
+msgid "DefLng l"
+msgstr "DefLng l"
+
+#: 03101100.xhp#par_id3153524.18.help.text
+msgctxt "03101100.xhp#par_id3153524.18.help.text"
+msgid "DefObj o"
+msgstr "DefObj o"
+
+#: 03101100.xhp#par_id3150541.19.help.text
+msgctxt "03101100.xhp#par_id3150541.19.help.text"
+msgid "DefVar v"
+msgstr "DefVar v"
+
+#: 03101100.xhp#par_id3153193.21.help.text
+msgid "Sub ExampleDefBool"
+msgstr "Sub EjemploDefBool"
+
+#: 03101100.xhp#par_id3151381.22.help.text
+msgid "bOK=TRUE REM bOK is an implicit Boolean variable"
+msgstr "bOK=TRUE REM bOK es una variable lógica implícita"
+
+#: 03101100.xhp#par_id3145421.23.help.text
+msgctxt "03101100.xhp#par_id3145421.23.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03120100.xhp#tit.help.text
+msgid "ASCII/ANSI Conversion in Strings"
+msgstr "Conversión ASCII/ANSI en cadenas"
+
+#: 03120100.xhp#hd_id3147443.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120100.xhp\" name=\"ASCII/ANSI Conversion in Strings\">ASCII/ANSI Conversion in Strings</link>"
+msgstr "<link href=\"text/sbasic/shared/03120100.xhp\" name=\"ASCII/ANSI Conversion in Strings\">Conversión ASCII/ANSI en cadenas</link>"
+
+#: 03120100.xhp#par_id3159201.2.help.text
+msgid "The following functions convert strings to and from ASCII or ANSI code."
+msgstr "Las funciones siguientes convierten cadenas a y desde código ASCII o ANSI."
+
+#: 03030106.xhp#tit.help.text
+msgid "Year Function [Runtime]"
+msgstr "Función Year [Ejecución]"
+
+#: 03030106.xhp#bm_id3148664.help.text
+msgid "<bookmark_value>Year function</bookmark_value>"
+msgstr "<bookmark_value>Year;función</bookmark_value>"
+
+#: 03030106.xhp#hd_id3148664.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year Function [Runtime]\">Year Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Función Year [Runtime]\">Función Year [Ejecución]</link>"
+
+#: 03030106.xhp#par_id3149655.2.help.text
+msgid "Returns the year from a serial date number that is generated by the DateSerial or the DateValue function."
+msgstr "Devuelve el año a partir de una fecha serie que genera la función DateSerial o DateValue."
+
+#: 03030106.xhp#hd_id3154125.3.help.text
+msgctxt "03030106.xhp#hd_id3154125.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03030106.xhp#par_id3147229.4.help.text
+msgid "Year (Number)"
+msgstr "Year (Número)"
+
+#: 03030106.xhp#hd_id3154685.5.help.text
+msgctxt "03030106.xhp#hd_id3154685.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03030106.xhp#par_id3153970.6.help.text
+msgctxt "03030106.xhp#par_id3153970.6.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03030106.xhp#hd_id3150440.7.help.text
+msgctxt "03030106.xhp#hd_id3150440.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03030106.xhp#par_id3163712.8.help.text
+msgid "<emph>Number:</emph> Integer expression that contains the serial date number that is used to calculate the year."
+msgstr "<emph>Número:</emph> Expresión entera que contenga el número de fecha serie que se utilice para calcular el año."
+
+#: 03030106.xhp#par_id3152596.9.help.text
+msgid "This function is the opposite of the <emph>DateSerial </emph>function, and returns the year of a serial date. For example, the expression:"
+msgstr "Esta función es la contraria a <emph>DateSerial </emph> y devuelve el año de una fecha serie. Por ejemplo, la expresión:"
+
+#: 03030106.xhp#par_id3154319.10.help.text
+msgid "Print Year(DateSerial(1994, 12, 20))"
+msgstr "Print Year(DateSerial(1994, 12, 20))"
+
+#: 03030106.xhp#par_id3149483.11.help.text
+msgid "returns the value 1994."
+msgstr "devuelve el valor 1994."
+
+#: 03030106.xhp#hd_id3146985.12.help.text
+msgctxt "03030106.xhp#hd_id3146985.12.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03030106.xhp#par_id3153952.13.help.text
+msgid "Sub ExampleYear"
+msgstr "Sub EjemploYear"
+
+#: 03030106.xhp#par_id3153363.14.help.text
+msgid "MsgBox \"\" & Year(Now) ,64,\"Current year\""
+msgstr "MsgBox \"\" & Year(Now) ,64,\"Año actual\""
+
+#: 03030106.xhp#par_id3145274.15.help.text
+msgctxt "03030106.xhp#par_id3145274.15.help.text"
+msgid "End sub"
+msgstr "End Sub"
+
+#: 03090411.xhp#tit.help.text
+msgid "With Statement [Runtime]"
+msgstr "Instrucción With [Ejecución]"
+
+#: 03090411.xhp#bm_id3153311.help.text
+msgid "<bookmark_value>With statement</bookmark_value>"
+msgstr "<bookmark_value>With;instrucción</bookmark_value>"
+
+#: 03090411.xhp#hd_id3153311.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement [Runtime]\">With Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement [Runtime]\">Instrucción With [Ejecución]</link>"
+
+#: 03090411.xhp#par_id3159158.2.help.text
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
+msgstr "Define un objeto como el predeterminado. A menos que se declare otro nombre de objeto, todas las propiedades y métodos hacen referencia al objeto predeterminado hasta que se llega a la instrucción End With."
+
+#: 03090411.xhp#hd_id3156153.3.help.text
+msgctxt "03090411.xhp#hd_id3156153.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03090411.xhp#par_id3145609.4.help.text
+msgid "With Object Statement block End With"
+msgstr "With Objeto Bloque de instrucciones End With"
+
+#: 03090411.xhp#hd_id3154924.5.help.text
+msgctxt "03090411.xhp#hd_id3154924.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03090411.xhp#par_id3147560.6.help.text
+msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
+msgstr "Use <emph>With</emph> y <emph>End With</emph> si tiene varias propiedades o métodos para un único objeto."
+
+#: 03010200.xhp#tit.help.text
+msgid "Functions for Screen Input"
+msgstr "Funciones para la entrada por pantalla"
+
+#: 03010200.xhp#hd_id3149456.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010200.xhp\" name=\"Functions for Screen Input\">Functions for Screen Input</link>"
+msgstr "<link href=\"text/sbasic/shared/03010200.xhp\" name=\"Funciones para la entrada por pantalla\">Funciones para la entrada por pantalla</link>"
+
+#: 03010200.xhp#par_id3150398.2.help.text
+msgid "This section describes Runtime functions used to control screen input."
+msgstr "Esta sección describe las funciones de tiempo de ejecución que se utilizan para controlar la entrada por pantalla."
+
+#: 03131900.xhp#tit.help.text
+msgid "GlobalScope [Runtime]"
+msgstr "GlobalScope [Ejecución]"
+
+#: 03131900.xhp#bm_id3150682.help.text
+msgid "<bookmark_value>GlobalScope function</bookmark_value><bookmark_value>library systems</bookmark_value><bookmark_value>LibraryContainer</bookmark_value><bookmark_value>BasicLibraries (LibraryContainer)</bookmark_value><bookmark_value>DialogLibraries (LibraryContainer)</bookmark_value>"
+msgstr "<bookmark_value>GlobalScope;función</bookmark_value><bookmark_value>sistema de biblioteca</bookmark_value><bookmark_value>LibraryContainer</bookmark_value><bookmark_value>BasicLibraries;LibraryContainer</bookmark_value><bookmark_value>DialogLibraries;LibraryContainer</bookmark_value>"
+
+#: 03131900.xhp#hd_id3150682.1.help.text
+msgid "<link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope [Runtime]\">GlobalScope [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope [Runtime]\">GlobalScope [Ejecución]</link>"
+
+#: 03131900.xhp#par_id3153345.2.help.text
+msgid "Basic source code and dialogs are organized in a library system."
+msgstr "El código fuente de Basic y los diálogos están organizados en un sistema de bibliotecas."
+
+#: 03131900.xhp#par_id3145315.3.help.text
+msgid "The LibraryContainer contains libraries"
+msgstr "LibraryContainer contiene bibliotecas"
+
+#: 03131900.xhp#par_id3149514.4.help.text
+msgid "Libraries can contain modules and dialogs"
+msgstr "Las bibliotecas pueden contener módulos y diálogos"
+
+#: 03131900.xhp#hd_id3143271.5.help.text
+msgid "In Basic:"
+msgstr "En Basic:"
+
+#: 03131900.xhp#par_id3153061.6.help.text
+msgid "The LibraryContainer is called <emph>BasicLibraries</emph>."
+msgstr "LibraryContainer se denomina <emph>BasicLibraries</emph>."
+
+#: 03131900.xhp#hd_id3154346.7.help.text
+msgid "In dialogs:"
+msgstr "En los diálogos:"
+
+#: 03131900.xhp#par_id3148663.8.help.text
+msgid "The LibraryContainer is called <emph>DialogLibraries</emph>."
+msgstr "LibraryContainer se denomina <emph>DialogLibraries</emph>."
+
+#: 03131900.xhp#par_id3150543.9.help.text
+msgid "Both LibraryContainers exist in an application level and within every document. In the document Basic, the document's LibraryContainers are called automatically. If you want to call the global LibraryContainers from within a document, you must use the keyword <emph>GlobalScope</emph>."
+msgstr "Ambos LibraryContainers existen en un nivel de aplicación y dentro de cada documento. En el documento Basic, se llama a los LibraryContainers del documento automáticamente. Si desea llamar a los LibratyContainers desde dentro de un documento, es necesario usar la palabra clave <emph>GlobalScope</emph>."
+
+#: 03131900.xhp#hd_id3148920.10.help.text
+msgctxt "03131900.xhp#hd_id3148920.10.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03131900.xhp#par_id3149203.11.help.text
+msgid "GlobalScope"
+msgstr "GlobalScope"
+
+#: 03131900.xhp#hd_id3154685.12.help.text
+msgctxt "03131900.xhp#hd_id3154685.12.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03131900.xhp#par_id3154124.13.help.text
+msgid "Example in the document Basic"
+msgstr "Ejemplo en el documento Basic"
+
+#: 03131900.xhp#par_id3158408.14.help.text
+msgid "' calling Dialog1 in the document library Standard"
+msgstr "' llamando a Dialog1 en la biblioteca de documento Standard"
+
+#: 03131900.xhp#par_id3125865.15.help.text
+msgctxt "03131900.xhp#par_id3125865.15.help.text"
+msgid "oDlgDesc = DialogLibraries.Standard.Dialog1"
+msgstr "oDlgDesc = DialogLibraries.Standard.Dialog1"
+
+#: 03131900.xhp#par_id3154910.16.help.text
+msgid "' calling Dialog2 in the application library Library1"
+msgstr "' llamando a Dialog2 en la biblioteca de Library1"
+
+#: 03131900.xhp#par_id3156424.17.help.text
+msgid "oDlgDesc = GlobalScope.DialogLibraries.Library1.Dialog2"
+msgstr "oDlgDesc = GlobalScope.DialogLibraries.Library1.Dialog2"
+
+#: 03070000.xhp#tit.help.text
+msgid "Mathematical Operators"
+msgstr "Operadores matemáticos"
+
+#: 03070000.xhp#hd_id3149234.1.help.text
+msgid "<link href=\"text/sbasic/shared/03070000.xhp\" name=\"Mathematical Operators\">Mathematical Operators</link>"
+msgstr "<link href=\"text/sbasic/shared/03070000.xhp\" name=\"Operadores matemáticos\">Operadores matemáticos</link>"
+
+#: 03070000.xhp#par_id3145068.2.help.text
+msgid "The following mathematical operators are supported in $[officename] Basic."
+msgstr "Los operadores matemáticos siguientes se admiten en $[officename] Basic."
+
+#: 03070000.xhp#par_id3148552.3.help.text
+msgid "This chapter provides a short overview of all of the arithmetical operators that you may need for calculations within a program."
+msgstr "Este capítulo ofrece un resumen rápido de todos los operadores aritméticos que se puede necesitar para realizar cálculos en un programa."
+
+#: 03010303.xhp#tit.help.text
+msgid "Red Function [Runtime]"
+msgstr "Función Red [Ejecución]"
+
+#: 03010303.xhp#bm_id3148947.help.text
+msgid "<bookmark_value>Red function</bookmark_value>"
+msgstr "<bookmark_value>Red;función</bookmark_value>"
+
+#: 03010303.xhp#hd_id3148947.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010303.xhp\" name=\"Red Function [Runtime]\">Red Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010303.xhp\" name=\"Función Red [Runtime]\">Función Red [Runtime]</link>"
+
+#: 03010303.xhp#par_id3149656.2.help.text
+msgid "Returns the Red component of the specified color code."
+msgstr "Devuelve el componente rojo del código de color dado."
+
+#: 03010303.xhp#hd_id3148799.3.help.text
+msgctxt "03010303.xhp#hd_id3148799.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03010303.xhp#par_id3150448.4.help.text
+msgid "Red (ColorNumber As Long)"
+msgstr "Red (NúmeroColor As Long)"
+
+#: 03010303.xhp#hd_id3151042.5.help.text
+msgctxt "03010303.xhp#hd_id3151042.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03010303.xhp#par_id3145173.6.help.text
+msgctxt "03010303.xhp#par_id3145173.6.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03010303.xhp#hd_id3154685.7.help.text
+msgctxt "03010303.xhp#hd_id3154685.7.help.text"
+msgid "Parameter:"
+msgstr "Parámetro:"
+
+#: 03010303.xhp#par_id3150440.8.help.text
+msgid "<emph>ColorNumber</emph>: Long integer expression that specifies any <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">color code</link> for which to return the Red component."
+msgstr "<emph>NúmeroColor</emph>: Expresión de número entero largo que especifica un <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"código de color\">código de color</link> para el que devolver el componente rojo."
+
+#: 03010303.xhp#hd_id3148575.9.help.text
+msgctxt "03010303.xhp#hd_id3148575.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03010303.xhp#par_id3145365.10.help.text
+msgctxt "03010303.xhp#par_id3145365.10.help.text"
+msgid "Sub ExampleColor"
+msgstr "Sub EjemploColor"
+
+#: 03010303.xhp#par_id3147348.11.help.text
+msgctxt "03010303.xhp#par_id3147348.11.help.text"
+msgid "Dim lVar As Long"
+msgstr "Dim lVar As Long"
+
+#: 03010303.xhp#par_id3145750.12.help.text
+msgctxt "03010303.xhp#par_id3145750.12.help.text"
+msgid "lVar = rgb(128,0,200)"
+msgstr "lVar = rgb(128,0,200)"
+
+#: 03010303.xhp#par_id3147435.13.help.text
+msgctxt "03010303.xhp#par_id3147435.13.help.text"
+msgid "msgbox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
+msgstr "msgbox \"El color \" & lVar & \" contiene los componentes:\" & Chr(13) &_"
+
+#: 03010303.xhp#par_id3155306.14.help.text
+msgctxt "03010303.xhp#par_id3155306.14.help.text"
+msgid "\"red= \" & red(lVar) & Chr(13)&_"
+msgstr "\"rojo = \" & red(lVar) & Chr(13)&_"
+
+#: 03010303.xhp#par_id3149262.15.help.text
+msgctxt "03010303.xhp#par_id3149262.15.help.text"
+msgid "\"green= \" & green(lVar) & Chr(13)&_"
+msgstr "\"verde= \" & green(lVar) & Chr(13)&_"
+
+#: 03010303.xhp#par_id3147397.16.help.text
+msgctxt "03010303.xhp#par_id3147397.16.help.text"
+msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr "\"azul= \" & blue(lVar) & Chr(13) , 64,\"colores\""
+
+#: 03010303.xhp#par_id3156286.17.help.text
+msgctxt "03010303.xhp#par_id3156286.17.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03102450.xhp#tit.help.text
+msgid "IsError Function [Runtime]"
+msgstr "Función IsError [Ejecución]"
+
+#: 03102450.xhp#bm_id4954680.help.text
+msgid "<bookmark_value>IsError function</bookmark_value>"
+msgstr "<bookmark_value>Función IsError</bookmark_value>"
+
+#: 03102450.xhp#par_idN1054E.help.text
+msgid "<link href=\"text/sbasic/shared/03102450.xhp\">IsError Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102450.xhp\">Función IsError [Ejecución]</link>"
+
+#: 03102450.xhp#par_idN1055E.help.text
+msgid "Tests if a variable contains an error value."
+msgstr "Comprueba si una variable contiene un valor de error."
+
+#: 03102450.xhp#par_idN10561.help.text
+msgctxt "03102450.xhp#par_idN10561.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03102450.xhp#par_idN10565.help.text
+msgid "IsError (Var)"
+msgstr "IsError (Var)"
+
+#: 03102450.xhp#par_idN10568.help.text
+msgctxt "03102450.xhp#par_idN10568.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03102450.xhp#par_idN1056C.help.text
+msgctxt "03102450.xhp#par_idN1056C.help.text"
+msgid "Bool"
+msgstr "booleano"
+
+#: 03102450.xhp#par_idN1056F.help.text
+msgctxt "03102450.xhp#par_idN1056F.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03102450.xhp#par_idN10573.help.text
+msgid "<emph>Var:</emph> Any variable that you want to test. If the variable contains an error value, the function returns True, otherwise the function returns False."
+msgstr "<emph>Var:</emph> cualquier variable que desee comprobar. Si la variable contiene un valor de error, la función devuelve True; de lo contrario, devuelve False."
+
+#: 03100000.xhp#tit.help.text
+msgid "Variables"
+msgstr "Variables"
+
+#: 03100000.xhp#hd_id3149669.1.help.text
+msgid "<link href=\"text/sbasic/shared/03100000.xhp\" name=\"Variables\">Variables</link>"
+msgstr "<link href=\"text/sbasic/shared/03100000.xhp\" name=\"Variables\">Variables</link>"
+
+#: 03100000.xhp#par_id3147265.2.help.text
+msgid "The following statements and functions are for working with variables. You can use these functions to declare or define variables, convert variables from one type to another, or determine the variable type."
+msgstr "Las instrucciones y funciones siguientes son para trabajar con variables. Puede utilizar estas funciones para declarar o definir variables, convertirlas de un tipo a otro o para determinar el tipo de variable."
+
+#: 03120313.xhp#tit.help.text
+msgid "ConvertFromURL Function [Runtime]"
+msgstr "Función ConvertFromURL [Ejecución]"
+
+#: 03120313.xhp#bm_id3153894.help.text
+msgid "<bookmark_value>ConvertFromURL function</bookmark_value>"
+msgstr "<bookmark_value>ConvertFromURL;función</bookmark_value>"
+
+#: 03120313.xhp#hd_id3153894.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"ConvertFromURL Function [Runtime]\">ConvertFromURL Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"ConvertFromURL Function [Runtime]\">Función ConvertFromURL [Ejecución]</link>"
+
+#: 03120313.xhp#par_id3147226.2.help.text
+msgid "Converts a file URL to a system file name."
+msgstr "Convierte un fichero URL en un nombre de archivo para el sistema."
+
+#: 03120313.xhp#hd_id3143267.3.help.text
+msgctxt "03120313.xhp#hd_id3143267.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03120313.xhp#par_id3154142.4.help.text
+msgid "ConvertFromURL(filename)"
+msgstr "ConvertFromURL(nombrearchivo)"
+
+#: 03120313.xhp#hd_id3159157.5.help.text
+msgctxt "03120313.xhp#hd_id3159157.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03120313.xhp#par_id3150669.6.help.text
+msgctxt "03120313.xhp#par_id3150669.6.help.text"
+msgid "String"
+msgstr "Cadena"
+
+#: 03120313.xhp#hd_id3143270.7.help.text
+msgctxt "03120313.xhp#hd_id3143270.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03120313.xhp#par_id3156023.8.help.text
+msgid "<emph>Filename:</emph> A file name as a string."
+msgstr "<emph>NombreArchivo:</emph> Un nombre de archivo como cadena."
+
+#: 03120313.xhp#hd_id3154760.9.help.text
+msgctxt "03120313.xhp#hd_id3154760.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03120313.xhp#par_id3148664.10.help.text
+msgctxt "03120313.xhp#par_id3148664.10.help.text"
+msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
+msgstr "systemFile$ = \"c:\\carpeta\\mitexo.txt\""
+
+#: 03120313.xhp#par_id3150541.11.help.text
+msgctxt "03120313.xhp#par_id3150541.11.help.text"
+msgid "url$ = ConvertToURL( systemFile$ )"
+msgstr "url$ = ConvertToURL( systemFile$ )"
+
+#: 03120313.xhp#par_id3150792.12.help.text
+msgctxt "03120313.xhp#par_id3150792.12.help.text"
+msgid "print url$"
+msgstr "print url$"
+
+#: 03120313.xhp#par_id3154367.13.help.text
+msgctxt "03120313.xhp#par_id3154367.13.help.text"
+msgid "systemFileAgain$ = ConvertFromURL( url$ )"
+msgstr "systemFileAgain$ = ConvertFromURL( url$ )"
+
+#: 03120313.xhp#par_id3153194.14.help.text
+msgctxt "03120313.xhp#par_id3153194.14.help.text"
+msgid "print systemFileAgain$"
+msgstr "print systemFileAgain$"
+
+#: 03020305.xhp#tit.help.text
+msgid "Seek Statement [Runtime]"
+msgstr "Función Seek [Ejecución]"
+
+#: 03020305.xhp#bm_id3159413.help.text
+msgid "<bookmark_value>Seek statement</bookmark_value>"
+msgstr "<bookmark_value>declaración Seek</bookmark_value>"
+
+#: 03020305.xhp#hd_id3159413.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek Statement [Runtime]\">Seek Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Declaración Seek [Runtime]\">Declaración Seek [Runtime]</link>"
+
+#: 03020305.xhp#par_id3153381.2.help.text
+msgid "Sets the position for the next writing or reading in a file that was opened with the Open statement."
+msgstr "Define la posición de la siguiente escritura o lectura de un archivo abierto con la instrucción Open."
+
+#: 03020305.xhp#par_id2100589.help.text
+msgid "For random access files, the Seek statement sets the number of the next record to be accessed."
+msgstr "Para archivos de acceso aleatorio, la instrucción Seek define el número del siguiente registro al que se accederá."
+
+#: 03020305.xhp#par_id5444807.help.text
+msgid "For all other files, the Seek statement sets the byte position at which the next operation is to occur."
+msgstr "Para el resto de archivos, la instrucción Seek define la posición de byte en la que ocurrirá la siguiente operación."
+
+#: 03020305.xhp#par_id3156280.5.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">Seek</link>."
+msgstr "Consulte también: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">Seek</link>."
+
+#: 03020305.xhp#hd_id3145785.6.help.text
+msgctxt "03020305.xhp#hd_id3145785.6.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03020305.xhp#par_id3145273.7.help.text
+msgid "Seek[#FileNumber], Position (As Long)"
+msgstr "Seek[#NúmeroArchivo], Posición (As Long)"
+
+#: 03020305.xhp#hd_id3154321.8.help.text
+msgctxt "03020305.xhp#hd_id3154321.8.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03020305.xhp#par_id3153952.9.help.text
+msgid "<emph>FileNumber: </emph>The data channel number used in the Open statement."
+msgstr "<emph>NúmeroArchivo: </emph> El número de canal de datos usado en la instrucción Open."
+
+#: 03020305.xhp#par_id3145366.10.help.text
+msgid "<emph>Position: </emph>Position for the next writing or reading. Position can be a number between 1 and 2,147,483,647. According to the file type, the position indicates the number of the record (files in the Random mode) or the byte position (files in the Binary, Output, Append or Input mode). The first byte in a file is position 1, the second byte is position 2, and so on."
+msgstr "<emph>Posición: </emph>Posición para la siguiente escritura o lectura. La posición puede ser un número entre 1 y 2.147.483.647. Según el tipo de archivo, la posición indica el número del registro (Archivos en modo Random) o la posición del byte (Archivos en modo Binary, Output, Append o Input). El primer byte de un archivo es la posición 1, el segundo la posición 2, etc."
+
+#: 03103500.xhp#tit.help.text
+msgid "Static Statement [Runtime]"
+msgstr "Instrucción Static [Ejecución]"
+
+#: 03103500.xhp#bm_id3149798.help.text
+msgid "<bookmark_value>Static statement</bookmark_value>"
+msgstr "<bookmark_value>Static;instrucción</bookmark_value>"
+
+#: 03103500.xhp#hd_id3149798.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103500.xhp\" name=\"Static Statement [Runtime]\">Static Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103500.xhp\" name=\"Static Statement [Runtime]\">Instrucción Static [Ejecución]</link>"
+
+#: 03103500.xhp#par_id3153311.2.help.text
+msgid "Declares a variable or an array at the procedure level within a subroutine or a function, so that the values of the variable or the array are retained after exiting the subroutine or function. Dim statement conventions are also valid."
+msgstr "Declara una variable o una matriz a nivel de procedimiento dentro de una subrutina o función, de manera que los valores de la variable o matriz se conservan incluso después de salir de la subrutina o función. Las convenciones de la instrucción Dim también son válidas."
+
+#: 03103500.xhp#par_id3147264.3.help.text
+msgid "The <emph>Static statement</emph> cannot be used to define variable arrays. Arrays must be specified according to a fixed size."
+msgstr "La instrucción <emph>Static</emph> no se puede utilizar para definir matrices de variables. Las matrices deben especificarse de acuerdo con un tamaño fijo."
+
+#: 03103500.xhp#hd_id3149657.4.help.text
+msgctxt "03103500.xhp#hd_id3149657.4.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03103500.xhp#par_id3150400.5.help.text
+msgid "Static VarName[(start To end)] [As VarType], VarName2[(start To end)] [As VarType], ..."
+msgstr "Static NombreVar[(inicio To final)] [As TipoVar], NombreVar2[(inicio To final)] [As TipoVar], ..."
+
+#: 03103500.xhp#hd_id3148452.6.help.text
+msgctxt "03103500.xhp#hd_id3148452.6.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03103500.xhp#par_id3156214.7.help.text
+msgid "Sub ExampleStatic"
+msgstr "Sub EjemploStatic"
+
+#: 03103500.xhp#par_id1940061.help.text
+msgid "Dim iCount as Integer, iResult as Integer"
+msgstr "Dim iCount as Integer, iResult as Integer"
+
+#: 03103500.xhp#par_id878627.help.text
+msgid "For iCount = 0 to 2"
+msgstr "For iCount = 0 to 2"
+
+#: 03103500.xhp#par_id7914059.help.text
+msgid "iResult = InitVar()"
+msgstr "iResult = InitVar()"
+
+#: 03103500.xhp#par_id299691.help.text
+msgctxt "03103500.xhp#par_id299691.help.text"
+msgid "Next iCount"
+msgstr "Next iCount"
+
+#: 03103500.xhp#par_id3150870.11.help.text
+msgid "MsgBox iResult,0,\"The answer is\""
+msgstr "MsgBox iResult,0,\"La respuesta es\""
+
+#: 03103500.xhp#par_id3153771.13.help.text
+msgctxt "03103500.xhp#par_id3153771.13.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03103500.xhp#par_id3151115.15.help.text
+msgid "REM Function for initialization of the static variable"
+msgstr "REM Función para la inicialización de la variable estática"
+
+#: 03103500.xhp#par_id3148618.16.help.text
+msgid "Function InitVar() As Integer"
+msgstr "Function InitVar() As Integer"
+
+#: 03103500.xhp#par_id3154217.8.help.text
+msgid "Static iInit As Integer"
+msgstr "Static iInit As Integer"
+
+#: 03103500.xhp#par_id1057161.help.text
+msgid "Const iMinimum as Integer = 40 REM minimum return value of this function"
+msgstr "Const iMinimum as Integer = 40 REM valor de retorno mínimo de esta función"
+
+#: 03103500.xhp#par_id580462.help.text
+msgid "if iInit = 0 then REM check if initialized"
+msgstr "if iInit = 0 then REM comprobar si se ha inicializado"
+
+#: 03103500.xhp#par_id7382732.help.text
+msgid "iInit = iMinimum"
+msgstr "iInit = iMinimum"
+
+#: 03103500.xhp#par_id5779900.help.text
+msgid "else"
+msgstr "else"
+
+#: 03103500.xhp#par_id3151041.10.help.text
+msgid "iInit = iInit + 1"
+msgstr "iInit = iInit + 1"
+
+#: 03103500.xhp#par_id5754264.help.text
+msgctxt "03103500.xhp#par_id5754264.help.text"
+msgid "end if"
+msgstr "end if"
+
+#: 03103500.xhp#par_id6529435.help.text
+msgid "InitVar = iInit"
+msgstr "InitVar = iInit"
+
+#: 03103500.xhp#par_id3150487.18.help.text
+msgctxt "03103500.xhp#par_id3150487.18.help.text"
+msgid "End Function"
+msgstr "End Function"
+
+#: 03070500.xhp#tit.help.text
+msgid "\"^\" Operator [Runtime]"
+msgstr "Operador \"^\" [Ejecución]"
+
+#: 03070500.xhp#bm_id3145315.help.text
+msgid "<bookmark_value>\"^\" operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>operador \"^\";operadores matemáticos</bookmark_value>"
+
+#: 03070500.xhp#hd_id3145315.1.help.text
+msgid "<link href=\"text/sbasic/shared/03070500.xhp\">\"^\" Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070500.xhp\">Operador \"^\" [Ejecución]</link>"
+
+#: 03070500.xhp#par_id3149670.2.help.text
+msgid "Raises a number to a power."
+msgstr "Eleva un número a una potencia."
+
+#: 03070500.xhp#hd_id3147264.3.help.text
+msgctxt "03070500.xhp#hd_id3147264.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03070500.xhp#par_id3149656.4.help.text
+msgid "Result = Expression ^ Exponent"
+msgstr "Resultado = Expresión ^ Exponente"
+
+#: 03070500.xhp#hd_id3151211.5.help.text
+msgctxt "03070500.xhp#hd_id3151211.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03070500.xhp#par_id3153192.6.help.text
+msgid "<emph>Result:</emph> Any numerical expression that contains the result of the number raised to a power."
+msgstr "<emph>Resultado:</emph> Cualquier expresión numérica que contenga el resultado del número elevado a la potencia."
+
+#: 03070500.xhp#par_id3150448.7.help.text
+msgid "<emph>Expression:</emph> Numerical value that you want to raise to a power."
+msgstr "<emph>Expresión:</emph> Valor numérico que se desea elevar a una potencia."
+
+#: 03070500.xhp#par_id3156422.8.help.text
+msgid "<emph>Exponent:</emph> The value of the power that you want to raise the expression to."
+msgstr "<emph>Exponente:</emph> El valor de la potencia a la que se desea elevar la expresión."
+
+#: 03070500.xhp#hd_id3147287.9.help.text
+msgctxt "03070500.xhp#hd_id3147287.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03070500.xhp#par_id3153770.10.help.text
+msgctxt "03070500.xhp#par_id3153770.10.help.text"
+msgid "Sub Example"
+msgstr "Sub Ejemplo"
+
+#: 03070500.xhp#par_id3152886.11.help.text
+msgid "Print ( 12.345 ^ 23 )"
+msgstr "Print ( 12,345 ^ 23 )"
+
+#: 03070500.xhp#par_id3146984.12.help.text
+msgid "Print Exp ( 23 * Log( 12.345 ) ) REM Raises by forming a logarithm"
+msgstr "Print Exp ( 23 * Log( 12.345 ) ) REM Eleva formando un logaritmo"
+
+#: 03070500.xhp#par_id3148618.13.help.text
+msgctxt "03070500.xhp#par_id3148618.13.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03080102.xhp#tit.help.text
+msgid "Cos Function [Runtime]"
+msgstr "Función Cos [Ejecución]"
+
+#: 03080102.xhp#bm_id3154923.help.text
+msgid "<bookmark_value>Cos function</bookmark_value>"
+msgstr "<bookmark_value>Cos;función</bookmark_value>"
+
+#: 03080102.xhp#hd_id3154923.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080102.xhp\" name=\"Cos Function [Runtime]\">Cos Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080102.xhp\" name=\"Función Cos [Ejecución]\">Función Cos [Ejecución]</link>"
+
+#: 03080102.xhp#par_id3159413.2.help.text
+msgid "Calculates the cosine of an angle. The angle is specified in radians. The result lies between -1 and 1."
+msgstr "Calcula el coseno de un ángulo. El ángulo se especifica en radianes. El resultado está entre -1 y 1."
+
+#: 03080102.xhp#par_id3150358.3.help.text
+msgid "Using the angle Alpha, the Cos-Function calculates the ratio of the length of the side that is adjacent to the angle, divided by the length of the hypotenuse in a right-angled triangle."
+msgstr "Usando el ángulo Alfa, la función Cos calcula el coeficiente de la longitud del lado que es adyacente al ángulo, dividido por la longitud de la hipotenusa en un triángulo rectángulo."
+
+#: 03080102.xhp#par_id3154141.4.help.text
+msgid "Cos(Alpha) = Adjacent/Hypotenuse"
+msgstr "Cos(Alfa) = Adyacente/Hipotenusa"
+
+#: 03080102.xhp#hd_id3154125.5.help.text
+msgctxt "03080102.xhp#hd_id3154125.5.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03080102.xhp#par_id3145172.6.help.text
+msgid "Cos (Number)"
+msgstr "Cos (Número)"
+
+#: 03080102.xhp#hd_id3156214.7.help.text
+msgctxt "03080102.xhp#hd_id3156214.7.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03080102.xhp#par_id3150449.8.help.text
+msgctxt "03080102.xhp#par_id3150449.8.help.text"
+msgid "Double"
+msgstr "Doble"
+
+#: 03080102.xhp#hd_id3153969.9.help.text
+msgctxt "03080102.xhp#hd_id3153969.9.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03080102.xhp#par_id3153770.10.help.text
+msgid "<emph>Number:</emph> Numeric expression that specifies an angle in radians that you want to calculate the cosine for."
+msgstr "<emph>Número:</emph> Expresión numérica que especifica un ángulo en radianes para el que se desea calcular el coseno."
+
+#: 03080102.xhp#par_id3145749.11.help.text
+msgid "To convert degrees to radians, multiply degrees by pi/180. To convert radians to degrees, multiply radians by 180/pi."
+msgstr "Para convertir grados a radianes, multiplique los grados por pi/180. Para convertir radianes a grados, multiplique los radianes por 180/pi."
+
+#: 03080102.xhp#par_id3149664.12.help.text
+msgctxt "03080102.xhp#par_id3149664.12.help.text"
+msgid "degree=(radian*180)/pi"
+msgstr "grado=(radián*180)/pi"
+
+#: 03080102.xhp#par_id3146985.13.help.text
+msgctxt "03080102.xhp#par_id3146985.13.help.text"
+msgid "radian=(degree*pi)/180"
+msgstr "radián=(grado*pi)/180"
+
+#: 03080102.xhp#par_id3152885.14.help.text
+msgid "Pi is here the fixed circle constant with the rounded value 3.14159..."
+msgstr "Pi es aquí la constante fija de la circunferencia, con el valor redondeado de 3,14159..."
+
+#: 03080102.xhp#hd_id3153951.15.help.text
+msgctxt "03080102.xhp#hd_id3153951.15.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03080102.xhp#par_id3155855.16.help.text
+msgid "REM The following example allows for a right-angled triangle the input of"
+msgstr "REM El ejemplo siguiente permite para un triángulo rectángulo la entrada de"
+
+#: 03080102.xhp#par_id3149484.17.help.text
+msgid "REM secant and angle (in degrees) and calculates the length of the hypotenuse:"
+msgstr "REM la secante y el ángulo (en grados) y calcula la longitud de la hipotenusa:"
+
+#: 03080102.xhp#par_id3147428.18.help.text
+msgid "Sub ExampleCosinus"
+msgstr "Sub EjemploCoseno"
+
+#: 03080102.xhp#par_id3150010.19.help.text
+msgid "REM rounded Pi = 3.14159"
+msgstr "REM redondeado Pi = 3.14159"
+
+#: 03080102.xhp#par_id3149959.20.help.text
+msgid "Dim d1 as Double, dAngle as Double"
+msgstr "Dim d1 as Double, dAngle as Double"
+
+#: 03080102.xhp#par_id3144764.21.help.text
+msgid "d1 = InputBox$ (\"\"Enter the length of the adjacent side: \",\"Adjacent\")"
+msgstr "d1 = InputBox$ (\"\"Escriba la longitud del lado adyacente: \",\"Adyacente\")"
+
+#: 03080102.xhp#par_id3154491.22.help.text
+msgid "dAngle = InputBox$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
+msgstr "dAngle = InputBox$ (\"Escriba el ángulo Alfa (en grados): \",\"Alfa\")"
+
+#: 03080102.xhp#par_id3151074.23.help.text
+msgid "Print \"The length of the hypothenuse is\"; (d1 / cos (dAngle * Pi / 180))"
+msgstr "Print \"La longitud de la hipotenusa es \"; (d1 / cos (dAngle * Pi / 180))"
+
+#: 03080102.xhp#par_id3149583.24.help.text
+msgctxt "03080102.xhp#par_id3149583.24.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03102600.xhp#tit.help.text
+msgid "IsNull Function [Runtime]"
+msgstr "Función IsNull [Ejecución]"
+
+#: 03102600.xhp#bm_id3155555.help.text
+msgid "<bookmark_value>IsNull function</bookmark_value><bookmark_value>Null value</bookmark_value>"
+msgstr "<bookmark_value>Función IsNull </bookmark_value><bookmark_value>Valor Null</bookmark_value>"
+
+#: 03102600.xhp#hd_id3155555.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102600.xhp\" name=\"IsNull Function [Runtime]\">IsNull Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102600.xhp\" name=\"IsNull Function [Runtime]\">Función IsNull [Ejecución]</link>"
+
+#: 03102600.xhp#par_id3146957.2.help.text
+msgid "Tests if a Variant contains the special Null value, indicating that the variable does not contain data."
+msgstr "Comprueba si una variante contiene el valor especial Null (nulo) indicando que la variable no contiene datos."
+
+#: 03102600.xhp#hd_id3150670.3.help.text
+msgctxt "03102600.xhp#hd_id3150670.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03102600.xhp#par_id3150984.4.help.text
+msgid "IsNull (Var)"
+msgstr "IsNull (Var)"
+
+#: 03102600.xhp#hd_id3149514.5.help.text
+msgctxt "03102600.xhp#hd_id3149514.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03102600.xhp#par_id3145609.6.help.text
+msgctxt "03102600.xhp#par_id3145609.6.help.text"
+msgid "Bool"
+msgstr "Lógico"
+
+#: 03102600.xhp#hd_id3149669.7.help.text
+msgctxt "03102600.xhp#hd_id3149669.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03102600.xhp#par_id3159414.8.help.text
+msgid "<emph>Var:</emph> Any variable that you want to test. This function returns True if the Variant contains the Null value, or False if the Variant does not contain the Null value."
+msgstr "<emph>Var:</emph> Cualquier variable que se desee comprobar. Esta función devuelve True si la variante contiene el valor Null o False si contiene otro distinto."
+
+#: 03102600.xhp#par_idN1062A.help.text
+msgid "<emph>Null</emph> - This value is used for a variant data sub type without valid contents."
+msgstr "<emph>Null</emph>: este valor se usa para un subtipo de datos de tipo variant sin contenido válido."
+
+#: 03102600.xhp#hd_id3153381.9.help.text
+msgctxt "03102600.xhp#hd_id3153381.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03102600.xhp#par_id3154140.10.help.text
+msgid "Sub ExampleIsNull"
+msgstr "Sub EjemploIsNull"
+
+#: 03102600.xhp#par_id3145172.11.help.text
+msgid "Dim vVar As Variant"
+msgstr "Dim vVar As Variant"
+
+#: 03102600.xhp#par_id3144760.12.help.text
+msgid "msgbox IsNull(vVar)"
+msgstr "msgbox IsNull(vVar)"
+
+#: 03102600.xhp#par_id3153970.13.help.text
+msgctxt "03102600.xhp#par_id3153970.13.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03030202.xhp#tit.help.text
+msgid "Minute Function [Runtime]"
+msgstr "Función Minute [Ejecución]"
+
+#: 03030202.xhp#bm_id3155419.help.text
+msgid "<bookmark_value>Minute function</bookmark_value>"
+msgstr "<bookmark_value>Minute;función</bookmark_value>"
+
+#: 03030202.xhp#hd_id3155419.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute Function [Runtime]\">Minute Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030202.xhp\" name=\"Función Minute [Runtime]\">Función Minute [Ejecución]</link>"
+
+#: 03030202.xhp#par_id3156344.2.help.text
+msgid "Returns the minute of the hour that corresponds to the serial time value that is generated by the TimeSerial or the TimeValue function."
+msgstr "Devuelve el minuto de la hora que corresponde al valor de hora serie que han generado las funciones TimeSerial o TimeValue."
+
+#: 03030202.xhp#hd_id3154758.3.help.text
+msgctxt "03030202.xhp#hd_id3154758.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03030202.xhp#par_id3149656.4.help.text
+msgid "Minute (Number)"
+msgstr "Minute (Número)"
+
+#: 03030202.xhp#hd_id3148798.5.help.text
+msgctxt "03030202.xhp#hd_id3148798.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03030202.xhp#par_id3150449.6.help.text
+msgctxt "03030202.xhp#par_id3150449.6.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03030202.xhp#hd_id3153193.7.help.text
+msgctxt "03030202.xhp#hd_id3153193.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03030202.xhp#par_id3153969.8.help.text
+msgid " <emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the minute value."
+msgstr "<emph>Número:</emph> Expresión numérica que contiene el valor de tiempo serie que se usa para devolver el valor de minuto."
+
+#: 03030202.xhp#par_id3150869.9.help.text
+msgid "This function is the opposite of the <emph>TimeSerial </emph>function. It returns the minute of the serial time value that is generated by the <emph>TimeSerial</emph> or the <emph>TimeValue </emph>function. For example, the expression:"
+msgstr "Esta función es la inversa a <emph>TimeSerial</emph>. Devuelve el minuto del valor de tiempo serie que han generado las funciones <emph>TimeSerial</emph> o <emph>TimeValue </emph>. Por ejemplo, la expresión:"
+
+#: 03030202.xhp#par_id3149262.10.help.text
+msgid "Print Minute(TimeSerial(12,30,41))"
+msgstr "Print Minute(TimeSerial(12:30:41))"
+
+#: 03030202.xhp#par_id3148576.11.help.text
+msgid "returns the value 30."
+msgstr "devuelve el valor 30."
+
+#: 03030202.xhp#hd_id3150010.12.help.text
+msgctxt "03030202.xhp#hd_id3150010.12.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03030202.xhp#par_id3159154.13.help.text
+msgid "Sub ExampleMinute"
+msgstr "Sub EjemploMinute"
+
+#: 03030202.xhp#par_id3146119.14.help.text
+msgid "MsgBox \"The current minute is \"& Minute(Now)& \".\""
+msgstr "MsgBox \"El minuto actual es \"& Minute(Now)& \".\""
+
+#: 03030202.xhp#par_id3153726.15.help.text
+msgctxt "03030202.xhp#par_id3153726.15.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03120403.xhp#tit.help.text
+msgid "StrComp Function [Runtime]"
+msgstr "Función StrComp [Runtime]"
+
+#: 03120403.xhp#bm_id3156027.help.text
+msgid "<bookmark_value>StrComp function</bookmark_value>"
+msgstr "<bookmark_value>StrComp function</bookmark_value>"
+
+#: 03120403.xhp#hd_id3156027.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120403.xhp\" name=\"StrComp Function [Runtime]\">StrComp Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120403.xhp\" name=\"StrComp Function [Runtime]\">Función StrComp [Runtime]</link>"
+
+#: 03120403.xhp#par_id3155805.2.help.text
+msgid "Compares two strings and returns an integer value that represents the result of the comparison."
+msgstr "Compara dos cadenas y devuelve un valor entero que representa el resultado de la comparación."
+
+#: 03120403.xhp#hd_id3153345.3.help.text
+msgctxt "03120403.xhp#hd_id3153345.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03120403.xhp#par_id3150503.4.help.text
+msgid "StrComp (Text1 As String, Text2 As String[, Compare])"
+msgstr "StrComp (Texto1 As String, Texto2 As String[, Comparación])"
+
+#: 03120403.xhp#hd_id3147574.5.help.text
+msgctxt "03120403.xhp#hd_id3147574.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03120403.xhp#par_id3156152.6.help.text
+msgctxt "03120403.xhp#par_id3156152.6.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03120403.xhp#hd_id3150984.7.help.text
+msgctxt "03120403.xhp#hd_id3150984.7.help.text"
+msgid "Parameter:"
+msgstr "Parámetro:"
+
+#: 03120403.xhp#par_id3153061.8.help.text
+msgid "<emph>Text1:</emph> Any string expression"
+msgstr "<emph>Texto1:</emph> Cualquier expresión de cadena"
+
+#: 03120403.xhp#par_id3147560.9.help.text
+msgid "<emph>Text2:</emph> Any string expression"
+msgstr "<emph>Texto2:</emph> Cualquier expresión de cadena"
+
+#: 03120403.xhp#par_id3146796.10.help.text
+msgid "<emph>Compare:</emph> This optional parameter sets the comparison method. If Compare = 1, the string comparison is case-sensitive. If Compare = 0, no distinction is made between uppercase and lowercase letters."
+msgstr "<emph>Comparación:</emph> Este parámetro opcional configura el método de comparación. Si Comparación = 1, la comparación de cadena distingue entre mayúsculas/minúsculas. Si Comparación = 0, no se hace distinción entre letras en mayúsculas o minúsculas."
+
+#: 03120403.xhp#hd_id3154940.13.help.text
+msgctxt "03120403.xhp#hd_id3154940.13.help.text"
+msgid "Return value"
+msgstr "Valor de retorno:"
+
+#: 03120403.xhp#par_id3150358.27.help.text
+msgid "If Text1 < Text2 the function returns -1"
+msgstr "Si Texto1 < Texto2 la función devuelve -1"
+
+#: 03120403.xhp#par_id3151043.28.help.text
+msgid "If Text1 = Text2 the function returns 0"
+msgstr "Si Texto1 = Texto2 la función devuelve 0"
+
+#: 03120403.xhp#par_id3158410.29.help.text
+msgid "If Text1 > Text2 the function returns 1"
+msgstr "Si Texto1 > Texto2 la función devuelve 1"
+
+#: 03120403.xhp#hd_id3153968.18.help.text
+msgctxt "03120403.xhp#hd_id3153968.18.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03120403.xhp#par_id3151381.19.help.text
+msgid "Sub ExampleStrComp"
+msgstr "Sub EjemploStrComp"
+
+#: 03120403.xhp#par_id3154685.20.help.text
+msgctxt "03120403.xhp#par_id3154685.20.help.text"
+msgid "Dim iVar As Single"
+msgstr "Dim iVar As Single"
+
+#: 03120403.xhp#par_id3148453.21.help.text
+msgctxt "03120403.xhp#par_id3148453.21.help.text"
+msgid "Dim sVar As String"
+msgstr "Dim sVar As String"
+
+#: 03120403.xhp#par_id3153369.22.help.text
+msgctxt "03120403.xhp#par_id3153369.22.help.text"
+msgid "iVar = 123.123"
+msgstr "iVar = 123,123"
+
+#: 03120403.xhp#par_id3145786.23.help.text
+msgid "sVar = Str$(iVar)"
+msgstr "sVar = Str$(iVar)"
+
+#: 03120403.xhp#par_id3146975.24.help.text
+msgid "Msgbox strcomp(sVar , Str$(iVar),1)"
+msgstr "Msgbox strcomp(sVar , Str$(iVar),1)"
+
+#: 03120403.xhp#par_id3150487.25.help.text
+msgctxt "03120403.xhp#par_id3150487.25.help.text"
+msgid "end sub"
+msgstr "End Sub"
+
+#: 03120306.xhp#tit.help.text
+msgid "Mid Function, Mid Statement [Runtime]"
+msgstr "Función Mid, Instrucción Mid [Ejecución]"
+
+#: 03120306.xhp#bm_id3143268.help.text
+msgid "<bookmark_value>Mid function</bookmark_value><bookmark_value>Mid statement</bookmark_value>"
+msgstr "<bookmark_value>Mid;función</bookmark_value>"
+
+#: 03120306.xhp#hd_id3143268.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120306.xhp\" name=\"Mid Function, Mid Statement [Runtime]\">Mid Function, Mid Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120306.xhp\" name=\"Mid Function, Mid Statement [Runtime]\">Función Mid, Instrucción Mid [Ejecución]</link>"
+
+#: 03120306.xhp#par_id3148473.2.help.text
+msgid "Returns the specified portion of a string expression (<emph>Mid function</emph>), or replaces the portion of a string expression with another string (<emph>Mid statement</emph>)."
+msgstr "Devuelve la porción especificada de una expresión de cadena (<emph>función Mid</emph>) o sustituye la parte de una expresión de cadena por otra cadena (<emph>instrucción Mid</emph>)."
+
+#: 03120306.xhp#hd_id3154285.3.help.text
+msgctxt "03120306.xhp#hd_id3154285.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03120306.xhp#par_id3147530.4.help.text
+msgid "Mid (Text As String, Start As Long [, Length As Long]) or Mid (Text As String, Start As Long , Length As Long, Text As String)"
+msgstr "Mid (Texto As String, Inicio As Integer [, Longitud As Integer]) o Mid (Texto As String, Inicio As Integer , Longitud As Integer, Texto As String)"
+
+#: 03120306.xhp#hd_id3145068.5.help.text
+msgctxt "03120306.xhp#hd_id3145068.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03120306.xhp#par_id3149295.6.help.text
+msgid "String (only by Function)"
+msgstr "Cadena (sólo la función)"
+
+#: 03120306.xhp#hd_id3154347.7.help.text
+msgctxt "03120306.xhp#hd_id3154347.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03120306.xhp#par_id3148664.8.help.text
+msgid "<emph>Text:</emph> Any string expression that you want to modify."
+msgstr "<emph>Texto:</emph> Cualquier expresión de cadena que se desee modificar."
+
+#: 03120306.xhp#par_id3150359.9.help.text
+msgid "<emph>Start: </emph>Numeric expression that indicates the character position within the string where the string portion that you want to replace or to return begins. The maximum allowed value is 65535."
+msgstr "<emph>Inicio: </emph>Expresión numérica que indica la posición del carácter dentro de la cadena donde comienza la parte de la cadena que desea sustituir o devolver. El valor máximo es 65535."
+
+#: 03120306.xhp#par_id3148451.10.help.text
+msgid "<emph>Length:</emph> Numeric expression that returns the number of characters that you want to replace or return. The maximum allowed value is 65535."
+msgstr "<emph>Longitud:</emph> Expresión entera que devuelva el número de caracteres que se desee sustituir o devolver."
+
+#: 03120306.xhp#par_id3125864.11.help.text
+msgid "If the Length parameter in the <emph>Mid function</emph> is omitted, all characters in the string expression from the start position to the end of the string are returned."
+msgstr "Si se omite el parámetro de longitud de la <emph>función Mid</emph>, se devuelven todos los caracteres de la expresión de cadena, desde la posición de inicio hasta el final de la cadena."
+
+#: 03120306.xhp#par_id3144762.12.help.text
+msgid "If the Length parameter in the <emph>Mid statement</emph> is less than the length of the text that you want to replace, the text is reduced to the specified length."
+msgstr "Si el parámetro de longitud de la <emph>instrucción Mid</emph> es inferior a la longitud del texto que se desea sustituir, el texto se reduce a la longitud especificada."
+
+#: 03120306.xhp#par_id3150769.13.help.text
+msgid "<emph>Text:</emph> The string to replace the string expression (<emph>Mid statement</emph>)."
+msgstr "<emph>Texto:</emph> La cadena que sustituirá a la expresión de cadena (<emph>instrucción Mid</emph>)."
+
+#: 03120306.xhp#hd_id3149560.14.help.text
+msgctxt "03120306.xhp#hd_id3149560.14.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03120306.xhp#par_id3150439.15.help.text
+msgctxt "03120306.xhp#par_id3150439.15.help.text"
+msgid "Sub ExampleUSDate"
+msgstr "Sub EjemploUSDate"
+
+#: 03120306.xhp#par_id3147349.16.help.text
+msgctxt "03120306.xhp#par_id3147349.16.help.text"
+msgid "Dim sInput As String"
+msgstr "Dim sEntrada As String"
+
+#: 03120306.xhp#par_id3155854.17.help.text
+msgctxt "03120306.xhp#par_id3155854.17.help.text"
+msgid "Dim sUS_date As String"
+msgstr "Dim afecha_EUA As String"
+
+#: 03120306.xhp#par_id3153189.18.help.text
+msgctxt "03120306.xhp#par_id3153189.18.help.text"
+msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
+msgstr "sEntrada = InputBox(\"Escriba una fecha en formato internacional 'AAAA-MM-DD'\")"
+
+#: 03120306.xhp#par_id3148645.19.help.text
+msgctxt "03120306.xhp#par_id3148645.19.help.text"
+msgid "sUS_date = Mid(sInput, 6, 2)"
+msgstr "sfecha_EUA = Mid(sEntrada, 6, 2)"
+
+#: 03120306.xhp#par_id3153952.20.help.text
+msgctxt "03120306.xhp#par_id3153952.20.help.text"
+msgid "sUS_date = sUS_date & \"/\""
+msgstr "sfecha_EUA = sfecha_EUA & \"/\""
+
+#: 03120306.xhp#par_id3153364.21.help.text
+msgctxt "03120306.xhp#par_id3153364.21.help.text"
+msgid "sUS_date = sUS_date & Right(sInput, 2)"
+msgstr "sfecha_EUA = sfecha_EUA & Right(sEntrada, 2)"
+
+#: 03120306.xhp#par_id3146975.22.help.text
+msgctxt "03120306.xhp#par_id3146975.22.help.text"
+msgid "sUS_date = sUS_date & \"/\""
+msgstr "sfecha_EUA = sfecha_EUA & \"/\""
+
+#: 03120306.xhp#par_id3149665.23.help.text
+msgctxt "03120306.xhp#par_id3149665.23.help.text"
+msgid "sUS_date = sUS_date & Left(sInput, 4)"
+msgstr "sfecha_EUA = sfecha_EUA & Left(sEntrada, 4)"
+
+#: 03120306.xhp#par_id3150011.24.help.text
+msgctxt "03120306.xhp#par_id3150011.24.help.text"
+msgid "MsgBox sUS_date"
+msgstr "MsgBox sfecha_EUA"
+
+#: 03120306.xhp#par_id3148618.25.help.text
+msgctxt "03120306.xhp#par_id3148618.25.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03030110.xhp#tit.help.text
+msgid "DateAdd Function [Runtime]"
+msgstr "Función DateAdd [Ejecución]"
+
+#: 03030110.xhp#bm_id6269417.help.text
+msgid "<bookmark_value>DateAdd function</bookmark_value>"
+msgstr "<bookmark_value>Función DateAdd</bookmark_value>"
+
+#: 03030110.xhp#par_idN10548.help.text
+msgid "<link href=\"text/sbasic/shared/03030110.xhp\">DateAdd Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030110.xhp\">Función DateAdd [Ejecución]</link>"
+
+#: 03030110.xhp#par_idN10558.help.text
+msgid "Adds a date interval to a given date a number of times and returns the resulting date."
+msgstr "Agrega un intervalo a una fecha determinada una serie de veces y devuelve la fecha resultante."
+
+#: 03030110.xhp#par_idN1055B.help.text
+msgctxt "03030110.xhp#par_idN1055B.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03030110.xhp#par_idN1055F.help.text
+msgid "DateAdd (Add, Count, Date)"
+msgstr "DateAdd (Add, Count, Date)"
+
+#: 03030110.xhp#par_idN1061E.help.text
+msgctxt "03030110.xhp#par_idN1061E.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03030110.xhp#par_idN10622.help.text
+msgctxt "03030110.xhp#par_idN10622.help.text"
+msgid "A Variant containing a date."
+msgstr "variante que contiene una fecha."
+
+#: 03030110.xhp#par_idN10625.help.text
+msgctxt "03030110.xhp#par_idN10625.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03030110.xhp#par_idN10629.help.text
+msgid "Add - A string expression from the following table, specifying the date interval."
+msgstr "Add: expresión de cadena de la tabla siguiente que especifica el intervalo de fechas."
+
+#: 03030110.xhp#par_idN10636.help.text
+msgid "Add (string value)"
+msgstr "Add (valor de cadena)"
+
+#: 03030110.xhp#par_idN1063C.help.text
+msgctxt "03030110.xhp#par_idN1063C.help.text"
+msgid "Explanation"
+msgstr "Explicación"
+
+#: 03030110.xhp#par_idN10643.help.text
+msgid "yyyy"
+msgstr "yyyy"
+
+#: 03030110.xhp#par_idN10649.help.text
+msgid "Year"
+msgstr "Año"
+
+#: 03030110.xhp#par_idN10650.help.text
+msgid "q"
+msgstr "q"
+
+#: 03030110.xhp#par_idN10656.help.text
+msgid "Quarter"
+msgstr "Trimestre"
+
+#: 03030110.xhp#par_idN1065D.help.text
+msgid "m"
+msgstr "m"
+
+#: 03030110.xhp#par_idN10663.help.text
+msgid "Month"
+msgstr "Mes"
+
+#: 03030110.xhp#par_idN1066A.help.text
+msgid "y"
+msgstr "y"
+
+#: 03030110.xhp#par_idN10670.help.text
+msgid "Day of year"
+msgstr "Día del año"
+
+#: 03030110.xhp#par_idN10677.help.text
+msgid "w"
+msgstr "w"
+
+#: 03030110.xhp#par_idN1067D.help.text
+msgid "Weekday"
+msgstr "Día de la semana"
+
+#: 03030110.xhp#par_idN10684.help.text
+msgid "ww"
+msgstr "ww"
+
+#: 03030110.xhp#par_idN1068A.help.text
+msgid "Week of year"
+msgstr "Semana del año"
+
+#: 03030110.xhp#par_idN10691.help.text
+msgid "d"
+msgstr "d"
+
+#: 03030110.xhp#par_idN10697.help.text
+msgid "Day"
+msgstr "Día"
+
+#: 03030110.xhp#par_idN1069E.help.text
+msgid "h"
+msgstr "h"
+
+#: 03030110.xhp#par_idN106A4.help.text
+msgid "Hour"
+msgstr "Hora"
+
+#: 03030110.xhp#par_idN106AB.help.text
+msgid "n"
+msgstr "n"
+
+#: 03030110.xhp#par_idN106B1.help.text
+msgid "Minute"
+msgstr "Minuto"
+
+#: 03030110.xhp#par_idN106B8.help.text
+msgid "s"
+msgstr "s"
+
+#: 03030110.xhp#par_idN106BE.help.text
+msgid "Second"
+msgstr "Segundo"
+
+#: 03030110.xhp#par_idN106C1.help.text
+msgid "Count - A numerical expression specifying how often the Add interval will be added (Count is positive) or subtracted (Count is negative)."
+msgstr "Cantidad: expresión numérica que especifica la frecuencia con que el intervalo de Add (agregar) se suma (cantidad positiva) o se resta (cantidad negativa)."
+
+#: 03030110.xhp#par_idN106C4.help.text
+msgid "Date - A given date or the name of a Variant variable containing a date. The Add value will be added Count times to this value."
+msgstr "Fecha: fecha concreta o nombre de una variable del tipo variant que contiene una fecha. El valor Add se suma a este valor n cantidad de veces."
+
+#: 03030110.xhp#par_idN106C7.help.text
+msgctxt "03030110.xhp#par_idN106C7.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03030110.xhp#par_idN106CB.help.text
+msgid "Sub example_dateadd"
+msgstr "Sub example_dateadd"
+
+#: 03030110.xhp#par_idN106CE.help.text
+msgid "msgbox DateAdd(\"m\", 1, \"1/31/2004\") &\" - \"& DateAdd(\"m\", 1, \"1/31/2005\")"
+msgstr "msgbox DateAdd(\"m\", 1, \"1/31/2004\") &\" - \"& DateAdd(\"m\", 1, \"1/31/2005\")"
+
+#: 03030110.xhp#par_idN106D1.help.text
+msgctxt "03030110.xhp#par_idN106D1.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03030206.xhp#tit.help.text
+msgid "TimeValue Function [Runtime]"
+msgstr "Función TimeValue [Ejecución]"
+
+#: 03030206.xhp#bm_id3149670.help.text
+msgid "<bookmark_value>TimeValue function</bookmark_value>"
+msgstr "<bookmark_value>TimeValue;función</bookmark_value>"
+
+#: 03030206.xhp#hd_id3149670.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030206.xhp\" name=\"TimeValue Function [Runtime]\">TimeValue Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030206.xhp\" name=\"Función TimeValue [Runtime]\">Función TimeValue [Ejecución]</link>"
+
+#: 03030206.xhp#par_id3153361.2.help.text
+msgid "Calculates a serial time value from the specified hour, minute, and second - parameters passed as strings - that represents the time in a single numeric value. This value can be used to calculate the difference between times."
+msgstr "Calcula un valor de hora serie a partir de la hora, minuto y segundos especificados (parámetros que se pasan como cadenas) y que representa la hora en un valor numérico simple. Este valor puede usarse para calcular la diferencia entre dos horas."
+
+#: 03030206.xhp#hd_id3154138.3.help.text
+msgctxt "03030206.xhp#hd_id3154138.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03030206.xhp#par_id3156282.4.help.text
+msgid "TimeValue (Text As String)"
+msgstr "TimeValue (Texto As String)"
+
+#: 03030206.xhp#hd_id3153969.5.help.text
+msgctxt "03030206.xhp#hd_id3153969.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03030206.xhp#par_id3156424.6.help.text
+msgctxt "03030206.xhp#par_id3156424.6.help.text"
+msgid "Date"
+msgstr "Fecha"
+
+#: 03030206.xhp#hd_id3145172.7.help.text
+msgctxt "03030206.xhp#hd_id3145172.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03030206.xhp#par_id3145786.8.help.text
+msgid "<emph>Text:</emph> Any string expression that contains the time that you want to calculate in the format \"HH:MM:SS\"."
+msgstr "<emph>Texto:</emph> Cualquier expresión de cadena que contenga la hora que se desea calcular en el formato \"HH:MM:SS\"."
+
+#: 03030206.xhp#par_id3152578.9.help.text
+msgid "Use the TimeValue function to convert any time into a single value, so that you can calculate time differences."
+msgstr "Con esta función puede convertirse cualquier hora en un valor simple, para calcular diferencias entre horas."
+
+#: 03030206.xhp#par_id3163710.10.help.text
+msgid "This TimeValue function returns the type Variant with VarType 7 (Date), and stores this value internally as a double-precision number between 0 and 0.9999999999."
+msgstr "Esta función TimeValue devuelve el tipo Variante con VarType 7 (Fecha) y almacena este valor internamente como número de precisión doble entre 0 y 0,9999999999."
+
+#: 03030206.xhp#par_id3151117.11.help.text
+msgid "As opposed to the DateSerial or the DateValue function, where serial date values result in days relative to a fixed date, you can calculate with the values that are returned by the TimeValue function, but you cannot evaluate them."
+msgstr "A diferencia de lo que ocurre con las funciones DateSerial o DateValue, en las que los valores de fecha serie producen días relativos a una fecha fija, con los valores que devuelve la función TimeValue se pueden realizar cálculos pero no evaluarlos."
+
+#: 03030206.xhp#par_id3147426.12.help.text
+msgid "In the TimeSerial function, you can pass individual parameters (hour, minute, second) as separate numeric expressions. For the TimeValue function, however, you can pass a string as a parameter containing the time."
+msgstr "En la función TimeSerial pueden pasarse parámetros individuales (hora, minuto, segundo) como expresiones numéricas independientes. Sin embargo, para la función TimeValue puede pasarse una cadena como parámetro que contiene la hora."
+
+#: 03030206.xhp#hd_id3145271.13.help.text
+msgctxt "03030206.xhp#hd_id3145271.13.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03030206.xhp#par_id3152597.30.help.text
+msgid "Sub ExampleTimerValue"
+msgstr "Sub EjemploTimerValue"
+
+#: 03030206.xhp#par_id3147348.31.help.text
+msgid "Dim daDT as Date"
+msgstr "Dim daDT as Date"
+
+#: 03030206.xhp#par_id3148576.32.help.text
+msgid "Dim a1, b1, c1, a2, b2, c2 as String"
+msgstr "Dim a1, b1, c1, a2, b2, c2 as String"
+
+#: 03030206.xhp#par_id3149378.33.help.text
+msgid "a1 = \"start time\""
+msgstr "a1 = \"hora inicial\""
+
+#: 03030206.xhp#par_id3145800.34.help.text
+msgid "b1 = \"end time\""
+msgstr "b1 = \"hora final\""
+
+#: 03030206.xhp#par_id3151074.35.help.text
+msgid "c1 = \"total time\""
+msgstr "c1 = \"tiempo total\""
+
+#: 03030206.xhp#par_id3154492.37.help.text
+msgid "a2 = \"8:34\""
+msgstr "a2 = \"8:34\""
+
+#: 03030206.xhp#par_id3155602.38.help.text
+msgid "b2 = \"18:12\""
+msgstr "b2 = \"18:12\""
+
+#: 03030206.xhp#par_id3150715.39.help.text
+msgid "daDT = TimeValue(b2) - TimeValue(a2)"
+msgstr "daDT = TimeValue(b2) - TimeValue(a2)"
+
+#: 03030206.xhp#par_id3153838.40.help.text
+msgid "c2 = a1 & \": \" & a2 & chr(13)"
+msgstr "c2 = a1 & \": \" & a2 & chr(13)"
+
+#: 03030206.xhp#par_id3150749.41.help.text
+msgid "c2 = c2 & b1 & \": \" & b2 & chr(13)"
+msgstr "c2 = c2 & b1 & \": \" & b2 & chr(13)"
+
+#: 03030206.xhp#par_id3154755.42.help.text
+msgid "c2 = c2 & c1 & \": \" & trim(Str(Hour(daDT))) & \":\" & trim(Str(Minute(daDT))) & \":\" & trim(Str(Second(daDT)))"
+msgstr "c2 = c2 & c1 & \": \" & trim(Str(Hour(daDT))) & \":\" & trim(Str(Minute(daDT))) & \":\" & trim(Str(Second(daDT)))"
+
+#: 03030206.xhp#par_id3153714.43.help.text
+msgid "Msgbox c2"
+msgstr "Msgbox c2"
+
+#: 03030206.xhp#par_id3155767.44.help.text
+msgctxt "03030206.xhp#par_id3155767.44.help.text"
+msgid "end sub"
+msgstr "End Sub"
+
+#: 03104000.xhp#tit.help.text
+msgid "IsMissing function [Runtime]"
+msgstr "Función IsMissing [Ejecución]"
+
+#: 03104000.xhp#bm_id3153527.help.text
+msgid "<bookmark_value>IsMissing function</bookmark_value>"
+msgstr "<bookmark_value>IsMissing;función</bookmark_value>"
+
+#: 03104000.xhp#hd_id3153527.1.help.text
+msgid "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">IsMissing function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">Función IsMissing [Ejecución]</link>"
+
+#: 03104000.xhp#par_id3153825.2.help.text
+msgid "Tests if a function is called with an optional parameter."
+msgstr "Comprueba si una función se llama con un parámetro opcional."
+
+#: 03104000.xhp#par_id3150669.3.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">Optional</link>"
+msgstr "Consulte también: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">Opcional</link>"
+
+#: 03104000.xhp#hd_id3145611.4.help.text
+msgctxt "03104000.xhp#hd_id3145611.4.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03104000.xhp#par_id3154924.5.help.text
+msgid "IsMissing( ArgumentName )"
+msgstr "IsMissing( NombreArgumento )"
+
+#: 03104000.xhp#hd_id3145069.6.help.text
+msgctxt "03104000.xhp#hd_id3145069.6.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03104000.xhp#par_id3149457.7.help.text
+msgid "<emph>ArgumentName:</emph> the name of an optional argument."
+msgstr "<emph>NombreArgumento:</emph> El nombre de un argumento opcional."
+
+#: 03104000.xhp#par_id3150398.8.help.text
+msgid "If the IsMissing function is called by the ArgumentName, then True is returned."
+msgstr "Si NombreArgumento llama a la función IsMissing se devuelve el valor Cierto."
+
+#: 03104000.xhp#par_id3148798.9.help.text
+msgctxt "03104000.xhp#par_id3148798.9.help.text"
+msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
+msgstr "Consulte también <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Ejemplos</link>."
+
+#: 03090410.xhp#tit.help.text
+msgid "Switch Function [Runtime]"
+msgstr "Función Switch [Ejecución]"
+
+#: 03090410.xhp#bm_id3148554.help.text
+msgid "<bookmark_value>Switch function</bookmark_value>"
+msgstr "<bookmark_value>Switch;función</bookmark_value>"
+
+#: 03090410.xhp#hd_id3148554.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090410.xhp\" name=\"Switch Function [Runtime]\">Switch Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090410.xhp\" name=\"Switch Function [Runtime]\">Función Switch [Ejecución]</link>"
+
+#: 03090410.xhp#par_id3148522.2.help.text
+msgid "Evaluates a list of arguments, consisting of an expression followed by a value. The Switch function returns a value that is associated with the expression that is passed by this function."
+msgstr "Evalúa una lista de argumentos que se compone de una expresión seguida por un valor. La función Switch devuelve un valor que está asociado con la expresión que pasa esta función."
+
+#: 03090410.xhp#hd_id3154863.3.help.text
+msgctxt "03090410.xhp#hd_id3154863.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03090410.xhp#par_id3155934.4.help.text
+msgid "Switch (Expression1, Value1[, Expression2, Value2[..., Expression_n, Value_n]])"
+msgstr "Switch (Expresión1, Valor1[, Expresión2, Valor2[..., Expresión_n, Valor_n]])"
+
+#: 03090410.xhp#hd_id3149119.5.help.text
+msgctxt "03090410.xhp#hd_id3149119.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03090410.xhp#par_id3153894.6.help.text
+msgid "The <emph>Switch</emph> function evaluates the expressions from left to right, and then returns the value that is assigned to the function expression. If expression and value are not given as a pair, a runtime error occurs."
+msgstr "La función <emph>Switch</emph> evalúa las expresiones de izquierda a derecha y devuelve el valor que está asignado a la expresión de la función. Si expresión y valor no se dan por parejas, se produce un error en tiempo de ejecución."
+
+#: 03090410.xhp#par_id3153990.7.help.text
+msgid "<emph>Expression:</emph> The expression that you want to evaluate."
+msgstr "<emph>Expresión:</emph> La expresión que se desea evaluar."
+
+#: 03090410.xhp#par_id3153394.8.help.text
+msgid "<emph>Value:</emph> The value that you want to return if the expression is True."
+msgstr "<emph>Valor:</emph> El valor que desee devolver si la expresión es cierta (True)."
+
+#: 03090410.xhp#par_id3153346.9.help.text
+msgid "In the following example, the <emph>Switch</emph> function assigns the appropriate gender to the name that is passed to the function:"
+msgstr "En el ejemplo siguiente, la función <emph>Switch</emph> asigna el género apropiado al nombre que se pasa a la función:"
+
+#: 03090410.xhp#hd_id3159157.10.help.text
+msgctxt "03090410.xhp#hd_id3159157.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03090410.xhp#par_id3147573.11.help.text
+msgid "Sub ExampleSwitch"
+msgstr "Sub EjemploSwitch"
+
+#: 03090410.xhp#par_id3143270.12.help.text
+msgid "Dim sGender As String"
+msgstr "Dim sGenero As String"
+
+#: 03090410.xhp#par_id3149579.13.help.text
+msgid "sGender = GetGenderIndex( \"John\" )"
+msgstr "sGenero = ObtIndGenero( \"Juan\" )"
+
+#: 03090410.xhp#par_id3153626.14.help.text
+msgid "MsgBox sGender"
+msgstr "MsgBox sGenero"
+
+#: 03090410.xhp#par_id3147560.15.help.text
+msgctxt "03090410.xhp#par_id3147560.15.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03090410.xhp#par_id3154758.17.help.text
+msgid "Function GetGenderIndex (sName As String) As String"
+msgstr "Function ObtIndGenero (sNombre As String) As String"
+
+#: 03090410.xhp#par_id3153361.18.help.text
+msgid "GetGenderIndex = Switch(sName = \"Jane\", \"female\", sName = \"John\", \"male\")"
+msgstr "ObtIndGenero = Switch(sNombre = \"María\", \"femenino\", sNombre = \"Juan\", \"masculino\")"
+
+#: 03090410.xhp#par_id3154939.19.help.text
+msgctxt "03090410.xhp#par_id3154939.19.help.text"
+msgid "End Function"
+msgstr "End Function"
+
+#: 03101140.xhp#tit.help.text
+msgid "DefStr Statement [Runtime]"
+msgstr "Instrucción DefStr [Ejecución]"
+
+#: 03101140.xhp#bm_id6161381.help.text
+msgid "<bookmark_value>DefStr statement</bookmark_value>"
+msgstr "<bookmark_value>Instrucción DefStr</bookmark_value>"
+
+#: 03101140.xhp#par_idN10577.help.text
+msgid "<link href=\"text/sbasic/shared/03101140.xhp\">DefStr Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101140.xhp\">Instrucción DefStr [Ejecución]</link>"
+
+#: 03101140.xhp#par_idN10587.help.text
+msgid "If no type-declaration character or keyword is specified, the DefStr statement sets the default variable type, according to a letter range."
+msgstr "Si no se especifica palabra clave ni carácter de tipo de declaración, la instrucción DefStr establece el tipo de variable predeterminado según un intervalo de letras."
+
+#: 03101140.xhp#par_idN1058A.help.text
+msgctxt "03101140.xhp#par_idN1058A.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03101140.xhp#par_idN1058E.help.text
+msgctxt "03101140.xhp#par_idN1058E.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
+
+#: 03101140.xhp#par_idN10591.help.text
+msgctxt "03101140.xhp#par_idN10591.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03101140.xhp#par_idN10595.help.text
+msgctxt "03101140.xhp#par_idN10595.help.text"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Characterrange:</emph> letras que especifican el intervalo de las variables para las que desea establecer un tipo de datos predeterminado."
+
+#: 03101140.xhp#par_idN1059C.help.text
+msgctxt "03101140.xhp#par_idN1059C.help.text"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> palabra clave que define el tipo de variable predeterminado."
+
+#: 03101140.xhp#par_idN105A3.help.text
+msgctxt "03101140.xhp#par_idN105A3.help.text"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Palabra clave:</emph> tipo de variable predeterminado"
+
+#: 03101140.xhp#par_idN105AA.help.text
+msgid "<emph>DefStr:</emph> String"
+msgstr "<emph>DefStr:</emph> cadena"
+
+#: 03101140.xhp#par_idN105B1.help.text
+msgctxt "03101140.xhp#par_idN105B1.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03101140.xhp#par_idN105B5.help.text
+msgctxt "03101140.xhp#par_idN105B5.help.text"
+msgid "REM Prefix definitions for variable types:"
+msgstr "Definiciones de prefijos REM para tipos de variables:"
+
+#: 03101140.xhp#par_idN105B8.help.text
+msgctxt "03101140.xhp#par_idN105B8.help.text"
+msgid "DefBool b"
+msgstr "DefBool b"
+
+#: 03101140.xhp#par_idN105BB.help.text
+msgctxt "03101140.xhp#par_idN105BB.help.text"
+msgid "DefDate t"
+msgstr "DefDate t"
+
+#: 03101140.xhp#par_idN105BE.help.text
+msgctxt "03101140.xhp#par_idN105BE.help.text"
+msgid "DefDbL d"
+msgstr "DefDbL d"
+
+#: 03101140.xhp#par_idN105C1.help.text
+msgctxt "03101140.xhp#par_idN105C1.help.text"
+msgid "DefInt i"
+msgstr "DefInt i"
+
+#: 03101140.xhp#par_idN105C4.help.text
+msgctxt "03101140.xhp#par_idN105C4.help.text"
+msgid "DefLng l"
+msgstr "DefLng l"
+
+#: 03101140.xhp#par_idN105C7.help.text
+msgctxt "03101140.xhp#par_idN105C7.help.text"
+msgid "DefObj o"
+msgstr "DefObj o"
+
+#: 03101140.xhp#par_idN105CA.help.text
+msgctxt "03101140.xhp#par_idN105CA.help.text"
+msgid "DefVar v"
+msgstr "DefVar v"
+
+#: 03101140.xhp#par_idN105CD.help.text
+msgid "DefStr s"
+msgstr "DefStr s"
+
+#: 03101140.xhp#par_idN105D0.help.text
+msgid "Sub ExampleDefStr"
+msgstr "Sub ExampleDefStr"
+
+#: 03101140.xhp#par_idN105D3.help.text
+msgid "sStr=String REM sStr is an implicit string variable"
+msgstr "sStr=String REM sStr es una variable de cadena implícita"
+
+#: 03101140.xhp#par_idN105D6.help.text
+msgctxt "03101140.xhp#par_idN105D6.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03130800.xhp#tit.help.text
+msgid "Environ Function [Runtime]"
+msgstr "Función Environ [Ejecución]"
+
+#: 03130800.xhp#bm_id3155364.help.text
+msgid "<bookmark_value>Environ function</bookmark_value>"
+msgstr "<bookmark_value>Environ;función</bookmark_value>"
+
+#: 03130800.xhp#hd_id3155364.1.help.text
+msgid "<link href=\"text/sbasic/shared/03130800.xhp\" name=\"Environ Function [Runtime]\">Environ Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03130800.xhp\" name=\"Environ Function [Runtime]\">Función Environ [Ejecución]</link>"
+
+#: 03130800.xhp#par_id3145090.2.help.text
+msgid "Returns the value of an environment variable as a string. Environment variables are dependent on the type of operating system that you have."
+msgstr "Devuelve el valor de una variable de entorno en forma de cadena. Las variables de entorno dependen del tipo de sistema operativo del que se disponga."
+
+#: 03130800.xhp#hd_id3150670.4.help.text
+msgctxt "03130800.xhp#hd_id3150670.4.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03130800.xhp#par_id3159176.5.help.text
+msgid "Environ (Environment As String)"
+msgstr "Environ (Entorno As String)"
+
+#: 03130800.xhp#hd_id3159157.6.help.text
+msgctxt "03130800.xhp#hd_id3159157.6.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03130800.xhp#par_id3148473.7.help.text
+msgctxt "03130800.xhp#par_id3148473.7.help.text"
+msgid "String"
+msgstr "Cadena"
+
+#: 03130800.xhp#hd_id3145609.8.help.text
+msgctxt "03130800.xhp#hd_id3145609.8.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03130800.xhp#par_id3159414.9.help.text
+msgid "Environment: Environment variable that you want to return the value for."
+msgstr "Entorno: Variable de entorno de la que se desee devolver el valor."
+
+#: 03130800.xhp#hd_id3148663.10.help.text
+msgctxt "03130800.xhp#hd_id3148663.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03130800.xhp#par_id3149655.11.help.text
+msgid "Sub ExampleEnviron"
+msgstr "Sub EjemploEnviron"
+
+#: 03130800.xhp#par_id3154940.12.help.text
+msgctxt "03130800.xhp#par_id3154940.12.help.text"
+msgid "Dim sTemp As String"
+msgstr "Dim sTemp As String"
+
+#: 03130800.xhp#par_id3148920.13.help.text
+msgid "sTemp=Environ (\"TEMP\")"
+msgstr "sTemp=Environ (\"TEMP\")"
+
+#: 03130800.xhp#par_id3150869.14.help.text
+msgid "If sTemp = \"\" Then sTemp=Environ(\"TMP\")"
+msgstr "If sTemp = \"\" Then sTemp=Environ(\"TMP\")"
+
+#: 03130800.xhp#par_id3145419.15.help.text
+msgid "MsgBox \"'\" & sTemp & \"'\" ,64,\"Directory of temporary files:\""
+msgstr "MsgBox \"'\" & sTemp & \"'\" ,64,\"Directorio de archivos temporales:\""
+
+#: 03130800.xhp#par_id3154124.16.help.text
+msgctxt "03130800.xhp#par_id3154124.16.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03020204.xhp#tit.help.text
+msgid "Put Statement [Runtime]"
+msgstr "Instrucción Put [Ejecución]"
+
+#: 03020204.xhp#bm_id3150360.help.text
+msgid "<bookmark_value>Put statement</bookmark_value>"
+msgstr "<bookmark_value>Put;función</bookmark_value>"
+
+#: 03020204.xhp#hd_id3150360.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020204.xhp\" name=\"Put Statement [Runtime]\">Put Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020204.xhp\" name=\"Instrucción Put [Runtime]\">Instrucción Put [Runtime]</link>"
+
+#: 03020204.xhp#par_id3154909.2.help.text
+msgid "Writes a record to a relative file or a sequence of bytes to a binary file."
+msgstr "Escribe un registro en un archivo relativo o una secuencia de bytes en un archivo binario."
+
+#: 03020204.xhp#par_id3156281.3.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03020201.xhp\" name=\"Get\"><item type=\"literal\">Get</item></link> statement"
+msgstr "Consulte también: instrucción <link href=\"text/sbasic/shared/03020201.xhp\" name=\"Get\"><item type=\"literal\">Get</item></link>"
+
+#: 03020204.xhp#hd_id3125863.4.help.text
+msgctxt "03020204.xhp#hd_id3125863.4.help.text"
+msgid "Syntax:"
+msgstr "<emph>Sintaxis</emph>:"
+
+#: 03020204.xhp#par_id3155132.5.help.text
+msgid "Put [#] FileNumber As Integer, [position], Variable"
+msgstr "Put [#] NúmeroArchivo As Integer, [posición], Variable"
+
+#: 03020204.xhp#hd_id3153190.6.help.text
+msgctxt "03020204.xhp#hd_id3153190.6.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03020204.xhp#par_id3146120.7.help.text
+msgid "<emph>FileNumber:</emph> Any integer expression that defines the file that you want to write to."
+msgstr "<emph>NúmeroArchivo:</emph> Cualquier expresión entera que defina el archivo en el que se desee escribir."
+
+#: 03020204.xhp#par_id3155411.8.help.text
+msgid "<emph>Position: </emph>For relative files (random access files), the number of the record that you want to write."
+msgstr "<emph>Posición: </emph>En archivos relativos (archivos de acceso aleatorio), el número del registro que se desee escribir."
+
+#: 03020204.xhp#par_id3148576.9.help.text
+msgid "For binary files (binary access), the position of the byte in the file where you want to start writing."
+msgstr "En archivos binarios (acceso binario), la posición del byte del archivo en que se desee empezar a escribir."
+
+#: 03020204.xhp#par_id3153729.10.help.text
+msgid "<emph>Variable:</emph> Name of the variable that you want to write to the file."
+msgstr "<emph>Variable:</emph> Nombre de la variable que se desee escribir en el archivo."
+
+#: 03020204.xhp#par_id3146974.11.help.text
+msgid "Note for relative files: If the contents of this variable does not match the length of the record that is specified in the <emph>Len</emph> clause of the <emph>Open</emph> statement, the space between the end of the newly written record and the next record is padded with existing data from the file that you are writing to."
+msgstr "Nota para archivos relativos: Si el contenido de esta variable no coincide con la longitud del registro que se especifica en la cláusula <emph>Len</emph> de la instrucción <emph>Open</emph>, el espacio entre el final del registro escrito recientemente y el siguiente se rellena con los datos existentes del archivo al que está escribiendo."
+
+#: 03020204.xhp#par_id3155855.12.help.text
+msgid "Note for binary files: The contents of the variables are written to the specified position, and the file pointer is inserted directly after the last byte. No space is left between the records."
+msgstr "Nota para archivos binarios: El contenido de las variables se escribe en la posición especificada y el puntero del archivo se inserta directamente después del último byte. No se deja espacio entre los registros."
+
+#: 03020204.xhp#hd_id3154491.13.help.text
+msgctxt "03020204.xhp#hd_id3154491.13.help.text"
+msgid "Example:"
+msgstr "<emph>Ejemplo:</emph>"
+
+#: 03020204.xhp#par_id3149410.14.help.text
+msgctxt "03020204.xhp#par_id3149410.14.help.text"
+msgid "Sub ExampleRandomAccess"
+msgstr "Sub EjemploAccesoAleatorio"
+
+#: 03020204.xhp#par_id3149959.15.help.text
+msgctxt "03020204.xhp#par_id3149959.15.help.text"
+msgid "Dim iNumber As Integer"
+msgstr "Dim iNumero As Integer"
+
+#: 03020204.xhp#par_id3154729.16.help.text
+msgid "Dim sText As Variant REM Must be a variant type"
+msgstr "Dim sTexto As Variant REM Debe ser de tipo variante"
+
+#: 03020204.xhp#par_id3156286.17.help.text
+msgctxt "03020204.xhp#par_id3156286.17.help.text"
+msgid "Dim aFile As String"
+msgstr "Dim aArchivo As String"
+
+#: 03020204.xhp#par_id3149400.18.help.text
+msgctxt "03020204.xhp#par_id3149400.18.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr "aArchivo = \"c:\\data.txt\""
+
+#: 03020204.xhp#par_id3149124.20.help.text
+msgctxt "03020204.xhp#par_id3149124.20.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumero = Freefile"
+
+#: 03020204.xhp#par_id3150330.21.help.text
+msgctxt "03020204.xhp#par_id3150330.21.help.text"
+msgid "Open aFile For Random As #iNumber Len=32"
+msgstr "Open aArchivo For Random As #iNumero Len=32"
+
+#: 03020204.xhp#par_id3156278.22.help.text
+msgid "Seek #iNumber,1 REM Position to start writing"
+msgstr "Seek #iNumero,1 REM Posición en la que empezar a escribir"
+
+#: 03020204.xhp#par_id3153711.23.help.text
+msgctxt "03020204.xhp#par_id3153711.23.help.text"
+msgid "Put #iNumber,, \"This is the first line of text\" REM Fill line with text"
+msgstr "Put #iNumero,, \"Esta es la primera línea de texto\" REM Rellenar línea con texto"
+
+#: 03020204.xhp#par_id3155446.24.help.text
+msgctxt "03020204.xhp#par_id3155446.24.help.text"
+msgid "Put #iNumber,, \"This is the second line of text\""
+msgstr "Print #iNumero, \"Esta es la segunda línea de texto\""
+
+#: 03020204.xhp#par_id3154255.25.help.text
+msgctxt "03020204.xhp#par_id3154255.25.help.text"
+msgid "Put #iNumber,, \"This is the third line of text\""
+msgstr "Print #iNumero, \"Esta es la tercera línea de texto\""
+
+#: 03020204.xhp#par_id3150045.26.help.text
+msgctxt "03020204.xhp#par_id3150045.26.help.text"
+msgid "Seek #iNumber,2"
+msgstr "Seek #iNumero,2"
+
+#: 03020204.xhp#par_id3145149.27.help.text
+msgctxt "03020204.xhp#par_id3145149.27.help.text"
+msgid "Get #iNumber,,sText"
+msgstr "Get #iNumero,,sTexto"
+
+#: 03020204.xhp#par_id3147363.28.help.text
+msgctxt "03020204.xhp#par_id3147363.28.help.text"
+msgid "Print sText"
+msgstr "Print sTexto"
+
+#: 03020204.xhp#par_id3163806.29.help.text
+msgctxt "03020204.xhp#par_id3163806.29.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumero"
+
+#: 03020204.xhp#par_id3149568.31.help.text
+msgctxt "03020204.xhp#par_id3149568.31.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumero = Freefile"
+
+#: 03020204.xhp#par_id3155607.32.help.text
+msgctxt "03020204.xhp#par_id3155607.32.help.text"
+msgid "Open aFile For Random As #iNumber Len=32"
+msgstr "Open aArchivo For Random As #iNumero Len=32"
+
+#: 03020204.xhp#par_id3154022.33.help.text
+msgctxt "03020204.xhp#par_id3154022.33.help.text"
+msgid "Get #iNumber,2,sText"
+msgstr "Get #iNumero,2,sTexto"
+
+#: 03020204.xhp#par_id3150940.34.help.text
+msgid "Put #iNumber,,\"This is new text\""
+msgstr "Put #iNumero,,\"Esto es un texto nuevo\""
+
+#: 03020204.xhp#par_id3146132.35.help.text
+msgctxt "03020204.xhp#par_id3146132.35.help.text"
+msgid "Get #iNumber,1,sText"
+msgstr "Get #iNumero,1,sTexto"
+
+#: 03020204.xhp#par_id3154198.36.help.text
+msgctxt "03020204.xhp#par_id3154198.36.help.text"
+msgid "Get #iNumber,2,sText"
+msgstr "Get #iNumero,2,sTexto"
+
+#: 03020204.xhp#par_id3159102.37.help.text
+msgctxt "03020204.xhp#par_id3159102.37.help.text"
+msgid "Put #iNumber,20,\"This is the text in record 20\""
+msgstr "Put #iNumero,20,\"Este es el texto del registro 20\""
+
+#: 03020204.xhp#par_id3153785.38.help.text
+msgctxt "03020204.xhp#par_id3153785.38.help.text"
+msgid "Print Lof(#iNumber)"
+msgstr "Print Lof(#iNumero)"
+
+#: 03020204.xhp#par_id3151277.39.help.text
+msgctxt "03020204.xhp#par_id3151277.39.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumero"
+
+#: 03020204.xhp#par_id3150786.41.help.text
+msgctxt "03020204.xhp#par_id3150786.41.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03020201.xhp#tit.help.text
+msgid "Get Statement [Runtime]"
+msgstr "Instrucción Get [Ejecución]"
+
+#: 03020201.xhp#bm_id3154927.help.text
+msgid "<bookmark_value>Get statement</bookmark_value>"
+msgstr "<bookmark_value>Get;instrucción</bookmark_value>"
+
+#: 03020201.xhp#hd_id3154927.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020201.xhp\">Get Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020201.xhp\">Instrucción Get [Ejecución]</link>"
+
+#: 03020201.xhp#par_id3145069.2.help.text
+msgid "Reads a record from a relative file, or a sequence of bytes from a binary file, into a variable."
+msgstr "Lee y graba desde un archivo relativo o una secuencia de bytes desde un archivo binario a una variable."
+
+#: 03020201.xhp#par_id3154346.3.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\"><item type=\"literal\">PUT</item></link> Statement"
+msgstr "Consulte también: Instrucción <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\">PUT</link>"
+
+#: 03020201.xhp#hd_id3150358.4.help.text
+msgctxt "03020201.xhp#hd_id3150358.4.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03020201.xhp#par_id3150792.5.help.text
+msgid "Get [#] FileNumber As Integer, [Position], Variable"
+msgstr "Get [#] NúmeroArchivo As Integer, [Posición], Variable "
+
+#: 03020201.xhp#hd_id3154138.6.help.text
+msgctxt "03020201.xhp#hd_id3154138.6.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03020201.xhp#par_id3150448.7.help.text
+#, fuzzy
+msgid "<emph>FileNumber:</emph> Any integer expression that determines the file number."
+msgstr "<emph>NúmeroArchivo:</emph> Cualquier expresión entera que determine el número de archivo."
+
+#: 03020201.xhp#par_id3154684.8.help.text
+msgid "<emph>Position:</emph> For files opened in Random mode, <emph>Position</emph> is the number of the record that you want to read."
+msgstr "<emph>Posición:</emph> Para archivos abiertos en modo Random, la <emph>Posición</emph> es el número del registro que se desee leer."
+
+#: 03020201.xhp#par_id3153768.9.help.text
+msgid "For files opened in Binary mode, <emph>Position</emph> is the byte position in the file where the reading starts."
+msgstr "En archivos abiertos en modo Binario, <emph>Posición</emph> es la posición del byte en el archivo en el que se inicia la lectura."
+
+#: 03020201.xhp#par_id3147319.10.help.text
+msgid "If <emph>Position</emph> is omitted, the current position or the current data record of the file is used."
+msgstr "Si se omite <emph>Posición</emph>, se usa la posición actual o el registro de datos actual del archivo."
+
+#: 03020201.xhp#par_id3149484.11.help.text
+msgid "Variable: Name of the variable to be read. With the exception of object variables, you can use any variable type."
+msgstr "Variable: Nombre de la variable que leer. Se puede usar cualquier tipo de variable con la excepción de las de objeto."
+
+#: 03020201.xhp#hd_id3153144.12.help.text
+msgctxt "03020201.xhp#hd_id3153144.12.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03020201.xhp#par_id3159154.13.help.text
+msgctxt "03020201.xhp#par_id3159154.13.help.text"
+msgid "Sub ExampleRandomAccess"
+msgstr "Sub EjemploAccesoAleatorio"
+
+#: 03020201.xhp#par_id3153188.14.help.text
+msgctxt "03020201.xhp#par_id3153188.14.help.text"
+msgid "Dim iNumber As Integer"
+msgstr "Dim iNumero As Integer"
+
+#: 03020201.xhp#par_id3155307.15.help.text
+msgid "Dim sText As Variant REM Must be a variant"
+msgstr "Dim sTexto As Variant REM Debe ser una variante"
+
+#: 03020201.xhp#par_id3152577.16.help.text
+msgctxt "03020201.xhp#par_id3152577.16.help.text"
+msgid "Dim aFile As String"
+msgstr "Dim aArchivo As String"
+
+#: 03020201.xhp#par_id3153726.17.help.text
+msgctxt "03020201.xhp#par_id3153726.17.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr "aArchivo = \"c:\\data.txt\""
+
+#: 03020201.xhp#par_id3154490.19.help.text
+msgctxt "03020201.xhp#par_id3154490.19.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumero = Freefile"
+
+#: 03020201.xhp#par_id3150418.20.help.text
+msgctxt "03020201.xhp#par_id3150418.20.help.text"
+msgid "Open aFile For Random As #iNumber Len=32"
+msgstr "Open aArchivo For Random As #iNumero Len=32"
+
+#: 03020201.xhp#par_id3149411.21.help.text
+msgid "Seek #iNumber,1 REM Position at beginning"
+msgstr "Seek #iNumero,1 REM Posición al principio"
+
+#: 03020201.xhp#par_id3153158.22.help.text
+msgctxt "03020201.xhp#par_id3153158.22.help.text"
+msgid "Put #iNumber,, \"This is the first line of text\" REM Fill line with text"
+msgstr "Put #iNumero,, \"Esta es la primera línea de texto\" REM Rellenar línea con texto"
+
+#: 03020201.xhp#par_id3148457.23.help.text
+msgctxt "03020201.xhp#par_id3148457.23.help.text"
+msgid "Put #iNumber,, \"This is the second line of text\""
+msgstr "Print #iNumero, \"Esta es la segunda línea de texto\""
+
+#: 03020201.xhp#par_id3150715.24.help.text
+msgctxt "03020201.xhp#par_id3150715.24.help.text"
+msgid "Put #iNumber,, \"This is the third line of text\""
+msgstr "Print #iNumero, \"Esta es la tercera línea de texto\""
+
+#: 03020201.xhp#par_id3153836.25.help.text
+msgctxt "03020201.xhp#par_id3153836.25.help.text"
+msgid "Seek #iNumber,2"
+msgstr "Seek #iNumero,2"
+
+#: 03020201.xhp#par_id3150327.26.help.text
+msgctxt "03020201.xhp#par_id3150327.26.help.text"
+msgid "Get #iNumber,,sText"
+msgstr "Get #iNumero,,sTexto"
+
+#: 03020201.xhp#par_id3153707.27.help.text
+msgctxt "03020201.xhp#par_id3153707.27.help.text"
+msgid "Print sText"
+msgstr "Print sTexto"
+
+#: 03020201.xhp#par_id3153764.28.help.text
+msgctxt "03020201.xhp#par_id3153764.28.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumero"
+
+#: 03020201.xhp#par_id3153715.30.help.text
+msgctxt "03020201.xhp#par_id3153715.30.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumero = Freefile"
+
+#: 03020201.xhp#par_id3154256.31.help.text
+msgctxt "03020201.xhp#par_id3154256.31.help.text"
+msgid "Open aFile For Random As #iNumber Len=32"
+msgstr "Open aArchivo For Random As #iNumero Len=32"
+
+#: 03020201.xhp#par_id3147340.32.help.text
+msgctxt "03020201.xhp#par_id3147340.32.help.text"
+msgid "Get #iNumber,2,sText"
+msgstr "Get #iNumero,2,sTexto"
+
+#: 03020201.xhp#par_id3155938.33.help.text
+msgid "Put #iNumber,,\"This is a new text\""
+msgstr "Put #iNumero,,\"Esto es un texto nuevo\""
+
+#: 03020201.xhp#par_id3155959.34.help.text
+msgctxt "03020201.xhp#par_id3155959.34.help.text"
+msgid "Get #iNumber,1,sText"
+msgstr "Get #iNumero,1,sTexto"
+
+#: 03020201.xhp#par_id3147361.35.help.text
+msgctxt "03020201.xhp#par_id3147361.35.help.text"
+msgid "Get #iNumber,2,sText"
+msgstr "Get #iNumero,2,sTexto"
+
+#: 03020201.xhp#par_id3146916.36.help.text
+msgctxt "03020201.xhp#par_id3146916.36.help.text"
+msgid "Put #iNumber,20,\"This is the text in record 20\""
+msgstr "Put #iNumero,20,\"Este es el texto del registro 20\""
+
+#: 03020201.xhp#par_id3149259.37.help.text
+msgctxt "03020201.xhp#par_id3149259.37.help.text"
+msgid "Print Lof(#iNumber)"
+msgstr "Print Lof(#iNumero)"
+
+#: 03020201.xhp#par_id3153790.38.help.text
+msgctxt "03020201.xhp#par_id3153790.38.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumero"
+
+#: 03020201.xhp#par_id3155606.40.help.text
+msgctxt "03020201.xhp#par_id3155606.40.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03020100.xhp#tit.help.text
+msgid "Opening and Closing Files"
+msgstr "Apertura y cierre de archivos"
+
+#: 03020100.xhp#hd_id3152924.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020100.xhp\" name=\"Opening and Closing Files\">Opening and Closing Files</link>"
+msgstr "<link href=\"text/sbasic/shared/03020100.xhp\" name=\"Apertura y cierre de archivos\">Apertura y cierre de archivos</link>"
+
+#: 03030108.xhp#tit.help.text
+msgid "CDateFromIso Function [Runtime]"
+msgstr "Función CdateFromIso [Ejecución]"
+
+#: 03030108.xhp#bm_id3153127.help.text
+msgid "<bookmark_value>CdateFromIso function</bookmark_value>"
+msgstr "<bookmark_value>CdateFromIso;función</bookmark_value>"
+
+#: 03030108.xhp#hd_id3153127.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030108.xhp\" name=\"CDateFromIso Function [Runtime]\">CDateFromIso Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030108.xhp\" name=\"Función CdateFromIso [Runtime]\">Función CdateFromIso [Ejecución]</link>"
+
+#: 03030108.xhp#par_id3148550.2.help.text
+msgid "Returns the internal date number from a string that contains a date in ISO format."
+msgstr "Devuelve el número de fecha interno a partir de una cadena que contiene una fecha en formato ISO."
+
+#: 03030108.xhp#hd_id3148947.3.help.text
+msgctxt "03030108.xhp#hd_id3148947.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03030108.xhp#par_id3150400.4.help.text
+msgid "CDateFromIso(String)"
+msgstr "CDateFromIso(Cadena)"
+
+#: 03030108.xhp#hd_id3154367.5.help.text
+msgctxt "03030108.xhp#hd_id3154367.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03030108.xhp#par_id3156212.6.help.text
+msgid "Internal date number"
+msgstr "Número de fecha interno"
+
+#: 03030108.xhp#hd_id3125864.7.help.text
+msgctxt "03030108.xhp#hd_id3125864.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03030108.xhp#par_id3154685.8.help.text
+msgid "<emph>String:</emph> A string that contains a date in ISO format. The year may have two or four digits."
+msgstr "<emph>Cadena:</emph> Una cadena que contiene una fecha en formato ISO. El año puede tener dos o cuatro dígitos."
+
+#: 03030108.xhp#hd_id3150439.9.help.text
+msgctxt "03030108.xhp#hd_id3150439.9.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03030108.xhp#par_id3147318.10.help.text
+msgid "dateval = CDateFromIso(\"20021231\")"
+msgstr "dateval = CDateFromIso(\"20021231\")"
+
+#: 03030108.xhp#par_id3146921.11.help.text
+msgid "returns 12/31/2002 in the date format of your system"
+msgstr "devuelve 12/31/2002 en el formato de fecha del sistema"
+
+#: 03030301.xhp#tit.help.text
+msgid "Date Statement [Runtime]"
+msgstr "Instrucción Date [Ejecución]"
+
+#: 03030301.xhp#bm_id3156027.help.text
+msgid "<bookmark_value>Date statement</bookmark_value>"
+msgstr "<bookmark_value>Date;función</bookmark_value>"
+
+#: 03030301.xhp#hd_id3156027.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030301.xhp\" name=\"Date Statement [Runtime]\">Date Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030301.xhp\" name=\"Instrucción Date [Runtime]\">Instrucción Date [Ejecución]</link>"
+
+#: 03030301.xhp#par_id3147291.2.help.text
+msgid "Returns the current system date as a string, or resets the date. The date format depends on your local system settings."
+msgstr "Devuelve la fecha actual del sistema como cadena o la restablece. El formato de fecha depende de la configuración local del sistema."
+
+#: 03030301.xhp#hd_id3148686.3.help.text
+msgctxt "03030301.xhp#hd_id3148686.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03030301.xhp#par_id3146794.4.help.text
+msgid "Date ; Date = Text As String"
+msgstr "Date ; Date = Texto As String"
+
+#: 03030301.xhp#hd_id3154347.5.help.text
+msgctxt "03030301.xhp#hd_id3154347.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03030301.xhp#par_id3145069.6.help.text
+msgid "<emph>Text:</emph> Only required in order to reset the system date. In this case, the string expression must correspond to the date format defined in your local settings."
+msgstr "<emph>Texto:</emph> Sólo es necesario para restablecer la fecha del sistema. En este caso, la expresión de cadena debe corresponder con el formato de fecha definido en la configuración local."
+
+#: 03030301.xhp#hd_id3150793.7.help.text
+msgctxt "03030301.xhp#hd_id3150793.7.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03030301.xhp#par_id3151212.8.help.text
+msgid "Sub ExampleDate"
+msgstr "Sub EjemploDate"
+
+#: 03030301.xhp#par_id3156424.9.help.text
+msgid "msgbox \"The date is \" & Date"
+msgstr "msgbox \"La fecha es \" & Date"
+
+#: 03030301.xhp#par_id3145174.10.help.text
+msgctxt "03030301.xhp#par_id3145174.10.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03131600.xhp#tit.help.text
+msgid "CreateUnoService Function [Runtime]"
+msgstr "Función CreateUnoService [Ejecución]"
+
+#: 03131600.xhp#bm_id3150682.help.text
+msgid "<bookmark_value>CreateUnoService function</bookmark_value>"
+msgstr "<bookmark_value>CreateUnoService;función</bookmark_value>"
+
+#: 03131600.xhp#hd_id3150682.1.help.text
+msgid "<link href=\"text/sbasic/shared/03131600.xhp\" name=\"CreateUnoService Function [Runtime]\">CreateUnoService Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131600.xhp\" name=\"CreateUnoService Function [Runtime]\">Función CreateUnoService [Ejecución]</link>"
+
+#: 03131600.xhp#par_id3152924.2.help.text
+msgid "Instantiates a Uno service with the ProcessServiceManager."
+msgstr "Crea un caso de servicio Uno con el ProcessServiceManager."
+
+#: 03131600.xhp#hd_id3152801.3.help.text
+msgctxt "03131600.xhp#hd_id3152801.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03131600.xhp#par_id3153346.4.help.text
+msgid "oService = CreateUnoService( Uno service name )"
+msgstr "oService = CreateUnoService( nombre de servicio Uno)"
+
+#: 03131600.xhp#par_idN1060F.help.text
+msgid "For a list of available services, go to: http://api.libreoffice.org/docs/common/ref/com/sun/star/module-ix.html"
+msgstr "Para una lista de los servicios disponibles, consulte: http://api.libreoffice.org/docs/common/ref/com/sun/star/module-ix.html"
+
+#: 03131600.xhp#hd_id3151111.5.help.text
+msgctxt "03131600.xhp#hd_id3151111.5.help.text"
+msgid "Examples:"
+msgstr "Ejemplo:"
+
+#: 03131600.xhp#par_id3154046.6.help.text
+msgctxt "03131600.xhp#par_id3154046.6.help.text"
+msgid "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
+msgstr "oStruct = CreateUnoStruct( \"com.sun.star.beans.Property\" )"
+
+#: 03131600.xhp#bm_id8334604.help.text
+msgid "<bookmark_value>filepicker;API service</bookmark_value>"
+msgstr "<bookmark_value>filepicker;servicio API</bookmark_value>"
+
+#: 03131600.xhp#par_idN10625.help.text
+msgid "The following code uses a service to open a file open dialog:"
+msgstr "El código siguiente utiliza un servicio para abrir un diálogo de apertura de archivos:"
+
+#: 03131600.xhp#par_idN10628.help.text
+msgctxt "03131600.xhp#par_idN10628.help.text"
+msgid "Sub Main"
+msgstr "Sub Main"
+
+#: 03131600.xhp#par_idN1062B.help.text
+msgid "fName = FileOpenDialog (\"Please select a file\")"
+msgstr "fName = FileOpenDialog (\"Seleccione un archivo\")"
+
+#: 03131600.xhp#par_idN10630.help.text
+msgid "print \"file chosen: \"+fName"
+msgstr "print \"file chosen: \"+fName"
+
+#: 03131600.xhp#par_idN10635.help.text
+msgctxt "03131600.xhp#par_idN10635.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03131600.xhp#par_idN1063A.help.text
+msgid "function FileOpenDialog(title as String) as String"
+msgstr "function FileOpenDialog(title as String) as String"
+
+#: 03131600.xhp#par_idN1063D.help.text
+msgid "filepicker = createUnoService(\"com.sun.star.ui.dialogs.FilePicker\")"
+msgstr "filepicker = createUnoService(\"com.sun.star.ui.dialogs.FilePicker\")"
+
+#: 03131600.xhp#par_idN10642.help.text
+msgid "filepicker.Title = title"
+msgstr "filepicker.Title = title"
+
+#: 03131600.xhp#par_idN10647.help.text
+msgid "filepicker.execute()"
+msgstr "filepicker.execute()"
+
+#: 03131600.xhp#par_idN1064C.help.text
+msgid "files = filepicker.getFiles()"
+msgstr "files = filepicker.getFiles()"
+
+#: 03131600.xhp#par_idN10651.help.text
+msgid "FileOpenDialog=files(0)"
+msgstr "FileOpenDialog=files(0)"
+
+#: 03131600.xhp#par_idN10656.help.text
+msgid "End function"
+msgstr "End function"
+
+#: 03120301.xhp#tit.help.text
+msgid "Format Function [Runtime]"
+msgstr "Función Format [Ejecución]"
+
+#: 03120301.xhp#bm_id3153539.help.text
+msgid "<bookmark_value>Format function</bookmark_value>"
+msgstr "<bookmark_value>Format;función</bookmark_value>"
+
+#: 03120301.xhp#hd_id3153539.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120301.xhp\" name=\"Format Function [Runtime]\">Format Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120301.xhp\" name=\"Format Function [Runtime]\">Función Format [Ejecución]</link>"
+
+#: 03120301.xhp#par_id3156042.2.help.text
+msgid "Converts a number to a string, and then formats it according to the format that you specify."
+msgstr "Convierte un número en una cadena y después le da formato de acuerdo con las especificaciones indicadas."
+
+#: 03120301.xhp#hd_id3145090.4.help.text
+msgctxt "03120301.xhp#hd_id3145090.4.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03120301.xhp#par_id3153527.5.help.text
+msgid "Format (Number [, Format As String])"
+msgstr "Format (Número [, Formato As String])"
+
+#: 03120301.xhp#hd_id3149178.6.help.text
+msgctxt "03120301.xhp#hd_id3149178.6.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03120301.xhp#par_id3148474.7.help.text
+msgctxt "03120301.xhp#par_id3148474.7.help.text"
+msgid "String"
+msgstr "Cadena"
+
+#: 03120301.xhp#hd_id3159176.8.help.text
+msgctxt "03120301.xhp#hd_id3159176.8.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03120301.xhp#par_id3149415.9.help.text
+msgid "<emph>Number:</emph> Numeric expression that you want to convert to a formatted string."
+msgstr "<emph>Número:</emph> Expresión numérica que se desee convertir en cadena con formato."
+
+#: 03120301.xhp#par_id3147531.10.help.text
+msgid "<emph>Format:</emph> String that specifies the format code for the number. If <emph>Format</emph> is omitted, the Format function works like the <emph>Str</emph> function."
+msgstr "<emph>Formato:</emph> Cadena que especifique el código de formato para el número. Si se omite este parámetro, la función Format actúa como la función <emph>Str</emph>."
+
+#: 03120301.xhp#hd_id3147561.47.help.text
+msgid "Formatting Codes"
+msgstr "Códigos de formato"
+
+#: 03120301.xhp#par_id3147265.11.help.text
+msgid "The following list describes the codes that you can use for formatting a number:"
+msgstr "La lista siguiente describe los códigos que permiten dar formato a un número:"
+
+#: 03120301.xhp#par_id3153380.12.help.text
+msgid "<emph>0:</emph> If <emph>Number</emph> has a digit at the position of the 0 in the format code, the digit is displayed, otherwise a zero is displayed."
+msgstr "<emph>0:</emph> Si <emph>Número</emph> tiene un dígito en la posición del 0 en el código de formato, se muestra aquél, en caso contrario se muestra el valor cero."
+
+#: 03120301.xhp#par_id3151210.13.help.text
+msgid "If <emph>Number</emph> has fewer digits than the number of zeros in the format code, (on either side of the decimal), leading or trailing zeros are displayed. If the number has more digits to the left of the decimal separator than the amount of zeros in the format code, the additional digits are displayed without formatting."
+msgstr "Si la expresión <emph>Número</emph> tiene menos dígitos que el número de ceros del código de formato (a cualquier lado del decimal), se muestran ceros de relleno al principio o al final. Si el número tiene más dígitos a la izquierda del separador decimal que la cantidad de ceros que hay en el código de formato, los dígitos adicionales se muestran sin modificarse."
+
+#: 03120301.xhp#par_id3151176.14.help.text
+msgid "Decimal places in the number are rounded according to the number of zeros that appear after the decimal separator in the <emph>Format </emph>code."
+msgstr "Las posiciones decimales del número se redondean de acuerdo con el número de ceros que aparecen después del separador decimal en el código de <emph>Format</emph>."
+
+#: 03120301.xhp#par_id3154123.15.help.text
+msgid "<emph>#:</emph> If <emph>Number</emph> contains a digit at the position of the # placeholder in the <emph>Format</emph> code, the digit is displayed, otherwise nothing is displayed at this position."
+msgstr "<emph>#:</emph> Si <emph>Número</emph> contiene un dígito en la posición del comodín # del código de <emph>Format</emph>, el dígito se muestra, en caso contrario no se muestra nada en esa posición."
+
+#: 03120301.xhp#par_id3148452.16.help.text
+msgid "This symbol works like the 0, except that leading or trailing zeroes are not displayed if there are more # characters in the format code than digits in the number. Only the relevant digits of the number are displayed."
+msgstr "Este símbolo funciona como 0, excepto porque los ceros de relleno anteriores o posteriores no se muestran si hay más caracteres # en el código de formato que dígitos tiene el número. Sólo se muestran los dígitos pertinentes del número."
+
+#: 03120301.xhp#par_id3159150.17.help.text
+msgid "<emph>.:</emph> The decimal placeholder determines the number of decimal places to the left and right of the decimal separator."
+msgstr "<emph>.:</emph> El comodín para decimales determina el número de espacios decimales a izquierda y derecha del separador decimal."
+
+#: 03120301.xhp#par_id3159252.18.help.text
+msgid "If the format code contains only # placeholders to the left of this symbol, numbers less than 1 begin with a decimal separator. To always display a leading zero with fractional numbers, use 0 as a placeholder for the first digit to the left of the decimal separator."
+msgstr "Si el código de formato sólo contiene comodines # a la izquierda de este símbolo, los números menores que 1 empiezan con un separador decimal. Para que se muestre siempre un cero de relleno con números fraccionarios, use 0 como comodín para el primer dígito de la izquierda del separador decimal."
+
+#: 03120301.xhp#par_id3153368.19.help.text
+msgid "<emph>%:</emph> Multiplies the number by 100 and inserts the percent sign (%) where the number appears in the format code."
+msgstr "<emph>%:</emph> Multiplica el número por 100 e inserta el signo de porcentaje (%) en la posición en que éste aparece en el código de formato."
+
+#: 03120301.xhp#par_id3149481.20.help.text
+msgid "<emph>E- E+ e- e+ :</emph> If the format code contains at least one digit placeholder (0 or #) to the right of the symbol E-, E+, e-, or e+, the number is formatted in the scientific or exponential format. The letter E or e is inserted between the number and the exponent. The number of placeholders for digits to the right of the symbol determines the number of digits in the exponent."
+msgstr "E- E+ e- e+ : Si el código de formato contiene por lo menos un comodín de dígito (0 o #) a la derecha del símbolo E-, E+, e- o e+, al número se le aplica el formato científico o exponencial. Las letras E o e se insertan entre el número y el exponente. El número de comodines para dígitos a la derecha del símbolo determina el número de dígitos en el exponente."
+
+#: 03120301.xhp#par_id3149262.21.help.text
+msgid "If the exponent is negative, a minus sign is displayed directly before an exponent with E-, E+, e-, e+. If the exponent is positive, a plus sign is only displayed before exponents with E+ or e+."
+msgstr "Si el exponente es negativo, se muestra un signo menos justo antes de un exponente con E-, E+, e-, e+. Si el exponente es positivo, sólo se muestra un signo más antes de exponentes con E+ o e+."
+
+#: 03120301.xhp#par_id3148617.23.help.text
+msgid "The thousands delimiter is displayed if the format code contains the delimiter enclosed by digit placeholders (0 or #)."
+msgstr "El delimitador de miles se muestra si el código de formato contiene el delimitador incluido por los comodines de dígitos (0 o #)."
+
+#: 03120301.xhp#par_id3163713.29.help.text
+msgid "The use of a period as a thousands and decimal separator is dependent on the regional setting. When you enter a number directly in Basic source code, always use a period as decimal delimiter. The actual character displayed as a decimal separator depends on the number format in your system settings."
+msgstr "El uso de un punto como separador de miles y decimal depende del valor de configuración regional. El carácter real que se muestra como separador decimal depende del formato numérico de la configuración del sistema. Los ejemplos que se muestran aquí asumen que la configuración regional es \"US\"."
+
+#: 03120301.xhp#par_id3152887.24.help.text
+msgid "<emph>- + $ ( ) space:</emph> A plus (+), minus (-), dollar ($), space, or brackets entered directly in the format code is displayed as a literal character."
+msgstr "- + $ ( ) espacio : Los signos más (+), menos (-), dólar ($), espacio o paréntesis que se introducen directamente en el código del formato se muestran como caracteres literales."
+
+#: 03120301.xhp#par_id3148576.25.help.text
+msgid "To display characters other than the ones listed here, you must precede it by a backslash (\\), or enclose it in quotation marks (\" \")."
+msgstr "Para que se muestren caracteres distintos de los que se listan aquí, es necesario precederlos por una barra oblicua inversa (\\) o incluirlos entre comillas (\" \")."
+
+#: 03120301.xhp#par_id3153139.26.help.text
+msgid "\\ : The backslash displays the next character in the format code."
+msgstr "\\ : La barra oblicua inversa muestra el carácter siguiente del código del formato."
+
+#: 03120301.xhp#par_id3153366.27.help.text
+msgid "Characters in the format code that have a special meaning can only be displayed as literal characters if they are preceded by a backslash. The backslash itself is not displayed, unless you enter a double backslash (\\\\) in the format code."
+msgstr "Los caracteres del código de formato que tienen un significado especial sólo pueden mostrarse como literales si están precedidos por una barra oblicua inversa. La propia barra oblicua inversa no puede mostrarse a menos que se introduzca dos veces (\\\\) en el código de formato."
+
+#: 03120301.xhp#par_id3155411.28.help.text
+msgid "Characters that must be preceded by a backslash in the format code in order to be displayed as literal characters are date- and time-formatting characters (a, c, d, h, m, n, p, q, s, t, w, y, /, :), numeric-formatting characters (#, 0, %, E, e, comma, period), and string-formatting characters (@, &, <, >, !)."
+msgstr "Los caracteres que deben precederse por una barra oblicua inversa en el código de formato para que se muestren como caracteres literales son: caracteres de formato de hora y fecha (a, c, d, h, m, n, p, q, s, t, w, y, /, :), caracteres de formato numérico (#, 0, %, E, e, coma, punto) y caracteres de formato de cadena (@, &, <, >, !)."
+
+#: 03120301.xhp#par_id3145749.30.help.text
+msgid "You can also use the following predefined number formats. Except for \"General Number\", all of the predefined format codes return the number as a decimal number with two decimal places."
+msgstr "También se puede usar los formatos numéricos predefinidos siguientes. Excepto para \"General Number\" todos los códigos de formato predefinidos devuelven el número con dos espacios decimales."
+
+#: 03120301.xhp#par_id3150113.31.help.text
+msgid "If you use predefined formats, the name of the format must be enclosed in quotation marks."
+msgstr "Si se usan formatos predefinidos, el nombre del formato debe incluirse entre comillas."
+
+#: 03120301.xhp#hd_id3149377.32.help.text
+msgid "Predefined format"
+msgstr "Formatos predefinidos"
+
+#: 03120301.xhp#par_id3154730.33.help.text
+msgid "<emph>General Number:</emph> Numbers are displayed as entered."
+msgstr "<emph>General Number:</emph> Los números se muestran tal como se han introducido."
+
+#: 03120301.xhp#par_id3153158.34.help.text
+msgid "<emph>Currency:</emph> Inserts a dollar sign in front of the number and encloses negative numbers in brackets."
+msgstr "<emph>Currency:</emph> Inserta un signo de dólar delante del número e incluye los números negativos entre paréntesis."
+
+#: 03120301.xhp#par_id3154490.35.help.text
+msgid "<emph>Fixed:</emph> Displays at least one digit in front of the decimal separator."
+msgstr "<emph>Fixed:</emph> Muestra al menos un dígito delante del separador decimal."
+
+#: 03120301.xhp#par_id3153415.36.help.text
+msgid "<emph>Standard:</emph> Displays numbers with a thousands separator."
+msgstr "<emph>Standard:</emph> Muestra números con un separador de miles."
+
+#: 03120301.xhp#par_id3150715.37.help.text
+msgid "<emph>Percent:</emph> Multiplies the number by 100 and appends a percent sign to the number."
+msgstr "<emph>Percent:</emph> Multiplica el número por 100 y le añade un signo de porcentaje."
+
+#: 03120301.xhp#par_id3153836.38.help.text
+msgid "<emph>Scientific:</emph> Displays numbers in scientific format (for example, 1.00E+03 for 1000)."
+msgstr "<emph>Scientific:</emph> Muestra números en formato científico (por ejemplo, 1,00E+03 para 1000)."
+
+#: 03120301.xhp#par_id3153707.39.help.text
+msgid "A format code can be divided into three sections that are separated by semicolons. The first part defines the format for positive values, the second part for negative values, and the third part for zero. If you only specify one format code, it applies to all numbers."
+msgstr "Un código de formato puede dividirse en tres secciones que se separan por caracteres de punto y coma. La primera parte define el formato para valores positivos, la segunda para valores negativos y la tercera para cero. Si sólo se especifica un código de formato, se aplica a todos los números."
+
+#: 03120301.xhp#hd_id3149019.40.help.text
+msgctxt "03120301.xhp#hd_id3149019.40.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03120301.xhp#par_id3156054.41.help.text
+msgid "Sub ExampleFormat"
+msgstr "Sub EjemploFormat"
+
+#: 03120301.xhp#par_id3148993.42.help.text
+msgid "MsgBox Format(6328.2, \"##,##0.00\")"
+msgstr "MsgBox Format(6328.2, \"##,##0.00\")"
+
+#: 03120301.xhp#par_idN107A2.help.text
+msgid "REM always use a period as decimal delimiter when you enter numbers in Basic source code."
+msgstr "REM Utilice siempre el punto como delimitador de decimales al introducir números en el código fuente de Basic."
+
+#: 03120301.xhp#par_id3147339.46.help.text
+msgid "REM displays for example 6,328.20 in English locale, 6.328,20 in German locale."
+msgstr "REM por ejemplo, muestra 6,328.20 en entorno local inglés y 6.328,20 en entorno local alemán"
+
+#: 03120301.xhp#par_id3156382.43.help.text
+msgctxt "03120301.xhp#par_id3156382.43.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03130500.xhp#tit.help.text
+msgid "Shell Function [Runtime]"
+msgstr "Función Shell [Ejecución]"
+
+#: 03130500.xhp#bm_id3150040.help.text
+msgid "<bookmark_value>Shell function</bookmark_value>"
+msgstr "<bookmark_value>Shell;función</bookmark_value>"
+
+#: 03130500.xhp#hd_id3150040.1.help.text
+msgid "<link href=\"text/sbasic/shared/03130500.xhp\" name=\"Shell Function [Runtime]\">Shell Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03130500.xhp\" name=\"Shell Function [Runtime]\">Función Shell [Ejecución]</link>"
+
+#: 03130500.xhp#par_id3153394.2.help.text
+msgid "Starts another application and defines the respective window style, if necessary."
+msgstr "Inicia otra aplicación y si fuera necesario define el estilo de ventana correspondiente."
+
+#: 03130500.xhp#hd_id3153345.4.help.text
+msgctxt "03130500.xhp#hd_id3153345.4.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 03130500.xhp#par_id3147576.5.help.text
+msgid "Shell (Pathname As String[, Windowstyle As Integer][, Param As String][, bSync]) "
+msgstr "Shell (NombreRuta As String[, EstiloVentana As Integer][, Parám As String][, bSync]) "
+
+#: 03130500.xhp#hd_id3149235.6.help.text
+msgctxt "03130500.xhp#hd_id3149235.6.help.text"
+msgid "Parameter"
+msgstr "Parámetro"
+
+#: 03130500.xhp#hd_id3154306.23.help.text
+msgid "Pathname"
+msgstr "NombreRuta"
+
+#: 03130500.xhp#par_id3155419.7.help.text
+msgid "Complete path and program name of the program that you want to start."
+msgstr "Ruta de acceso completa y nombre del programa que se desee iniciar."
+
+#: 03130500.xhp#hd_id3150771.24.help.text
+msgid "Windowstyle"
+msgstr "EstiloVentana"
+
+#: 03130500.xhp#par_id3145609.8.help.text
+msgid "Optional integer expression that specifies the style of the window that the program is executed in. The following values are possible:"
+msgstr "Expresión entera opcional que especifica el estilo de la ventana en la que se ejecuta el programa. Son posibles los valores siguientes:"
+
+#: 03130500.xhp#par_id3148663.25.help.text
+msgctxt "03130500.xhp#par_id3148663.25.help.text"
+msgid "0"
+msgstr "0"
+
+#: 03130500.xhp#par_id3153360.10.help.text
+msgid "The focus is on the hidden program window."
+msgstr "El foco está en la ventana de programa oculta."
+
+#: 03130500.xhp#par_id3154123.26.help.text
+msgctxt "03130500.xhp#par_id3154123.26.help.text"
+msgid "1"
+msgstr "1"
+
+#: 03130500.xhp#par_id3144760.11.help.text
+msgid "The focus is on the program window in standard size."
+msgstr "El foco está en la ventana de programa en tamaño estándar."
+
+#: 03130500.xhp#par_id3156422.27.help.text
+msgctxt "03130500.xhp#par_id3156422.27.help.text"
+msgid "2"
+msgstr "2"
+
+#: 03130500.xhp#par_id3148451.12.help.text
+msgid "The focus is on the minimized program window."
+msgstr "El foco está en la ventana de programa minimizada."
+
+#: 03130500.xhp#par_id3149561.28.help.text
+msgctxt "03130500.xhp#par_id3149561.28.help.text"
+msgid "3"
+msgstr "3"
+
+#: 03130500.xhp#par_id3146921.13.help.text
+msgid "focus is on the maximized program window."
+msgstr "El foco está en la ventana de programa maximizada."
+
+#: 03130500.xhp#par_id3149481.29.help.text
+msgctxt "03130500.xhp#par_id3149481.29.help.text"
+msgid "4"
+msgstr "4"
+
+#: 03130500.xhp#par_id3155854.14.help.text
+msgid "Standard size program window, without focus."
+msgstr "Ventana de programa de tamaño estándar, sin foco."
+
+#: 03130500.xhp#par_id3145271.30.help.text
+msgctxt "03130500.xhp#par_id3145271.30.help.text"
+msgid "6"
+msgstr "6"
+
+#: 03130500.xhp#par_id3152938.15.help.text
+msgid "Minimized program window, focus remains on the active window."
+msgstr "Ventana de programa minimizada, el foco permanece en la ventana activa."
+
+#: 03130500.xhp#par_id3146119.31.help.text
+msgid "10"
+msgstr "10"
+
+#: 03130500.xhp#par_id3151112.16.help.text
+msgid "Full-screen display."
+msgstr "Visualización a pantalla completa."
+
+#: 03130500.xhp#hd_id3150419.33.help.text
+msgid "Param"
+msgstr "Parám"
+
+#: 03130500.xhp#par_id3149412.17.help.text
+msgid "Any string expression that specifies the command line that want to pass."
+msgstr "Cualquier expresión de cadena que especifique la línea de órdenes que se desee pasar."
+
+#: 03130500.xhp#hd_id3148456.32.help.text
+msgid "bSync"
+msgstr "bSync"
+
+#: 03130500.xhp#par_id3154096.18.help.text
+msgid "If this value is set to <emph>true</emph>, the <emph>Shell</emph> command and all $[officename] tasks wait until the shell process completes. If the value is set to <emph>false</emph>, the shell returns directly. The default value is <emph>false</emph>."
+msgstr "Si este valor se establece en <emph>true</emph>, la orden <emph>Shell</emph> y todas las tareas de $[officename] esperan hasta que el proceso del shell se complete. Si el valor se establece en <emph>false</emph>, el shell vuelve directamente. El valor predeterminado es <emph>false</emph>."
+
+#: 03130500.xhp#hd_id3154270.19.help.text
+msgctxt "03130500.xhp#hd_id3154270.19.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 03130500.xhp#par_id3153948.20.help.text
+msgid "Sub ExampleShellForWin"
+msgstr "Sub EjemploShellForWin"
+
+#: 03130500.xhp#par_id3154479.21.help.text
+msgid " Shell(\"c:\\windows\\calc.exe\",2)"
+msgstr "Shell(\"c:\\windows\\calc.exe\",2)"
+
+#: 03130500.xhp#par_id3153709.22.help.text
+msgctxt "03130500.xhp#par_id3153709.22.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03104600.xhp#tit.help.text
+msgid "EqualUnoObjects Function [Runtime]"
+msgstr "Función EqualUnoObjects [Ejecución]"
+
+#: 03104600.xhp#bm_id3149205.help.text
+msgid "<bookmark_value>EqualUnoObjects function</bookmark_value>"
+msgstr "<bookmark_value>EqualUnoObjects;función</bookmark_value>"
+
+#: 03104600.xhp#hd_id3149205.1.help.text
+msgid "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects Function [Runtime]\">EqualUnoObjects Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects Function [Runtime]\">Función EqualUnoObjects [Ejecución]</link>"
+
+#: 03104600.xhp#par_id3145090.2.help.text
+msgid "Returns True if the two specified Basic Uno objects represent the same Uno object instance."
+msgstr "Devuelve True si los dos objetos Basic Uno especificados representan el mismo caso de objeto Uno."
+
+#: 03104600.xhp#hd_id3148538.3.help.text
+msgctxt "03104600.xhp#hd_id3148538.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03104600.xhp#par_id3150669.4.help.text
+msgid "EqualUnoObjects( oObj1, oObj2 )"
+msgstr "EqualUnoObjects( oObj1, oObj2 )"
+
+#: 03104600.xhp#hd_id3150984.5.help.text
+msgctxt "03104600.xhp#hd_id3150984.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03104600.xhp#par_id3154285.6.help.text
+msgctxt "03104600.xhp#par_id3154285.6.help.text"
+msgid "Bool"
+msgstr "Lógico"
+
+#: 03104600.xhp#hd_id3145315.7.help.text
+msgctxt "03104600.xhp#hd_id3145315.7.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03104600.xhp#par_id3156024.8.help.text
+msgid "// Copy of objects -> same instance"
+msgstr "// Copia de objetos -> mismo caso"
+
+#: 03104600.xhp#par_id3154923.9.help.text
+msgctxt "03104600.xhp#par_id3154923.9.help.text"
+msgid "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
+msgstr "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
+
+#: 03104600.xhp#par_id3147559.10.help.text
+msgid "oIntro2 = oIntrospection"
+msgstr "oIntro2 = oIntrospection"
+
+#: 03104600.xhp#par_id3150541.11.help.text
+msgid "print EqualUnoObjects( oIntrospection, oIntro2 )"
+msgstr "print EqualUnoObjects( oIntrospection, oIntro2 )"
+
+#: 03104600.xhp#par_id3153525.12.help.text
+msgid "// Copy of structs as value -> new instance"
+msgstr "// Copia de estructuras como valor -> nuevo caso"
+
+#: 03104600.xhp#par_id3154366.13.help.text
+msgid "Dim Struct1 as new com.sun.star.beans.Property"
+msgstr "Dim Struct1 as new com.sun.star.beans.Property"
+
+#: 03104600.xhp#par_id3154348.14.help.text
+msgid "Struct2 = Struct1"
+msgstr "Struct2 = Struct1"
+
+#: 03104600.xhp#par_id3154125.15.help.text
+msgid "print EqualUnoObjects( Struct1, Struct2 )"
+msgstr "print EqualUnoObjects( Struct1, Struct2 )"
+
+#: 03102000.xhp#tit.help.text
+msgid "DefVar Statement [Runtime]"
+msgstr "Instrucción DefVar [Ejecución]"
+
+#: 03102000.xhp#bm_id3143267.help.text
+msgid "<bookmark_value>DefVar statement</bookmark_value>"
+msgstr "<bookmark_value>DefVar;instrucción</bookmark_value>"
+
+#: 03102000.xhp#hd_id3143267.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102000.xhp\" name=\"DefVar Statement [Runtime]\">DefVar Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102000.xhp\" name=\"DefVar Statement [Runtime]\">Instrucción DefVar [Ejecución]</link>"
+
+#: 03102000.xhp#par_id3153825.2.help.text
+msgctxt "03102000.xhp#par_id3153825.2.help.text"
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr "Establece el tipo de variable predeterminado, de acuerdo con un rango de letras, a no ser que se especifique un carácter o palabra clave de declaración de tipo."
+
+#: 03102000.xhp#hd_id3154143.3.help.text
+msgctxt "03102000.xhp#hd_id3154143.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03102000.xhp#par_id3149514.4.help.text
+msgctxt "03102000.xhp#par_id3149514.4.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx RangoCarácter1[, RangoCarácter2[,...]]"
+
+#: 03102000.xhp#hd_id3156024.5.help.text
+msgctxt "03102000.xhp#hd_id3156024.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03102000.xhp#par_id3147560.6.help.text
+msgctxt "03102000.xhp#par_id3147560.6.help.text"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgstr "<emph>RangoCarácter:</emph> Letras que especifican el rango de variables para las que desee establecer el tipo de datos predeterminado."
+
+#: 03102000.xhp#par_id3148552.7.help.text
+msgctxt "03102000.xhp#par_id3148552.7.help.text"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Palabra clave que define el tipo de variable predeterminada:"
+
+#: 03102000.xhp#par_id3153524.8.help.text
+msgctxt "03102000.xhp#par_id3153524.8.help.text"
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr "<emph>Palabra clave: </emph>Tipo de variable predeterminada"
+
+#: 03102000.xhp#par_id3150767.9.help.text
+msgid "<emph>DefVar:</emph> Variant"
+msgstr "<emph>DefVar:</emph> Variante"
+
+#: 03102000.xhp#hd_id3151041.10.help.text
+msgctxt "03102000.xhp#hd_id3151041.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03102000.xhp#par_id3156214.11.help.text
+msgctxt "03102000.xhp#par_id3156214.11.help.text"
+msgid "REM Prefix definitions for variable types:"
+msgstr "REM Añadir prefijo a definiciones para tipos de variable:"
+
+#: 03102000.xhp#par_id3145173.12.help.text
+msgctxt "03102000.xhp#par_id3145173.12.help.text"
+msgid "DefBool b"
+msgstr "DefBool b"
+
+#: 03102000.xhp#par_id3150448.13.help.text
+msgctxt "03102000.xhp#par_id3150448.13.help.text"
+msgid "DefDate t"
+msgstr "DefDate t"
+
+#: 03102000.xhp#par_id3153368.14.help.text
+msgctxt "03102000.xhp#par_id3153368.14.help.text"
+msgid "DefDbL d"
+msgstr "DefDbL d"
+
+#: 03102000.xhp#par_id3155132.15.help.text
+msgctxt "03102000.xhp#par_id3155132.15.help.text"
+msgid "DefInt i"
+msgstr "DefInt i"
+
+#: 03102000.xhp#par_id3155855.16.help.text
+msgctxt "03102000.xhp#par_id3155855.16.help.text"
+msgid "DefLng l"
+msgstr "DefLng l"
+
+#: 03102000.xhp#par_id3147426.17.help.text
+msgctxt "03102000.xhp#par_id3147426.17.help.text"
+msgid "DefObj o"
+msgstr "DefObj o"
+
+#: 03102000.xhp#par_id3151117.18.help.text
+msgctxt "03102000.xhp#par_id3151117.18.help.text"
+msgid "DefVar v"
+msgstr "DefVar v"
+
+#: 03102000.xhp#par_id3148645.20.help.text
+msgid "Sub ExampleDefVar"
+msgstr "Sub EjemploDefVar"
+
+#: 03102000.xhp#par_id3154012.21.help.text
+msgid "vDiv=99 REM vDiv is an implicit variant"
+msgstr "vDiv=99 REM vDiv es una variante implícita"
+
+#: 03102000.xhp#par_id3146121.22.help.text
+msgid "vDiv=\"Hello world\""
+msgstr "vDiv=\"Hola mundo\""
+
+#: 03102000.xhp#par_id3149262.23.help.text
+msgctxt "03102000.xhp#par_id3149262.23.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 01030200.xhp#tit.help.text
+msgid "The Basic Editor"
+msgstr "El editor de Basic"
+
+#: 01030200.xhp#bm_id3148647.help.text
+msgid "<bookmark_value>saving;Basic code</bookmark_value><bookmark_value>loading;Basic code</bookmark_value><bookmark_value>Basic editor</bookmark_value><bookmark_value>navigating;in Basic projects</bookmark_value><bookmark_value>long lines;in Basic editor</bookmark_value><bookmark_value>lines of text;in Basic editor</bookmark_value><bookmark_value>continuation;long lines in editor</bookmark_value>"
+msgstr "<bookmark_value>guardando;código Basic</bookmark_value><bookmark_value>cargando; código Basic</bookmark_value><bookmark_value>Basic editor</bookmark_value><bookmark_value>navegando;en proyectos Basic</bookmark_value><bookmark_value>líneas largos;en Basic editor</bookmark_value><bookmark_value>líneas de texto;en Basic editor</bookmark_value><bookmark_value>continuación;líneas largos en el editor</bookmark_value>"
+
+#: 01030200.xhp#hd_id3147264.1.help.text
+msgid "<link href=\"text/sbasic/shared/01030200.xhp\" name=\"The Basic Editor\">The Basic Editor</link>"
+msgstr "<link href=\"text/sbasic/shared/01030200.xhp\" name=\"El editor de Basic\">El editor de Basic</link>"
+
+#: 01030200.xhp#par_id3145069.3.help.text
+msgid "The Basic Editor provides the standard editing functions you are familiar with when working in a text document. It supports the functions of the <emph>Edit</emph> menu (Cut, Delete, Paste), the ability to select text with the Shift key, as well as cursor positioning functions (for example, moving from word to word with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and the arrow keys)."
+msgstr "El Editor de Basic incluye las funciones de edición estándar familiares cuando se trabaja en un documento de texto. Admite las funciones del menú <emph>Editar</emph> (Cortar, Borrar, Pegar), la posibilidad de seleccionar texto con la tecla Shift, así como las funciones de posición del cursor (por ejemplo, moverse de palabra en palabra con <switchinline select=\"sys\"> <caseinline select=\"MAC\">Opción</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> y las teclas de cursor)."
+
+#: 01030200.xhp#par_id3154686.31.help.text
+msgid "Long lines can be split into several parts by inserting a space and an underline character _ as the last two characters of a line. This connects the line with the following line to one logical line. (If \"Option Compatible\" is used in the same Basic module, the line continuation feature is also valid for comment lines.)"
+msgstr "Las líneas largas pueden dividirse en varias partes insertando un espacio y un guión bajo (_) como los dos últimos caracteres de una línea. De este modo se conecta la línea con la siguiente en una línea lógica. (Si se usa \"Option Compatible\" en el mismo módulo Basic, la función de continuación de línea también es válida para líneas de comentario.)"
+
+#: 01030200.xhp#par_id3151042.32.help.text
+msgid "If you press the <emph>Run BASIC</emph> icon on the <emph>Macro</emph> bar, program execution starts at the first line of the Basic editor. The program executes the first Sub or Function and then program execution stops. The \"Sub Main\" does not take precedence on program execution."
+msgstr "Si precionas el icono <emph>Run BASIC</emph> en la barra de <emph>Macro</emph>, comienza el programa de ejecuciónen la primera linea del editor de Basic El programa ejecuta el primer Sub o Function y la ejecución para. El \"Sub Main\" no toma precedentes en la ejecución del programa."
+
+#: 01030200.xhp#par_id59816.help.text
+msgid "Insert your Basic code between the Sub Main and End Sub lines that you see when you first open the IDE. Alternatively, delete all lines and then enter your own Basic code."
+msgstr "Inserta tu codigo Basic entre las lineas de Sub Main y End Sub que vez cuando recien abres el IDE. Alternativamente, borra todas las lineas y despues ingresa tu código Basic."
+
+#: 01030200.xhp#hd_id3125863.4.help.text
+msgid "Navigating in a Project"
+msgstr "Navegación por un proyecto"
+
+#: 01030200.xhp#hd_id3145785.6.help.text
+msgid "The Library List"
+msgstr "La lista de bibliotecas"
+
+#: 01030200.xhp#par_id3146120.7.help.text
+msgid "Select a library from the <emph>Library</emph> list at the left of the toolbar to load the library in the editor. The first module of the selected library will be displayed."
+msgstr "Seleccione una biblioteca de la lista de <emph>Bibliotecas</emph> que se encuentra en la parte izquierda de la barra de herramientas para cargarla en el editor. Se mostrará el primer módulo de la biblioteca seleccionada."
+
+#: 01030200.xhp#hd_id3153190.8.help.text
+msgid "The Object Catalog"
+msgstr "El catálogo de objetos"
+
+#: 01030200.xhp#hd_id3148647.15.help.text
+msgid "Saving and Loading Basic Source Code"
+msgstr "Guardado y carga de código fuente Basic"
+
+#: 01030200.xhp#par_id3154320.16.help.text
+msgid "You can save Basic code in a text file for saving and importing in other programming systems."
+msgstr "$[officename] Basic permite exportar código de programa Basic a otros sistemas de programación o importarlo en formato ASCII."
+
+#: 01030200.xhp#par_id3149959.25.help.text
+msgid "You cannot save Basic dialogs to a text file."
+msgstr "Los diálogos de Basic no pueden guardarse en un archivo de texto."
+
+#: 01030200.xhp#hd_id3149403.17.help.text
+msgid "Saving Source Code to a Text File"
+msgstr "Guardado de código fuente en un archivo de texto"
+
+#: 01030200.xhp#par_id3150327.18.help.text
+msgid "Select the module that you want to export as text from the object catalog."
+msgstr "Seleccione el módulo que desee exportar como texto del catálogo de objetos."
+
+#: 01030200.xhp#par_id3150752.19.help.text
+msgid "Click the <emph>Save Source As</emph> icon in the Macro toolbar."
+msgstr "Pulse en el icono <emph>Guardar el texto fuente como</emph> de la barra de herramientas Macro."
+
+#: 01030200.xhp#par_id3154754.20.help.text
+msgid "Select a file name and click <emph>OK</emph> to save the file."
+msgstr "Seleccione un nombre de archivo y pulse en <emph>Aceptar</emph> para guardar el archivo."
+
+#: 01030200.xhp#hd_id3159264.21.help.text
+msgid "Loading Source Code From a Text File"
+msgstr "Carga de código fuente de un archivo de texto"
+
+#: 01030200.xhp#par_id3147343.22.help.text
+msgid "Select the module where you want to import the source code from the object catalog."
+msgstr "Seleccione el módulo al que desee importar el código fuente desde el catálogo de objetos."
+
+#: 01030200.xhp#par_id3145230.23.help.text
+msgid "Position the cursor where you want to insert the program code."
+msgstr "Sitúe el cursor donde desee insertar el código del programa."
+
+#: 01030200.xhp#par_id3149565.24.help.text
+msgid "Click the <emph>Insert Source Text</emph> icon in the Macro toolbar."
+msgstr "Pulse en el icono <emph>Insertar el texto fuente</emph> de la barra de herramientas Macro. En el diálogo siguiente, seleccione la ruta de acceso y el nombre del archivo que contiene el código del programa y pulse en <emph>Aceptar</emph>."
+
+#: 01030200.xhp#par_id3154020.33.help.text
+msgid "Select the text file containing the source code and click <emph>OK</emph>."
+msgstr "Seleccione el archivo de texto que contiene el código fuente y pulse en <emph>Aceptar</emph>."
+
+#: 01030200.xhp#par_id3153198.29.help.text
+msgctxt "01030200.xhp#par_id3153198.29.help.text"
+msgid "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
+msgstr "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\"><emph>IDE Basic</emph></link>"
+
+#: 03080202.xhp#tit.help.text
+msgid "Log Function [Runtime]"
+msgstr "Función Log [Ejecución]"
+
+#: 03080202.xhp#bm_id3149416.help.text
+msgid "<bookmark_value>Log function</bookmark_value>"
+msgstr "<bookmark_value>Log;función</bookmark_value>"
+
+#: 03080202.xhp#hd_id3149416.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080202.xhp\" name=\"Log Function [Runtime]\">Log Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080202.xhp\" name=\"Función Log [Runtime]\">Función Log [Ejecución]</link>"
+
+#: 03080202.xhp#par_id3145066.2.help.text
+msgid "Returns the natural logarithm of a number."
+msgstr "Devuelve el logaritmo natural de un número."
+
+#: 03080202.xhp#hd_id3159414.3.help.text
+msgctxt "03080202.xhp#hd_id3159414.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03080202.xhp#par_id3154760.4.help.text
+msgid "Log (Number)"
+msgstr "Log (Número)"
+
+#: 03080202.xhp#hd_id3149457.5.help.text
+msgctxt "03080202.xhp#hd_id3149457.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03080202.xhp#par_id3150791.6.help.text
+msgctxt "03080202.xhp#par_id3150791.6.help.text"
+msgid "Double"
+msgstr "Doble"
+
+#: 03080202.xhp#hd_id3151211.7.help.text
+msgctxt "03080202.xhp#hd_id3151211.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03080202.xhp#par_id3151041.8.help.text
+msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the natural logarithm for."
+msgstr "<emph>Número:</emph> Cualquier expresión numérica de la que se desee calcular el logaritmo natural."
+
+#: 03080202.xhp#par_id3150869.9.help.text
+msgid "The natural logarithm is the logarithm to the base e. Base e is a constant with an approximate value of 2.718282..."
+msgstr "El logaritmo natural es aquel cuya base es e. La base e es una constante con el valor aproximado de 2.718282..."
+
+#: 03080202.xhp#par_id3153968.10.help.text
+msgid "You can calculate logarithms to any base (n) for any number (x) by dividing the natural logarithm of x by the natural logarithm of n, as follows:"
+msgstr "Puede calcular logaritmos en cualquier base (n) para cualquier número (x) dividiendo el logaritmo natural de x por el logaritmo natural de n, como se muestra a continuación:"
+
+#: 03080202.xhp#par_id3145420.11.help.text
+msgid "Log n(x) = Log(x) / Log(n)"
+msgstr "Log n(x) = Log(x) / Log(n)"
+
+#: 03080202.xhp#hd_id3155131.12.help.text
+msgctxt "03080202.xhp#hd_id3155131.12.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03080202.xhp#par_id3152463.13.help.text
+msgctxt "03080202.xhp#par_id3152463.13.help.text"
+msgid "Sub ExampleLogExp"
+msgstr "Sub EjemploLogExp"
+
+#: 03080202.xhp#par_id3145750.14.help.text
+msgid "Dim a as Double"
+msgstr "Dim a as Double"
+
+#: 03080202.xhp#par_id3151116.15.help.text
+msgid "Dim const b1=12.345e12"
+msgstr "Dim const b1=12.345e12"
+
+#: 03080202.xhp#par_id3146985.16.help.text
+msgid "Dim const b2=1.345e34"
+msgstr "Dim const b2=1.345e34"
+
+#: 03080202.xhp#par_id3148616.17.help.text
+msgid "a=Exp( Log(b1)+Log(b2) )"
+msgstr "a=Exp( Log(b1)+Log(b2) )"
+
+#: 03080202.xhp#par_id3149262.18.help.text
+msgid "MsgBox \"\" & a & chr(13) & (b1*b2) ,0,\"Multiplication by logarithm function\""
+msgstr "MsgBox \"\" & a & chr(13) & (b1*b2) ,0,\"Multiplicación por función logarítmica\""
+
+#: 03080202.xhp#par_id3155411.19.help.text
+msgctxt "03080202.xhp#par_id3155411.19.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03102101.xhp#tit.help.text
+msgid "ReDim Statement [Runtime]"
+msgstr "Instrucción ReDim [Ejecución]"
+
+#: 03102101.xhp#bm_id3150398.help.text
+msgid "<bookmark_value>ReDim statement</bookmark_value>"
+msgstr "<bookmark_value>ReDim;instrucción</bookmark_value>"
+
+#: 03102101.xhp#hd_id3150398.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102101.xhp\" name=\"ReDim Statement [Runtime]\">ReDim Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102101.xhp\" name=\"ReDim Statement [Runtime]\">Instrucción ReDim [Ejecución]</link>"
+
+#: 03102101.xhp#par_id3154685.2.help.text
+msgctxt "03102101.xhp#par_id3154685.2.help.text"
+msgid "Declares a variable or an array."
+msgstr "Declara una variable o una matriz."
+
+#: 03102101.xhp#hd_id3154218.3.help.text
+msgctxt "03102101.xhp#hd_id3154218.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03102101.xhp#par_id3156214.4.help.text
+msgctxt "03102101.xhp#par_id3156214.4.help.text"
+msgid "[ReDim]Dim VarName [(start To end)] [As VarType][, VarName2 [(start To end)] [As VarType][,...]]"
+msgstr "[ReDim]Dim NombreVar [(inicio To final)] [As TipoVar][, NombreVar2 [(inicio To final)] [As TipoVar][,...]]"
+
+#: 03102101.xhp#par_id711996.help.text
+msgid "Optionally, you can add the <emph>Preserve</emph> keyword as a parameter to preserve the contents of the array that is redimensioned."
+msgstr "De forma opcional, puede agregar la palabra clave <emph>Preserve</emph> como parámetro para conservar el contenido de la matriz que se redimensiona."
+
+#: 03102101.xhp#hd_id3148451.5.help.text
+msgctxt "03102101.xhp#hd_id3148451.5.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03102101.xhp#par_id3156423.6.help.text
+msgctxt "03102101.xhp#par_id3156423.6.help.text"
+msgid "<emph>VarName:</emph> Any variable or array name."
+msgstr "<emph>NombreVar:</emph> Cualquier nombre de variable o de matriz."
+
+#: 03102101.xhp#par_id3149562.7.help.text
+msgctxt "03102101.xhp#par_id3149562.7.help.text"
+msgid "<emph>Start, End:</emph> Numerical values or constants that define the number of elements (NumberElements=(end-start)+1) and the index range."
+msgstr "<emph>Inicio, Final:</emph> Valores numéricos o constantes que definen el número de elementos (NúmeroElementos=(final-inicio)+1) y el rango del índice."
+
+#: 03102101.xhp#par_id3155307.8.help.text
+msgid "Start and End can be numeric expressions if ReDim is used at the procedure level."
+msgstr "Inicio y Final pueden ser expresiones numéricas si se usa ReDim a nivel de prodecimiento."
+
+#: 03102101.xhp#par_id3153951.9.help.text
+msgid "<emph>VarType:</emph> Keyword that declares the data type of a variable."
+msgstr "<emph>TipoVar:</emph> Palabra clave que declara el tipo de datos de una variable."
+
+#: 03102101.xhp#par_id3147317.10.help.text
+msgctxt "03102101.xhp#par_id3147317.10.help.text"
+msgid "<emph>Keyword:</emph> Variable type"
+msgstr "<emph>Palabra clave:</emph> Tipo de variable"
+
+#: 03102101.xhp#par_id3153728.11.help.text
+msgid "<emph>Bool: </emph>Boolean variable (True, False)"
+msgstr "<emph>Lógico: </emph> Variable lógica (True, False)"
+
+#: 03102101.xhp#par_id3146121.12.help.text
+msgctxt "03102101.xhp#par_id3146121.12.help.text"
+msgid "<emph>Date:</emph> Date variable"
+msgstr "<emph>Fecha:</emph> Variable de fecha"
+
+#: 03102101.xhp#par_id3159156.13.help.text
+msgid "<emph>Double:</emph> Double floating point variable (1.79769313486232x10E308 - 4.94065645841247x10E-324)"
+msgstr "<emph>Doble:</emph> Variable de precisión doble y coma flotante (1,79769313486232 x 10E308 -4,94065645841247 x 10E-324)"
+
+#: 03102101.xhp#par_id3148616.14.help.text
+msgctxt "03102101.xhp#par_id3148616.14.help.text"
+msgid "<emph>Integer:</emph> Integer variable (-32768 - 32767)"
+msgstr "<emph>Entero:</emph> Variable entera (-32768 - 32767)"
+
+#: 03102101.xhp#par_id3147348.15.help.text
+msgid "<emph>Long:</emph> Long integer variable (-2,147,483,648 - 2,147,483,647)"
+msgstr "<emph>Largo:</emph> Variable larga (-2.147.483.648 -2.147.483.647)"
+
+#: 03102101.xhp#par_id3149412.16.help.text
+msgid "<emph>Object:</emph> Object variable (can only be subsequently defined by Set!)"
+msgstr "<emph>Objeto:</emph> Variable de objeto (sólo puede definirse a partir de este momento con la instrucción Set)."
+
+#: 03102101.xhp#par_id3154729.17.help.text
+msgid "<emph>[Single]:</emph> Single floating-point variable (3.402823x10E38 - 1.401298x10E-45). If no key word is specified, a variable is defined as Single, unless a statement from DefBool to DefVar is used."
+msgstr "<emph>[Simple]:</emph> Variable de precisión simple y coma flotante (3,402823 x 10E308 -1,401298 x 10E-45). Si no se especifica ninguna palabra clave, las variables se definen como de tipo Simple, a menos que se use una instrucción desde DefBool a DefVar."
+
+#: 03102101.xhp#par_id3148458.18.help.text
+msgid "<emph>String:</emph> String variable containing a maximum of 64,000 ASCII characters."
+msgstr "<emph>Cadena:</emph> Variable de cadena que se compone de un máximo de 64.000 caracteres ASCII."
+
+#: 03102101.xhp#par_id3149581.19.help.text
+msgid "<emph>Variant: </emph>Variant variable type (can contain all types and is set by definition)."
+msgstr "<emph>Variante: </emph> Tipo de variable variante (puede contener todos los tipos y se especifica por definición)."
+
+#: 03102101.xhp#par_id3155601.20.help.text
+msgctxt "03102101.xhp#par_id3155601.20.help.text"
+msgid "In $[officename] Basic, you do not need to declare variables explicitly. However, you need to declare an array before you can use them. You can declare a variable with the Dim statement, using commas to separate multiple declarations. To declare a variable type, enter a type-declaration character following the name or use a corresponding key word."
+msgstr "En $[officename] Basic no es necesario declarar variables explícitamente. Sin embargo, es necesario declarar las matrices antes de poder usarlas. Puede declarar una variable con la instrucción Dim, usando comas para separar múltiples declaraciones. Para declarar un tipo de variable, escriba un carácter de declaración de tipo seguido del nombre o use la palabra clave correspondiente."
+
+#: 03102101.xhp#par_id3153415.21.help.text
+msgctxt "03102101.xhp#par_id3153415.21.help.text"
+msgid "$[officename] Basic supports single or multi-dimensional arrays that are defined by a specified variable type. Arrays are suitable if the program contains lists or tables that you want to edit. The advantage of arrays is that it is possible to address individual elements according to indexes, which can be formulated as numeric expressions or variables."
+msgstr "$[officename] Basic admite matrices de una o varias dimensiones, definidas por un tipo de variable especificado. Las matrices son útiles si el programa contiene listas o tablas que se desee editar. La ventaja de las matrices es que es posible acceder a elementos individuales utilizando índices, los cuales pueden formularse como expresiones o variables numéricas."
+
+#: 03102101.xhp#par_id3146971.22.help.text
+msgid "There are two ways to set the range of indices for arrays declared with the Dim statement:"
+msgstr "Hay dos formas de establecer el rango de índices para matrices declaradas con la instrucción Dim:"
+
+#: 03102101.xhp#par_id3153950.23.help.text
+msgid "DIM text(20) As String REM 21 elements numbered from 0 to 20"
+msgstr "DIM texto(20) as String REM 21 elementos numerados del 0 al 20"
+
+#: 03102101.xhp#par_id3146912.24.help.text
+msgid "DIM text(5 to 25) As String REM 21 elements numbered from 5 to 25"
+msgstr "DIM texto(5 to 25) As String REM 21 elementos numerados del 5 al 25"
+
+#: 03102101.xhp#par_id3153709.25.help.text
+msgid "DIM text$(-15 to 5) As String REM 21 elements (0 inclusive),"
+msgstr "DIM texto$(-15 to 5) as String REM 21 elementos (incluido el 0),"
+
+#: 03102101.xhp#par_id3150321.26.help.text
+msgid "rem numbered from -15 to 5"
+msgstr "REM numerados del -15 al 5"
+
+#: 03102101.xhp#par_id3149018.27.help.text
+msgid "Variable fields, regardless of type, can be made dynamic if they are dimensioned by ReDim at the procedure level in subroutines or functions. Normally, you can only set the range of an array once and you cannot modify it. Within a procedure, you can declare an array using the ReDim statement with numeric expressions to define the range of the field sizes."
+msgstr "Los campos de variables, cualquiera que sea su tipo, pueden hacerse dinámicos si los dimensiona ReDim a nivel de procedimiento en subrutinas o funciones. Normalmente sólo puede definirse el rango de una matriz una vez y no puede modificarse. Dentro de un procedimiento, pueden declararse matrices mediante la instrucción ReDim con expresiones numéricas para definir el rango de los tamaños de campo."
+
+#: 03102101.xhp#hd_id3148405.28.help.text
+msgctxt "03102101.xhp#hd_id3148405.28.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03102101.xhp#par_id3154362.29.help.text
+msgid "Sub ExampleRedim"
+msgstr "Sub EjemploRedim"
+
+#: 03102101.xhp#par_id3150042.30.help.text
+msgid "Dim iVar() As Integer, iCount As Integer"
+msgstr "Dim iVar() As Integer, iContador As Integer"
+
+#: 03102101.xhp#par_id3147339.31.help.text
+msgid "ReDim iVar(5) As integer"
+msgstr "ReDim iVar(5) As integer"
+
+#: 03102101.xhp#par_id3149106.32.help.text
+msgid "For iCount = 1 To 5"
+msgstr "For iContador = 1 To 5"
+
+#: 03102101.xhp#par_id3155174.33.help.text
+msgctxt "03102101.xhp#par_id3155174.33.help.text"
+msgid "iVar(iCount) = iCount"
+msgstr "iVar(iContador) = iContador"
+
+#: 03102101.xhp#par_id3163805.34.help.text
+msgctxt "03102101.xhp#par_id3163805.34.help.text"
+msgid "Next iCount"
+msgstr "Next iContador"
+
+#: 03102101.xhp#par_id3149568.35.help.text
+msgid "ReDim iVar(10) As integer"
+msgstr "ReDim iVar(10) As integer"
+
+#: 03102101.xhp#par_id3147364.36.help.text
+msgid "For iCount = 1 To 10"
+msgstr "For iContador = 1 To 10"
+
+#: 03102101.xhp#par_id3155335.37.help.text
+msgctxt "03102101.xhp#par_id3155335.37.help.text"
+msgid "iVar(iCount) = iCount"
+msgstr "iVar(iContador) = iContador"
+
+#: 03102101.xhp#par_id3154662.38.help.text
+msgctxt "03102101.xhp#par_id3154662.38.help.text"
+msgid "Next iCount"
+msgstr "Next iContador"
+
+#: 03102101.xhp#par_id3149926.39.help.text
+msgctxt "03102101.xhp#par_id3149926.39.help.text"
+msgid "end sub"
+msgstr "End Sub"
+
+#: 01020500.xhp#tit.help.text
+msgid "Libraries, Modules and Dialogs"
+msgstr "Bibliotecas, módulos y diálogos"
+
+#: 01020500.xhp#hd_id3147317.1.help.text
+msgid "<link href=\"text/sbasic/shared/01020500.xhp\" name=\"Libraries, Modules and Dialogs\">Libraries, Modules and Dialogs</link>"
+msgstr "<link href=\"text/sbasic/shared/01020500.xhp\" name=\"Bibliotecas, módulos y diálogos\">Bibliotecas, módulos y diálogos</link>"
+
+#: 01020500.xhp#par_id3147427.2.help.text
+msgid "The following describes the basic use of libraries, modules and dialogs in $[officename] Basic."
+msgstr "A continuación se describe el uso básico de bibliotecas, módulos y diálogos en $[officename] Basic."
+
+#: 01020500.xhp#par_id3146120.3.help.text
+msgid "$[officename] Basic provides tools to help you structuring your projects. It supports various \"units\" which enable you to group individual SUBS and FUNCTIONS in a Basic project."
+msgstr "$[officename] Basic ofrece herramientas de ayuda para estructurar los proyectos. Admite varias \"unidades\" que permiten agrupar SUBS y FUNCIONES individuales en un proyecto Basic."
+
+#: 01020500.xhp#hd_id3148575.5.help.text
+msgid "Libraries"
+msgstr "Bibliotecas"
+
+#: 01020500.xhp#par_id3150011.6.help.text
+msgid "Libraries serve as a tool for organizing modules, and can either be attached to a document or a template. When the document or a template is saved, all modules contained in the library are automatically saved as well."
+msgstr "Las bibliotecas sirven como herramienta para organizar módulos y pueden adjuntarse a un documento o una plantilla. Cuando se guarda el documento o plantilla, todos los módulos que contienen también se guardan."
+
+#: 01020500.xhp#par_id3151112.7.help.text
+msgid "A library can contain up to 16,000 modules."
+msgstr "Una biblioteca puede contener hasta 16.000 módulos."
+
+#: 01020500.xhp#hd_id3149262.8.help.text
+msgctxt "01020500.xhp#hd_id3149262.8.help.text"
+msgid "Modules"
+msgstr "Módulos"
+
+#: 01020500.xhp#par_id3156441.9.help.text
+msgid "A module contains SUBS and FUNCTIONS along with variable declarations. The length of the program that can be saved in a module is limited to 64 KB. If more space is required you can divide a $[officename] Basic project among several modules, and then save them in a single library."
+msgstr "Un módulo contiene SUBS y FUNCIONES junto con declaraciones de variables. La longitud del programa que puede guardarse en un módulo está limitada a 64 KB. Si se requiere más espacio, se puede dividir un proyecto de $[officename] en varios módulos y después guardarlos en una única biblioteca."
+
+#: 01020500.xhp#hd_id3152577.11.help.text
+msgid "Dialog Modules"
+msgstr "Módulos de diálogo"
+
+#: 01020500.xhp#par_id3149377.12.help.text
+msgid "Dialog modules contain dialog definitions, including the dialog box properties, the properties of each dialog element and the events assigned. Since a dialog module can only contain a single dialog, they are often referred to as \"dialogs\"."
+msgstr "Los módulos de diálogo combinan en un único módulo la estructura de todos los cuadros de diálogo, las propiedades de todos los elementos del diálogo y las acciones asignadas a SUBS. Debido a que los módulos de diálogo sólo pueden contener un único diálogo, a menudo se les denomina \"diálogos\"."
+
+#: main0211.xhp#tit.help.text
+msgid "Macro Toolbar"
+msgstr "Barra de herramientas de macros"
+
+#: main0211.xhp#bm_id3150543.help.text
+msgid "<bookmark_value>toolbars; Basic IDE</bookmark_value><bookmark_value>macro toolbar</bookmark_value>"
+msgstr "<bookmark_value>barras de herramientas; Basic IDE</bookmark_value><bookmark_value>barra de funciones; macros</bookmark_value><bookmark_value>macros; barra de funciones</bookmark_value>"
+
+#: main0211.xhp#hd_id3150543.1.help.text
+msgid "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\">Macro Toolbar</link>"
+msgstr "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\">Barra de herramientas de macros</link>"
+
+#: main0211.xhp#par_id3147288.2.help.text
+msgid "<ahelp visibility=\"visible\" hid=\".uno:MacroBarVisible\">The <emph>Macro Toolbar </emph>contains commands to create, edit, and run macros.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:MacroBarVisible\">La <emph>Barra de herramientas de macros</emph> contiene órdenes para crear, editar y ejecutar macros.</ahelp>"
+
+#: 03020410.xhp#tit.help.text
+msgid "Kill Statement [Runtime]"
+msgstr "Instrucción Kill [Ejecución]"
+
+#: 03020410.xhp#bm_id3153360.help.text
+msgid "<bookmark_value>Kill statement</bookmark_value>"
+msgstr "<bookmark_value>Kill;instrucción</bookmark_value>"
+
+#: 03020410.xhp#hd_id3153360.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020410.xhp\" name=\"Kill Statement [Runtime]\">Kill Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020410.xhp\" name=\"Declaración Kill [Runtime]\">Declaración Kill [Runtime]</link>"
+
+#: 03020410.xhp#par_id3151211.2.help.text
+msgid "Deletes a file from a disk."
+msgstr "Borra un archivo de un disco."
+
+#: 03020410.xhp#hd_id3150767.3.help.text
+msgctxt "03020410.xhp#hd_id3150767.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03020410.xhp#par_id3154685.4.help.text
+msgid "Kill File As String"
+msgstr "Kill Archivo As String"
+
+#: 03020410.xhp#hd_id3153194.5.help.text
+msgctxt "03020410.xhp#hd_id3153194.5.help.text"
+msgid "Parameters:"
+msgstr "<emph>Parámetro</emph>:"
+
+#: 03020410.xhp#par_id3150440.6.help.text
+msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>Archivo:</emph> Cualquier expresión de cadena que contenga una especificación de archivo inequívoca. También se puede usar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notación URL\">notación URL</link>."
+
+#: 03020410.xhp#hd_id3148645.7.help.text
+msgctxt "03020410.xhp#hd_id3148645.7.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03020410.xhp#par_id3154320.8.help.text
+msgid "sub ExampleKill"
+msgstr "sub EjemploKill"
+
+#: 03020410.xhp#par_id3163710.9.help.text
+msgid "Kill \"C:\\datafile.dat\" REM File must be created in advance"
+msgstr "Kill \"C:\\datafile.dat\" REM El archivo debe crearse con anterioridad"
+
+#: 03020410.xhp#par_id3145749.10.help.text
+msgctxt "03020410.xhp#par_id3145749.10.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03103000.xhp#tit.help.text
+msgid "UBound Function [Runtime]"
+msgstr "Función Ubound [Ejecución]"
+
+#: 03103000.xhp#bm_id3148538.help.text
+msgid "<bookmark_value>UBound function</bookmark_value>"
+msgstr "<bookmark_value>UBound;función</bookmark_value>"
+
+#: 03103000.xhp#hd_id3148538.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103000.xhp\" name=\"UBound Function [Runtime]\">UBound Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103000.xhp\" name=\"UBound Function [Runtime]\">Función Ubound [Ejecución]</link>"
+
+#: 03103000.xhp#par_id3147573.2.help.text
+msgid "Returns the upper boundary of an array."
+msgstr "Devuelve el límite superior de una matriz."
+
+#: 03103000.xhp#hd_id3150984.3.help.text
+msgctxt "03103000.xhp#hd_id3150984.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03103000.xhp#par_id3149415.4.help.text
+msgid "UBound (ArrayName [, Dimension])"
+msgstr "UBound (NombreMatriz [, Dimensión])"
+
+#: 03103000.xhp#hd_id3153897.5.help.text
+msgctxt "03103000.xhp#hd_id3153897.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03103000.xhp#par_id3149670.6.help.text
+msgctxt "03103000.xhp#par_id3149670.6.help.text"
+msgid "Integer"
+msgstr "Entero"
+
+#: 03103000.xhp#hd_id3154347.7.help.text
+msgctxt "03103000.xhp#hd_id3154347.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03103000.xhp#par_id3153381.8.help.text
+msgid "<emph>ArrayName:</emph> Name of the array for which you want to determine the upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) boundary."
+msgstr "<emph>NombreMatriz:</emph> Nombre de la matriz para la que se desea determinar el límite superior (<emph>Ubound</emph>) o inferior (<emph>LBound</emph>)."
+
+#: 03103000.xhp#par_id3148797.9.help.text
+msgid "<emph>[Dimension]:</emph> Integer that specifies which dimension to return the upper(<emph>Ubound</emph>) or lower (<emph>LBound</emph>) boundary for. If no value is specified, the boundary of the first dimension is returned."
+msgstr "<emph>[Dimensión]:</emph> Número entero que especifica para qué dimensión se desea que se devuelva el límite superior (<emph>Ubound</emph>) o inferior (<emph>LBound</emph>). Si no se especifica ningún valor se devuelve el límite de la primera dimensión."
+
+#: 03103000.xhp#hd_id3153192.10.help.text
+msgctxt "03103000.xhp#hd_id3153192.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03103000.xhp#par_id3147229.11.help.text
+msgctxt "03103000.xhp#par_id3147229.11.help.text"
+msgid "Sub ExampleUboundLbound"
+msgstr "Sub EjemploUboundLbound"
+
+#: 03103000.xhp#par_id3150440.12.help.text
+msgctxt "03103000.xhp#par_id3150440.12.help.text"
+msgid "Dim sVar(10 to 20) As String"
+msgstr "Dim sVar(10 to 20) As String"
+
+#: 03103000.xhp#par_id3145785.13.help.text
+msgctxt "03103000.xhp#par_id3145785.13.help.text"
+msgid "print LBound(sVar())"
+msgstr "print LBound(sVar())"
+
+#: 03103000.xhp#par_id3153092.14.help.text
+msgctxt "03103000.xhp#par_id3153092.14.help.text"
+msgid "print UBound(sVar())"
+msgstr "print UBound(sVar())"
+
+#: 03103000.xhp#par_id3153727.15.help.text
+msgctxt "03103000.xhp#par_id3153727.15.help.text"
+msgid "end Sub"
+msgstr "end sub"
+
+#: 03103000.xhp#par_id3145271.16.help.text
+msgctxt "03103000.xhp#par_id3145271.16.help.text"
+msgid "Sub ExampleUboundLbound2"
+msgstr "Sub EjemploUboundLbound2"
+
+#: 03103000.xhp#par_id3153952.17.help.text
+msgctxt "03103000.xhp#par_id3153952.17.help.text"
+msgid "Dim sVar(10 to 20,5 To 70) As String"
+msgstr "Dim sVar(10 to 20,5 To 70) As String"
+
+#: 03103000.xhp#par_id3152596.18.help.text
+msgctxt "03103000.xhp#par_id3152596.18.help.text"
+msgid "Print LBound(sVar()) REM Returns 10"
+msgstr "Print LBound(sVar()) REM Devuelve 10"
+
+#: 03103000.xhp#par_id3153138.19.help.text
+msgctxt "03103000.xhp#par_id3153138.19.help.text"
+msgid "Print UBound(sVar()) REM Returns 20"
+msgstr "Print UBound(sVar()) REM Devuelve 20"
+
+#: 03103000.xhp#par_id3149665.20.help.text
+msgctxt "03103000.xhp#par_id3149665.20.help.text"
+msgid "Print LBound(sVar(),2) REM Returns 5"
+msgstr "Print LBound(sVar(),2) REM Devuelve 5"
+
+#: 03103000.xhp#par_id3147214.21.help.text
+msgctxt "03103000.xhp#par_id3147214.21.help.text"
+msgid "Print UBound(sVar(),2) REM Returns 70"
+msgstr "Print UBound(sVar(),2) REM Devuelve 70"
+
+#: 03103000.xhp#par_id3155855.22.help.text
+msgctxt "03103000.xhp#par_id3155855.22.help.text"
+msgid "end Sub"
+msgstr "end sub"
+
+#: 01020300.xhp#tit.help.text
+msgid "Using Procedures and Functions"
+msgstr "Uso de procedimientos y funciones"
+
+#: 01020300.xhp#bm_id3149456.help.text
+msgid "<bookmark_value>procedures</bookmark_value><bookmark_value>functions;using</bookmark_value><bookmark_value>variables;passing to procedures and functions</bookmark_value><bookmark_value>parameters;for procedures and functions</bookmark_value><bookmark_value>parameters;passing by reference or value</bookmark_value><bookmark_value>variables;scope</bookmark_value><bookmark_value>scope of variables</bookmark_value><bookmark_value>GLOBAL variables</bookmark_value><bookmark_value>PUBLIC variables</bookmark_value><bookmark_value>PRIVATE variables</bookmark_value><bookmark_value>functions;return value type</bookmark_value><bookmark_value>return value type of functions</bookmark_value>"
+msgstr "<bookmark_value>procedimientos;uso</bookmark_value><bookmark_value>funciones;uso</bookmark_value>"
+
+#: 01020300.xhp#hd_id3149456.1.help.text
+msgid "<link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures and Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/01020300.xhp\">Uso de procedimientos y funciones</link>"
+
+#: 01020300.xhp#par_id3150767.2.help.text
+msgid "The following describes the basic use of procedures and functions in $[officename] Basic."
+msgstr "A continuación se describe el uso básico de procedimientos y funciones en $[officename] Basic."
+
+#: 01020300.xhp#par_id3151215.56.help.text
+msgid "When you create a new module, $[officename] Basic automatically inserts a SUB called \"Main\". This default name has nothing to do with the order or the starting point of a $[officename] Basic project. You can also safely rename this SUB."
+msgstr "Cuando se crea un módulo nuevo, $[officename] Basic inserta automáticamente una SUB llamada \"Main\". Este nombre predeterminado no tiene nada que ver con el orden o el punto de inicio de un proyecto de $[officename] Basic. Se puede cambiar sin problemas."
+
+#: 01020300.xhp#par_id314756320.help.text
+msgctxt "01020300.xhp#par_id314756320.help.text"
+msgid "Some restrictions apply for the names of your public variables, subs, and functions. You must not use the same name as one of the modules of the same library."
+msgstr "Se aplican algunas restricciones para los nombres de sus variables públicas, procedimientos y funciones. No debe utilizar el mismo nombre que uno de los módulos de la misma biblioteca."
+
+#: 01020300.xhp#par_id3154124.3.help.text
+msgid "Procedures (SUBS) and functions (FUNCTIONS) help you maintaining a structured overview by separating a program into logical pieces."
+msgstr "Los procedimientos (SUBS) y funciones (FUNCTIONS) ayudan a mantener un aspecto estructurado separando un programa en partes lógicas."
+
+#: 01020300.xhp#par_id3153193.4.help.text
+msgid "One benefit of procedures and functions is that, once you have developed a program code containing task components, you can use this code in another project."
+msgstr "Una ventaja de los procedimientos y funciones es que en cuanto se desarrolla un código de programa que contiene componentes de tarea, éste puede usarse en otro proyecto."
+
+#: 01020300.xhp#hd_id3153770.26.help.text
+msgid "Passing Variables to Procedures (SUB) and Functions (FUNCTION)"
+msgstr "Paso de variables a procedimientos (SUB) y funciones (FUNCTION)"
+
+#: 01020300.xhp#par_id3155414.27.help.text
+msgid "Variables can be passed to both procedures and functions. The SUB or FUNCTION must be declared to expect parameters:"
+msgstr "Las variables pueden pasarse a procedimientos y funciones. SUB o FUNCTION deben estar declarados para que se les pueda pasar parámetros:"
+
+#: 01020300.xhp#par_id3163710.28.help.text
+msgid "SUB SubName(<emph>Parameter1 As Type, Parameter2 As Type,...</emph>)"
+msgstr "SUB NombreSub(<emph>Parametro1 As Tipo, Parámetro2 As Tipo,...</emph>)"
+
+#: 01020300.xhp#par_id3151114.29.help.text
+msgctxt "01020300.xhp#par_id3151114.29.help.text"
+msgid "Program code"
+msgstr "Código de programa"
+
+#: 01020300.xhp#par_id3146975.30.help.text
+msgid "END SUB"
+msgstr "End Sub"
+
+#: 01020300.xhp#par_id3152577.31.help.text
+msgid "The SUB is called using the following syntax:"
+msgstr "A SUB se le llama mediante la sintaxis siguiente"
+
+#: 01020300.xhp#par_id3159154.32.help.text
+msgid "SubName(Value1, Value2,...)"
+msgstr "NombreSub(Valor1, Valor2,...)"
+
+#: 01020300.xhp#par_id3147124.33.help.text
+msgid "The parameters passed to a SUB must fit to those specified in the SUB declaration."
+msgstr "Los parámetros que se pasan a SUB deben coincidir con los especificados en la declaración de SUB."
+
+#: 01020300.xhp#par_id3147397.34.help.text
+msgid "The same process applies to FUNCTIONS. In addition, functions always return a function result. The result of a function is defined by assigning the return value to the function name:"
+msgstr "El mismo proceso se aplica a FUNCTION, para que devuelva el resultado de la función. Éste puede definirse justo antes de llegar al final de la función, asignando el nombre de ésta y un parámetro al valor que la función devolverá (ver ejemplo)."
+
+#: 01020300.xhp#par_id3149412.35.help.text
+msgid "FUNCTION FunctionName(Parameter1 As Type, Parameter2 As Type,...) As Type"
+msgstr "FUNCTION NombreFunción(Parámetro1 As Tipo, Parámetro2 As Tipo,...) As Tipo"
+
+#: 01020300.xhp#par_id3156284.36.help.text
+msgctxt "01020300.xhp#par_id3156284.36.help.text"
+msgid "Program code"
+msgstr "Código de programa"
+
+#: 01020300.xhp#par_id3145799.37.help.text
+msgid "<emph>FunctionName=Result</emph>"
+msgstr "<emph>NombreFunción=Resultado</emph>"
+
+#: 01020300.xhp#par_id3150716.38.help.text
+msgctxt "01020300.xhp#par_id3150716.38.help.text"
+msgid "End Function"
+msgstr "End Function"
+
+#: 01020300.xhp#par_id3153839.39.help.text
+msgid "The FUNCTION is called using the following syntax:"
+msgstr "A FUNCTION se la llama mediante la sintaxis siguiente:"
+
+#: 01020300.xhp#par_id3146914.40.help.text
+msgid "Variable=FunctionName(Parameter1, Parameter2,...)"
+msgstr "Variable=NombreFunción(Parámetro1, Parámetro2,...)"
+
+#: 01020300.xhp#par_idN107B3.help.text
+msgid "You can also use the fully qualified name to call a procedure or function:<br/><item type=\"literal\">Library.Module.Macro()</item><br/> For example, to call the Autotext macro from the Gimmicks library, use the following command:<br/><item type=\"literal\">Gimmicks.AutoText.Main()</item>"
+msgstr "Asimismo, puede utilizar el nombre completo para llamar a un procedimiento o función:<br/><item type=\"literal\">Library.Module.Macro()</item><br/> Por ejemplo, para llamar a la macro AutoTexto desde la biblioteca Gimmicks, utilice el comando siguiente:<br/><item type=\"literal\">Gimmicks.AutoText.Main()</item>"
+
+#: 01020300.xhp#hd_id3156276.45.help.text
+msgid "Passing Variables by Value or Reference"
+msgstr "Paso de variables por valor o por referencia"
+
+#: 01020300.xhp#par_id3155765.47.help.text
+msgid "Parameters can be passed to a SUB or a FUNCTION either by reference or by value. Unless otherwise specified, a parameter is always passed by reference. That means that a SUB or a FUNCTION gets the parameter and can read and modify its value."
+msgstr "Los parámetros pueden pasarse a SUB o FUNCTION por referencia o por valor. A menos que se especifique de otra forma, los parámetros siempre se pasan por referencia. Esto significa que SUB o FUNCTION obtienen el parámetro y que su valor se puede leer y modificar."
+
+#: 01020300.xhp#par_id3145640.53.help.text
+msgid "If you want to pass a parameter by value insert the key word \"ByVal\" in front of the parameter when you call a SUB or FUNCTION, for example:"
+msgstr "Para pasar un parámetro por valor se inserta la palabra clave \"ByVal\" delante del parámetro cuando se llama a una SUB o FUNCTION, por ejemplo:"
+
+#: 01020300.xhp#par_id3150042.54.help.text
+msgid "Result = Function(<emph>ByVal</emph> Parameter)"
+msgstr "Resultado = Función(<emph>ByVal</emph> Parámetro)"
+
+#: 01020300.xhp#par_id3149258.55.help.text
+msgid "In this case, the original content of the parameter will not be modified by the FUNCTION since it only gets the value and not the parameter itself."
+msgstr "En este caso, FUNCTION no modificará el contenido original del parámetro ya que sólo obtiene el valor y no el parámetro en sí."
+
+#: 01020300.xhp#hd_id3150982.57.help.text
+msgid "Scope of Variables"
+msgstr "Ámbito de variables"
+
+#: 01020300.xhp#par_id3149814.58.help.text
+msgid "A variable defined within a SUB or FUNCTION, only remains valid until the procedure is exited. This is known as a \"local\" variable. In many cases, you need a variable to be valid in all procedures, in every module of all libraries, or after a SUB or FUNCTION is exited."
+msgstr "Un variable definido dentro un SUB o FUNCTION, esta valido solamente dentro de la función. Se lo conoce como un variable \"local\". En algunas casos, necesita un variable que es valido en todos los procedimientos, en todos los módulos de los bibliotecas, o después que haya salida del SUB o FUNCTION."
+
+#: 01020300.xhp#hd_id3154186.59.help.text
+msgid "Declaring Variables Outside a SUB or FUNCTION"
+msgstr "Declaración de variables desde fuera de SUB o FUNCTION"
+
+#: 01020300.xhp#par_id3150208.111.help.text
+msgid "GLOBAL VarName As TYPENAME"
+msgstr "GLOBAL NombreVariable As TYPENAME"
+
+#: 01020300.xhp#par_id3145258.112.help.text
+msgid "The variable is valid as long as the $[officename] session lasts."
+msgstr "La variable es válida durante toda la sesión de $[officename]."
+
+#: 01020300.xhp#par_id3153198.60.help.text
+msgid "PUBLIC VarName As TYPENAME"
+msgstr "PUBLIC NombreVariable As TYPENAME"
+
+#: 01020300.xhp#par_id3150088.61.help.text
+msgid "The variable is valid in all modules."
+msgstr "La variable es válida en todos los módulos."
+
+#: 01020300.xhp#par_id3158212.62.help.text
+msgid "PRIVATE VarName As TYPENAME"
+msgstr "PRIVATE NombreVariable As TYPENAME"
+
+#: 01020300.xhp#par_id3152994.63.help.text
+msgctxt "01020300.xhp#par_id3152994.63.help.text"
+msgid "The variable is only valid in this module."
+msgstr "La variable sólo es válida en este módulo."
+
+#: 01020300.xhp#par_id3150886.64.help.text
+msgid "DIM VarName As TYPENAME"
+msgstr "DIM NombreVar As NOMBRETIPO"
+
+#: 01020300.xhp#par_id3150368.65.help.text
+msgctxt "01020300.xhp#par_id3150368.65.help.text"
+msgid "The variable is only valid in this module."
+msgstr "La variable sólo es válida en este módulo."
+
+#: 01020300.xhp#hd_id5097506.help.text
+msgid "Example for private variables"
+msgstr "Ejemplo para variables privadas"
+
+#: 01020300.xhp#par_id8738975.help.text
+msgid "Enforce private variables to be private across modules by setting CompatibilityMode(true)."
+msgstr "Forza variables privadas permanecer privadas configurando el modulo de compatibilidad como verdadero CompatibilityMode(true)."
+
+#: 01020300.xhp#par_id146488.help.text
+msgid "REM ***** Module1 *****"
+msgstr "REM ***** Module1 *****"
+
+#: 01020300.xhp#par_id2042298.help.text
+msgid "Private myText As String"
+msgstr "Private myText As String"
+
+#: 01020300.xhp#par_id2969756.help.text
+msgid "Sub initMyText"
+msgstr "Sub initMyText"
+
+#: 01020300.xhp#par_id9475997.help.text
+msgid "myText = \"Hello\""
+msgstr "myText = \"Hello\""
+
+#: 01020300.xhp#par_id6933500.help.text
+msgid "print \"in module1 : \", myText"
+msgstr "print \"in module1 : \", myText"
+
+#: 01020300.xhp#par_id631733.help.text
+msgctxt "01020300.xhp#par_id631733.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 01020300.xhp#par_id8234199.help.text
+msgid "REM ***** Module2 *****"
+msgstr "REM ***** Module2 *****"
+
+#: 01020300.xhp#par_id6969512.help.text
+msgid "'Option Explicit"
+msgstr "'Opción Explicita"
+
+#: 01020300.xhp#par_id1196935.help.text
+msgid "Sub demoBug"
+msgstr "Sub demoBug"
+
+#: 01020300.xhp#par_id1423993.help.text
+msgid "CompatibilityMode( true )"
+msgstr "CompatibilityMode( true )"
+
+#: 01020300.xhp#par_id6308786.help.text
+msgid "initMyText"
+msgstr "initMyText"
+
+#: 01020300.xhp#par_id4104129.help.text
+msgid "' Now returns empty string"
+msgstr "' Ahora regresa una cadena vacia"
+
+#: 01020300.xhp#par_id7906125.help.text
+msgid "' (or rises error for Option Explicit)"
+msgstr "' (o se eleva el error para Opción Explicita)"
+
+#: 01020300.xhp#par_id8055970.help.text
+msgid "print \"Now in module2 : \", myText"
+msgstr "print \"Now in module2 : \", myText"
+
+#: 01020300.xhp#par_id2806176.help.text
+msgctxt "01020300.xhp#par_id2806176.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 01020300.xhp#hd_id3154368.66.help.text
+msgid "Saving Variable Content after Exiting a SUB or FUNCTION"
+msgstr "Guardado de contenido de variables después de salir de SUB o FUNCTION"
+
+#: 01020300.xhp#par_id3156288.67.help.text
+msgid "STATIC VarName As TYPENAME"
+msgstr "STATIC NombreVariable As TYPENAME"
+
+#: 01020300.xhp#par_id3154486.68.help.text
+msgid "The variable retains its value until the next time the FUNCTION or SUB is entered. The declaration must exist inside a SUB or a FUNCTION."
+msgstr "La variable conserva su valor hasta la próxima vez que se entre en la FUNCTION o SUB. La declaración debe existir dentro de SUB o FUNCTION."
+
+#: 01020300.xhp#hd_id3155809.41.help.text
+msgid "Specifying the Return Value Type of a FUNCTION"
+msgstr "Especificación del tipo de valor de retorno de una FUNCTION"
+
+#: 01020300.xhp#par_id3149404.42.help.text
+msgid "As with variables, include a type-declaration character after the function name, or the type indicated by \"As\" and the corresponding key word at the end of the parameter list to define the type of the function's return value, for example:"
+msgstr "Al igual que con las variables, incluya un carácter de declaración de tipo después del nombre de la función o el tipo indicado por \"As\" y la palabra clave correspondiente al final de la lista de parámetros para definir el tipo del valor de retorno de la función, por ejemplo:"
+
+#: 01020300.xhp#par_id3152899.43.help.text
+msgid "Function WordCount(WordText as String) <emph>as Integer</emph>"
+msgstr "Function RecuentoPalabras(TextoPalabra as String) as Integer"
+
+#: 03020404.xhp#tit.help.text
+msgid "Dir Function [Runtime]"
+msgstr "Función Dir [Ejecución]"
+
+#: 03020404.xhp#bm_id3154347.help.text
+msgid "<bookmark_value>Dir function</bookmark_value>"
+msgstr "<bookmark_value>Dir;función</bookmark_value>"
+
+#: 03020404.xhp#hd_id3154347.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020404.xhp\" name=\"Dir Function [Runtime]\">Dir Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020404.xhp\" name=\"Función Dir [Runtime]\">Función Dir [Runtime]</link>"
+
+#: 03020404.xhp#par_id3153381.2.help.text
+msgid "Returns the name of a file, a directory, or all of the files and the directories on a drive or in a directory that match the specified search path."
+msgstr "Devuelve el nombre de un archivo, directorio o todos los archivos y directorios de una unidad o directorio que coincidan con la ruta de acceso de búsqueda especificada."
+
+#: 03020404.xhp#hd_id3154365.3.help.text
+msgctxt "03020404.xhp#hd_id3154365.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03020404.xhp#par_id3156282.4.help.text
+msgid "Dir [(Text As String) [, Attrib As Integer]]"
+msgstr "Dir [(Texto As String) [, Atrib As Integer]]"
+
+#: 03020404.xhp#hd_id3156424.5.help.text
+msgctxt "03020404.xhp#hd_id3156424.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03020404.xhp#par_id3153193.6.help.text
+msgctxt "03020404.xhp#par_id3153193.6.help.text"
+msgid "String"
+msgstr "Cadena"
+
+#: 03020404.xhp#hd_id3153770.7.help.text
+msgctxt "03020404.xhp#hd_id3153770.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03020404.xhp#par_id3161831.8.help.text
+msgid "<emph>Text:</emph> Any string expression that specifies the search path, directory or file. This argument can only be specified the first time that you call the Dir function. If you want, you can enter the path in <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>Texto:</emph> Cualquier expresión de cadena que especifique la ruta de acceso de búsqueda, el directorio o el archivo. Este argumento sólo puede especificarse la primera vez que se llame a la función Dir. Si se desea, la ruta de acceso puede escribirse en la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notación URL\">notación URL</link>."
+
+#: 03020404.xhp#par_id3146974.9.help.text
+msgid "<emph>Attrib: </emph>Any integer expression that specifies bitwise file attributes. The Dir function only returns files or directories that match the specified attributes. You can combine several attributes by adding the attribute values:"
+msgstr "<emph>Atrib: </emph>Cualquier expresión entera que especifique atributos de archivo bit a bit. La función Dir sólo devuelve archivos o directorios que coincidan con los atributos especificados. Pueden combinarse varios atributos añadiendo los valores siguientes:"
+
+#: 03020404.xhp#par_id3149666.11.help.text
+msgctxt "03020404.xhp#par_id3149666.11.help.text"
+msgid "0 : Normal files."
+msgstr "0 : Archivos normales."
+
+#: 03020404.xhp#par_id3147427.15.help.text
+msgctxt "03020404.xhp#par_id3147427.15.help.text"
+msgid "16 : Returns the name of the directory only."
+msgstr "16 : Sólo devuelve el nombre del directorio."
+
+#: 03020404.xhp#par_id3153952.16.help.text
+msgid "Use this attribute to check if a file or directory exists, or to determine all files and folders in a specific directory."
+msgstr "Este atributo se usa para comprobar si un archivo o directorio existen o para determinar todos los archivos y carpetas de un directorio específico."
+
+#: 03020404.xhp#par_id3159156.17.help.text
+msgid "To check if a file exists, enter the complete path and name of the file. If the file or directory name does not exist, the Dir function returns a zero-length string (\"\")."
+msgstr "Para comprobar si un archivo existe, escriba la ruta de acceso completa y el nombre del archivo. Si el nombre de archivo o de directorio no existen, la función Dir devuelve una cadena de longitud cero (\"\")."
+
+#: 03020404.xhp#par_id3154012.18.help.text
+msgid "To generate a list of all existing files in a specific directory, proceed as follows: The first time you call the Dir function, specify the complete search path for the files, for example, \"D:\\Files\\*.sxw\". If the path is correct and the search finds at least one file, the Dir function returns the name of the first file that matches the search path. To return additional file names that match the path, call Dir again, but with no arguments."
+msgstr "Para generar una lista de todos los archivos de un directorio específico, proceda de esta manera: La primera vez que llame a la función Dir, especifique la ruta de acceso de búsqueda completa para los archivos, por ejemplo: \"D:\\Archivos\\*.sxw\". Si la ruta de acceso es correcta y la búsqueda encuentra al menos un archivo, la función Dir devuelve el nombre del primer archivo que cumpla la ruta de acceso de búsqueda. Para que se devuelvan nombres de archivo adicionales que coincidan con la ruta de acceso, llame a Dir de nuevo, pero sin argumentos."
+
+#: 03020404.xhp#par_id3147348.19.help.text
+msgid "To return directories only, use the attribute parameter. The same applies if you want to determine the name of a volume (for example, a hard drive partition)"
+msgstr "Para que sólo se devuelvan directorios, use el parámetro de atributo. Lo mismo se aplica si se desea determinar el nombre de un volumen (por ejemplo, una partición de disco duro)"
+
+#: 03020404.xhp#hd_id3154942.20.help.text
+msgctxt "03020404.xhp#hd_id3154942.20.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03020404.xhp#par_id3147125.21.help.text
+msgid "Sub ExampleDir"
+msgstr "Sub EjemploDir"
+
+#: 03020404.xhp#par_id3148455.22.help.text
+msgid "REM Displays all files and directories"
+msgstr "REM Muestra todos los archivos y directorios"
+
+#: 03020404.xhp#par_id3147396.23.help.text
+msgctxt "03020404.xhp#par_id3147396.23.help.text"
+msgid "Dim sPath As String"
+msgstr "Dim sRuta As String"
+
+#: 03020404.xhp#par_id3149378.24.help.text
+msgid "Dim sDir as String, sValue as String"
+msgstr "Dim sDir as String, sValor as String"
+
+#: 03020404.xhp#par_id3153416.27.help.text
+msgid "sDir=\"Directories:\""
+msgstr "sDir=\"Directorios:\""
+
+#: 03020404.xhp#par_id3153838.29.help.text
+msgid "sPath = CurDir"
+msgstr "sRuta = CurDir"
+
+#: 03020404.xhp#par_id3150327.30.help.text
+msgid "sValue = Dir$(sPath + getPathSeparator + \"*\",16)"
+msgstr "sValue = Dir$(sPath + getPathSeparator + \"*\",16)"
+
+#: 03020404.xhp#par_id3155064.31.help.text
+msgctxt "03020404.xhp#par_id3155064.31.help.text"
+msgid "Do"
+msgstr "Do"
+
+#: 03020404.xhp#par_id3153764.32.help.text
+msgid "If sValue <> \".\" and sValue <> \"..\" Then"
+msgstr "If sValor <> \".\" and sValor <> \"..\" Then"
+
+#: 03020404.xhp#par_id3155766.33.help.text
+msgid "if (GetAttr( sPath + getPathSeparator + sValue) AND 16) >0 then"
+msgstr "if (GetAttr( sRuta + getPathSeparator + sValor) AND 16) >0 then"
+
+#: 03020404.xhp#par_id3154253.34.help.text
+msgid "REM get the directories"
+msgstr "REM obtener los directorios"
+
+#: 03020404.xhp#par_id3159264.35.help.text
+msgid "sDir = sDir & chr(13) & sValue"
+msgstr "sDir = sDir & chr(13) & sValor"
+
+#: 03020404.xhp#par_id3145148.43.help.text
+msgctxt "03020404.xhp#par_id3145148.43.help.text"
+msgid "End If"
+msgstr "End If"
+
+#: 03020404.xhp#par_idN10700.help.text
+msgctxt "03020404.xhp#par_idN10700.help.text"
+msgid "End If"
+msgstr "End If"
+
+#: 03020404.xhp#par_id3147324.44.help.text
+msgid "sValue = Dir$"
+msgstr "sValor = Dir$"
+
+#: 03020404.xhp#par_id3155335.45.help.text
+msgid "Loop Until sValue = \"\""
+msgstr "Loop Until sValor = \"\""
+
+#: 03020404.xhp#par_id3147345.46.help.text
+msgid "MsgBox sDir,0,sPath"
+msgstr "MsgBox sDir,0,sRuta"
+
+#: 03020404.xhp#par_id3163808.48.help.text
+msgctxt "03020404.xhp#par_id3163808.48.help.text"
+msgid "End sub"
+msgstr "End sub"
+
+#: 03100600.xhp#tit.help.text
+msgid "CLng Function [Runtime]"
+msgstr "Función CLng [Ejecución]"
+
+#: 03100600.xhp#bm_id3153311.help.text
+msgid "<bookmark_value>CLng function</bookmark_value>"
+msgstr "<bookmark_value>CLng;función</bookmark_value>"
+
+#: 03100600.xhp#hd_id3153311.1.help.text
+msgid "<link href=\"text/sbasic/shared/03100600.xhp\" name=\"CLng Function [Runtime]\">CLng Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100600.xhp\" name=\"CLng Function [Runtime]\">Función CLng [Ejecución]</link>"
+
+#: 03100600.xhp#par_id3148686.2.help.text
+msgid "Converts any string or numeric expression to a long integer."
+msgstr "Convierte cualquier expresión de cadena o numérica en un entero largo."
+
+#: 03100600.xhp#hd_id3145315.3.help.text
+msgctxt "03100600.xhp#hd_id3145315.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03100600.xhp#par_id3147573.4.help.text
+msgid "CLng (Expression)"
+msgstr "CLng (Expresión)"
+
+#: 03100600.xhp#hd_id3145610.5.help.text
+msgctxt "03100600.xhp#hd_id3145610.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03100600.xhp#par_id3153897.6.help.text
+msgctxt "03100600.xhp#par_id3153897.6.help.text"
+msgid "Long"
+msgstr "Largo"
+
+#: 03100600.xhp#hd_id3154760.7.help.text
+msgctxt "03100600.xhp#hd_id3154760.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03100600.xhp#par_id3159414.8.help.text
+msgid "<emph>Expression:</emph> Any numerical expression that you want to convert. If the <emph>Expression</emph> lies outside the valid long integer range between -2.147.483.648 and 2.147.483.647, $[officename] Basic returns an overflow error. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
+msgstr "<emph>Expresión:</emph> Cualquier expresión numérica que desee convertir. Si <emph>Expresión</emph> está fuera del rango de enteros largos válido de -2.147.483.648 y 2.147.483.647, $[officename] Basic devuelve un error de desbordamiento. Para convertir una expresión de cadena, el número debe introducirse como texto normal (\"123,5\") usando el formato numérico predeterminado del sistema operativo."
+
+#: 03100600.xhp#par_id3150358.9.help.text
+msgctxt "03100600.xhp#par_id3150358.9.help.text"
+msgid "This function always rounds the fractional part of a number to the nearest integer."
+msgstr "Esta función siempre redondea la parte fraccional de un número al entero más cercano."
+
+#: 03100600.xhp#hd_id3154216.10.help.text
+msgctxt "03100600.xhp#hd_id3154216.10.help.text"
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: 03100600.xhp#par_id3147229.11.help.text
+msgctxt "03100600.xhp#par_id3147229.11.help.text"
+msgid "Sub ExampleCountryConvert"
+msgstr "Sub EjemploConvPais"
+
+#: 03100600.xhp#par_id3156281.12.help.text
+msgctxt "03100600.xhp#par_id3156281.12.help.text"
+msgid "Msgbox CDbl(1234.5678)"
+msgstr "Msgbox CDbl(1234,5678)"
+
+#: 03100600.xhp#par_id3153969.13.help.text
+msgctxt "03100600.xhp#par_id3153969.13.help.text"
+msgid "Msgbox CInt(1234.5678)"
+msgstr "Msgbox CInt(1234,5678)"
+
+#: 03100600.xhp#par_id3154909.14.help.text
+msgctxt "03100600.xhp#par_id3154909.14.help.text"
+msgid "Msgbox CLng(1234.5678)"
+msgstr "Msgbox CLng(1234,5678)"
+
+#: 03100600.xhp#par_id3153770.15.help.text
+msgctxt "03100600.xhp#par_id3153770.15.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03120105.xhp#tit.help.text
+msgid "CByte Function [Runtime]"
+msgstr "Función CByte [Ejecución]"
+
+#: 03120105.xhp#bm_id3156027.help.text
+msgid "<bookmark_value>CByte function</bookmark_value>"
+msgstr "<bookmark_value>CByte;función</bookmark_value>"
+
+#: 03120105.xhp#hd_id3156027.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120105.xhp\" name=\"CByte Function [Runtime]\">CByte Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120105.xhp\" name=\"CByte Function [Runtime]\">Función CByte [Ejecución]</link>"
+
+#: 03120105.xhp#par_id3143267.2.help.text
+msgid "Converts a string or a numeric expression to the type Byte."
+msgstr "Convierte una cadena o expresión numérica al tipo Byte."
+
+#: 03120105.xhp#hd_id3149811.3.help.text
+msgctxt "03120105.xhp#hd_id3149811.3.help.text"
+msgid "Syntax:"
+msgstr "Sintaxis:"
+
+#: 03120105.xhp#par_id3147573.4.help.text
+msgid "Cbyte( expression )"
+msgstr "Cbyte( expresión )"
+
+#: 03120105.xhp#hd_id3145315.5.help.text
+msgctxt "03120105.xhp#hd_id3145315.5.help.text"
+msgid "Return value:"
+msgstr "Valor de retorno:"
+
+#: 03120105.xhp#par_id3148473.6.help.text
+msgid "Byte"
+msgstr "Byte"
+
+#: 03120105.xhp#hd_id3147530.7.help.text
+msgctxt "03120105.xhp#hd_id3147530.7.help.text"
+msgid "Parameters:"
+msgstr "Parámetros:"
+
+#: 03120105.xhp#par_id3145068.8.help.text
+msgid "<emph>Expression:</emph> A string or a numeric expression."
+msgstr "<emph>Expresión:</emph> Una cadena en una expresión numérica."
diff --git a/source/es/helpcontent2/source/text/sbasic/shared/01.po b/source/es/helpcontent2/source/text/sbasic/shared/01.po
new file mode 100644
index 00000000000..49422d80508
--- /dev/null
+++ b/source/es/helpcontent2/source/text/sbasic/shared/01.po
@@ -0,0 +1,298 @@
+#. extracted from helpcontent2/source/text/sbasic/shared/01.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsbasic%2Fshared%2F01.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"PO-Revision-Date: 2011-04-05 19:49+0200\n"
+"Last-Translator: Alexandro <jza@openoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 06130000.xhp#tit.help.text
+msgctxt "06130000.xhp#tit.help.text"
+msgid "Macro"
+msgstr "Macro"
+
+#: 06130000.xhp#bm_id3145786.help.text
+msgid "<bookmark_value>macros; Basic IDE</bookmark_value><bookmark_value>Basic IDE; macros</bookmark_value>"
+msgstr "<bookmark_value>macros; Basic IDE</bookmark_value><bookmark_value>Basic IDE; macros</bookmark_value>"
+
+#: 06130000.xhp#hd_id3145786.1.help.text
+msgctxt "06130000.xhp#hd_id3145786.1.help.text"
+msgid "Macro"
+msgstr "Macro"
+
+#: 06130000.xhp#par_id3152886.2.help.text
+msgid "<variable id=\"makro\"><ahelp hid=\".\">Opens the <emph>Macro </emph>dialog, where you can create, edit, organize, and run $[officename] Basic macros.</ahelp></variable>"
+msgstr "<variable id=\"makro\"><ahelp hid=\".\">Abre el diálogo <emph>Macro</emph>, en el cual se pueden crear, editar, organizar y ejecutar macros de $[officename] Basic.</ahelp></variable>"
+
+#: 06130000.xhp#hd_id3154145.3.help.text
+msgid "Macro name"
+msgstr "Nombre de la macro"
+
+#: 06130000.xhp#par_id3151116.4.help.text
+msgid "<ahelp hid=\"BASCTL_EDIT_RID_MACROCHOOSER_RID_ED_MACRONAME\">Displays the name of the selected macro. To create or to change the name of a macro, enter a name here.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_EDIT_RID_MACROCHOOSER_RID_ED_MACRONAME\">Muestra el nombre de la macro seleccionada. Para crear o cambiar el nombre de una macro, escriba un nombre aquí.</ahelp>"
+
+#: 06130000.xhp#hd_id3153729.7.help.text
+msgid "Macro from / Save macro in"
+msgstr "Macro desde / Guardar macro en"
+
+#: 06130000.xhp#par_id3153190.8.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_LIBS\">Lists the libraries and the modules where you can open or save your macros. To save a macro with a particular document, open the document, and then open this dialog.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_LIBS\">Enumera las bibliotecas y los módulos que permiten abrir y guardar macros. Para guardar una macro en un documento específico, abra dicho documento y abra este diálogo.</ahelp>"
+
+#: 06130000.xhp#hd_id3146975.11.help.text
+msgid "Run / Save"
+msgstr "Ejecutar / Guardar"
+
+#: 06130000.xhp#par_id3154791.12.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_MACROCHOOSER_RID_PB_RUN\">Runs or saves the current macro.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_MACROCHOOSER_RID_PB_RUN\">Ejecuta o guarda la macro actual.</ahelp>"
+
+#: 06130000.xhp#hd_id3153158.15.help.text
+msgid "Assign"
+msgstr "Asignar"
+
+#: 06130000.xhp#par_id3149961.16.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_MACROCHOOSER_RID_PB_ASSIGN\">Opens the Customize dialog, where you can assign the selected macro to a menu command, a toolbar, or an event.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_MACROCHOOSER_RID_PB_ASSIGN\">Abre el diálogo de personalizar, en el cual la macro seleccionada se asigna a un comando de menú, una barra de herramienta o una acción.</ahelp>"
+
+#: 06130000.xhp#hd_id3145799.17.help.text
+msgctxt "06130000.xhp#hd_id3145799.17.help.text"
+msgid "Edit"
+msgstr "Editar"
+
+#: 06130000.xhp#par_id3147127.18.help.text
+msgid "<ahelp hid=\".\">Starts the $[officename] Basic editor and opens the selected macro for editing.</ahelp>"
+msgstr "<ahelp hid=\".\">Inicia el editor de $[officename] Basic y abre la macro seleccionada para editarla.</ahelp>"
+
+#: 06130000.xhp#hd_id3149400.19.help.text
+msgid "New/Delete"
+msgstr "Nuevo/Borrar"
+
+#: 06130000.xhp#par_id3155602.61.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_MACROCHOOSER_RID_PB_DEL\">Creates a new macro, or deletes the selected macro.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_MACROCHOOSER_RID_PB_DEL\">Crea un módulo o una macro, o elimina la macro seleccionada.</ahelp>"
+
+#: 06130000.xhp#par_id3149124.20.help.text
+msgid "To create a new macro, select the \"Standard\" module in the <emph>Macro from</emph> list, and then click <emph>New</emph>. "
+msgstr "Para crear una macro nueva, seleccione el módulo \"Standard\" en la lista <emph>Macro desde</emph> y después pulse en <emph>Nuevo</emph>. Si desea crear un módulo nuevo, selecciónelo en la lista <emph>Macro desde</emph> y después pulse en <emph>Nuevo</emph>."
+
+#: 06130000.xhp#par_id3150749.21.help.text
+msgid "To delete a macro, select it, and then click <emph>Delete</emph>."
+msgstr "Para borrar una macro, selecciónela y después pulse en <emph>Borrar</emph>."
+
+#: 06130000.xhp#hd_id3153764.22.help.text
+msgid "Organizer"
+msgstr "Administrar"
+
+#: 06130000.xhp#par_id3148405.23.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_MACROCHOOSER_RID_PB_ORG\">Opens the <emph>Macro Organizer</emph> dialog, where you can add, edit, or delete existing macro modules, dialogs, and libraries.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_MACROCHOOSER_RID_PB_ORG\">Abre el diálogo <emph>Organizador de macros</emph>, en el que se pueden agregar, editar o borrar módulos de macro, diálogos y bibliotecas.</ahelp>"
+
+#: 06130000.xhp#hd_id3166447.29.help.text
+msgid "Module/Dialog"
+msgstr "Módulo/Diálogo"
+
+#: 06130000.xhp#par_id3155959.30.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_MODULES_TREE\">Lists the existing macros and dialogs.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_MODULES_TREE\">Enumera las macros y los diálogos de la aplicación actual y de cualquier documento abierto.</ahelp>"
+
+#: 06130000.xhp#par_id3149922.31.help.text
+msgid "You can drag-and-drop a module or a dialog between libraries."
+msgstr "Puedes arrastrar un modulo o dialogo entre las bibliotecas."
+
+#: 06130000.xhp#par_id3159333.33.help.text
+msgid "To copy a dialog or a module, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while you drag-and-drop."
+msgstr "Si desea copiar un diálogo o un módulo, mantenga pulsada la tecla <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Control</defaultinline></switchinline> mientras arrastra y coloca."
+
+#: 06130000.xhp#hd_id3147131.34.help.text
+msgctxt "06130000.xhp#hd_id3147131.34.help.text"
+msgid "Edit"
+msgstr "Editar"
+
+#: 06130000.xhp#par_id3149816.35.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_EDIT\">Opens the selected macro or dialog for editing.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_EDIT\">Abre la macro o el diálogo seleccionados para editarlos.</ahelp>"
+
+#: 06130000.xhp#hd_id3151214.36.help.text
+msgctxt "06130000.xhp#hd_id3151214.36.help.text"
+msgid "New"
+msgstr "Nuevo"
+
+#: 06130000.xhp#par_id3154202.37.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWMOD\">Creates a new module.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWMOD\">Abre el editor de $[officename] Basic y crea un módulo.</ahelp>"
+
+#: 06130000.xhp#par_id3153269.40.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWDLG\">Creates a new dialog.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWDLG\">Abre el editor de $[officename] Basic y crea un diálogo.</ahelp>"
+
+#: 06130000.xhp#hd_id3154587.42.help.text
+msgid "Libraries tab page"
+msgstr "Bibliotecas de registro"
+
+#: 06130000.xhp#par_id3153705.43.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWDLG\">Lets you manage the macro libraries.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWDLG\">Permite administrar las bibliotecas de macros.</ahelp>"
+
+#: 06130000.xhp#hd_id3145259.44.help.text
+msgid "Location"
+msgstr "Ubicación"
+
+#: 06130000.xhp#par_id3153234.45.help.text
+msgid "<ahelp hid=\"BASCTL_LISTBOX_RID_TP_LIBS_RID_LB_BASICS\">Select the location containing the macro libraries that you want to organize.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_LISTBOX_RID_TP_LIBS_RID_LB_BASICS\">Seleccione la ubicación que contiene las bibliotecas de macros que desee organizar.</ahelp>"
+
+#: 06130000.xhp#hd_id3148460.46.help.text
+msgid "Library"
+msgstr "Biblioteca"
+
+#: 06130000.xhp#par_id3150828.47.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_LIBS_TREE\">Lists the macro libraries in the chosen location.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_LIBS_TREE\">Enumera las bibliotecas de macros de la aplicación actual.</ahelp>"
+
+#: 06130000.xhp#hd_id3145134.48.help.text
+msgctxt "06130000.xhp#hd_id3145134.48.help.text"
+msgid "Edit"
+msgstr "Editar"
+
+#: 06130000.xhp#par_id3150518.49.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_EDIT\">Opens the $[officename] Basic editor so that you can modify the selected library.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_EDIT\">Abre el editor de $[officename] Basic para poder modificar la biblioteca seleccionada.</ahelp>"
+
+#: 06130000.xhp#hd_id3150371.50.help.text
+msgctxt "06130000.xhp#hd_id3150371.50.help.text"
+msgid "Password"
+msgstr "Contraseña"
+
+#: 06130000.xhp#par_id3166430.51.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_PASSWORD\">Assigns or edits the <link href=\"text/sbasic/shared/01/06130100.xhp\" name=\"password\">password</link> for the selected library. \"Standard\" libraries cannot have a password.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_PASSWORD\">Asigna o edita la <link href=\"text/sbasic/shared/01/06130100.xhp\" name=\"contraseña\">contraseña</link> de la biblioteca seleccionada.</ahelp>"
+
+#: 06130000.xhp#hd_id3154372.52.help.text
+msgctxt "06130000.xhp#hd_id3154372.52.help.text"
+msgid "New"
+msgstr "Nuevo"
+
+#: 06130000.xhp#par_id3145387.53.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_NEWLIB\">Creates a new library.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_NEWLIB\">Crea una biblioteca.</ahelp>"
+
+#: 06130000.xhp#hd_id3154259.56.help.text
+msgid "Name"
+msgstr "Nombre"
+
+#: 06130000.xhp#par_id3156169.57.help.text
+msgid "<ahelp hid=\"BASCTL_EDIT_RID_DLG_NEWLIB_RID_ED_LIBNAME\">Enter a name for the new module, dialog, or library.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_EDIT_RID_DLG_NEWLIB_RID_ED_LIBNAME\">Escriba un nombre para la biblioteca o el módulo nuevos.</ahelp>"
+
+#: 06130000.xhp#hd_id3151183.54.help.text
+msgid "Append"
+msgstr "Adjuntar"
+
+#: 06130000.xhp#par_id3155126.55.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_APPEND\">Locate that $[officename] Basic library that you want to add to the current list, and then click Open.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_APPEND\">Busque la biblioteca de $[officename] Basic que desee agregar a la lista y haga clic en Abrir.</ahelp>"
+
+#: 06130100.xhp#tit.help.text
+msgctxt "06130100.xhp#tit.help.text"
+msgid "Change Password"
+msgstr "Cambiar contraseña"
+
+#: 06130100.xhp#hd_id3159399.1.help.text
+msgctxt "06130100.xhp#hd_id3159399.1.help.text"
+msgid "Change Password"
+msgstr "Cambiar contraseña"
+
+#: 06130100.xhp#par_id3150276.2.help.text
+msgid "<ahelp hid=\"HID_PASSWORD\">Protects the selected library with a password.</ahelp> You can enter a new password, or change the current password."
+msgstr "<ahelp hid=\"HID_PASSWORD\">Protege la biblioteca seleccionada con una contraseña.</ahelp> Puede escribir una nueva contraseña o bien cambiar la actual."
+
+#: 06130100.xhp#hd_id3154285.3.help.text
+msgid "Old password"
+msgstr "Anterior"
+
+#: 06130100.xhp#hd_id3153665.4.help.text
+msgctxt "06130100.xhp#hd_id3153665.4.help.text"
+msgid "Password"
+msgstr "Contraseña"
+
+#: 06130100.xhp#par_id3155628.5.help.text
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_OLD_PASSWD\">Enter the current password for the selected library.</ahelp>"
+msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_OLD_PASSWD\">Escriba la contraseña actual para la biblioteca seleccionada.</ahelp>"
+
+#: 06130100.xhp#hd_id3153126.6.help.text
+msgid "New password"
+msgstr "Contraseña nueva"
+
+#: 06130100.xhp#hd_id3153628.7.help.text
+msgctxt "06130100.xhp#hd_id3153628.7.help.text"
+msgid "Password"
+msgstr "Contraseña"
+
+#: 06130100.xhp#par_id3159413.8.help.text
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_NEW_PASSWD\">Enter a new password for the selected library.</ahelp>"
+msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_NEW_PASSWD\">Escriba una nueva contraseña para la biblioteca seleccionada.</ahelp>"
+
+#: 06130100.xhp#hd_id3148947.9.help.text
+msgid "Confirm"
+msgstr "Confirmar"
+
+#: 06130100.xhp#par_id3149457.10.help.text
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_REPEAT_PASSWD\">Repeat the new password for the selected library.</ahelp>"
+msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_REPEAT_PASSWD\">Vuelva a escribir la nueva contraseña para la biblioteca seleccionada.</ahelp>"
+
+#: 06130500.xhp#tit.help.text
+msgctxt "06130500.xhp#tit.help.text"
+msgid "Append libraries"
+msgstr "Añadir bibliotecas"
+
+#: 06130500.xhp#bm_id3150502.help.text
+msgid "<bookmark_value>libraries; adding</bookmark_value><bookmark_value>inserting;Basic libraries</bookmark_value>"
+msgstr "<bookmark_value>bibliotecas; agregando</bookmark_value><bookmark_value>insertando ; bibliotecas de Basic</bookmark_value>"
+
+#: 06130500.xhp#hd_id3150502.1.help.text
+msgctxt "06130500.xhp#hd_id3150502.1.help.text"
+msgid "Append libraries"
+msgstr "Añadir bibliotecas"
+
+#: 06130500.xhp#par_id3154840.2.help.text
+msgid "<ahelp hid=\".\">Locate that <item type=\"productname\">%PRODUCTNAME</item> Basic library that you want to add to the current list, and then click Open.</ahelp>"
+msgstr "<ahelp hid=\".\">Busque la biblioteca de <item type=\"productname\">%PRODUCTNAME</item> Basic que desee agregar a la lista y haga clic en Abrir.</ahelp>"
+
+#: 06130500.xhp#hd_id3149119.3.help.text
+msgid "File name:"
+msgstr "Nombre del archivo:"
+
+#: 06130500.xhp#par_id3147102.4.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_LIBSDLG_TREE\">Enter a name or the path to the library that you want to append.</ahelp> You can also select a library from the list."
+msgstr "<ahelp hid=\"HID_BASICIDE_LIBSDLG_TREE\" visibility=\"visible\">Aquí se le mostrará el nombre del archivo seleccionado; en el listado verá las bibliotecas contenidas en el archivo mencionado.</ahelp> Marque la casilla delante del nombre para seleccionar las bibliotecas que desee añadir."
+
+#: 06130500.xhp#hd_id3147291.5.help.text
+msgid "Options"
+msgstr "Opciones"
+
+#: 06130500.xhp#hd_id3147226.7.help.text
+msgid "Insert as reference (read-only)"
+msgstr "Insertar como referencia (solo leer)"
+
+#: 06130500.xhp#par_id3155892.8.help.text
+msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REF\">Adds the selected library as a read-only file. The library is reloaded each time you start <item type=\"productname\">%PRODUCTNAME</item>.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REF\" visibility=\"visible\">Añade la biblioteca seleccionada como archivo de sólo lectura. La biblioteca se vuelve a cargar cada vez que se inicia $[officename].</ahelp>"
+
+#: 06130500.xhp#hd_id3145071.9.help.text
+msgid "Replace existing libraries"
+msgstr "Reemplazar bibliotecas existentes"
+
+#: 06130500.xhp#par_id3149812.10.help.text
+msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REPL\">Replaces a library that has the same name with the current library.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REPL\" visibility=\"visible\">Sustituye una biblioteca que tiene el mismo nombre por la biblioteca actual.</ahelp>"
diff --git a/source/es/helpcontent2/source/text/sbasic/shared/02.po b/source/es/helpcontent2/source/text/sbasic/shared/02.po
new file mode 100644
index 00000000000..a5c5f516327
--- /dev/null
+++ b/source/es/helpcontent2/source/text/sbasic/shared/02.po
@@ -0,0 +1,862 @@
+#. extracted from helpcontent2/source/text/sbasic/shared/02.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsbasic%2Fshared%2F02.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"PO-Revision-Date: 2012-08-07 08:53+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 11080000.xhp#tit.help.text
+msgctxt "11080000.xhp#tit.help.text"
+msgid "Enable Watch"
+msgstr "Habilitar inspección"
+
+#: 11080000.xhp#hd_id3154863.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Enable Watch\">Enable Watch</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Enable Watch\">Habilitar inspección</link>"
+
+#: 11080000.xhp#par_id3093440.2.help.text
+msgid "<ahelp hid=\".uno:AddWatch\">Click this icon to view the variables in a macro. The contents of the variable are displayed in a separate window.</ahelp>"
+msgstr "<ahelp hid=\".uno:AddWatch\">Haga clic en este icono para ver las variables de una macro. El contenido de la variable se muestra en una ventana aparte.</ahelp>"
+
+#: 11080000.xhp#par_id3147399.6.help.text
+msgid "Click the name of a variable to select it, then click the <emph>Enable Watch</emph> icon. The value that is assigned to the variable is displayed next to its name. This value is constantly updated."
+msgstr "Haga clic en el nombre de una variable para seleccionarla; a continuación, haga clic en el icono <emph>Habilitar inspección</emph>. El valor que se asigna a la variable se muestra junto a su nombre. Este valor se actualiza de forma constante."
+
+#: 11080000.xhp#par_id3155892.help.text
+msgid "<image id=\"img_id3147209\" src=\"cmd/sc_addwatch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147209\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147209\" src=\"cmd/sc_addwatch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147209\">Icono</alt></image>"
+
+#: 11080000.xhp#par_id3150276.3.help.text
+msgctxt "11080000.xhp#par_id3150276.3.help.text"
+msgid "Enable Watch"
+msgstr "Habilitar inspección"
+
+#: 11080000.xhp#par_id3159158.4.help.text
+msgid "To remove the variable watch, select the variable in the Watch window, and then click on the <emph>Remove Watch</emph> icon."
+msgstr "Para anular la inspección de variables, seleccione la variable en la ventana de inspección y haga clic en el icono <emph>Habilitar inspección</emph>."
+
+#: 11010000.xhp#tit.help.text
+msgid "Library"
+msgstr "Biblioteca"
+
+#: 11010000.xhp#hd_id3151100.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11010000.xhp\" name=\"Library\">Library</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11010000.xhp\" name=\"Library\">Biblioteca</link>"
+
+#: 11010000.xhp#par_id3154136.2.help.text
+msgid "<ahelp hid=\".uno:LibSelector\" visibility=\"visible\">Select the library that you want to edit.</ahelp> The first module of the library that you select is displayed in the Basic IDE."
+msgstr "<ahelp hid=\".uno:LibSelector\" visibility=\"visible\">Seleccione la biblioteca que desee usar.</ahelp>El primer módulo de la biblioteca que seleccione se muestra en el Basic IDE."
+
+#: 11010000.xhp#par_id3149095.help.text
+msgid "<image src=\"res/helpimg/feldalle.png\" id=\"img_id3147576\" localize=\"true\"><alt id=\"alt_id3147576\">List box Library</alt></image>"
+msgstr "<image src=\"res/helpimg/feldalle.png\" id=\"img_id3147576\" localize=\"true\"><alt id=\"alt_id3147576\">Biblioteca de cuadros de lista</alt></image>"
+
+#: 11010000.xhp#par_id3147654.3.help.text
+msgid "Library List Box"
+msgstr "Listado Biblioteca"
+
+#: 11040000.xhp#tit.help.text
+msgctxt "11040000.xhp#tit.help.text"
+msgid "Stop"
+msgstr "Detener"
+
+#: 11040000.xhp#bm_id3154863.help.text
+msgid "<bookmark_value>macros; stopping</bookmark_value><bookmark_value>program stops</bookmark_value><bookmark_value>stopping macros</bookmark_value>"
+msgstr "<bookmark_value>macros; detener</bookmark_value><bookmark_value>programas; detener macros</bookmark_value><bookmark_value>detener; macros</bookmark_value>"
+
+#: 11040000.xhp#hd_id3154863.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11040000.xhp\" name=\"Stop\">Stop</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11040000.xhp\" name=\"Stop\">Detener</link>"
+
+#: 11040000.xhp#par_id3147226.2.help.text
+msgid "<ahelp hid=\".uno:BasicStop\">Stops running the current macro.</ahelp><switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline> You can also press Shift+Ctrl+Q.</defaultinline></switchinline>"
+msgstr "<ahelp hid=\".uno:BasicStop\">Parar la ejecución del macro ejecutando.</ahelp><switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline> También puede oprimir el Shift+Ctrl+Q.</defaultinline></switchinline>"
+
+#: 11040000.xhp#par_id3146797.help.text
+msgid "<image id=\"img_id3148538\" src=\"cmd/sc_basicstop.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148538\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148538\" src=\"cmd/sc_basicstop.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148538\">Icon</alt></image>"
+
+#: 11040000.xhp#par_id3150986.3.help.text
+msgctxt "11040000.xhp#par_id3150986.3.help.text"
+msgid "Stop"
+msgstr "Detener"
+
+#: 11020000.xhp#tit.help.text
+msgctxt "11020000.xhp#tit.help.text"
+msgid "Compile"
+msgstr "Compilar"
+
+#: 11020000.xhp#hd_id3148983.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11020000.xhp\" name=\"Compile\">Compile</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11020000.xhp\" name=\"Compile\">Compilar</link>"
+
+#: 11020000.xhp#par_id3159201.2.help.text
+msgid "<ahelp hid=\".uno:CompileBasic\" visibility=\"visible\">Compiles the Basic macro.</ahelp> You need to compile a macro after you make changes to it, or if the macro uses single or procedure steps."
+msgstr "<ahelp hid=\".uno:CompileBasic\" visibility=\"visible\">Compila la macro Basic.</ahelp> Después de efectuar cambios en una macro o si ésta utiliza pasos únicos o de procedimiento, es necesario compilarla."
+
+#: 11020000.xhp#par_id3156426.help.text
+msgid "<image src=\"cmd/sc_compilebasic.png\" id=\"img_id3147576\"><alt id=\"alt_id3147576\">Icon</alt></image>"
+msgstr "<image src=\"cmd/sc_compilebasic.png\" id=\"img_id3147576\"><alt id=\"alt_id3147576\">Símbolo</alt></image>"
+
+#: 11020000.xhp#par_id3149399.3.help.text
+msgctxt "11020000.xhp#par_id3149399.3.help.text"
+msgid "Compile"
+msgstr "Compilar"
+
+#: 11150000.xhp#tit.help.text
+msgctxt "11150000.xhp#tit.help.text"
+msgid "Save Source As"
+msgstr "Guardar el texto fuente como"
+
+#: 11150000.xhp#hd_id3149497.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11150000.xhp\" name=\"Save Source As\">Save Source As</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11150000.xhp\" name=\"Save Source As\">Guardar el texto fuente como</link>"
+
+#: 11150000.xhp#par_id3147261.3.help.text
+msgid "<ahelp hid=\".uno:SaveBasicAs\">Saves the source code of the selected Basic macro.</ahelp>"
+msgstr "<ahelp hid=\".uno:SaveBasicAs\">Guarda el código fuente de la macro Basic seleccionada.</ahelp>"
+
+#: 11150000.xhp#par_id3145071.help.text
+msgid "<image id=\"img_id3149182\" src=\"cmd/sc_savebasicas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149182\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149182\" src=\"cmd/sc_savebasicas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149182\">Icono</alt></image>"
+
+#: 11150000.xhp#par_id3151110.2.help.text
+msgctxt "11150000.xhp#par_id3151110.2.help.text"
+msgid "Save Source As"
+msgstr "Guardar el texto fuente como"
+
+#: 11070000.xhp#tit.help.text
+msgctxt "11070000.xhp#tit.help.text"
+msgid "Breakpoint"
+msgstr "Punto de ruptura"
+
+#: 11070000.xhp#hd_id3154863.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11070000.xhp\" name=\"Breakpoint\">Breakpoint</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11070000.xhp\" name=\"Punto de ruptura\">Punto de ruptura</link>"
+
+#: 11070000.xhp#par_id3155364.2.help.text
+msgid "<ahelp hid=\".uno:ToggleBreakPoint\">Inserts a breakpoint in the program line.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:ToggleBreakPoint\">Inserta un punto de ruptura en la línea de programa.</ahelp>"
+
+#: 11070000.xhp#par_id3149346.4.help.text
+msgid "The breakpoint is inserted at the cursor position. Use a breakpoint to interrupt a program just before an error occurs. You can then troubleshoot the program by running it in <link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link> mode until the error occurs. You can also use the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> icon to check the content of the relevant variables."
+msgstr "El punto de ruptura se inserta en la posición del cursor. Los puntos de ruptura se utilizan para interrumpir un programa justo antes de que se produzca un error. Después puede resolver los problemas del programa ejecutándolo en modo <link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Paso único</link> hasta que se produzca el error. También puede usar el icono <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Observador</link> para comprobar el contenido de las variables pertinentes."
+
+#: 11070000.xhp#par_id3156346.help.text
+msgid "<image id=\"img_id3152780\" src=\"cmd/sc_togglebreakpoint.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3152780\">Icon</alt></image>"
+msgstr "<image id=\"img_id3152780\" src=\"cmd/sc_togglebreakpoint.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3152780\">Icono</alt></image>"
+
+#: 11070000.xhp#par_id3149416.3.help.text
+msgctxt "11070000.xhp#par_id3149416.3.help.text"
+msgid "Breakpoint"
+msgstr "Punto de ruptura"
+
+#: 11170000.xhp#tit.help.text
+msgctxt "11170000.xhp#tit.help.text"
+msgid "Manage Breakpoints"
+msgstr "Administrar puntos de interrupción"
+
+#: 11170000.xhp#hd_id3156183.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11170000.xhp\" name=\"Manage Breakpoints\">Manage Breakpoints</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11170000.xhp\" name=\"Manage Breakpoints\">Administrar puntos de interrupción</link>"
+
+#: 11170000.xhp#par_id3152363.2.help.text
+msgid "<ahelp hid=\".\">Calls a dialog to manage breakpoints.</ahelp>"
+msgstr "<ahelp hid=\".\">Abre un diálogo para administrar los puntos de interrupción.</ahelp>"
+
+#: 11170000.xhp#par_id3143267.help.text
+msgid "<image id=\"img_id3155339\" src=\"cmd/sc_managebreakpoints.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155339\" src=\"cmd/sc_managebreakpoints.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Ícono</alt></image>"
+
+#: 11170000.xhp#par_id3145383.3.help.text
+msgctxt "11170000.xhp#par_id3145383.3.help.text"
+msgid "Manage Breakpoints"
+msgstr "Gestión de los puntos de ruptura"
+
+#: 11170000.xhp#par_id3154897.4.help.text
+msgid "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints dialog\"><emph>Manage Breakpoints</emph> dialog</link>"
+msgstr "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints dialog\"> Diálogo <emph>Administrar puntos de interrupción</emph></link>"
+
+#: 11100000.xhp#tit.help.text
+msgctxt "11100000.xhp#tit.help.text"
+msgid "Macros"
+msgstr "Macros"
+
+#: 11100000.xhp#hd_id3156183.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11100000.xhp\" name=\"Macros\">Macros</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11100000.xhp\" name=\"Macros\">Macros</link>"
+
+#: 11100000.xhp#par_id3147399.2.help.text
+msgid "<ahelp visibility=\"visible\" hid=\".uno:ChooseMacro\">Opens the <emph>Macro</emph> dialog.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:ChooseMacro\">Abre el diálogo <emph>Macro</emph>.</ahelp>"
+
+#: 11100000.xhp#par_id3148538.help.text
+msgid "<image src=\"cmd/sc_choosemacro.png\" id=\"img_id3153662\"><alt id=\"alt_id3153662\">Icon</alt></image>"
+msgstr "<image src=\"cmd/sc_choosemacro.png\" id=\"img_id3153662\"><alt id=\"alt_id3153662\">Símbolo</alt></image>"
+
+#: 11100000.xhp#par_id3153542.3.help.text
+msgctxt "11100000.xhp#par_id3153542.3.help.text"
+msgid "Macros"
+msgstr "Macros"
+
+#: 11180000.xhp#tit.help.text
+msgctxt "11180000.xhp#tit.help.text"
+msgid "Import Dialog"
+msgstr "Importar diálogo"
+
+#: 11180000.xhp#hd_id3156183.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11180000.xhp\" name=\"Import Dialog\">Import Dialog</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11180000.xhp\" name=\"Importar diálogo\">Importar diálogo</link>"
+
+#: 11180000.xhp#par_id3152363.2.help.text
+msgid "<ahelp hid=\".\">Calls an \"Open\" dialog to import a BASIC dialog file.</ahelp>"
+msgstr "<ahelp hid=\".\">Accede a un diálogo \"Abrir\" para importar un archivo de diálogo BASIC.</ahelp>"
+
+#: 11180000.xhp#par_id0929200903505211.help.text
+msgid "If the imported dialog has a name that already exists in the library, you see a message box where you can decide to rename the imported dialog. In this case the dialog will be renamed to the next free \"automatic\" name like when creating a new dialog. Or you can replace the existing dialog by the imported dialog. If you click Cancel the dialog is not imported."
+msgstr "Si el diálogo que se importa tiene el mismo nombre que otro existente en la biblioteca, verá un mensaje que le permitirá renombrar el diálogo a importar. En este caso, al diálogo se le dará el siguiente nombre \"automático\" que esté libre, de la misma forma que cuando se crea un nuevo diálogo. También puede reemplazar el diálogo existente con el que se está importando. Si hace clic en \"Cancelar\" el diálogo no se importará."
+
+#: 11180000.xhp#par_id0929200903505360.help.text
+msgid "Dialogs can contain localization data. When importing a dialog, a mismatch of the dialogs' localization status can occur."
+msgstr "Los diálogos pueden contener datos de regionalización. Cuando se importa un diálogo puede ocurrir que no coincida el estado de regionalización del diálogo."
+
+#: 11180000.xhp#par_id0929200903505320.help.text
+msgid "If the library contains additional languages compared to the imported dialog, or if the imported dialog is not localized at all, then the additional languages will silently be added to the imported dialog using the strings of the dialog's default locale."
+msgstr "Cuando la biblioteca contiene idiomas adicionales a los del diálogo importado, o si el diálogo importado no contiene ninguna regionalización, se agregarán sin aviso previo todos los idiomas adicionales al diálogo importado, usando las cadenas de la configuración regional predeterminada del diálogo."
+
+#: 11180000.xhp#par_id0929200903505383.help.text
+msgid "If the imported dialog contains additional languages compared to the library, or if the library is not localized at all, then you see a message box with Add, Omit, and Cancel buttons."
+msgstr "Si el diálogo importado contiene idiomas adicionales a los de la biblioteca, o si la biblioteca no contiene ninguna regionalización, verá un mensaje con los botones \"Agregar\", \"Omitir\", y \"Cancelar\"."
+
+#: 11180000.xhp#par_id0929200903505340.help.text
+msgid "Add: The additional languages from the imported dialog will be added to the already existing dialog. The resources from the library's default language will be used for the new languages. This is the same as if you add these languages manually."
+msgstr "Agregar: Los idiomas adicionales del diálogo importado se agregarán a los de los diálogos existentes. Los recursos del idioma predeterminado de la biblioteca se usarán para los nuevos idiomas. Es lo mismo que cuando agrega los idiomas manualmente."
+
+#: 11180000.xhp#par_id0929200903505367.help.text
+msgid "Omit: The library's language settings will stay unchanged. The imported dialog's resources for the omitted languages are not copied into the library, but they remain in the imported dialog's source files."
+msgstr "Omitir: La configuración de idiomas de la biblioteca permanecerá intacta. No se copiarán a la biblioteca los recursos de los idiomas omitidos, pero permanecerán en los archivos fuente del diálogo importado."
+
+#: 11180000.xhp#par_id3143267.help.text
+msgid "<image id=\"img_id3155339\" src=\"cmd/sc_importdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155339\" src=\"cmd/sc_importdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Ícono</alt></image>"
+
+#: 11180000.xhp#par_id3145383.3.help.text
+msgctxt "11180000.xhp#par_id3145383.3.help.text"
+msgid "Import Dialog"
+msgstr "Importar diálogo"
+
+#: 11190000.xhp#tit.help.text
+msgctxt "11190000.xhp#tit.help.text"
+msgid "Export Dialog"
+msgstr "Exportar diálogo"
+
+#: 11190000.xhp#hd_id3156183.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11190000.xhp\" name=\"Export Dialog\">Export Dialog</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11190000.xhp\" name=\"Exportar diálogo\">Exportar diálogo</link>"
+
+#: 11190000.xhp#par_id3152363.2.help.text
+msgid "<ahelp hid=\".\">In the dialog editor, this command calls a \"Save as\" dialog to export the current BASIC dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">En el editor de diálogos, este comando accede a un diálogo de \"Guardar como\" para exportar el diálogo BASIC actual.</ahelp>"
+
+#: 11190000.xhp#par_id3143267.help.text
+msgid "<image id=\"img_id3155339\" src=\"cmd/sc_exportdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155339\" src=\"cmd/sc_exportdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Ícono</alt></image>"
+
+#: 11190000.xhp#par_id3145383.3.help.text
+msgctxt "11190000.xhp#par_id3145383.3.help.text"
+msgid "Export Dialog"
+msgstr "Exportar diálogo"
+
+#: 11060000.xhp#tit.help.text
+msgctxt "11060000.xhp#tit.help.text"
+msgid "Procedure Step"
+msgstr "Paso a paso"
+
+#: 11060000.xhp#hd_id3148520.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step\">Procedure Step</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step\">Paso a paso</link>"
+
+#: 11060000.xhp#par_id3152363.2.help.text
+msgid "<ahelp hid=\".uno:BasicStepOver\">Runs the macro and stops it after the next procedure.</ahelp>"
+msgstr "<ahelp hid=\".uno:BasicStepOver\">Ejecuta la macro y se detiene después del siguiente procedimiento.</ahelp>"
+
+#: 11060000.xhp#par_id3153394.4.help.text
+msgctxt "11060000.xhp#par_id3153394.4.help.text"
+msgid "You can use this command in conjunction with the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> command to troubleshoot errors."
+msgstr "Este comando se puede usar junto con el comando <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Inspección</link> para solucionar errores."
+
+#: 11060000.xhp#par_id3147576.help.text
+msgid "<image id=\"img_id3143267\" src=\"cmd/sc_basicstepover.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3143267\">Icon</alt></image>"
+msgstr "<image id=\"img_id3143267\" src=\"cmd/sc_basicstepover.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3143267\">Icono</alt></image>"
+
+#: 11060000.xhp#par_id3154307.3.help.text
+msgctxt "11060000.xhp#par_id3154307.3.help.text"
+msgid "Procedure Step"
+msgstr "Paso a paso"
+
+#: 11060000.xhp#par_id3153562.6.help.text
+msgid "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step function\">Single Step function</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step function\">Función Paso Único</link>"
+
+#: 20000000.xhp#tit.help.text
+msgctxt "20000000.xhp#tit.help.text"
+msgid "Insert Controls"
+msgstr "Insertar campos de control"
+
+#: 20000000.xhp#bm_id3150402.help.text
+msgid "<bookmark_value>controls; in dialog editor</bookmark_value><bookmark_value>push button control in dialog editor</bookmark_value><bookmark_value>icon control</bookmark_value><bookmark_value>buttons; controls</bookmark_value><bookmark_value>image control</bookmark_value><bookmark_value>check box control</bookmark_value><bookmark_value>radio button control</bookmark_value><bookmark_value>option button control</bookmark_value><bookmark_value>fixed text control</bookmark_value><bookmark_value>label field control</bookmark_value><bookmark_value>editing; controls</bookmark_value><bookmark_value>text boxes; controls</bookmark_value><bookmark_value>list boxes; controls</bookmark_value><bookmark_value>combo box control</bookmark_value><bookmark_value>scroll bar control</bookmark_value><bookmark_value>horizontal scrollbar control</bookmark_value><bookmark_value>vertical scrollbar control</bookmark_value><bookmark_value>group box control</bookmark_value><bookmark_value>progress bar control</bookmark_value><bookmark_value>fixed line control</bookmark_value><bookmark_value>horizontal line control</bookmark_value><bookmark_value>line control</bookmark_value><bookmark_value>vertical line control</bookmark_value><bookmark_value>date field control</bookmark_value><bookmark_value>time field control</bookmark_value><bookmark_value>numerical field control</bookmark_value><bookmark_value>currency field control</bookmark_value><bookmark_value>formatted field control</bookmark_value><bookmark_value>pattern field control</bookmark_value><bookmark_value>masked field control</bookmark_value><bookmark_value>file selection control</bookmark_value><bookmark_value>selection options for controls</bookmark_value><bookmark_value>test mode control</bookmark_value>"
+msgstr "<bookmark_value>controles; en el editor de diálogo</bookmark_value><bookmark_value>presione el botón de control en el editor de diálogo</bookmark_value><bookmark_value>icono de control</bookmark_value><bookmark_value>botones; controles</bookmark_value><bookmark_value>imagen de control</bookmark_value><bookmark_value>casilla de verificación de control</bookmark_value><bookmark_value>botón de radio de control</bookmark_value><bookmark_value>botón de opciones de control</bookmark_value><bookmark_value>texto dijo de control</bookmark_value><bookmark_value>campo de etiqueta de control</bookmark_value><bookmark_value>editar; controles</bookmark_value><bookmark_value>cuadro de texto; controles</bookmark_value><bookmark_value>cuadro de listas; controles</bookmark_value><bookmark_value>cuadro combinado de control</bookmark_value><bookmark_value>scroll bar control</bookmark_value><bookmark_value>barra de desplazamiento horizontal de control</bookmark_value><bookmark_value>barra de desplazamiento vertical de control</bookmark_value><bookmark_value>cuadro de grupo de control</bookmark_value><bookmark_value>barra de progreso de control</bookmark_value><bookmark_value>línea fija de control</bookmark_value><bookmark_value>línea horizontal de control</bookmark_value><bookmark_value>línea de control</bookmark_value><bookmark_value>línea vertical de control</bookmark_value><bookmark_value>campo fecha de control</bookmark_value><bookmark_value>campo hora de control</bookmark_value><bookmark_value>campo numérico de control</bookmark_value><bookmark_value>campo moneda de control</bookmark_value><bookmark_value>campo formato de control</bookmark_value><bookmark_value>campo trama de control</bookmark_value><bookmark_value>campo máscara de control</bookmark_value><bookmark_value>selección archivo de control</bookmark_value><bookmark_value>selección de opciones para controles</bookmark_value><bookmark_value>modo prueba de control</bookmark_value>"
+
+#: 20000000.xhp#hd_id3150402.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/20000000.xhp\" name=\"Insert Controls\">Insert Controls</link>"
+msgstr "<link href=\"text/sbasic/shared/02/20000000.xhp\" name=\"Insert Controls\">Insertar campos de control</link>"
+
+#: 20000000.xhp#par_id3147000.2.help.text
+msgid "<ahelp hid=\".uno:ChooseControls\">Opens the <emph>Toolbox</emph> bar.</ahelp>"
+msgstr "<ahelp hid=\".uno:ChooseControls\">Abre la barra <emph>Cuadro de herramientas</emph>.</ahelp>"
+
+#: 20000000.xhp#par_id3147226.help.text
+msgid "<image id=\"img_id3147571\" src=\"cmd/sc_choosecontrols.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147571\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147571\" src=\"cmd/sc_choosecontrols.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147571\">Icono</alt></image>"
+
+#: 20000000.xhp#par_id3153749.3.help.text
+msgctxt "20000000.xhp#par_id3153749.3.help.text"
+msgid "Insert Controls"
+msgstr "Insertar campos de control"
+
+#: 20000000.xhp#par_id3157958.5.help.text
+msgid "In edit mode, double-click a control to open the <link href=\"text/sbasic/shared/01170100.xhp\" name=\"properties dialog\">properties dialog</link>."
+msgstr "En modo de edición, pulse dos veces en un campo de control para abrir el <link href=\"text/sbasic/shared/01170100.xhp\" name=\"properties dialog\">diálogo de propiedades</link>."
+
+#: 20000000.xhp#par_id3148538.6.help.text
+msgid "In edit mode, you can also right-click a control and choose the cut, copy, and paste command."
+msgstr "En modo de edición, también puede pulsarse con el botón derecho en un campo de control y elegir el comando cortar, copiar y pegar."
+
+#: 20000000.xhp#hd_id3148473.7.help.text
+msgid "Button"
+msgstr "Botón"
+
+#: 20000000.xhp#par_id3153824.help.text
+msgid "<image id=\"img_id3157909\" src=\"cmd/sc_insertpushbutton.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3157909\">Icon</alt></image>"
+msgstr "<image id=\"img_id3157909\" src=\"cmd/sc_insertpushbutton.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3157909\">Icono</alt></image>"
+
+#: 20000000.xhp#par_id3147530.8.help.text
+msgid "<ahelp hid=\".uno:InsertPushbutton\">Adds a command button.</ahelp> You can use a command button to execute a command for a defined event, such as a mouse click."
+msgstr "<ahelp hid=\".uno:InsertPushbutton\">Añade un botón de comando.</ahelp> Los botones de comando se pueden usar para ejecutar un comando para una acción definida, como una pulsación del ratón."
+
+#: 20000000.xhp#par_id3154923.9.help.text
+msgid "If you want, you can add text or a graphic to the button."
+msgstr "Si lo desea, puede agregar texto o un gráfico al botón."
+
+#: 20000000.xhp#hd_id3148550.10.help.text
+msgid "Image Control"
+msgstr "Campo gráfico de control"
+
+#: 20000000.xhp#par_id3154138.help.text
+msgid "<image id=\"img_id3144760\" src=\"cmd/sc_objectcatalog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144760\">Icon</alt></image>"
+msgstr "<image id=\"img_id3144760\" src=\"cmd/sc_objectcatalog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144760\">Icono</alt></image>"
+
+#: 20000000.xhp#par_id3151042.11.help.text
+msgid "<ahelp hid=\".uno:InsertImageControl\">Adds a control that displays a graphic.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertImageControl\">Añade un campo de control que muestra un gráfico.</ahelp>"
+
+#: 20000000.xhp#hd_id3150447.12.help.text
+msgid "Check Box"
+msgstr "Casilla de verificación"
+
+#: 20000000.xhp#par_id3155131.help.text
+msgid "<image id=\"img_id3150439\" src=\"cmd/sc_checkbox.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150439\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150439\" src=\"cmd/sc_checkbox.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150439\">Icono</alt></image>"
+
+#: 20000000.xhp#par_id3147317.13.help.text
+msgid "<ahelp hid=\".uno:Checkbox\">Adds a check box that you can use to turn a function on or off.</ahelp>"
+msgstr "<ahelp hid=\".uno:Checkbox\">Añade una casilla de verificación que puede usarse para activar o desactivar una función.</ahelp>"
+
+#: 20000000.xhp#hd_id3150486.14.help.text
+msgid "Option Button"
+msgstr "Campo de opción"
+
+#: 20000000.xhp#par_id3155856.help.text
+msgid "<image id=\"img_id3146921\" src=\"cmd/sc_radiobutton.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146921\">Icon</alt></image>"
+msgstr "<image id=\"img_id3146921\" src=\"cmd/sc_radiobutton.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146921\">Icono</alt></image>"
+
+#: 20000000.xhp#par_id3153575.15.help.text
+msgid "<ahelp hid=\".uno:Radiobutton\">Adds a button that allows a user to select from a number of options.</ahelp> Grouped option buttons must have consecutive tab indices. They are commonly encircled by a group box. If you have two groups of option buttons, you must insert a tab index between the tab indices of the two groups on the group frame."
+msgstr "<ahelp hid=\".uno:Radiobutton\">Añade un botón que permite al usuario seleccionar entre varias opciones.</ahelp> Los botones de opción agrupados deben tener índices de tabulación consecutivos. Normalmente están rodeados por un cuadro de grupo. Si se dispone de dos grupos de botones de opción, debe insertarse un índice de tabulación entre los índices de los dos grupos en el marco del grupo."
+
+#: 20000000.xhp#hd_id3154729.16.help.text
+msgid "Label Field"
+msgstr "Etiqueta"
+
+#: 20000000.xhp#par_id3149300.help.text
+msgid "<image id=\"img_id3153415\" src=\"cmd/sc_insertfixedtext.png\" width=\"0.0874inch\" height=\"0.0874inch\"><alt id=\"alt_id3153415\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153415\" src=\"cmd/sc_insertfixedtext.png\" width=\"0.0874inch\" height=\"0.0874inch\"><alt id=\"alt_id3153415\">Icono</alt></image>"
+
+#: 20000000.xhp#par_id3156181.17.help.text
+msgid "<ahelp hid=\".uno:InsertFixedText\">Adds a field for displaying text labels.</ahelp> These labels are only for displaying predefined text, and not for entering text."
+msgstr "<ahelp hid=\".uno:InsertFixedText\">Añade un campo para mostrar etiquetas.</ahelp> Estas etiquetas son sólo para mostrar texto predefinido y no para introducir texto."
+
+#: 20000000.xhp#hd_id3149123.18.help.text
+msgid "Text Box"
+msgstr "Campo de texto"
+
+#: 20000000.xhp#par_id3153766.help.text
+msgid "<image id=\"img_id3148996\" src=\"cmd/sc_edit.png\" width=\"0.0874inch\" height=\"0.0874inch\"><alt id=\"alt_id3148996\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148996\" src=\"cmd/sc_edit.png\" width=\"0.0874inch\" height=\"0.0874inch\"><alt id=\"alt_id3148996\">Icono</alt></image>"
+
+#: 20000000.xhp#par_id3153712.19.help.text
+msgid "<ahelp hid=\".uno:InsertEdit\">Adds an input box where you can enter and edit text.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertEdit\">Añade un campo de entrada en el que se puede introducir y editar texto.</ahelp>"
+
+#: 20000000.xhp#hd_id3154253.20.help.text
+msgid "List Box"
+msgstr "Listado"
+
+#: 20000000.xhp#par_id3155959.help.text
+msgid "<image id=\"img_id3163808\" src=\"cmd/sc_listbox.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3163808\">Icon</alt></image>"
+msgstr "<image id=\"img_id3163808\" src=\"cmd/sc_listbox.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3163808\">Icono</alt></image>"
+
+#: 20000000.xhp#par_id3155176.21.help.text
+msgid "<ahelp hid=\".uno:InsertListbox\">Adds a box where you can click an entry on a list.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertListbox\">Añade un cuadro en el que se puede pulsar una entrada de la lista.</ahelp>"
+
+#: 20000000.xhp#hd_id3150644.22.help.text
+msgid "Combo Box"
+msgstr "Cuadro combinado"
+
+#: 20000000.xhp#par_id3148418.help.text
+msgid "<image id=\"img_id3153200\" src=\"cmd/sc_combobox.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3153200\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153200\" src=\"cmd/sc_combobox.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3153200\">Icono</alt></image>"
+
+#: 20000000.xhp#par_id3154199.23.help.text
+msgid "<ahelp hid=\".uno:Combobox\">Adds a combo box. A combo box is a one line list box that a user can click, and then choose an entry from the list.</ahelp> If you want, you can make the entries in the combo box \"read only\"."
+msgstr "<ahelp hid=\".uno:Combobox\">Añade un cuadro combinado. Un cuadro combinado es un listado de una línea en el que el usuario puede pulsar y elegir una entrada de la lista.</ahelp> Si se desea, se pueden convertir las entradas del cuadro combinado como \"de sólo lectura\"."
+
+#: 20000000.xhp#hd_id3154585.24.help.text
+msgid "Horizontal Scrollbar"
+msgstr "Barra de desplazamiento horizontal"
+
+#: 20000000.xhp#par_id3153781.help.text
+msgid "<image id=\"img_id3149530\" src=\"cmd/sc_hscrollbar.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149530\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149530\" src=\"cmd/sc_hscrollbar.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149530\">Icono</alt></image>"
+
+#: 20000000.xhp#par_id3153232.25.help.text
+msgid "<ahelp hid=\".uno:HScrollbar\">Adds a horizontal scrollbar to the dialog.</ahelp>"
+msgstr "<ahelp hid=\".uno:HScrollbar\">Añade una barra de desplazamiento horizontal al diálogo.</ahelp>"
+
+#: 20000000.xhp#hd_id3154119.26.help.text
+msgid "Vertical Scrollbar"
+msgstr "Barra de desplazamiento vertical"
+
+#: 20000000.xhp#par_id3150515.help.text
+msgid "<image id=\"img_id3150203\" src=\"cmd/sc_vscrollbar.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150203\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150203\" src=\"cmd/sc_vscrollbar.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150203\">Icono</alt></image>"
+
+#: 20000000.xhp#par_id3155376.27.help.text
+msgid "<ahelp hid=\".uno:VScrollbar\">Adds a vertical scrollbar to the dialog.</ahelp>"
+msgstr "<ahelp hid=\".uno:VScrollbar\">Añade una barra de desplazamiento vertical al diálogo.</ahelp>"
+
+#: 20000000.xhp#hd_id3150313.28.help.text
+msgid "Group Box"
+msgstr "Marco de grupo"
+
+#: 20000000.xhp#par_id3151184.help.text
+msgid "<image id=\"img_id3151335\" src=\"cmd/sc_groupbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151335\">Icon</alt></image>"
+msgstr "<image id=\"img_id3151335\" src=\"cmd/sc_groupbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151335\">Icono</alt></image>"
+
+#: 20000000.xhp#par_id3159622.29.help.text
+msgid "<ahelp hid=\".uno:Groupbox\">Adds a frame that you can use to visually group similar controls, such as option buttons.</ahelp>"
+msgstr "<ahelp hid=\".uno:Groupbox\">Añade un marco que puede usarse para agrupar visualmente campos de control similares, como botones de opción.</ahelp>"
+
+#: 20000000.xhp#par_id3148820.30.help.text
+msgid "To define two different groups of option buttons, ensure that the tab index of the group frame is between the tab indices of the two groups."
+msgstr "Para definir dos grupos distintos de botones de opción, asegúrese que el índice de tabulación del marco de grupo esté entre los de los dos grupos."
+
+#: 20000000.xhp#hd_id3149330.31.help.text
+msgid "Progress Bar"
+msgstr "Barra de progresión"
+
+#: 20000000.xhp#par_id3159093.help.text
+msgid "<image id=\"img_id3150318\" src=\"cmd/sc_progressbar.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150318\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150318\" src=\"cmd/sc_progressbar.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150318\">Icono</alt></image>"
+
+#: 20000000.xhp#par_id3157979.32.help.text
+msgid "<ahelp hid=\".uno:ProgressBar\">Adds a progress bar to the dialog.</ahelp>"
+msgstr "<ahelp hid=\".uno:ProgressBar\">Añade una barra de progresión al diálogo.</ahelp>"
+
+#: 20000000.xhp#hd_id3145654.33.help.text
+msgid "Horizontal Line"
+msgstr "Línea horizontal"
+
+#: 20000000.xhp#par_id3150888.help.text
+msgid "<image id=\"img_id3152872\" src=\"cmd/sc_hfixedline.png\" width=\"0.2201inch\" height=\"0.2201inch\"><alt id=\"alt_id3152872\">Icon</alt></image>"
+msgstr "<image id=\"img_id3152872\" src=\"cmd/sc_hfixedline.png\" width=\"0.2201inch\" height=\"0.2201inch\"><alt id=\"alt_id3152872\">Icono</alt></image>"
+
+#: 20000000.xhp#par_id3151000.34.help.text
+msgid "<ahelp hid=\".uno:HFixedLine\">Adds a horizontal line to the dialog.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:HFixedLine\">Añade una línea horizontal al diálogo.</ahelp>"
+
+#: 20000000.xhp#hd_id3155095.35.help.text
+msgid "Vertical Line"
+msgstr "Línea vertical"
+
+#: 20000000.xhp#par_id3154913.help.text
+msgid "<image id=\"img_id3153249\" src=\"cmd/sc_vfixedline.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153249\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153249\" src=\"cmd/sc_vfixedline.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153249\">Icono</alt></image>"
+
+#: 20000000.xhp#par_id3159203.36.help.text
+msgid "<ahelp hid=\".uno:VFixedLine\">Adds a vertical line to the dialog.</ahelp>"
+msgstr "<ahelp hid=\".uno:VFixedLine\">Añade una línea vertical al diálogo.</ahelp>"
+
+#: 20000000.xhp#hd_id3154540.37.help.text
+msgid "Date Field"
+msgstr "Campo de fecha"
+
+#: 20000000.xhp#par_id3148901.help.text
+msgid "<image id=\"img_id3151010\" src=\"cmd/sc_adddatefield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151010\">Icon</alt></image>"
+msgstr "<image id=\"img_id3151010\" src=\"cmd/sc_adddatefield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151010\">Icono</alt></image>"
+
+#: 20000000.xhp#par_id3154214.38.help.text
+msgid "<ahelp hid=\".uno:AddDateField\">Adds a date field.</ahelp>"
+msgstr "<ahelp hid=\".uno:AddDateField\">Añade un campo de fecha.</ahelp>"
+
+#: 20000000.xhp#par_id3150046.39.help.text
+msgid "If you assign the \"dropdown\" property to the date field, a user can drop down a calendar to select a date."
+msgstr "Si se asigna la propiedad \"dropdown\" al campo de fecha, los usuarios pueden desplegar un calendario para seleccionar una fecha."
+
+#: 20000000.xhp#hd_id3151126.40.help.text
+msgid "Time Field"
+msgstr "Campo horario"
+
+#: 20000000.xhp#par_id3154338.help.text
+msgid "<image id=\"img_id3147077\" src=\"cmd/sc_timefield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3147077\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147077\" src=\"cmd/sc_timefield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3147077\">Icono</alt></image>"
+
+#: 20000000.xhp#par_id3151191.41.help.text
+msgid "<ahelp hid=\"SID_INSERT_TIMEFIELD\">Adds a time field.</ahelp>"
+msgstr "<ahelp hid=\"SID_INSERT_TIMEFIELD\">Añade un campo de hora.</ahelp>"
+
+#: 20000000.xhp#hd_id3154733.42.help.text
+msgid "Numeric Field"
+msgstr "Campo numérico"
+
+#: 20000000.xhp#par_id3146107.help.text
+msgid "<image id=\"img_id3147499\" src=\"cmd/sc_insertnumericfield.png\" width=\"0.0874inch\" height=\"0.0874inch\"><alt id=\"alt_id3147499\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147499\" src=\"cmd/sc_insertnumericfield.png\" width=\"0.0874inch\" height=\"0.0874inch\"><alt id=\"alt_id3147499\">Icono</alt></image>"
+
+#: 20000000.xhp#par_id3147244.43.help.text
+msgid "<ahelp hid=\".uno:InsertNumericField\">Adds a numeric field.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertNumericField\">Añade un campo numérico.</ahelp>"
+
+#: 20000000.xhp#hd_id3149870.44.help.text
+msgid "Currency Field"
+msgstr "Campo de moneda"
+
+#: 20000000.xhp#par_id3153958.help.text
+msgid "<image id=\"img_id3150435\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150435\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150435\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150435\">Icono</alt></image>"
+
+#: 20000000.xhp#par_id3154064.45.help.text
+msgid "<ahelp hid=\".uno:InsertCurrencyField\">Adds a currency field.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertCurrencyField\">Añade un campo de moneda.</ahelp>"
+
+#: 20000000.xhp#hd_id3150117.46.help.text
+msgid "Formatted Field"
+msgstr "Campo formateado"
+
+#: 20000000.xhp#par_id3153162.help.text
+msgid "<image id=\"img_id3152807\" src=\"cmd/sc_formattedfield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152807\">Icon</alt></image>"
+msgstr "<image id=\"img_id3152807\" src=\"cmd/sc_formattedfield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152807\">Icono</alt></image>"
+
+#: 20000000.xhp#par_id3146320.47.help.text
+msgid "<ahelp hid=\".uno:InsertFormattedField\">Adds a text box where you can define the formatting for text that is inputted or outputted as well as any limiting values.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:InsertFormattedField\">Añade un campo de texto en el que se puede definir el formato del texto que se introduce o se produce así como cualquier valor de límite.</ahelp>"
+
+#: 20000000.xhp#hd_id3156160.48.help.text
+msgid "Pattern Field"
+msgstr "Campo enmascarado"
+
+#: 20000000.xhp#par_id3150379.help.text
+msgid "<image id=\"img_id3150032\" src=\"cmd/sc_insertpatternfield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150032\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150032\" src=\"cmd/sc_insertpatternfield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150032\">Icono</alt></image>"
+
+#: 20000000.xhp#par_id3147382.49.help.text
+msgid "<ahelp hid=\".uno:InsertPatternField\">Adds a masked field.</ahelp> A masked field consists of an input mask and a literal mask. The input mask determines which user data can be entered. The literal mask determines the state of the masked field when the form is loaded."
+msgstr "<ahelp hid=\".uno:InsertPatternField\">Agrega un campo enmascarado.</ahelp> Un campo enmascarado consta de una máscara de entrada y de una máscara literal. La máscara de entrada determina los datos de usuario que se pueden entrar. La máscara literal define el estado del campo enmascarado al cargar el formulario."
+
+#: 20000000.xhp#hd_id3146815.50.help.text
+msgid "File Selection"
+msgstr "Selección de archivo"
+
+#: 20000000.xhp#par_id3149194.help.text
+msgid "<image id=\"img_id3149101\" src=\"cmd/sc_filecontrol.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149101\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149101\" src=\"cmd/sc_filecontrol.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149101\">Icono</alt></image>"
+
+#: 20000000.xhp#par_id3145632.51.help.text
+msgid "<ahelp hid=\".uno:InsertFileControl\">Adds a button that opens a file selection dialog.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertFileControl\">Agrega que un boton que abre un diálogo de selección d archivo.</ahelp>"
+
+#: 20000000.xhp#hd_id3155912.52.help.text
+msgid "Select"
+msgstr "Selección"
+
+#: 20000000.xhp#par_id3154903.help.text
+msgid "<image id=\"img_id3150653\" src=\"cmd/sc_drawselect.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150653\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150653\" src=\"cmd/sc_drawselect.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150653\">Icono</alt></image>"
+
+#: 20000000.xhp#par_id3148465.53.help.text
+msgid "<ahelp hid=\".\">Activates or deactivates the Selection mode. In this mode, you can select the controls in a dialog so that you can edit them.</ahelp>"
+msgstr "<ahelp hid=\".\">Activa o desactiva el modo de selección. En este modo puede seleccionar los controles de un diálogo para que pueda modificarlos.</ahelp>"
+
+#: 20000000.xhp#hd_id3154055.54.help.text
+msgid "Properties"
+msgstr "Propiedades"
+
+#: 20000000.xhp#par_id3148725.help.text
+msgid "<image id=\"img_id3146874\" src=\"cmd/sc_controlproperties.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146874\">Icon</alt></image>"
+msgstr "<image id=\"img_id3146874\" src=\"cmd/sc_controlproperties.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146874\">Icono</alt></image>"
+
+#: 20000000.xhp#par_id3151105.55.help.text
+msgid "<ahelp hid=\".uno:ShowPropBrowser\">Opens a dialog where you can edit the <link href=\"text/sbasic/shared/01170100.xhp\" name=\"properties\">properties</link> of the selected control.</ahelp>"
+msgstr "<ahelp hid=\".uno:ShowPropBrowser\">Abre un diálogo en que se pueden editar las <link href=\"text/sbasic/shared/01170100.xhp\" name=\"propiedades\">propiedades</link> del campo de control seleccionado.</ahelp>"
+
+#: 20000000.xhp#hd_id3153746.56.help.text
+msgid "Activate Test Mode"
+msgstr "Activar modo de prueba"
+
+#: 20000000.xhp#par_id3147417.help.text
+msgid "<image id=\"img_id3148883\" src=\"cmd/sc_testmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148883\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148883\" src=\"cmd/sc_testmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148883\">Icono</alt></image>"
+
+#: 20000000.xhp#par_id3150699.57.help.text
+msgid "<ahelp hid=\".uno:TestMode\">Starts test mode. Click the dialog closer icon to end test mode.</ahelp>"
+msgstr "<ahelp hid=\".uno:TestMode\">Comienza el modo de prueba. Haz clic del dialogo cerca del ícono para finalizar el modo de prueba.</ahelp>"
+
+#: 20000000.xhp#hd_id2954191.help.text
+msgid "Manage Language"
+msgstr "Maneja idioma"
+
+#: 20000000.xhp#par_id2320017.help.text
+msgid "<image id=\"img_id2856837\" src=\"cmd/sc_managelanguage.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2856837\">Manage Language icon</alt></image>"
+msgstr "<image id=\"img_id2856837\" src=\"cmd/sc_managelanguage.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2856837\">Icono de manejo de idioma</alt></image>"
+
+#: 20000000.xhp#par_id1261940.help.text
+msgid "<ahelp hid=\".uno:ManageLanguage\">Opens a <link href=\"text/sbasic/guide/translation.xhp\">dialog</link> to enable or manage multiple sets of dialog resources for multiple languages.</ahelp>"
+msgstr "<ahelp hid=\".uno:ManageLanguage\">Abre un <link href=\"text/sbasic/guide/translation.xhp\">diálogo</link> para activar y manejar multiples recursos de dialogos para multiples idiomas.</ahelp>"
+
+#: 20000000.xhp#hd_id11902.help.text
+msgid "Tree Control"
+msgstr "Control Árbol"
+
+#: 20000000.xhp#par_id7511520.help.text
+msgid "<image id=\"Graphic2\" src=\"cmd/sc_inserttreecontrol.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_\">Manage Language icon</alt></image>"
+msgstr "<image id=\"Graphic2\" src=\"cmd/sc_inserttreecontrol.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_\">Icono de manejo de idioma</alt></image>"
+
+#: 20000000.xhp#par_id9961851.help.text
+msgid "<ahelp hid=\".\">Adds a tree control that can show a hierarchical list. You can populate the list by your program, using API calls (XtreeControl).</ahelp>"
+msgstr "<ahelp hid=\".\">Agregue un control árbol que puede mostrar una lista jerarquizada. Puede poblarlo la lista a través de llamadas API a (XtreeControl).</ahelp>"
+
+#: 11050000.xhp#tit.help.text
+msgctxt "11050000.xhp#tit.help.text"
+msgid "Single Step"
+msgstr "Paso único"
+
+#: 11050000.xhp#hd_id3155934.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Paso único</link>"
+
+#: 11050000.xhp#par_id3146117.2.help.text
+msgid "<ahelp hid=\".uno:BasicStepInto\">Runs the macro and stops it after the next command.</ahelp>"
+msgstr "<ahelp hid=\".uno:BasicStepInto\">Ejecuta la macro y se detiene después del siguiente comando.</ahelp>"
+
+#: 11050000.xhp#par_id3152801.4.help.text
+msgctxt "11050000.xhp#par_id3152801.4.help.text"
+msgid "You can use this command in conjunction with the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> command to troubleshoot errors."
+msgstr "Este comando se puede usar junto con el comando <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Inspección</link> para solucionar errores."
+
+#: 11050000.xhp#par_id3157958.help.text
+msgid "<image id=\"img_id3153345\" src=\"cmd/sc_basicstepinto.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153345\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153345\" src=\"cmd/sc_basicstepinto.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153345\">Icono</alt></image>"
+
+#: 11050000.xhp#par_id3147573.3.help.text
+msgctxt "11050000.xhp#par_id3147573.3.help.text"
+msgid "Single Step"
+msgstr "Paso único"
+
+#: 11050000.xhp#par_id3149235.6.help.text
+msgid "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step function\">Procedure Step function</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step function\">Función Paso de procedimiento</link>"
+
+#: 11090000.xhp#tit.help.text
+msgctxt "11090000.xhp#tit.help.text"
+msgid "Object Catalog"
+msgstr "Catálogo de objetos"
+
+#: 11090000.xhp#hd_id3153255.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11090000.xhp\" name=\"Object Catalog\">Object Catalog</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11090000.xhp\" name=\"Object Catalog\">Catálogo de objetos</link>"
+
+#: 11090000.xhp#par_id3151384.2.help.text
+msgid "<ahelp hid=\".uno:ObjectCatalog\">Opens the <emph>Objects</emph> dialog, where you can view Basic objects.</ahelp>"
+msgstr "<ahelp hid=\".uno:ObjectCatalog\">Abre el diálogo <emph>Objetos</emph>, en el que pueden verse objetos Basic.</ahelp>"
+
+#: 11090000.xhp#par_id3147576.15.help.text
+msgid "Double click the name of a function or sub to load the module that contains that function or sub, and to position the cursor. Click the name of a module or dialog and then click the <emph>Show</emph> icon to load and display that module or dialog."
+msgstr "Pulse dos veces el nombre de una función o sub para cargar el módulo que contenga esta función o sub y para colocar el cursor. Pulse el nombre de un módulo o diálogo y pulse el símbolo <emph>Mostrar</emph> para cargar y visualizar ese módulo o diálogo."
+
+#: 11090000.xhp#par_id3148538.help.text
+msgid "<image id=\"img_id3163803\" src=\"cmd/sc_objectcatalog.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3163803\">Icon</alt></image>"
+msgstr "<image id=\"img_id3163803\" src=\"cmd/sc_objectcatalog.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3163803\">Icono</alt></image>"
+
+#: 11090000.xhp#par_id3154515.3.help.text
+msgctxt "11090000.xhp#par_id3154515.3.help.text"
+msgid "Object Catalog"
+msgstr "Catálogo de objetos"
+
+#: 11090000.xhp#hd_id3155388.4.help.text
+msgctxt "11090000.xhp#hd_id3155388.4.help.text"
+msgid "Show"
+msgstr "Mostrar"
+
+#: 11090000.xhp#par_id3155630.5.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_OBJCAT_SHOW\">Display the source text or dialog of a selected object.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_OBJCAT_SHOW\">Muestra el diálogo o el texto de origen del objeto seleccionado.</ahelp>"
+
+#: 11090000.xhp#par_id3153126.help.text
+msgid "<image id=\"img_id3148474\" src=\"basctl/res/im01.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148474\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148474\" src=\"basctl/res/im01.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148474\">Icono</alt></image>"
+
+#: 11090000.xhp#par_id3147560.6.help.text
+msgctxt "11090000.xhp#par_id3147560.6.help.text"
+msgid "Show"
+msgstr "Mostrar"
+
+#: 11090000.xhp#hd_id3146794.13.help.text
+msgid "Window Area"
+msgstr "Area de ventana"
+
+#: 11090000.xhp#par_id3149655.14.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_OBJECTCAT\">Displays a hierarchical view of the current $[officename] macro libraries, modules, and dialogs. To display the contents of an item in the window, double-click its name or select the name and click the <emph>Show</emph> icon.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_OBJECTCAT\">Muestra una lista jerárquica de los diálogos, módulos y bibliotecas de macros vigentes de $[officename]. Si desea ver en pantalla el contenido de un elemento de la ventana, haga doble clic en el nombre, o seleccione el nombre y haga clic en el icono <emph>Mostrar</emph>.</ahelp>"
+
+#: 11120000.xhp#tit.help.text
+msgctxt "11120000.xhp#tit.help.text"
+msgid "Find Parentheses"
+msgstr "Buscar paréntesis"
+
+#: 11120000.xhp#hd_id3149497.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11120000.xhp\" name=\"Find Parentheses\">Find Parentheses</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11120000.xhp\" name=\"Find Parentheses\">Buscar paréntesis</link>"
+
+#: 11120000.xhp#par_id3155150.2.help.text
+msgid "<ahelp hid=\".uno:MatchGroup\" visibility=\"visible\">Highlights the text that is enclosed by two corresponding brackets. Place the text cursor in front of an opening or closing bracket, and then click this icon.</ahelp>"
+msgstr "<ahelp hid=\".uno:MatchGroup\" visibility=\"visible\">Resalta el texto que está incluido entre dos paréntesis. Sitúe el cursor de texto delante de un paréntesis de apertura o cierre y pulse este icono.</ahelp>"
+
+#: 11120000.xhp#par_id3149182.help.text
+msgid "<image src=\"cmd/sc_matchgroup.png\" id=\"img_id3155892\"><alt id=\"alt_id3155892\">Icon</alt></image>"
+msgstr "<image src=\"cmd/sc_matchgroup.png\" id=\"img_id3155892\"><alt id=\"alt_id3155892\">Icono</alt></image>"
+
+#: 11120000.xhp#par_id3147276.3.help.text
+msgctxt "11120000.xhp#par_id3147276.3.help.text"
+msgid "Find Parentheses"
+msgstr "Buscar paréntesis"
+
+#: 11110000.xhp#tit.help.text
+msgctxt "11110000.xhp#tit.help.text"
+msgid "Modules"
+msgstr "Módulos"
+
+#: 11110000.xhp#hd_id3148520.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11110000.xhp\" name=\"Modules\">Modules</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11110000.xhp\" name=\"Modules\">Módulos</link>"
+
+#: 11110000.xhp#par_id3156414.2.help.text
+msgid "<ahelp visibility=\"visible\" hid=\".uno:ModuleDialog\">Click here to open the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> dialog.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:ModuleDialog\">Pulse aquí para abrir el diálogo <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Administrar</emph></link>.</ahelp>"
+
+#: 11110000.xhp#par_id3157958.help.text
+msgid "<image src=\"cmd/sc_moduledialog.png\" id=\"img_id3155535\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgstr "<image src=\"cmd/sc_moduledialog.png\" id=\"img_id3155535\"><alt id=\"alt_id3155535\">Icono</alt></image>"
+
+#: 11110000.xhp#par_id3145383.3.help.text
+msgctxt "11110000.xhp#par_id3145383.3.help.text"
+msgid "Modules"
+msgstr "Módulos"
+
+#: 11160000.xhp#tit.help.text
+msgctxt "11160000.xhp#tit.help.text"
+msgid "Step Out"
+msgstr "Salto atrás"
+
+#: 11160000.xhp#hd_id3148983.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11160000.xhp\" name=\"Step Out\">Step Out</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11160000.xhp\" name=\"Step Out\">Salto atrás</link>"
+
+#: 11160000.xhp#par_id3157898.2.help.text
+msgid "<ahelp hid=\".uno:BasicStepOut\" visibility=\"visible\">Jumps back to the previous routine in the current macro.</ahelp>"
+msgstr "<ahelp hid=\".uno:BasicStepOut\" visibility=\"visible\">Retrocede a la rutina anterior de la macro actual.</ahelp>"
+
+#: 11160000.xhp#par_id3156410.help.text
+msgid "<image src=\"cmd/sc_basicstepout.png\" id=\"img_id3159233\"><alt id=\"alt_id3159233\">Icon</alt></image>"
+msgstr "<image src=\"cmd/sc_basicstepout.png\" id=\"img_id3159233\"><alt id=\"alt_id3159233\">Icono</alt></image>"
+
+#: 11160000.xhp#par_id3158421.3.help.text
+msgctxt "11160000.xhp#par_id3158421.3.help.text"
+msgid "Step Out"
+msgstr "Salto atrás"
+
+#: 11030000.xhp#tit.help.text
+msgctxt "11030000.xhp#tit.help.text"
+msgid "Run"
+msgstr "Ejecutar"
+
+#: 11030000.xhp#hd_id3153255.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">Run</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">Ejecutar</link>"
+
+#: 11030000.xhp#par_id3159201.2.help.text
+msgid "<ahelp hid=\".uno:RunBasic\">Runs the first macro of the current module.</ahelp>"
+msgstr "<ahelp hid=\".uno:RunBasic\">Ejecuta la primera macro del módulo actual.</ahelp>"
+
+#: 11030000.xhp#par_id3156410.help.text
+msgid "<image id=\"img_id3153311\" src=\"cmd/sc_runbasic.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153311\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153311\" src=\"cmd/sc_runbasic.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153311\">Símbolo</alt></image>"
+
+#: 11030000.xhp#par_id3154750.3.help.text
+msgctxt "11030000.xhp#par_id3154750.3.help.text"
+msgid "Run"
+msgstr "Ejecutar"
+
+#: 11140000.xhp#tit.help.text
+msgid "Insert Source Text"
+msgstr "Insertar texto fuente"
+
+#: 11140000.xhp#hd_id3154044.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11140000.xhp\" name=\"Insert Source Text\">Insert Source Text</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11140000.xhp\" name=\"Insert Source Text\">Insertar texto fuente</link>"
+
+#: 11140000.xhp#par_id3150702.2.help.text
+msgid "<ahelp hid=\".uno:LoadBasic\">Opens the Basic source text in the Basic IDE window.</ahelp>"
+msgstr "<ahelp hid=\".uno:LoadBasic\">Abre el texto fuente Basic en la ventana Basic IDE.</ahelp>"
+
+#: 11140000.xhp#par_id3150445.3.help.text
+msgid "Place the cursor in the code where you want to insert the source text, and then click the <emph>Insert source text</emph> icon. Locate the file that contains the Basic source text that you want to insert, and then click <emph>Open</emph>."
+msgstr "Sitúe el cursor en el código en que desee insertar el texto fuente y pulse en el icono <emph>Insertar el texto fuente</emph>. Busque el archivo que contiene el texto fuente Basic que desee insertar y pulse <emph>Abrir</emph>."
+
+#: 11140000.xhp#par_id3145136.help.text
+msgid "<image id=\"img_id3147571\" src=\"cmd/sc_loadbasic.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3147571\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147571\" src=\"cmd/sc_loadbasic.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3147571\">Icono</alt></image>"
+
+#: 11140000.xhp#par_id3145346.4.help.text
+msgid "Insert source text"
+msgstr "Insertar texto fuente"
diff --git a/source/es/helpcontent2/source/text/scalc.po b/source/es/helpcontent2/source/text/scalc.po
new file mode 100644
index 00000000000..63572b8f72d
--- /dev/null
+++ b/source/es/helpcontent2/source/text/scalc.po
@@ -0,0 +1,762 @@
+#. extracted from helpcontent2/source/text/scalc.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fscalc.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"PO-Revision-Date: 2012-07-15 10:28+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: main0112.xhp#tit.help.text
+msgid "Data"
+msgstr "Datos"
+
+#: main0112.xhp#hd_id3153254.1.help.text
+msgid "<link href=\"text/scalc/main0112.xhp\" name=\"Data\">Data</link>"
+msgstr "<link href=\"text/scalc/main0112.xhp\" name=\"Data\">Datos</link>"
+
+#: main0112.xhp#par_id3147264.2.help.text
+msgid "<ahelp hid=\".\">Use the <emph>Data</emph> menu commands to edit the data in the current sheet. You can define ranges, sort and filter the data, calculate results, outline data, and create a pivot table.</ahelp>"
+msgstr "<ahelp hid=\".\">Use el menú <emph>Datos</emph> para editar los datos en la hoja actual. Puede definir rangos, ordenar y filtrar los datos, calcular resultados, esquematizar datos, y crear una tabla dinámica.</ahelp>"
+
+#: main0112.xhp#hd_id3150400.3.help.text
+msgid "<link href=\"text/scalc/01/12010000.xhp\" name=\"Define Range\">Define Range</link>"
+msgstr "<link href=\"text/scalc/01/12010000.xhp\" name=\"Define Range\">Definir rango</link>"
+
+#: main0112.xhp#hd_id3125863.4.help.text
+msgid "<link href=\"text/scalc/01/12020000.xhp\" name=\"Select Range\">Select Range</link>"
+msgstr "<link href=\"text/scalc/01/12020000.xhp\" name=\"Select Range\">Seleccionar rango</link>"
+
+#: main0112.xhp#hd_id3153726.5.help.text
+msgid "<link href=\"text/scalc/01/12030000.xhp\" name=\"Sort\">Sort</link>"
+msgstr "<link href=\"text/scalc/01/12030000.xhp\" name=\"Sort\">Ordenar</link>"
+
+#: main0112.xhp#hd_id3153142.6.help.text
+msgid "<link href=\"text/scalc/01/12050000.xhp\" name=\"Subtotals\">Subtotals</link>"
+msgstr "<link href=\"text/scalc/01/12050000.xhp\" name=\"Subtotals\">Subtotales</link>"
+
+#: main0112.xhp#hd_id3151073.10.help.text
+msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"Validity\">Validity</link>"
+msgstr "<link href=\"text/scalc/01/12120000.xhp\" name=\"Validity\">Validez</link>"
+
+#: main0112.xhp#hd_id3145254.7.help.text
+msgid "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple Operations\">Multiple Operations</link>"
+msgstr "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple Operations\">Operaciones múltiples</link>"
+
+#: main0112.xhp#hd_id1387066.help.text
+msgid "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
+msgstr "<link href=\"text/scalc/01/text2columns.xhp\">Texto a Columnas</link>"
+
+#: main0112.xhp#hd_id3150717.8.help.text
+msgid "<link href=\"text/scalc/01/12070000.xhp\" name=\"Consolidate\">Consolidate</link>"
+msgstr "<link href=\"text/scalc/01/12070000.xhp\" name=\"Consolidate\">Consolidar</link>"
+
+#: main0112.xhp#hd_id3154754.9.help.text
+msgid "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
+msgstr "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Actualizar rango</link>"
+
+#: main0101.xhp#tit.help.text
+msgid "File"
+msgstr "Archivo"
+
+#: main0101.xhp#hd_id3156023.1.help.text
+msgid "<link href=\"text/scalc/main0101.xhp\" name=\"File\">File</link>"
+msgstr "<link href=\"text/scalc/main0101.xhp\" name=\"File\">Archivo</link>"
+
+#: main0101.xhp#par_id3151112.2.help.text
+msgid "<ahelp hid=\".\">These commands apply to the current document, open a new document, or close the application.</ahelp>"
+msgstr "<ahelp hid=\".\">Estos comandos aplican para el documento actual, abrir un documento nuevo, o cerrar la aplicación.</ahelp>"
+
+#: main0101.xhp#hd_id3154684.4.help.text
+msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
+msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Abrir</link>"
+
+#: main0101.xhp#hd_id3147434.5.help.text
+msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
+msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Guardar como</link>"
+
+#: main0101.xhp#hd_id3147396.11.help.text
+msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
+msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versiones</link>"
+
+#: main0101.xhp#hd_id3149400.7.help.text
+msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
+msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Propiedades</link>"
+
+#: main0101.xhp#hd_id3155445.9.help.text
+msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
+msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Imprimir</link>"
+
+#: main0101.xhp#hd_id3147339.10.help.text
+msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printer Setup</link>"
+msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Configuración de la impresora</link>"
+
+#: main0206.xhp#tit.help.text
+msgid "Formula Bar"
+msgstr "Barra de fórmulas"
+
+#: main0206.xhp#hd_id3147264.1.help.text
+msgid "<link href=\"text/scalc/main0206.xhp\" name=\"Formula Bar\">Formula Bar</link>"
+msgstr "<link href=\"text/scalc/main0206.xhp\" name=\"Formula Bar\">Barra de fórmulas</link>"
+
+#: main0206.xhp#par_id3150400.2.help.text
+msgid "<ahelp hid=\"HID_SC_INPUTWIN\">Use this bar to enter formulas.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_INPUTWIN\">Use esta barra para escribir fórmulas.</ahelp>"
+
+#: main0104.xhp#tit.help.text
+msgid "Insert"
+msgstr "Insertar"
+
+#: main0104.xhp#hd_id3157909.1.help.text
+msgid "<link href=\"text/scalc/main0104.xhp\" name=\"Insert\">Insert</link>"
+msgstr "<link href=\"text/scalc/main0104.xhp\" name=\"Insert\">Insertar</link>"
+
+#: main0104.xhp#par_id3153896.2.help.text
+msgid "<ahelp hid=\".\">The Insert menu contains commands for inserting new elements, such as cells, rows, sheets and cell names into the current sheet.</ahelp>"
+msgstr "<ahelp hid=\".\">El menú Insertar contiene comandos para insertar nuevos elementos, como celdas, filas, hojas y nombres de celda en la hoja actual.</ahelp>"
+
+#: main0104.xhp#hd_id3150769.3.help.text
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Cells\">Cells</link>"
+msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Cells\">Celdas</link>"
+
+#: main0104.xhp#hd_id3149260.4.help.text
+msgid "<link href=\"text/scalc/01/04050000.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr "<link href=\"text/scalc/01/04050000.xhp\" name=\"Sheet\">Hoja</link>"
+
+#: main0104.xhp#hd_id3153726.7.help.text
+msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
+msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Símbolos</link>"
+
+#: main0104.xhp#hd_id3156285.13.help.text
+msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
+msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hipervínculo</link>"
+
+#: main0104.xhp#hd_id3154492.5.help.text
+msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"Function\">Function</link>"
+msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"Function\">Función</link>"
+
+#: main0104.xhp#hd_id3154511.12.help.text
+msgid "<link href=\"text/scalc/01/04080000.xhp\" name=\"Function List\">Function List</link>"
+msgstr "<link href=\"text/scalc/01/04080000.xhp\" name=\"Function List\">Lista de funciones</link>"
+
+#: main0104.xhp#hd_id3145640.6.help.text
+msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comment</link>"
+msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comentarios</link>"
+
+#: main0104.xhp#hd_id3146918.11.help.text
+msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Chart</link>"
+msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Gráfico</link>"
+
+#: main0104.xhp#par_id0302200904002496.help.text
+msgid "Inserts a chart."
+msgstr "Inserta un gráfico"
+
+#: main0104.xhp#hd_id3147003.10.help.text
+msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
+msgstr "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Marco flotante</link>"
+
+#: main0214.xhp#tit.help.text
+msgid "Picture Bar"
+msgstr "Barra Imagen"
+
+#: main0214.xhp#hd_id3153088.1.help.text
+msgid "<link href=\"text/scalc/main0214.xhp\" name=\"Picture Bar\">Picture Bar</link>"
+msgstr "<link href=\"text/scalc/main0214.xhp\" name=\"Picture Bar\">Barra de imagen</link>"
+
+#: main0214.xhp#par_id3153896.2.help.text
+msgid "<ahelp hid=\".\">The <emph>Picture</emph> bar is displayed when you insert or select a picture in a sheet.</ahelp>"
+msgstr "<ahelp hid=\".\">La barra <emph>Imagen</emph> aparece en pantalla en cuanto se inserta o selecciona una imagen en una hoja.</ahelp>"
+
+#: main0203.xhp#tit.help.text
+msgid "Drawing Object Properties Bar"
+msgstr "Barra Propiedades del objeto de dibujo"
+
+#: main0203.xhp#hd_id3154346.1.help.text
+msgid "<link href=\"text/scalc/main0203.xhp\" name=\"Drawing Object Properties Bar\">Drawing Object Properties Bar</link>"
+msgstr "<link href=\"text/scalc/main0203.xhp\" name=\"Drawing Object Properties Bar\">Barra Propiedades del objeto de dibujo</link>"
+
+#: main0203.xhp#par_id3149656.2.help.text
+msgid "<ahelp hid=\"HID_SC_TOOLBOX_DRAW\">The <emph>Drawing Object Properties</emph> Bar for objects that you select in the sheet contains formatting and alignment commands.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_TOOLBOX_DRAW\">La barra <emph>Propiedades del objeto de dibujo</emph> para los objetos seleccionados en la hoja contiene comandos de formato y alineación.</ahelp>"
+
+#: main0203.xhp#hd_id3145748.3.help.text
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Estilo de línea</link>"
+
+#: main0203.xhp#hd_id3151073.4.help.text
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Ancho de línea</link>"
+
+#: main0203.xhp#hd_id3153417.5.help.text
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Line Color</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Color de línea</link>"
+
+#: main0203.xhp#hd_id3147338.6.help.text
+msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Background Color\">Background Color</link>"
+msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Background Color\">Color de fondo</link>"
+
+#: main0210.xhp#tit.help.text
+msgid "Page Preview Bar"
+msgstr "Barra Vista previa"
+
+#: main0210.xhp#hd_id3156023.1.help.text
+msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Page Preview Bar\">Page Preview Bar</link>"
+msgstr "<link href=\"text/scalc/main0210.xhp\" name=\"Page Preview Bar\">Barra Vista previa</link>"
+
+#: main0210.xhp#par_id3148663.2.help.text
+msgid "<ahelp hid=\"HID_SC_WIN_PREVIEW\">The <emph>Page Preview</emph> Bar is displayed when you choose <emph>File - Page Preview</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_WIN_PREVIEW\">La barra <emph>Vista previa</emph> aparece al seleccionar <emph>Archivo - Vista previa</emph>.</ahelp>"
+
+#: main0210.xhp#hd_id3147393.3.help.text
+msgid "Full Screen"
+msgstr "Pantalla completa"
+
+#: main0210.xhp#par_id460828.help.text
+msgid "Hides the menus and toolbars. To exit the full screen mode, click the <emph>Full Screen On/Off</emph> button."
+msgstr "Oculta los menús y barras de herramientas. Para salir del modo de pantalla completa, haga clic en el botón <emph>Pantalla completa On/Off</emph>."
+
+#: main0210.xhp#hd_id3147394.3.help.text
+msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format Page\">Format Page</link>"
+msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format Page\">Formato de página</link>"
+
+#: main0210.xhp#hd_id3147494.3.help.text
+msgid "Margins"
+msgstr "Márgenes"
+
+#: main0210.xhp#par_id460929.help.text
+msgid "Shows or hides margins of the page. Margins can be dragged by the mouse, and also can be set on <emph>Page</emph> tab of <emph>Page Style</emph> dialog."
+msgstr "Muestra u oculta los márgenes de la página. Los márgenes pueden arrastrarse con el ratón, y también pueden ajustarse en la pestaña <emph>Página</emph> del diálogo <emph>Estilo de página</emph>."
+
+#: main0210.xhp#hd_id3245494.3.help.text
+msgid "Scaling Factor"
+msgstr "Factor de escala"
+
+#: main0210.xhp#par_id460939.help.text
+msgid "This slide defines a page scale for the printed spreadsheet. Scaling factor can be set on <emph>Sheet</emph> tab of <emph>Page Style</emph> dialog, too."
+msgstr "Esta diapositiva define la escala de la página de la hoja de cálculo impresa. El factor de escala puede ser establecido en la pestaña <emph> Hoja</emph> del diálogo <emph>Estilo de página </emph> , también."
+
+#: main0210.xhp#hd_id3147395.3.help.text
+msgid "Close Preview"
+msgstr "Cerrar Vista Previa"
+
+#: main0210.xhp#par_id460829.help.text
+msgid "To exit the page preview, click the <emph>Close Preview</emph> button."
+msgstr "Para salir de la vista preliminar de la página, haga click en el botón <emph>Cerrar Vista Preliminar</emph>."
+
+#: main0000.xhp#tit.help.text
+msgctxt "main0000.xhp#tit.help.text"
+msgid "Welcome to the $[officename] Calc Help"
+msgstr "Bienvenido a la ayuda de $[officename] Calc"
+
+#: main0000.xhp#hd_id3147338.1.help.text
+msgctxt "main0000.xhp#hd_id3147338.1.help.text"
+msgid "Welcome to the $[officename] Calc Help"
+msgstr "Bienvenido a la ayuda de $[officename] Calc"
+
+#: main0000.xhp#hd_id3153965.3.help.text
+msgid "How to Work With $[officename] Calc"
+msgstr "Cómo trabajar con $[officename] Calc"
+
+#: main0000.xhp#par_id3147004.5.help.text
+msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Functions by Category\">List of Functions by Category</link>"
+msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Functions by Category\">Lista de funciones por categoría</link>"
+
+#: main0000.xhp#hd_id3154659.6.help.text
+msgid "$[officename] Calc Menus, Toolbars, and Keys"
+msgstr "Menús, barras de herramientas y teclas en $[officename] Calc"
+
+#: main0000.xhp#hd_id3150883.4.help.text
+msgid "Help about the Help"
+msgstr "Ayuda de la Ayuda"
+
+#: main0103.xhp#tit.help.text
+msgid "View"
+msgstr "Ver"
+
+#: main0103.xhp#hd_id3151112.1.help.text
+msgid "<link href=\"text/scalc/main0103.xhp\" name=\"View\">View</link>"
+msgstr "<link href=\"text/scalc/main0103.xhp\" name=\"View\">Ver</link>"
+
+#: main0103.xhp#par_id3149456.2.help.text
+msgid "<ahelp hid=\".\">This menu contains commands for controlling the on-screen display of the document.</ahelp>"
+msgstr "<ahelp hid=\".\">Este menú contiene comandos para controlar la visualización de las pantallas del documento.</ahelp>"
+
+#: main0103.xhp#par_idN105AB.help.text
+msgid "Normal"
+msgstr "Normal"
+
+#: main0103.xhp#par_idN105AF.help.text
+msgid "<ahelp hid=\".\">Displays the normal view of the sheet.</ahelp>"
+msgstr "<ahelp hid=\".\">Muestra la vista normal de la hoja.</ahelp>"
+
+#: main0103.xhp#hd_id3125863.3.help.text
+msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
+msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
+
+#: main0100.xhp#tit.help.text
+msgid "Menus"
+msgstr "Menús"
+
+#: main0100.xhp#hd_id3156023.1.help.text
+msgid "<variable id=\"main0100\"><link href=\"text/scalc/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
+msgstr "<variable id=\"main0100\"><link href=\"text/scalc/main0100.xhp\" name=\"Menus\">Menús</link></variable>"
+
+#: main0100.xhp#par_id3154760.2.help.text
+msgid "The following menu commands are available for spreadsheets."
+msgstr "Las siguientes órdenes de menú están disponibles para hojas de cálculo."
+
+#: main0205.xhp#tit.help.text
+msgid "Text Formatting Bar"
+msgstr "Barra Formato de texto"
+
+#: main0205.xhp#hd_id3156330.1.help.text
+msgid "<link href=\"text/scalc/main0205.xhp\" name=\"Text Formatting Bar\">Text Formatting Bar</link>"
+msgstr "<link href=\"text/scalc/main0205.xhp\" name=\"Text Formatting Bar\">Barra Formato de texto</link>"
+
+#: main0205.xhp#par_id3151112.2.help.text
+msgid "<ahelp hid=\"HID_SC_TOOLBOX_DRTEXT\">The <emph>Text Formatting</emph> Bar that is displayed when the cursor is in a text object, such as a text frame or a drawing object, contains formatting and alignment commands.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_TOOLBOX_DRTEXT\">La barra <emph>Formato de texto</emph> que se muestra cuando se coloca el cursor en un objeto de texto, por ejemplo, un marco de texto o un objeto de dibujo, contiene comandos de formato y alineación.</ahelp>"
+
+#: main0205.xhp#hd_id3148575.7.help.text
+msgctxt "main0205.xhp#hd_id3148575.7.help.text"
+msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
+msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Color de fuente</link>"
+
+#: main0205.xhp#hd_id3154944.8.help.text
+msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1\">Line Spacing: 1</link>"
+msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1\">Interlineado: 1</link>"
+
+#: main0205.xhp#hd_id3146969.9.help.text
+msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1.5\">Line Spacing: 1.5</link>"
+msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1.5\">Interlineado: 1,5</link>"
+
+#: main0205.xhp#hd_id3153711.10.help.text
+msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 2\">Line Spacing: 2</link>"
+msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 2\">Interlineado: 2</link>"
+
+#: main0205.xhp#hd_id3147345.11.help.text
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Left\">Align Left</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Left\">Alinear a la izquierda</link>"
+
+#: main0205.xhp#hd_id3155337.12.help.text
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Centered\">Centered</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Centered\">Centrado</link>"
+
+#: main0205.xhp#hd_id3147001.13.help.text
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Right\">Align Right</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Right\">Alinear a la derecha</link>"
+
+#: main0205.xhp#hd_id3155115.14.help.text
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Justify\">Justify</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Justify\">Justificado</link>"
+
+#: main0205.xhp#hd_id3150202.15.help.text
+msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Superscript\">Superscript</link>"
+msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Superscript\">Superíndice</link>"
+
+#: main0205.xhp#hd_id3155531.16.help.text
+msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Subscript\">Subscript</link>"
+msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Subscript\">Subíndice</link>"
+
+#: main0205.xhp#hd_id3145387.17.help.text
+msgctxt "main0205.xhp#hd_id3145387.17.help.text"
+msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Carácter</link>"
+
+#: main0205.xhp#hd_id3153067.18.help.text
+msgctxt "main0205.xhp#hd_id3153067.18.help.text"
+msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Párrafo</link>"
+
+#: main0200.xhp#tit.help.text
+msgid "Toolbars"
+msgstr "Barras de herramientas"
+
+#: main0200.xhp#hd_id3154758.1.help.text
+msgid "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
+msgstr "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"Toolbars\">Barras de herramientas</link></variable>"
+
+#: main0200.xhp#par_id3148798.2.help.text
+msgid "This submenu lists the toolbars that are available in spreadsheets.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
+msgstr "En este submenú se enumeran las barras de herramientas disponibles en las hojas de cálculo.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
+
+#: main0503.xhp#tit.help.text
+msgid "$[officename] Calc Features"
+msgstr "Características de $[officename] Calc"
+
+#: main0503.xhp#hd_id3154758.1.help.text
+msgid "<variable id=\"main0503\"><link href=\"text/scalc/main0503.xhp\" name=\"$[officename] Calc Features\">$[officename] Calc Features</link></variable>"
+msgstr "<variable id=\"main0503\"><link href=\"text/scalc/main0503.xhp\" name=\"$[officename] Calc Features\">Características de $[officename] Calc</link></variable>"
+
+#: main0503.xhp#par_id3149457.2.help.text
+msgid "$[officename] Calc is a spreadsheet application that you can use to calculate, analyze, and manage your data. You can also import and modify Microsoft Excel spreadsheets."
+msgstr "$[officename] Calc es una aplicación de hojas de cálculo que puede usar para calcular, analizar y gestionar datos. También puede importar y modificar hojas de cálculo de Microsoft Excel."
+
+#: main0503.xhp#hd_id3148797.4.help.text
+msgid "Calculations"
+msgstr "Cálculos"
+
+#: main0503.xhp#par_id3145172.5.help.text
+msgid "$[officename] Calc provides you with <link href=\"text/scalc/01/04060100.xhp\" name=\"functions\">functions</link>, including statistical and banking functions, that you can use to create formulas to perform complex calculations on your data."
+msgstr "$[officename] Calc incorpora <link href=\"text/scalc/01/04060100.xhp\" name=\"funciones\">funciones</link>, incluidas funciones estadísticas y financieras, que se pueden utilizar para crear fórmulas que realicen cálculos complejos sobre los datos."
+
+#: main0503.xhp#par_id3145271.6.help.text
+msgid "You can also use the <link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilots\">Function Wizard</link> to help you create your formulas."
+msgstr "También pueden utilizarse los <link href=\"text/scalc/01/04060000.xhp\" name=\"Asistentes\">Asistente para funciones</link> como ayuda para la creación de fórmulas."
+
+#: main0503.xhp#hd_id3152596.13.help.text
+msgid "What-If Calculations"
+msgstr "Cálculos qué-pasaría-si"
+
+#: main0503.xhp#par_id3156444.14.help.text
+msgid "An interesting feature is to be able to immediately view the results of changes made to one factor of calculations that are composed of several factors. For instance, you can see how changing the time period in a loan calculation affects the interest rates or repayment amounts. Furthermore, you can manage larger tables by using different predefined scenarios."
+msgstr "Una función interesante es la posibilidad de ver inmediatamente el resultado de los cambios realizados en uno de los factores que integran un cálculo. Por ejemplo, puede ver cómo el cambio del período en el cálculo de un préstamo afecta al interés o a las cantidades de la amortización. Además, puede gestionar tablas mayores usando varias situaciones hipotéticas predefinidas."
+
+#: main0503.xhp#hd_id3148576.7.help.text
+msgid "Database Functions"
+msgstr "Funciones de las bases de datos"
+
+#: main0503.xhp#par_id3154011.8.help.text
+msgid "Use spreadsheets to arrange, store, and filter your data."
+msgstr "Utilice las hojas de cálculo para organizar, almacenar y filtrar datos."
+
+#: main0503.xhp#par_id3154942.25.help.text
+msgid "$[officename] Calc lets you drag-and-drop tables from databases, or lets you use a spreadsheet as a data source for creating form letters in $[officename] Writer."
+msgstr "$[officename] Calc permite arrastrar y colocar tablas de bases de datos; también se puede utilizar una hoja de cálculo como fuente de datos para la creación de cartas en serie en $[officename] Writer."
+
+#: main0503.xhp#hd_id3145800.9.help.text
+msgid "Arranging Data"
+msgstr "Estructurar datos"
+
+#: main0503.xhp#par_id3154490.10.help.text
+msgid "With a few mouse-clicks, you can reorganize your spreadsheet to show or hide certain data ranges, or to format ranges according to special conditions, or to quickly calculate subtotals and totals."
+msgstr "Bastan unas pocas pulsaciones del ratón para reorganizar la hoja de cálculo a fin de que muestre u oculte áreas de datos determinadas, para dar formato según condiciones especiales o para calcular con rapidez subtotales y totales."
+
+#: main0503.xhp#hd_id3155601.16.help.text
+msgid "Dynamic Charts"
+msgstr "Gráficos dinámicos"
+
+#: main0503.xhp#par_id3149121.17.help.text
+msgid "$[officename] Calc lets you present spreadsheet data in dynamic charts that update automatically when the data changes."
+msgstr "$[officename] Calc permite presentar datos de una hoja de cálculo en diagramas dinámicos que se actualizan automáticamente cuando cambian los datos."
+
+#: main0503.xhp#hd_id3153707.18.help.text
+msgid "Opening and Saving Microsoft Files"
+msgstr "Abrir y guardar archivos de Microsoft"
+
+#: main0503.xhp#par_id3157867.19.help.text
+msgid "Use the $[officename] filters to convert Excel files, or to open and save in a variety of other <link href=\"text/shared/00/00000020.xhp\" name=\"formats\">formats</link>."
+msgstr "Utilice los filtros de $[officename] para convertir archivos de Excel o para abrir y guardar en otros varios <link href=\"text/shared/00/00000020.xhp\" name=\"formatos\">formatos</link>."
+
+#: main0105.xhp#tit.help.text
+msgid "Format"
+msgstr "Formato"
+
+#: main0105.xhp#hd_id3149669.1.help.text
+msgid "<link href=\"text/scalc/main0105.xhp\" name=\"Format\">Format</link>"
+msgstr "<link href=\"text/scalc/main0105.xhp\" name=\"Format\">Formato</link>"
+
+#: main0105.xhp#par_id3145171.2.help.text
+msgid "<ahelp hid=\".uno:FormatMenu\">The <emph>Format</emph> menu contains commands for formatting selected cells, <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objects\">objects</link>, and cell contents in your document.</ahelp>"
+msgstr "<ahelp hid=\".uno:FormatMenu\">El menú <emph>Formato</emph> contiene comandos para dar formato a las celdas seleccionadas, los <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objects\">objetos</link> y el contenido de las celdas del documento.</ahelp>"
+
+#: main0105.xhp#hd_id3154732.4.help.text
+msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Cells\">Cells</link>"
+msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Cells\">Celdas</link>"
+
+#: main0105.xhp#hd_id3155087.9.help.text
+msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Page\">Page</link>"
+msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Page\">Página</link>"
+
+#: main0105.xhp#hd_id3145748.12.help.text
+msgctxt "main0105.xhp#hd_id3145748.12.help.text"
+msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Carácter</link>"
+
+#: main0105.xhp#hd_id3154485.13.help.text
+msgctxt "main0105.xhp#hd_id3154485.13.help.text"
+msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Párrafo</link>"
+
+#: main0105.xhp#hd_id3157980.11.help.text
+msgid "<link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">AutoFormat</link>"
+msgstr "<link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">AutoFormato</link>"
+
+#: main0105.xhp#hd_id3159206.14.help.text
+msgid "<link href=\"text/scalc/01/05120000.xhp\" name=\"Conditional Formatting\">Conditional Formatting</link>"
+msgstr "<link href=\"text/scalc/01/05120000.xhp\" name=\"Conditional Formatting\">Formateado condicionado</link>"
+
+#: main0105.xhp#hd_id3154703.17.help.text
+msgid "<link href=\"text/shared/02/01170100.xhp\" name=\"Control\">Control</link>"
+msgstr "<link href=\"text/shared/02/01170100.xhp\" name=\"Control\">Control</link>"
+
+#: main0105.xhp#hd_id3147005.16.help.text
+msgid "<link href=\"text/shared/02/01170200.xhp\" name=\"Form\">Form</link>"
+msgstr "<link href=\"text/shared/02/01170200.xhp\" name=\"Form\">Formulario</link>"
+
+#: main0102.xhp#tit.help.text
+msgid "Edit"
+msgstr "Editar"
+
+#: main0102.xhp#hd_id3156023.1.help.text
+msgid "<link href=\"text/scalc/main0102.xhp\" name=\"Edit\">Edit</link>"
+msgstr "<link href=\"text/scalc/main0102.xhp\" name=\"Edit\">Editar</link>"
+
+#: main0102.xhp#par_id3154758.2.help.text
+msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
+msgstr "<ahelp hid=\".\">Este menú contiene comandos para editar los contenidos del documento actual.</ahelp>"
+
+#: main0102.xhp#hd_id3146119.3.help.text
+msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
+msgstr "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Pegado especial</link>"
+
+#: main0102.xhp#hd_id3153728.12.help.text
+msgid "<link href=\"text/shared/01/02240000.xhp\" name=\"Compare Document\">Compare Document</link>"
+msgstr "<link href=\"text/shared/01/02240000.xhp\" name=\"Compare Document\">Comparar documento</link>"
+
+#: main0102.xhp#hd_id3154492.4.help.text
+msgid "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
+msgstr "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Buscar y reemplazar</link>"
+
+#: main0102.xhp#hd_id3150715.5.help.text
+msgid "<link href=\"text/scalc/01/02120000.xhp\" name=\"Headers & Footers\">Headers & Footers</link>"
+msgstr "<link href=\"text/scalc/01/02120000.xhp\" name=\"Headers & Footers\">Encabezamientos y pies de página</link>"
+
+#: main0102.xhp#hd_id3149018.6.help.text
+msgid "<link href=\"text/scalc/01/02150000.xhp\" name=\"Delete Contents\">Delete Contents</link>"
+msgstr "<link href=\"text/scalc/01/02150000.xhp\" name=\"Delete Contents\">Eliminar contenidos</link>"
+
+#: main0102.xhp#hd_id3156384.7.help.text
+msgid "<link href=\"text/scalc/01/02160000.xhp\" name=\"Delete Cells\">Delete Cells</link>"
+msgstr "<link href=\"text/scalc/01/02160000.xhp\" name=\"Delete Cells\">Eliminar celdas</link>"
+
+#: main0102.xhp#hd_id3146919.10.help.text
+msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
+msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Vínculos</link>"
+
+#: main0102.xhp#hd_id3148488.11.help.text
+msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
+msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">Mapa de imagen</link>"
+
+#: main0208.xhp#tit.help.text
+msgid "Status Bar"
+msgstr "Barra de estado"
+
+#: main0208.xhp#hd_id3151385.1.help.text
+msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status Bar\">Status Bar</link>"
+msgstr "<link href=\"text/scalc/main0208.xhp\" name=\"Status Bar\">Barra de estado</link>"
+
+#: main0208.xhp#par_id3149669.2.help.text
+msgid "The <emph>Status Bar</emph> displays information about the current sheet."
+msgstr "La <emph>barra de estado</emph> muestra información acerca de la hoja actual."
+
+#: main0208.xhp#hd_id0821200911024321.help.text
+msgid "Digital Signature"
+msgstr "Firma digital"
+
+#: main0208.xhp#par_id0821200911024344.help.text
+msgid "See also <link href=\"text/shared/guide/digital_signatures.xhp\">Digital Signatures</link>."
+msgstr "Ver tambien <link href=\"text/shared/guide/digital_signatures.xhp\">Firmas digitales</link>."
+
+#: main0106.xhp#tit.help.text
+msgid "Tools"
+msgstr "Herramientas"
+
+#: main0106.xhp#hd_id3150769.1.help.text
+msgid "<link href=\"text/scalc/main0106.xhp\" name=\"Tools\">Tools</link>"
+msgstr "<link href=\"text/scalc/main0106.xhp\" name=\"Tools\">Herramientas</link>"
+
+#: main0106.xhp#par_id3150440.2.help.text
+msgid "<ahelp hid=\".\">The <emph>Tools </emph>menu contains commands to check spelling, to trace sheet references, to find mistakes and to define scenarios.</ahelp>"
+msgstr "<ahelp hid=\".\">El menú <emph>Herramientas</emph> contiene comandos para comprobar la ortografía, encontrar referencias de hojas, encontrar errores y definir escenarios.</ahelp>"
+
+#: main0106.xhp#par_id3152576.10.help.text
+msgid "You can also create and assign macros and configure the look and feel of toolbars, menus, keyboard, and set the default options for $[officename] applications."
+msgstr "También se pueden crear y asignar macros y configurar el aspecto de las barras de herramientas, menús y teclado, así como establecer las opciones predeterminadas de las aplicaciones de $[officename]."
+
+#: main0106.xhp#hd_id3149122.12.help.text
+msgctxt "main0106.xhp#hd_id3149122.12.help.text"
+msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
+msgstr "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Buscar objetivo</link>"
+
+#: main0106.xhp#hd_id3155768.6.help.text
+msgid "<link href=\"text/scalc/01/06050000.xhp\" name=\"Scenarios\">Scenarios</link>"
+msgstr "<link href=\"text/scalc/01/06050000.xhp\" name=\"Scenarios\">Escenarios</link>"
+
+#: main0106.xhp#hd_id3154015.9.help.text
+msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">Opciones de autocorrección</link>"
+
+#: main0106.xhp#hd_id3150086.8.help.text
+msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
+msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Personalizar</link>"
+
+#: main0218.xhp#tit.help.text
+msgid "Tools Bar"
+msgstr "Barra Herramientas"
+
+#: main0218.xhp#hd_id3143268.1.help.text
+msgid "<link href=\"text/scalc/main0218.xhp\" name=\"Tools Bar\">Tools Bar</link>"
+msgstr "<link href=\"text/scalc/main0218.xhp\" name=\"Tools Bar\">Barra Herramientas</link>"
+
+#: main0218.xhp#par_id3151112.2.help.text
+msgid "<ahelp hid=\"HID_SC_TOOLBOX_TOOLS\">Use the Tools bar to access commonly used commands.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_TOOLBOX_TOOLS\">Utilice la barra Herramientas para acceder a los comandos que se utilizan con mayor frecuencia.</ahelp>"
+
+#: main0218.xhp#par_idN10610.help.text
+msgid "<link href=\"text/shared/02/01170000.xhp\" name=\"Controls\">Controls</link>"
+msgstr "<link href=\"text/shared/02/01170000.xhp\" name=\"Controls\">Controles</link>"
+
+#: main0218.xhp#hd_id3154730.6.help.text
+msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Choose Themes\">Choose Themes</link>"
+msgstr "<link href=\"text/scalc/02/06080000.xhp\" name=\"Choose Themes\">Elegir temas</link>"
+
+#: main0218.xhp#par_idN10690.help.text
+msgid "<link href=\"text/scalc/01/12040300.xhp\" name=\"Advanced Filter\">Advanced Filter</link>"
+msgstr "<link href=\"text/scalc/01/12040300.xhp\" name=\"Advanced Filter\">Filtro avanzado</link>"
+
+#: main0218.xhp#par_idN106A8.help.text
+msgid "<link href=\"text/scalc/01/12090100.xhp\">Start</link>"
+msgstr "<link href=\"text/scalc/01/12090100.xhp\">Inicio</link>"
+
+#: main0218.xhp#par_idN106C0.help.text
+msgid "<link href=\"text/shared/autopi/01150000.xhp\" name=\"Euro Converter\">Euro Converter</link>"
+msgstr "<link href=\"text/shared/autopi/01150000.xhp\" name=\"Euro Converter\">Convertidor de Euros</link>"
+
+#: main0218.xhp#par_idN106D8.help.text
+msgid "<link href=\"text/scalc/01/04070100.xhp\">Define</link>"
+msgstr "<link href=\"text/scalc/01/04070100.xhp\">Definir</link>"
+
+#: main0218.xhp#par_idN106F0.help.text
+msgctxt "main0218.xhp#par_idN106F0.help.text"
+msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
+msgstr "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Buscar objetivo</link>"
+
+#: main0202.xhp#tit.help.text
+msgid "Formatting Bar"
+msgstr "Barra Formato"
+
+#: main0202.xhp#hd_id3150448.1.help.text
+msgid "<link href=\"text/scalc/main0202.xhp\" name=\"Formatting Bar\">Formatting Bar</link>"
+msgstr "<link href=\"text/scalc/main0202.xhp\" name=\"Formatting Bar\">Barra de formato</link>"
+
+#: main0202.xhp#par_id3153897.2.help.text
+msgid "<ahelp hid=\"HID_SC_TOOLBOX_TABLE\">The <emph>Formatting</emph> bar contains basic commands for applying manually formatting.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_TOOLBOX_TABLE\">La barra <emph>Formato</emph> contiene los comandos básicos para aplicar el formato manualmente.</ahelp>"
+
+#: main0202.xhp#hd_id3153160.8.help.text
+msgctxt "main0202.xhp#hd_id3153160.8.help.text"
+msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
+msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Color de fuente</link>"
+
+#: main0202.xhp#hd_id3150715.9.help.text
+msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Left\">Align Left</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Left\">Alineado a la izquierda</link>"
+
+#: main0202.xhp#hd_id3155064.10.help.text
+msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Center Horizontally\">Align Center Horizontally</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Center Horizontally\">Alineación centrada horizontal</link>"
+
+#: main0202.xhp#hd_id3150042.11.help.text
+msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Right\">Align Right</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Right\">Alinear a la derecha</link>"
+
+#: main0202.xhp#hd_id3154703.12.help.text
+msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Justify\">Justify</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Justify\">Justificado</link>"
+
+#: main0202.xhp#hd_id3152986.13.help.text
+msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Top\">Align Top</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Top\">Alinear arriba</link>"
+
+#: main0202.xhp#hd_id3153306.14.help.text
+msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Center Vertically\">Align Center Vertically</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Center Vertically\">Alinear centro vertical</link>"
+
+#: main0202.xhp#hd_id3151240.15.help.text
+msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Bottom\">Align Bottom</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Bottom\">Alinear abajo</link>"
+
+#: main0202.xhp#par_idN10843.help.text
+msgid "Number Format : Date"
+msgstr "Formato numérico: Fecha"
+
+#: main0202.xhp#par_idN10847.help.text
+msgid "<ahelp hid=\".\">Applies the date format to the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".\">Aplica el formato de fecha a las celdas seleccionadas.</ahelp>"
+
+#: main0202.xhp#par_idN1085E.help.text
+msgid "Number Format: Exponential"
+msgstr "Formato numérico: Exponencial"
+
+#: main0202.xhp#par_idN10862.help.text
+msgid "<ahelp hid=\".\">Applies the exponential format to the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".\">Aplica el formato exponencial a las celdas seleccionadas.</ahelp>"
+
+#: main0202.xhp#par_idN10871.help.text
+msgid "Additional icons"
+msgstr "Iconos adicionales"
+
+#: main0202.xhp#par_idN10875.help.text
+msgid "If <link href=\"text/shared/00/00000005.xhp#ctl\" name=\"CTL\">CTL</link> support is enabled, two additional icons are visible."
+msgstr "Si está activada la compatibilidad con <link href=\"text/shared/00/00000005.xhp#ctl\" name=\"CTL\">CTL</link>, en pantalla aparecen dos iconos más."
+
+#: main0202.xhp#par_idN1088E.help.text
+msgid "Left-To-Right"
+msgstr "De izquierda a derecha"
+
+#: main0202.xhp#par_idN1089C.help.text
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id8354747\">icono de izquierda a derecha</alt></image>"
+
+#: main0202.xhp#par_idN108BA.help.text
+msgid "<ahelp hid=\".uno:ParaLeftToRight\">The text is entered from left to right.</ahelp>"
+msgstr "<ahelp hid=\".uno:ParaLeftToRight\">El texto se escribe de izquierda a derecha.</ahelp>"
+
+#: main0202.xhp#par_idN108D1.help.text
+msgid "Right-To-Left"
+msgstr "De derecha a izquierda"
+
+#: main0202.xhp#par_idN108DF.help.text
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id2405774\">icono de derecha a izquierda</alt></image>"
+
+#: main0202.xhp#par_idN108FD.help.text
+msgid "<ahelp hid=\".uno:ParaRightToLeft\">The text formatted in a complex text layout language is entered from right to left.</ahelp>"
+msgstr "<ahelp hid=\".uno:ParaRightToLeft\">El texto de idiomas con diseño complejo de texto (CTL) se escribe de derecha a izquierda.</ahelp>"
+
+#: main0202.xhp#par_id192266.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the left.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Alinea el contenido de la celda a la izquierda.</ahelp>"
+
+#: main0202.xhp#par_id1998962.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the right.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Alinea el concepto de la celda a la derecha.</ahelp>"
+
+#: main0202.xhp#par_id2376476.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Horizontally centers the contents of the cell.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Horizontalmente centra el contendio de la celda.</ahelp>"
+
+#: main0202.xhp#par_id349131.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the left and right cell borders.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the left and right cell borders.</ahelp>"
+
+#: main0107.xhp#tit.help.text
+msgid "Window"
+msgstr "Ventana"
+
+#: main0107.xhp#hd_id3154758.1.help.text
+msgid "<link href=\"text/scalc/main0107.xhp\" name=\"Window\">Window</link>"
+msgstr "<link href=\"text/scalc/main0107.xhp\" name=\"Window\">Ventana</link>"
+
+#: main0107.xhp#par_id3150398.2.help.text
+msgid "<ahelp hid=\".uno:WindowList\">Contains commands for manipulating and displaying document windows.</ahelp>"
+msgstr "<ahelp hid=\".uno:WindowList\">Contiene comandos para manipular y mostrar ventanas de documentos.</ahelp>"
diff --git a/source/es/helpcontent2/source/text/scalc/00.po b/source/es/helpcontent2/source/text/scalc/00.po
new file mode 100644
index 00000000000..62730e2383f
--- /dev/null
+++ b/source/es/helpcontent2/source/text/scalc/00.po
@@ -0,0 +1,833 @@
+#. extracted from helpcontent2/source/text/scalc/00.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fscalc%2F00.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"PO-Revision-Date: 2012-08-07 08:55+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 00000407.xhp#tit.help.text
+msgctxt "00000407.xhp#tit.help.text"
+msgid "Window Menu"
+msgstr "Menú Ventana"
+
+#: 00000407.xhp#hd_id3155628.1.help.text
+msgctxt "00000407.xhp#hd_id3155628.1.help.text"
+msgid "Window Menu"
+msgstr "Menú Ventana"
+
+#: 00000407.xhp#par_id3147335.2.help.text
+msgid "<variable id=\"fete\">Choose <emph>Window - Split</emph></variable>"
+msgstr "<variable id=\"fete\">Menú <emph>Ventana - Dividir</emph></variable>"
+
+#: 00000407.xhp#par_id3153663.3.help.text
+msgid "<variable id=\"fefix\">Choose <emph>Window - Freeze</emph></variable>"
+msgstr "<variable id=\"fefix\">Menú <emph>Ventana - Fijar</emph></variable>"
+
+#: 00000402.xhp#tit.help.text
+msgctxt "00000402.xhp#tit.help.text"
+msgid "Edit Menu"
+msgstr "Menú Editar"
+
+#: 00000402.xhp#hd_id3147303.1.help.text
+msgctxt "00000402.xhp#hd_id3147303.1.help.text"
+msgid "Edit Menu"
+msgstr "Menú Editar"
+
+#: 00000402.xhp#par_id3155555.2.help.text
+msgid "<variable id=\"kopffuss\">Choose <emph>Edit - Headers & Footers</emph></variable>"
+msgstr "<variable id=\"kopffuss\">Menú <emph>Editar - Encabezamientos y pies de página</emph></variable>"
+
+#: 00000402.xhp#par_id3159233.3.help.text
+msgid "<variable id=\"bkopfzeile\">Choose <emph>Edit - Headers & Footers - Header/Footer</emph> tabs</variable>"
+msgstr "<variable id=\"bkopfzeile\">Seleccione las pestañas<emph>Editar - Encabezamientos y pies de página - Encabezamiento/Pie de página</emph></variable>"
+
+#: 00000402.xhp#par_id3150443.4.help.text
+msgid "<variable id=\"bausfullen\">Choose <emph>Edit - Fill</emph></variable>"
+msgstr "<variable id=\"bausfullen\">Elija <emph>Editar - Rellenar</emph></variable>"
+
+#: 00000402.xhp#par_id3143267.5.help.text
+msgid "<variable id=\"bausunten\">Choose <emph>Edit - Fill - Down</emph></variable>"
+msgstr "<variable id=\"bausunten\">Elija <emph>Editar - Rellenar - Abajo</emph></variable>"
+
+#: 00000402.xhp#par_id3153880.6.help.text
+msgid "<variable id=\"bausrechts\">Choose <emph>Edit - Fill - Right</emph></variable>"
+msgstr "<variable id=\"bausrechts\">Elija <emph>Editar - Rellenar - Derecha</emph></variable>"
+
+#: 00000402.xhp#par_id3151245.7.help.text
+msgid "<variable id=\"bausoben\">Choose <emph>Edit - Fill - Up</emph></variable>"
+msgstr "<variable id=\"bausoben\">Elija <emph>Editar - Rellenar - Arriba</emph></variable>"
+
+#: 00000402.xhp#par_id3145068.8.help.text
+msgid "<variable id=\"bauslinks\">Choose <emph>Edit - Fill - Left</emph></variable>"
+msgstr "<variable id=\"bauslinks\">Elija <emph>Editar - Rellenar - Izquierda</emph></variable>"
+
+#: 00000402.xhp#par_id3150400.9.help.text
+msgid "<variable id=\"baustab\">Choose <emph>Edit - Fill - Sheet</emph></variable>"
+msgstr "<variable id=\"baustab\">Elija <emph>Editar - Rellenar - Hoja de cálculo</emph></variable>"
+
+#: 00000402.xhp#par_id3154910.10.help.text
+msgid "<variable id=\"bausreihe\">Choose <emph>Edit - Fill - Series</emph></variable>"
+msgstr "<variable id=\"bausreihe\">Elija <emph>Editar - Rellenar - Serie</emph></variable>"
+
+#: 00000402.xhp#par_id3154123.11.help.text
+msgid "Choose <emph>Edit - Delete Contents</emph>"
+msgstr "Elija <emph>Editar - Eliminar contenidos</emph>"
+
+#: 00000402.xhp#par_id3145785.20.help.text
+msgid "Backspace"
+msgstr "Retroceso"
+
+#: 00000402.xhp#par_id3150011.12.help.text
+msgid "<variable id=\"bzelo\">Choose <emph>Edit - Delete Cells</emph></variable>"
+msgstr "<variable id=\"bzelo\">Elija <emph>Editar - Eliminar celdas</emph></variable>"
+
+#: 00000402.xhp#par_id3153951.13.help.text
+msgid "Choose <emph>Edit – Sheet - Delete</emph>"
+msgstr "Elija <emph>Editar - Hojas - Eliminar</emph>"
+
+#: 00000402.xhp#par_id3155306.18.help.text
+msgctxt "00000402.xhp#par_id3155306.18.help.text"
+msgid "Open context menu for a sheet tab"
+msgstr "Abra el menú contextual para una pestaña de la hoja"
+
+#: 00000402.xhp#par_id3146119.14.help.text
+msgid "Choose <emph>Edit – Sheets – Move/Copy</emph>"
+msgstr "Elija <emph>Editar - Hojas - Mover/Copiar</emph>"
+
+#: 00000402.xhp#par_id3148645.19.help.text
+msgctxt "00000402.xhp#par_id3148645.19.help.text"
+msgid "Open context menu for a sheet tab"
+msgstr "Abra el menú contextual de las pestañas de la hoja de cálculo"
+
+#: 00000402.xhp#par_id3153093.15.help.text
+msgid "<variable id=\"bmaumloe\">Choose <emph>Edit - Delete Manual Break</emph></variable>"
+msgstr "<variable id=\"bmaumloe\">Elija <emph>Editar - Eliminar salto manual</emph></variable>"
+
+#: 00000402.xhp#par_id3153191.16.help.text
+msgid "<variable id=\"bzeilum\">Choose <emph>Edit - Delete Manual Break - Row Break</emph></variable>"
+msgstr "<variable id=\"bzeilum\">Elija <emph>Editar - Eliminar salto manual - Salto de fila</emph></variable>"
+
+#: 00000402.xhp#par_id3145645.17.help.text
+msgid "<variable id=\"bspaum\">Choose <emph>Edit - Delete Manual Break - Column Break</emph></variable>"
+msgstr "<variable id=\"bspaum\">Menú <emph>Editar - Eliminar salto manual - Salto de columna</emph></variable>"
+
+#: 00000403.xhp#tit.help.text
+msgctxt "00000403.xhp#tit.help.text"
+msgid "View Menu"
+msgstr "Menú Ver"
+
+#: 00000403.xhp#hd_id3145673.1.help.text
+msgctxt "00000403.xhp#hd_id3145673.1.help.text"
+msgid "View Menu"
+msgstr "Menú Ver"
+
+#: 00000403.xhp#par_id3150275.2.help.text
+msgid "<variable id=\"aspze\">Choose <emph>View - Column & Row Headers</emph></variable>"
+msgstr "<variable id=\"aspze\">Elija <emph>Ver - Títulos de filas/columnas</emph></variable>"
+
+#: 00000403.xhp#par_id3154514.3.help.text
+msgid "<variable id=\"awehe\">Choose <emph>View - Value Highlighting</emph></variable>"
+msgstr "<variable id=\"awehe\">Elija <emph>Ver - Destacar valores</emph></variable>"
+
+#: 00000403.xhp#par_id3148947.4.help.text
+msgid "<variable id=\"rechenleiste\">Choose <emph>View - Toolbars - Formula Bar</emph></variable>"
+msgstr "<variable id=\"rechenleiste\">Elija <emph>Ver - Barras de herramientas - Barra de fórmulas</emph></variable>"
+
+#: 00000403.xhp#par_id3148663.5.help.text
+msgid "<variable id=\"seumvo\">Choose <emph>View - Page Break Preview</emph></variable>"
+msgstr "<variable id=\"seumvo\">Elija <emph>Ver - Previsualización del salto de página</emph></variable>"
+
+#: 00000404.xhp#tit.help.text
+msgctxt "00000404.xhp#tit.help.text"
+msgid "Insert Menu"
+msgstr "Menú Insertar"
+
+#: 00000404.xhp#hd_id3149346.1.help.text
+msgctxt "00000404.xhp#hd_id3149346.1.help.text"
+msgid "Insert Menu"
+msgstr "Menú Insertar"
+
+#: 00000404.xhp#par_id3149095.36.help.text
+msgid "<variable id=\"eimaum\">Choose <emph>Insert - Manual Break</emph></variable>"
+msgstr "<variable id=\"eimaum\">Elija <emph>Insertar - Salto manual</emph></variable>"
+
+#: 00000404.xhp#par_id3149398.2.help.text
+msgid "<variable id=\"eimaumze\">Choose <emph>Insert - Manual Break - Row Break</emph></variable>"
+msgstr "<variable id=\"eimaumze\">Elija <emph>Insertar - Salto manual - Salto de fila</emph></variable>"
+
+#: 00000404.xhp#par_id3150084.3.help.text
+msgid "<variable id=\"eimaumsp\">Choose <emph>Insert - Manual Break - Column Break</emph></variable>"
+msgstr "<variable id=\"eimaumsp\">Elija <emph>Insertar - Salto manual - Salto de columna</emph></variable>"
+
+#: 00000404.xhp#par_id3149784.4.help.text
+msgid "Choose <emph>Insert - Cells</emph>"
+msgstr "Elija <emph>Insertar - Celdas</emph>"
+
+#: 00000404.xhp#par_id3154514.5.help.text
+msgid "Open <emph>Insert Cells</emph> toolbar from Tools bar:"
+msgstr "Abra la barra de herramientas <emph>Insertar celdas</emph> de la barra Herramientas:"
+
+#: 00000404.xhp#par_id3149656.help.text
+msgid "<image id=\"img_id3154365\" src=\"cmd/sc_inscellsctrl.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154365\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154365\" src=\"cmd/sc_inscellsctrl.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154365\">Icono</alt></image>"
+
+#: 00000404.xhp#par_id3151041.6.help.text
+msgid "Insert Cells"
+msgstr "Insertar celdas"
+
+#: 00000404.xhp#par_id3145273.help.text
+msgid "<image id=\"img_id3145364\" src=\"cmd/sc_insertcellsdown.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145364\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145364\" src=\"cmd/sc_insertcellsdown.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145364\">Icono</alt></image>"
+
+#: 00000404.xhp#par_id3146985.7.help.text
+msgid "Insert Cells Down"
+msgstr "Insertar celdas, hacia abajo"
+
+#: 00000404.xhp#par_id3144766.help.text
+msgid "<image id=\"img_id3154942\" src=\"cmd/sc_insertcellsright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154942\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154942\" src=\"cmd/sc_insertcellsright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154942\">Icono</alt></image>"
+
+#: 00000404.xhp#par_id3145646.8.help.text
+msgid "Insert Cells Right"
+msgstr "Insertar celdas, hacia la derecha"
+
+#: 00000404.xhp#par_id3153838.help.text
+msgid "<image id=\"img_id3153710\" src=\"cmd/sc_insertrows.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153710\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153710\" src=\"cmd/sc_insertrows.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153710\">Icono</alt></image>"
+
+#: 00000404.xhp#par_id3150324.9.help.text
+msgid "Insert Rows"
+msgstr "Insertar filas"
+
+#: 00000404.xhp#par_id3147363.help.text
+msgid "<image id=\"img_id3145232\" src=\"cmd/sc_insertcolumns.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145232\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145232\" src=\"cmd/sc_insertcolumns.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145232\">Icono</alt></image>"
+
+#: 00000404.xhp#par_id3155334.10.help.text
+msgid "Insert Columns"
+msgstr "Insertar columnas"
+
+#: 00000404.xhp#par_id3148485.11.help.text
+msgid "<variable id=\"eizei\">Choose <emph>Insert - Rows</emph></variable>"
+msgstr "<variable id=\"eizei\">Menú <emph>Insertar - Filas</emph></variable>"
+
+#: 00000404.xhp#par_id3153200.12.help.text
+msgid "<variable id=\"eispa\">Choose <emph>Insert - Columns</emph></variable>"
+msgstr "<variable id=\"eispa\">Menú <emph>Insertar - Columnas</emph></variable>"
+
+#: 00000404.xhp#par_id3149033.13.help.text
+msgid "<variable id=\"eitab\">Choose <emph>Insert - Sheet</emph></variable>"
+msgstr "<variable id=\"eitab\">Menú <emph>Insertar - Hoja de cálculo</emph></variable>"
+
+#: 00000404.xhp#par_idN1082F.help.text
+msgid "<variable id=\"eitabfile\">Choose <emph>Insert - Sheet from file</emph></variable>"
+msgstr "<variable id=\"eitabfile\">Elija <emph>Insertar - Hoja desde archivo</emph></variable>"
+
+#: 00000404.xhp#par_id3155115.14.help.text
+msgid "Choose <emph>Insert - Function</emph>"
+msgstr "Menú <emph>Insertar - Función...</emph>"
+
+#: 00000404.xhp#par_id3152582.34.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + F2"
+
+#: 00000404.xhp#par_id3153269.15.help.text
+msgid "On <emph>Formula Bar</emph>, click"
+msgstr "En la <emph>barra de fórmulas</emph>, haga clic en"
+
+#: 00000404.xhp#par_id3150515.help.text
+msgid "<image id=\"img_id3150884\" src=\"sw/imglst/sc20556.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150884\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150884\" src=\"sw/imglst/sc20556.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150884\">Icono</alt></image>"
+
+#: 00000404.xhp#par_id3154370.16.help.text
+msgid "Function Wizard"
+msgstr "Asistente para funciones"
+
+#: 00000404.xhp#par_id3156288.17.help.text
+msgid "<variable id=\"eikada\"><emph>Insert - Function</emph> - Category <emph>Database</emph></variable>"
+msgstr "<variable id=\"eikada\"><emph>Insertar - Función</emph> - Categoría <emph>Base de datos</emph></variable>"
+
+#: 00000404.xhp#par_id3155809.18.help.text
+msgid "<variable id=\"eikadaze\"><emph>Insert - Function</emph> - Category <emph>Date&Time</emph></variable>"
+msgstr "<variable id=\"eikadaze\"><emph>Insertar - Función</emph> - Categoría <emph>FechayHora</emph></variable>"
+
+#: 00000404.xhp#par_id3151334.19.help.text
+msgid "<variable id=\"eikafi\"><emph>Insert - Function</emph> - Category <emph>Financial</emph></variable>"
+msgstr "<variable id=\"eikafi\"><emph>Insertar - Función</emph> - Categoría <emph>Finanzas</emph></variable>"
+
+#: 00000404.xhp#par_id3159222.20.help.text
+msgid "<variable id=\"eikain\"><emph>Insert - Function</emph> - Category <emph>Information</emph></variable>"
+msgstr "<variable id=\"eikain\"><emph>Insertar - Función</emph> - Categoría <emph>Información</emph></variable>"
+
+#: 00000404.xhp#par_id3159173.21.help.text
+msgid "<variable id=\"eikalo\"><emph>Insert - Function</emph> - Category <emph>Logical</emph></variable>"
+msgstr "<variable id=\"eikalo\"><emph>Insertar - Función</emph> - Categoría <emph>Lógico</emph></variable>"
+
+#: 00000404.xhp#par_id3153914.22.help.text
+msgid "<variable id=\"eikama\"><emph>Insert - Function</emph> - Category <emph>Mathematical</emph></variable>"
+msgstr "<variable id=\"eikama\"><emph>Insertar - Función</emph> - Categoría <emph>Matemático</emph></variable>"
+
+#: 00000404.xhp#par_id3150109.23.help.text
+msgid "<variable id=\"eikamatrix\"><emph>Insert - Function</emph> - Category <emph>Array</emph></variable>"
+msgstr "<variable id=\"eikamatrix\"><emph>Insertar - Función</emph> - Categoría <emph>Matriz</emph></variable>"
+
+#: 00000404.xhp#par_id3157978.24.help.text
+msgid "<variable id=\"eikasta\"><emph>Insert - Function</emph> - Category <emph>Statistical</emph></variable>"
+msgstr "<variable id=\"eikasta\"><emph>Insertar - Función</emph> - Categoría <emph>Estadística</emph></variable>"
+
+#: 00000404.xhp#par_id3156016.25.help.text
+msgid "<variable id=\"eikatext\"><emph>Insert - Function</emph> - Category <emph>Text</emph></variable>"
+msgstr "<variable id=\"eikatext\"><emph>Insertar - Función</emph> - Categoría <emph>Texto</emph></variable>"
+
+#: 00000404.xhp#par_id3147075.26.help.text
+msgid "<variable id=\"efefft\"><emph>Insert - Function</emph> - Category <emph>Spreadsheet</emph></variable>"
+msgstr "<variable id=\"efefft\"><emph>Insertar - Función</emph> - Categoría<emph>Hoja de cálculo</emph></variable>"
+
+#: 00000404.xhp#par_id3154618.27.help.text
+msgid "<variable id=\"addin\"><emph>Insert - Function</emph> - Category <emph>Add-In</emph></variable>"
+msgstr "<variable id=\"addin\"><emph>Insertar - Función</emph> - Categoría <emph>Add-In</emph></variable>"
+
+#: 00000404.xhp#par_id3154059.38.help.text
+msgid "<variable id=\"addinana\"><emph>Insert - Function</emph> - Category <emph>Add-In</emph></variable>"
+msgstr "<variable id=\"addinana\"><emph>Insertar - Función</emph> - Categoría <emph>Add-In</emph></variable>"
+
+#: 00000404.xhp#par_id3155383.33.help.text
+msgid "<variable id=\"funktionsliste\">Choose <emph>Insert - Function List</emph></variable>"
+msgstr "<variable id=\"funktionsliste\">Menú<emph> Insertar - Lista de funciones</emph></variable>"
+
+#: 00000404.xhp#par_id3153250.28.help.text
+msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
+msgstr "<variable id=\"einamen\">Menú <emph>Insertar - Nombres</emph></variable>"
+
+#: 00000404.xhp#par_id3146776.37.help.text
+msgid "<variable id=\"eiextdata\">Choose <emph>Insert - Link to External data</emph></variable>"
+msgstr "<variable id=\"eiextdata\">Seleccione <emph>Insertar - Vínculo a datos externos</emph></variable>"
+
+#: 00000404.xhp#par_id3143222.29.help.text
+msgid "Choose <emph>Insert - Names - Define</emph>"
+msgstr "Menú <emph>Insertar - Nombres - Definir...</emph>"
+
+#: 00000404.xhp#par_id3149385.35.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + F3"
+
+#: 00000404.xhp#par_id3145214.30.help.text
+msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
+msgstr "<variable id=\"einaei\">Menú <emph>Insertar - Nombres - Pegar</emph></variable>"
+
+#: 00000404.xhp#par_id3153558.31.help.text
+msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
+msgstr "<variable id=\"einaueb\">Menú <emph>Insertar - Nombres - Aplicar</emph></variable>"
+
+#: 00000404.xhp#par_id3153483.32.help.text
+msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
+msgstr "<variable id=\"einabesch\">Menú<emph> Insertar - Nombres - Etiquetas</emph></variable>"
+
+#: 00000004.xhp#tit.help.text
+msgid "To access this function..."
+msgstr "Para acceder a esta función..."
+
+#: 00000004.xhp#hd_id3155535.1.help.text
+msgid "<variable id=\"wie\">To access this function... </variable>"
+msgstr "<variable id=\"wie\">Para acceder a este función...</variable>"
+
+#: 00000004.xhp#par_idN1056E.help.text
+msgid "<variable id=\"moreontop\">More explanations on top of this page. </variable>"
+msgstr "<variable id=\"moreontop\">Más información al principio de la página. </variable>"
+
+#: 00000004.xhp#par_idN105AF.help.text
+msgid "<variable id=\"optional\">In the %PRODUCTNAME Calc functions, parameters marked as \"optional\" can be left out only when no parameter follows. For example, in a function with four parameters, where the last two parameters are marked as \"optional\", you can leave out parameter 4 or parameters 3 and 4, but you cannot leave out parameter 3 alone. </variable>"
+msgstr "<variable id=\"optional\">En las funciones de %PRODUCTNAME Calc, los parámetros marcados como \"opcionales\" se pueden omitir únicamente si no les sigue ningún parámetro. Por ejemplo, en una función que tiene cuatro parámetros cuyos dos últimos están marcados como \"opcionales\", se puede omitir el parámetro 4 o los parámetros 3 y 4; sin embargo, no se puede omitir solamente el parámetro 3. </variable>"
+
+#: 00000004.xhp#par_id9751884.help.text
+msgid "<variable id=\"codes\">Codes greater than 127 may depend on your system's character mapping (for example iso-8859-1, iso-8859-2, Windows-1252, Windows-1250), and hence may not be portable.</variable>"
+msgstr "<variable id=\"codes\">Códigos superiores a 127 pueden depender del mapa de caracteres de su sistema (por ejemplo ISO-8859-1, ISO-8859-2, Windows-1252, Windows-1250), y pueden no ser portables.</variable>"
+
+#: 00000406.xhp#tit.help.text
+msgctxt "00000406.xhp#tit.help.text"
+msgid "Tools Menu"
+msgstr "Menú Herramientas"
+
+#: 00000406.xhp#hd_id3147264.1.help.text
+msgctxt "00000406.xhp#hd_id3147264.1.help.text"
+msgid "Tools Menu"
+msgstr "Menú Herramientas"
+
+#: 00000406.xhp#par_id3150541.2.help.text
+msgid "<variable id=\"exdektv\">Choose <emph>Tools - Detective</emph></variable>"
+msgstr "<variable id=\"exdektv\">Menú <emph>Herramientas - Detective</emph></variable>"
+
+#: 00000406.xhp#par_id3153194.3.help.text
+msgid "Choose <emph>Tools - Detective - Trace Precedents</emph>"
+msgstr "Menú <emph>Herramientas - Detective - Rastrear los precedentes</emph>"
+
+#: 00000406.xhp#par_id3150447.29.help.text
+msgid "Shift+F7"
+msgstr "Mayús+F7"
+
+#: 00000406.xhp#par_id3154123.33.help.text
+msgid "<variable id=\"silbentrennungc\">Menu <emph>Tools - Language - Hyphenation</emph></variable>"
+msgstr "<variable id=\"silbentrennungc\">Menú <emph>Herramientas - Idioma - División de palabras</emph></variable>"
+
+#: 00000406.xhp#par_id3145785.4.help.text
+msgid "<variable id=\"exdvore\">Choose <emph>Tools - Detective - Remove Precedents</emph></variable>"
+msgstr "<variable id=\"exdvore\">Menú <emph>Herramientas - Detective - Eliminar rastro a precedentes</emph></variable>"
+
+#: 00000406.xhp#par_id3155411.5.help.text
+msgid "Choose <emph>Tools - Detective - Trace Dependents</emph>"
+msgstr "Menú <emph>Herramientas - Detective - Rastrear los dependientes</emph>"
+
+#: 00000406.xhp#par_id3153363.30.help.text
+msgid "Shift+F5"
+msgstr "Tecla (Mayús)(F5)"
+
+#: 00000406.xhp#par_id3146984.6.help.text
+msgid "<variable id=\"exdszne\">Choose <emph>Tools - Detective - Remove Dependents</emph></variable>"
+msgstr "<variable id=\"exdszne\">Menú <emph>Herramientas</emph> - <emph>Detective - Eliminar rastro a dependientes</emph></variable>"
+
+#: 00000406.xhp#par_id3154014.7.help.text
+msgid "<variable id=\"exdase\">Choose <emph>Tools - Detective - Remove All Traces</emph></variable>"
+msgstr "<variable id=\"exdase\">Menú <emph>Herramientas</emph> - <emph>Detective - Eliminar todos los rastros</emph></variable>"
+
+#: 00000406.xhp#par_id3153188.8.help.text
+msgid "<variable id=\"exdszfe\">Choose <emph>Tools - Detective - Trace Error</emph></variable>"
+msgstr "<variable id=\"exdszfe\">Menú <emph>Herramientas</emph> - <emph>Detective - Rastrear error</emph></variable>"
+
+#: 00000406.xhp#par_id3149410.9.help.text
+msgid "<variable id=\"fuellmodus\">Choose <emph>Tools - Detective - Fill Mode</emph></variable>"
+msgstr "<variable id=\"fuellmodus\">Menú <emph>Herramientas - Detective - Modo de relleno</emph></variable>"
+
+#: 00000406.xhp#par_id3156284.10.help.text
+msgid "<variable id=\"dateneinkreisen\">Choose <emph>Tools - Detective - Mark Invalid Data</emph></variable>"
+msgstr "<variable id=\"dateneinkreisen\">Menú <emph>Herramientas - Detective - Marcar datos incorrectos</emph></variable>"
+
+#: 00000406.xhp#par_id3153159.11.help.text
+msgid "<variable id=\"spurenaktualisieren\">Choose <emph>Tools - Detective - Refresh Traces</emph></variable>"
+msgstr "<variable id=\"spurenaktualisieren\">Menú <emph>Herramientas - Detective - Actualizar rastros</emph></variable>"
+
+#: 00000406.xhp#par_id3147397.32.help.text
+msgid "<variable id=\"automatisch\">Choose <emph>Tools - Detective - AutoRefresh</emph></variable>"
+msgstr "<variable id=\"automatisch\">Menú <emph>Herramientas - Detective - Actualizar automáticamente</emph></variable>"
+
+#: 00000406.xhp#par_id3154018.12.help.text
+msgid "<variable id=\"exzws\">Choose <emph>Tools - Goal Seek</emph></variable>"
+msgstr "<variable id=\"exzws\">Menú <emph>Herramientas - Buscar valor destino</emph></variable>"
+
+#: 00000406.xhp#par_id3269142.help.text
+msgid "<variable id=\"solver\">Choose Tools - Solver</variable>"
+msgstr "<variable id=\"solver\">Escoja Herramientas - Solver</variable>"
+
+#: 00000406.xhp#par_id8554338.help.text
+msgid "<variable id=\"solver_options\">Choose Tools - Solver, Options button</variable>"
+msgstr "<variable id=\"solver_options\">Herramientas - Solver - Opciones</variable>"
+
+#: 00000406.xhp#par_id3156277.13.help.text
+msgid "<variable id=\"exsze\">Choose <emph>Tools - Scenarios</emph></variable>"
+msgstr "<variable id=\"exsze\">Menú <emph>Herramientas - Escenarios</emph></variable>"
+
+#: 00000406.xhp#par_id3145640.14.help.text
+msgid "<variable id=\"exdos\">Choose <emph>Tools - Protect Document</emph></variable>"
+msgstr "<variable id=\"exdos\">Menú <emph>Herramientas - Proteger documento</emph></variable>"
+
+#: 00000406.xhp#par_id3149020.15.help.text
+msgid "<variable id=\"exdst\">Choose <emph>Tools - Protect Document - Sheet</emph></variable>"
+msgstr "<variable id=\"exdst\">Menú <emph>Herramientas - Proteger documento - Hoja de cálculo</emph></variable>"
+
+#: 00000406.xhp#par_id3154256.16.help.text
+msgid "<variable id=\"exdsd\">Choose <emph>Tools - Protect Document - Document</emph></variable>"
+msgstr "<variable id=\"exdsd\">Menú <emph>Herramientas - Proteger documento - Documento</emph></variable>"
+
+#: 00000406.xhp#par_id3147363.17.help.text
+msgid "<variable id=\"zellinhalte\">Choose <emph>Tools - Cell Contents</emph></variable>"
+msgstr "<variable id=\"zellinhalte\">Menú <emph>Herramientas - Contenidos de celdas</emph></variable>"
+
+#: 00000406.xhp#par_id3146919.18.help.text
+msgid "Choose <emph>Tools - Cell Contents - Recalculate</emph>"
+msgstr "Menú <emph>Herramientas - Contenidos de celdas - Recalcular</emph>"
+
+#: 00000406.xhp#par_id3149257.31.help.text
+msgid "F9"
+msgstr "Tecla (F9)"
+
+#: 00000406.xhp#par_id3150941.19.help.text
+msgid "<variable id=\"exatmb\">Choose <emph>Tools - Cell Contents - AutoCalculate</emph></variable>"
+msgstr "<variable id=\"exatmb\">Menú <emph>Herramientas - Contenidos de celdas - Cálculo automático</emph></variable>"
+
+#: 00000406.xhp#par_id3151276.20.help.text
+msgid "<variable id=\"autoeingabe\">Choose <emph>Tools - Cell Contents - AutoInput</emph></variable>"
+msgstr "<variable id=\"autoeingabe\">Menú <emph>Herramientas - Contenidos de celdas - Entrada automática</emph></variable>"
+
+#: 00000405.xhp#tit.help.text
+msgctxt "00000405.xhp#tit.help.text"
+msgid "Format Menu"
+msgstr "Menú Formato"
+
+#: 00000405.xhp#hd_id3150769.1.help.text
+msgctxt "00000405.xhp#hd_id3150769.1.help.text"
+msgid "Format Menu"
+msgstr "Menú Formato"
+
+#: 00000405.xhp#par_id3154685.2.help.text
+msgid "<variable id=\"fozelle\">Choose <emph>Format - Cells</emph></variable>"
+msgstr "<variable id=\"fozelle\">Menú <emph>Formato - Celda</emph></variable>"
+
+#: 00000405.xhp#par_id3153194.3.help.text
+msgid "<variable id=\"fozelstz\">Choose <emph>Format - Cells - Cell Protection</emph> tab </variable>"
+msgstr "<variable id=\"fozelstz\">Seleccione la pestaña <emph>Formato - Celdas - Protección de celda</emph></variable>"
+
+#: 00000405.xhp#par_id3155854.4.help.text
+msgid "<variable id=\"fozei\">Choose <emph>Format - Row</emph></variable>"
+msgstr "<variable id=\"fozei\">Menú <emph>Formato - Fila</emph></variable>"
+
+#: 00000405.xhp#par_id3150012.5.help.text
+msgid "<variable id=\"fozeiophoe\">Choose <emph>Format - Row - Optimal Height</emph></variable>"
+msgstr "<variable id=\"fozeiophoe\">Menú <emph>Formato - Fila - Altura óptima</emph></variable>"
+
+#: 00000405.xhp#par_id3148645.6.help.text
+msgid "Choose <emph>Format - Row - Hide</emph>"
+msgstr "Menú <emph>Formato - Fila - Ocultar</emph>"
+
+#: 00000405.xhp#par_id3153728.7.help.text
+msgid "Choose <emph>Format - Column - Hide</emph>"
+msgstr "Menú <emph>Formato - Columna - Ocultar</emph>"
+
+#: 00000405.xhp#par_id3151114.8.help.text
+msgid "Choose <emph>Format - Sheet - Hide</emph>"
+msgstr "Menú <emph>Formato - Hoja de cálculo - Ocultar</emph>"
+
+#: 00000405.xhp#par_id3148576.9.help.text
+msgid "Choose <emph>Format - Row - Show</emph>"
+msgstr "Menú <emph>Formato - Fila - Mostrar</emph>"
+
+#: 00000405.xhp#par_id3156286.10.help.text
+msgid "Choose <emph>Format - Column - Show</emph>"
+msgstr "Menú <emph>Formato - Columna - Mostrar</emph>"
+
+#: 00000405.xhp#par_id3145645.11.help.text
+msgid "<variable id=\"fospa\">Choose <emph>Format - Column</emph></variable>"
+msgstr "<variable id=\"fospa\">Menú <emph>Formato - Columna</emph></variable>"
+
+#: 00000405.xhp#par_id3145252.12.help.text
+msgid "Choose <emph>Format - Column - Optimal Width</emph>"
+msgstr "Menú <emph>Formato - Columna - Ancho óptimo...</emph>"
+
+#: 00000405.xhp#par_id3146971.36.help.text
+msgid "Double-click right column separator in column headers"
+msgstr "Pulse dos veces en el separador derecho de los títulos de columnas"
+
+#: 00000405.xhp#par_id3147362.15.help.text
+msgid "<variable id=\"fot\">Choose <emph>Format - Sheet</emph></variable>"
+msgstr "<variable id=\"fot\">Menú <emph>Formato - Hoja de cálculo</emph></variable>"
+
+#: 00000405.xhp#par_id3163805.16.help.text
+msgid "<variable id=\"fotu\">Choose <emph>Format - Sheet - Rename</emph></variable>"
+msgstr "<variable id=\"fotu\">Menú <emph>Formato - Hoja de cálculo - Cambiar nombre</emph></variable>"
+
+#: 00000405.xhp#par_id3155333.17.help.text
+msgid "<variable id=\"fotenb\">Choose <emph>Format - Sheet - Show</emph></variable>"
+msgstr "<variable id=\"fotenb\">Menú <emph>Formato - Hoja de cálculo - Mostrar</emph></variable>"
+
+#: 00000405.xhp#par_idN1077A.help.text
+msgid "<variable id=\"foste\">Choose <emph>Format - Page</emph></variable>"
+msgstr "<variable id=\"foste\">Seleccione <emph>Formato - Página</emph></variable>"
+
+#: 00000405.xhp#par_id3155508.25.help.text
+msgid "<variable id=\"fostel\">Choose <emph>Format - Page - Sheet</emph> tab </variable>"
+msgstr "<variable id=\"fostel\">Seleccione la pestaña<emph>Formato - Página - Hoja</emph></variable>"
+
+#: 00000405.xhp#par_id3150883.26.help.text
+msgid "<variable id=\"fodrbe\">Choose <emph>Format - Print Ranges</emph></variable>"
+msgstr "<variable id=\"fodrbe\">Seleccione <emph>Formato - Áreas de impresión</emph></variable>."
+
+#: 00000405.xhp#par_id3156448.27.help.text
+msgid "<variable id=\"fodrfe\">Choose <emph>Format - Print Ranges - Define</emph></variable>"
+msgstr "<variable id=\"fodrfe\">Seleccione <emph>Formato - Áreas de impresión - Definir</emph></variable>."
+
+#: 00000405.xhp#par_id3156290.35.help.text
+msgid "<variable id=\"fodrhin\">Choose <emph>Format - Print Ranges - Add</emph></variable>"
+msgstr "<variable id=\"fodrhin\">Seleccione <emph>Formato - Áreas de impresión - Agregar</emph></variable>"
+
+#: 00000405.xhp#par_id3155812.28.help.text
+msgid "<variable id=\"fodbah\">Choose <emph>Format - Print Ranges - Remove</emph></variable>"
+msgstr "<variable id=\"fodbah\">Seleccione <emph>Formato - Áreas de impresión - Borrar</emph></variable>"
+
+#: 00000405.xhp#par_id3153307.29.help.text
+msgid "<variable id=\"fodbbe\">Choose <emph>Format - Print Ranges - Edit</emph></variable>"
+msgstr "<variable id=\"fodbbe\">Seleccione <emph>Formato - Áreas de impresión - Editar</emph></variable>"
+
+#: 00000405.xhp#par_id3153916.31.help.text
+msgid "Choose <emph>Format - AutoFormat</emph>"
+msgstr "Menú <emph>Formato - AutoFormato...</emph>"
+
+#: 00000405.xhp#par_id3154532.32.help.text
+msgid "On the Tools bar, click"
+msgstr "En la barra Herramientas, haga clic en"
+
+#: 00000405.xhp#par_id3149332.help.text
+msgid "<image id=\"img_id3156020\" src=\"cmd/sc_autoformat.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156020\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156020\" src=\"cmd/sc_autoformat.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156020\">Icono</alt></image>"
+
+#: 00000405.xhp#par_id3154060.33.help.text
+msgid "AutoFormat"
+msgstr "AutoFormato"
+
+#: 00000405.xhp#par_id3154618.34.help.text
+msgid "<variable id=\"bedingte\">Choose <emph>Format - Conditional Formatting</emph></variable>"
+msgstr "<variable id=\"bedingte\">Seleccione <emph>Formato - Formato condicional</emph></variable>"
+
+#: 00000412.xhp#tit.help.text
+msgctxt "00000412.xhp#tit.help.text"
+msgid "Data Menu"
+msgstr "Menú Datos"
+
+#: 00000412.xhp#hd_id3145136.1.help.text
+msgctxt "00000412.xhp#hd_id3145136.1.help.text"
+msgid "Data Menu"
+msgstr "Menú Datos"
+
+#: 00000412.xhp#par_id8366954.help.text
+msgid "<variable id=\"text2columns\">Choose <emph>Data - Text to Columns</emph></variable>"
+msgstr "<variable id=\"text2columns\">Seleccione <emph>Datos - Texto a Columnas</emph></variable>"
+
+#: 00000412.xhp#par_id3147399.3.help.text
+msgid "<variable id=\"dbrbf\">Choose <emph>Data - Define Range</emph></variable>"
+msgstr "<variable id=\"dbrbf\">Menú <emph>Datos - Definir área</emph></variable>"
+
+#: 00000412.xhp#par_id3145345.4.help.text
+msgid "<variable id=\"dbrba\">Choose <emph>Data - Select Range</emph></variable>"
+msgstr "<variable id=\"dbrba\">Menú <emph>Datos - Seleccionar área</emph></variable>"
+
+#: 00000412.xhp#par_id3150443.5.help.text
+msgid "<variable id=\"dnsrt\">Choose <emph>Data - Sort</emph></variable>"
+msgstr "<variable id=\"dnsrt\">Menú <emph>Datos - Ordenar</emph></variable>"
+
+#: 00000412.xhp#par_id3148491.6.help.text
+msgid "Choose <emph>Data - Sort - Sort Criteria</emph> tab"
+msgstr "Seleccione la pestaña <emph>Datos - Ordenar - Ordenar Criterios</emph>"
+
+#: 00000412.xhp#par_id3154516.7.help.text
+msgid "On Standard bar, click"
+msgstr "En la barra Estándar, haga clic en"
+
+#: 00000412.xhp#par_id3148663.help.text
+msgid "<image id=\"img_id3150543\" src=\"cmd/sc_sortup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150543\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150543\" src=\"cmd/sc_sortup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150543\">Icono</alt></image>"
+
+#: 00000412.xhp#par_id3150767.8.help.text
+msgid "Sort Ascending"
+msgstr "Orden ascendente"
+
+#: 00000412.xhp#par_id3153969.help.text
+msgid "<image id=\"img_id3125863\" src=\"cmd/sc_sortdown.png\" width=\"0.1701inch\" height=\"0.1701inch\"><alt id=\"alt_id3125863\">Icon</alt></image>"
+msgstr "<image id=\"img_id3125863\" src=\"cmd/sc_sortdown.png\" width=\"0.1701inch\" height=\"0.1701inch\"><alt id=\"alt_id3125863\">Icono</alt></image>"
+
+#: 00000412.xhp#par_id3145364.9.help.text
+msgid "Sort Descending"
+msgstr "Orden descendente"
+
+#: 00000412.xhp#par_id3146984.10.help.text
+msgid "<variable id=\"dnstot\">Choose <emph>Data - Sort - Options</emph> tab</variable>"
+msgstr "<variable id=\"dnstot\">Elija <emph>Datos - Ordenar - Opciones</emph></variable>"
+
+#: 00000412.xhp#par_id3155308.11.help.text
+msgid "<variable id=\"dnftr\">Choose <emph>Data - Filter</emph></variable>"
+msgstr "<variable id=\"dnftr\">Menú <emph>Datos - Filtro</emph></variable>"
+
+#: 00000412.xhp#par_id3148646.12.help.text
+msgid "Choose <emph>Data - Filter - AutoFilter</emph>"
+msgstr "Menú <emph>Datos - Filtro - Filtro automático</emph>"
+
+#: 00000412.xhp#par_id3151113.13.help.text
+msgid "On Tools bar or Table Data bar, click"
+msgstr "En la barra Herramientas o Datos de tabla, haga clic en"
+
+#: 00000412.xhp#par_id3145799.help.text
+msgid "<image id=\"img_id3149413\" src=\"cmd/sc_datafilterautofilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149413\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149413\" src=\"cmd/sc_datafilterautofilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149413\">Símbolo</alt></image>"
+
+#: 00000412.xhp#par_id3149401.14.help.text
+msgid "AutoFilter"
+msgstr "Filtro automático"
+
+#: 00000412.xhp#par_id3156278.17.help.text
+msgid "<variable id=\"dnfspz\">Choose <emph>Data - Filter - Advanced Filter</emph></variable>"
+msgstr "<variable id=\"dnfspz\">Menú <emph>Datos - Filtro - Filtro especial</emph></variable>"
+
+#: 00000412.xhp#par_id3153764.18.help.text
+msgid "Choose <emph>Data - Filter - Standard Filter - More>></emph> button"
+msgstr "Menú <emph>Datos - Filtro - Filtro estándar...</emph> - Botón <emph>Opciones</emph>"
+
+#: 00000412.xhp#par_id3155444.19.help.text
+msgid "Choose <emph>Data - Filter - Advanced Filter - More>></emph> button"
+msgstr "Menú <emph>Datos - Filtro - Filtro especial... - </emph>botón <emph>Opciones</emph>"
+
+#: 00000412.xhp#par_id3156382.20.help.text
+msgid "Choose <emph>Data - Filter - Remove Filter</emph>"
+msgstr "Menú <emph>Datos - Filtro - Eliminar filtro</emph>"
+
+#: 00000412.xhp#par_id3155961.48.help.text
+msgid "On Table Data bar, click <emph>Remove Filter/Sort</emph>"
+msgstr "<emph>Barra de base de datos - </emph>Símbolo<emph> Eliminar filtro/orden</emph>"
+
+#: 00000412.xhp#par_id3148485.help.text
+msgid "<image id=\"img_id3145792\" src=\"cmd/sc_removefilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145792\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145792\" src=\"cmd/sc_removefilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145792\">Símbolo</alt></image>"
+
+#: 00000412.xhp#par_id3149207.49.help.text
+msgid "Remove Filter/Sort"
+msgstr "Eliminar filtro/orden"
+
+#: 00000412.xhp#par_id3152778.21.help.text
+msgid "<variable id=\"dnaftas\">Choose <emph>Data - Filter - Hide AutoFilter</emph></variable>"
+msgstr "<variable id=\"dnaftas\">Menú <emph>Datos - Filtro - Ocultar AutoFiltro</emph></variable>"
+
+#: 00000412.xhp#par_id3166424.22.help.text
+msgid "<variable id=\"dntegs\">Choose <emph>Data - Subtotals</emph></variable>"
+msgstr "<variable id=\"dntegs\">Menú <emph>Datos - Subtotales</emph></variable>"
+
+#: 00000412.xhp#par_id3154574.23.help.text
+msgid "<variable id=\"dntezd\">Choose <emph>Data - Subtotals - 1st, 2nd, 3rd Group</emph> tabs</variable>"
+msgstr "<variable id=\"dntezd\">Seleccione las pestañas <emph>Datos - Subtotales - Grupo 1, Grupo 2, Grupo 3</emph></variable>"
+
+#: 00000412.xhp#par_id3151277.24.help.text
+#, fuzzy
+msgid "<variable id=\"dntopi\">Choose <emph>Data - Subtotals - Options</emph> tab</variable>"
+msgstr "<variable id=\"dntopi\">Seleccione la pestaña <emph>Datos - Subtotales - Opciones</emph></variable>"
+
+#: 00000412.xhp#par_id3145133.25.help.text
+msgid "<variable id=\"datengueltig\">Choose <emph>Data - Validity</emph></variable>"
+msgstr "<variable id=\"datengueltig\">Menú <emph>Datos - Validez</emph></variable>"
+
+#: 00000412.xhp#par_id3152992.26.help.text
+#, fuzzy
+msgid "<variable id=\"datengueltigwerte\">Menu <emph>Data - Validity - Criteria</emph> tab</variable>"
+msgstr "<variable id=\"datengueltigwerte\">Seleccione la pestaña <emph>Datos - Validez - Criterios</emph></variable>"
+
+#: 00000412.xhp#par_id3150367.27.help.text
+#, fuzzy
+msgid "<variable id=\"datengueltigeingabe\">Choose <emph>Data - Validity - Input Help</emph> tab</variable>"
+msgstr "<variable id=\"datengueltigeingabe\">Seleccione la pestaña <emph>Datos - Validez - Ayuda de entrada</emph></variable>"
+
+#: 00000412.xhp#par_id3154486.28.help.text
+msgid "<variable id=\"datengueltigfehler\">Choose <emph>Data - Validity - Error Alert</emph> tab</variable>"
+msgstr "<variable id=\"datengueltigfehler\">Seleccione la pestaña <emph>Datos - Validez - Alerta de error</emph></variable>"
+
+#: 00000412.xhp#par_id3146978.29.help.text
+msgid "<variable id=\"dnmfo\">Choose <emph>Data - Multiple Operations</emph></variable>"
+msgstr "<variable id=\"dnmfo\">Menú <emph>Datos - Operaciones múltiples</emph></variable>"
+
+#: 00000412.xhp#par_id3155809.30.help.text
+msgid "<variable id=\"dnksd\">Choose <emph>Data - Consolidate</emph></variable>"
+msgstr "<variable id=\"dnksd\">Menú <emph>Datos - Consolidar</emph></variable>"
+
+#: 00000412.xhp#par_id3148701.31.help.text
+msgid "<variable id=\"dngld\">Choose <emph>Data - Group and Outline</emph></variable>"
+msgstr "<variable id=\"dngld\">Menú <emph>Datos - Consolidar</emph></variable>"
+
+#: 00000412.xhp#par_id3153815.32.help.text
+msgid "<variable id=\"dngda\">Choose <emph>Data - Group and Outline - Hide Details</emph></variable>"
+msgstr "<variable id=\"dngda\">Escoge <emph>Datos - Esquema - Ocultar detalles</emph></variable>"
+
+#: 00000412.xhp#par_id3159223.33.help.text
+msgid "<variable id=\"dngde\">Choose <emph>Data - Group and Outline - Show Details</emph></variable>"
+msgstr "<variable id=\"dngde\">Escoge <emph>Datos - Esquema - Mostrar detalles</emph></variable>"
+
+#: 00000412.xhp#par_id3146870.34.help.text
+msgid "Choose <emph>Data - Group and Outline - Group</emph>"
+msgstr "Escoge <emph>Datos - Esquema - Agrupar</emph>"
+
+#: 00000412.xhp#par_id3144507.51.help.text
+msgid "F12"
+msgstr "Tecla (F12)"
+
+#: 00000412.xhp#par_id3144772.35.help.text
+msgctxt "00000412.xhp#par_id3144772.35.help.text"
+msgid "On <emph>Tools</emph> bar, click"
+msgstr "Símbolo de la barra de herramientas:"
+
+#: 00000412.xhp#par_id3149438.help.text
+msgid "<image id=\"img_id3153287\" src=\"cmd/sc_group.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153287\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153287\" src=\"cmd/sc_group.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153287\">Símbolo</alt></image>"
+
+#: 00000412.xhp#par_id3150214.36.help.text
+msgid "Group"
+msgstr "Agrupar"
+
+#: 00000412.xhp#par_id3146781.37.help.text
+msgid "Choose <emph>Data - Group and Outline - Ungroup</emph>"
+msgstr "Escoge <emph>Datos - Esquema - Desagrupar</emph>"
+
+#: 00000412.xhp#par_id3150892.52.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + F12"
+
+#: 00000412.xhp#par_id3155097.38.help.text
+msgctxt "00000412.xhp#par_id3155097.38.help.text"
+msgid "On <emph>Tools</emph> bar, click"
+msgstr "Símbolo de la barra de herramientas:"
+
+#: 00000412.xhp#par_id3150048.help.text
+msgid "<image id=\"img_id3155914\" src=\"cmd/sc_ungroup.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155914\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155914\" src=\"cmd/sc_ungroup.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155914\">Símbolo</alt></image>"
+
+#: 00000412.xhp#par_id3153555.39.help.text
+msgid "Ungroup"
+msgstr "Eliminar grupo"
+
+#: 00000412.xhp#par_id3153008.40.help.text
+msgid "<variable id=\"dnglagl\">Choose <emph>Data - Group and Outline - AutoOutline</emph></variable>"
+msgstr "<variable id=\"dnglagl\">Choose <emph>Datos - Esquema - Esquema automático</emph></variable>"
+
+#: 00000412.xhp#par_id3154709.41.help.text
+msgid "<variable id=\"dnglef\">Choose <emph>Data - Group and Outline - Remove</emph></variable>"
+msgstr "<variable id=\"dnglef\">Seleccione <emph>Datos - Piloto de datos - Eliminar</emph></variable>"
+
+#: 00000412.xhp#par_id1774346.help.text
+msgid "<variable id=\"dngdrill\">Choose <emph>Data - Group and Outline - Show Details</emph> (for some pivot tables)</variable>"
+msgstr "<variable id=\"dngdrill\">Elija <emph>Datos - Grupo y esquema - Mostrar detalles</emph> (para algunas tablas dinámicas)</variable>"
+
+#: 00000412.xhp#par_id3155759.42.help.text
+msgid "<variable id=\"dndtpt\">Choose <emph>Data - Pivot Table</emph></variable>"
+msgstr "<variable id=\"dndtpt\">Elija <emph>Datos - Tabla dinámica</emph></variable>"
+
+#: 00000412.xhp#par_id3154625.43.help.text
+msgid "<variable id=\"dndpa\">Choose <emph>Data - Pivot Table - Create</emph></variable>"
+msgstr "<variable id=\"dndpa\">Elija <emph>Datos - Tabla dinámica - Crear</emph></variable>"
+
+#: 00000412.xhp#par_id3147558.53.help.text
+msgid "<variable id=\"dndq\">Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Data source registered in $[officename]</emph>.</variable>"
+msgstr "<variable id=\"dndq\">Elija <emph>Datos - Tabla dinámica - Crear</emph>, en el diálogo Seleccionar origen elija la opción <emph>Origen de datos registrado en $[officename]</emph>.</variable>"
+
+#: 00000412.xhp#par_id3153297.50.help.text
+msgid "Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Current selection</emph>."
+msgstr "Elija <emph>Datos - Tabla dinámica - Crear</emph>, en el diálogo Seleccionar origen elija la opción <emph>Selección actual</emph>."
+
+#: 00000412.xhp#par_id3145118.54.help.text
+msgid "Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Data source registered in $[officename]</emph>, click <emph>OK</emph> to see <emph>Select Data Source</emph> dialog."
+msgstr "Elija <emph>Datos -Tabla dinámica - Crear</emph>, en el diálogo Seleccionar origen elija la opción <emph>Origen de datos registrado en $[officename]</emph>, pulse <emph>Aceptar</emph> para ver el diálogo <emph>Seleccionar origen de datos</emph>."
+
+#: 00000412.xhp#par_id3153294.44.help.text
+msgid "<variable id=\"dndpak\">Choose <emph>Data - Pivot Table - Refresh</emph></variable>"
+msgstr "<variable id=\"dndpak\">Elija <emph>Datos - Tabla dinámica - Actualizar</emph></variable>"
+
+#: 00000412.xhp#par_id3151344.45.help.text
+msgid "<variable id=\"dndploe\">Choose <emph>Data - Pivot Table - Delete</emph></variable>"
+msgstr "<variable id=\"dndploe\">Elija <emph>Datos - Tabla dinámica - Eliminar</emph></variable>"
+
+#: 00000412.xhp#par_id3150397.46.help.text
+msgid "<variable id=\"dndakt\">Choose <emph>Data - Refresh Range</emph></variable>"
+msgstr "<variable id=\"dndakt\">Menú <emph>Datos - Actualizar área</emph></variable>"
+
+#: 00000412.xhp#par_idN10B8F.help.text
+msgid "<variable id=\"grouping\">Choose <emph>Data - Group and Outline - Group</emph></variable>"
+msgstr "<variable id=\"grouping\">Seleccione <emph>Datos - Esquema - Grupo</emph></variable>"
diff --git a/source/es/helpcontent2/source/text/scalc/01.po b/source/es/helpcontent2/source/text/scalc/01.po
new file mode 100644
index 00000000000..8c56984b4c4
--- /dev/null
+++ b/source/es/helpcontent2/source/text/scalc/01.po
@@ -0,0 +1,28761 @@
+#. extracted from helpcontent2/source/text/scalc/01.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fscalc%2F01.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-08-07 09:14+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 04020000.xhp#tit.help.text
+msgid "Insert Cells"
+msgstr "Insertar celdas"
+
+#: 04020000.xhp#bm_id3156023.help.text
+msgid "<bookmark_value>spreadsheets; inserting cells</bookmark_value><bookmark_value>cells; inserting</bookmark_value><bookmark_value>inserting; cells</bookmark_value>"
+msgstr "<bookmark_value>hojas de cálculo;insertar celdas</bookmark_value><bookmark_value>celdas;insertar</bookmark_value><bookmark_value>insertar;celdas</bookmark_value>"
+
+#: 04020000.xhp#hd_id3156023.1.help.text
+msgid " Insert Cells"
+msgstr "Insertar celdas"
+
+#: 04020000.xhp#par_id3150542.2.help.text
+msgid "<variable id=\"zelleneinfuegentext\"><ahelp hid=\".uno:InsertCell\">Opens the<emph> Insert Cells </emph>dialog, in which you can insert new cells according to the options that you specify.</ahelp></variable> You can delete cells by choosing <link href=\"text/scalc/01/02160000.xhp\" name=\"Edit - Delete Cells\"><emph>Edit - Delete Cells</emph></link>."
+msgstr "<variable id=\"zelleneinfuegentext\"><ahelp visibility=\"visible\" hid=\".uno:InsertCell\">Abre el diálogo <emph>Insertar celdas</emph>, que permite insertar celdas nuevas según las opciones especificadas.</ahelp></variable> Se pueden borrar celdas seleccionando <link href=\"text/scalc/01/02160000.xhp\" name=\"Edit - Delete Cells\"><emph>Editar - Borrar celdas</emph></link>."
+
+#: 04020000.xhp#hd_id3153768.3.help.text
+msgctxt "04020000.xhp#hd_id3153768.3.help.text"
+msgid "Selection"
+msgstr "Selección"
+
+#: 04020000.xhp#par_id3149262.4.help.text
+msgid "This area contains the options available for inserting cells into a sheet. The cell quantity and position is defined by selecting a cell range in the sheet beforehand."
+msgstr "En esta área se puede seleccionar la forma en que se desean introducir las celdas en la hoja de cálculo. La cantidad y posición de las celdas que se van a insertar se define mediante las celdas previamente seleccionadas en la hoja."
+
+#: 04020000.xhp#hd_id3146120.5.help.text
+msgid "Shift cells down"
+msgstr "Desplazar celdas hacia abajo"
+
+#: 04020000.xhp#par_id3152596.6.help.text
+msgid "<variable id=\"zellenuntentext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSDOWN\">Moves the contents of the selected range downward when cells are inserted.</ahelp></variable>"
+msgstr "<variable id=\"zellenuntentext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSDOWN\" visibility=\"visible\">Desplaza el contenido del área seleccionada hacia abajo al insertar celdas.</ahelp></variable>"
+
+#: 04020000.xhp#hd_id3147434.7.help.text
+msgid "Shift cells right"
+msgstr "Desplazar celdas a la derecha"
+
+#: 04020000.xhp#par_id3144764.8.help.text
+msgid "<variable id=\"zellenrechtstext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSRIGHT\">Moves the contents of the selected range to the right when cells are inserted.</ahelp></variable>"
+msgstr "<variable id=\"zellenrechtstext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSRIGHT\" visibility=\"visible\">Desplaza el contenido del área seleccionada hacia la derecha al insertar celdas.</ahelp></variable>"
+
+#: 04020000.xhp#hd_id3153877.9.help.text
+msgid "Entire row"
+msgstr "Insertar filas completas"
+
+#: 04020000.xhp#par_id3155417.10.help.text
+msgid "<variable id=\"zeilenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSROWS\">Inserts an entire row. The position of the row is determined by the selection on the sheet.</ahelp></variable> The number of rows inserted depends on how many rows are selected. The contents of the original rows are moved downward."
+msgstr "<variable id=\"zeilenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSROWS\" visibility=\"visible\">Inserta una fila entera. La posición de la fila viene determinada por la selección en la hoja.</ahelp></variable> El número de filas insertadas depende del número de filas seleccionadas. El contenido de las filas originales se desplaza hacia abajo."
+
+#: 04020000.xhp#hd_id3146971.11.help.text
+msgid "Entire column"
+msgstr "Insertar columnas"
+
+#: 04020000.xhp#par_id3155068.12.help.text
+msgid "<variable id=\"spaltenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSCOLS\">Inserts an entire column. The number of columns to be inserted is determined by the selected number of columns.</ahelp></variable> The contents of the original columns are shifted to the right."
+msgstr "<variable id=\"spaltenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSCOLS\">Inserta un columna completa. El número de columnas de ser insertado es determinado por el número de columnas seleccionada.</ahelp></variable> Los contenidos de la columna original se desplaza hacia la derecho."
+
+#: 05080000.xhp#tit.help.text
+msgid "Print Ranges"
+msgstr "Áreas de impresión"
+
+#: 05080000.xhp#hd_id3154013.1.help.text
+msgid "<link href=\"text/scalc/01/05080000.xhp\" name=\"Print Ranges\">Print Ranges</link>"
+msgstr "<link href=\"text/scalc/01/05080000.xhp\" name=\"Áreas de impresión\">Áreas de impresión</link>"
+
+#: 05080000.xhp#par_id3155855.2.help.text
+msgid "<ahelp hid=\".\">Manages print ranges. Only cells within the print ranges will be printed.</ahelp>"
+msgstr "<ahelp hid=\".\">Administra los intervalos de impresión. Sólo se imprimirán las celdas que haya dentro de los intervalos de impresión.</ahelp>"
+
+#: 05080000.xhp#par_id3146119.4.help.text
+msgid "If you do not define any print range manually, Calc assigns an automatic print range to include all the cells that are not empty."
+msgstr "Si no define ningún intervalo de impresión manualmente, Calc asigna uno de forma automática para que incluya todas las celdas que no estén vacías."
+
+#: 05080000.xhp#hd_id3154729.3.help.text
+msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Edit\">Edit</link>"
+msgstr "<link href=\"text/scalc/01/05080300.xhp\" name=\"Editar...\">Editar...</link>"
+
+#: 05120000.xhp#tit.help.text
+msgctxt "05120000.xhp#tit.help.text"
+msgid "Conditional Formatting"
+msgstr "Formateado condicionado"
+
+#: 05120000.xhp#hd_id3155132.1.help.text
+msgctxt "05120000.xhp#hd_id3155132.1.help.text"
+msgid "Conditional Formatting"
+msgstr "Formateado condicional"
+
+#: 05120000.xhp#par_id3163710.2.help.text
+msgid "<variable id=\"bedingtetext\"><ahelp hid=\".uno:ConditionalFormatDialog\">Choose <emph>Conditional Formatting</emph> to define format styles depending on certain conditions.</ahelp></variable> If a style was already assigned to a cell, it remains unchanged. The style entered here is then evaluated. You can enter three conditions that query the contents of cell values or formulas. The conditions are evaluated from 1 to 3. If the condition 1 matches the condition, the defined style will be used. Otherwise, condition 2 is evaluated, and its defined style used. If this style does not match, condition 3 is evaluated."
+msgstr "<variable id=\"bedingtetext\"><ahelp hid=\".uno:ConditionalFormatDialog\">Elija <emph>Formateado condicional</emph> para definir estilos de formato en función de ciertas condiciones.</ahelp></variable> Si ya se ha asignado un estilo a una celda, ésta permanece sin cambios. A continuación se evalúa el estilo especificado aquí. Se pueden especificar tres condiciones que tienen en cuenta el contenido de las celdas, sean valores o fórmulas. Las condiciones se evalúan de 1 a 3. Si la condición 1 coincide con la condición, se utiliza el estilo definido. En caso contrario se evalúa la condición 2 y se utiliza el estilo definido para ella. Si esta condición no se cumple, se evalúa la condición 3."
+
+#: 05120000.xhp#par_id2414014.help.text
+msgid "To apply conditional formatting, AutoCalculate must be enabled. Choose Tools - Cell Contents - AutoCalculate (you see a check mark next to the command when AutoCalculate is enabled)."
+msgstr "Para aplicar formato condicionado, debe habilitar la función Cálculo automático. Seleccione Herramientas - Contenido de las celdas - Calcular automáticamente (aparece una marca de verificación junto al comando cuando la función de cálculo automático está activada)."
+
+#: 05120000.xhp#bm_id3153189.help.text
+msgid "<bookmark_value>conditional formatting; conditions</bookmark_value>"
+msgstr "<bookmark_value>formato condicionado;condiciones</bookmark_value>"
+
+#: 05120000.xhp#hd_id3153189.18.help.text
+msgid "Condition 1/2/3"
+msgstr "Condición 1/2/3"
+
+#: 05120000.xhp#par_id3149413.4.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONDFORMAT:CBX_COND3\">Mark the boxes corresponding to each condition and enter the corresponding condition.</ahelp> To close the dialog, click <emph>OK</emph>."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONDFORMAT:CBX_COND3\">Marque los cuadros correspondientes a cada una de las condiciones y escriba la condición.</ahelp> Haga clic en <emph>Aceptar</emph> para cerrar el diálogo."
+
+#: 05120000.xhp#hd_id3147394.5.help.text
+msgid "Cell Value / Formula"
+msgstr "Valor de la celda/Fórmula"
+
+#: 05120000.xhp#par_id3155602.6.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_1\">Specifies if conditional formatting is dependent on a cell value or a formula.</ahelp> If you select a formula as a reference, the <emph>Cell Value Condition</emph> box is displayed to the right of the <emph>Cell value/Formula</emph> field. If the condition is \"Formula is\", enter a cell reference. If the cell reference is a value other than zero, the condition matches."
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_1\">Especifica si el formateado condicional depende de un valor de celda o de una fórmula.</ahelp> Si selecciona una fórmula como referencia, el cuadro <emph>Condición de valor de celda</emph> se mostrará a la derecha del cuadro <emph>Valor de celda/Fórmula</emph>. Si la condición es \"La fórmula es\", escriba una referencia de celda. Si la referencia de celda tiene un valor distinto de cero, la condición se cumple."
+
+#: 05120000.xhp#hd_id3153709.7.help.text
+msgid "Cell Value Condition"
+msgstr "Condición de valor de celda"
+
+#: 05120000.xhp#par_id3153764.8.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_2\">Choose a condition for the format to be applied to the selected cells.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_2\">Elija un parámetro para el formato que se debe aplicar a las celdas seleccionadas.</ahelp>"
+
+#: 05120000.xhp#hd_id3156384.9.help.text
+msgid "Cell Style"
+msgstr "Estilo de celda"
+
+#: 05120000.xhp#par_id3145228.10.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_TEMPLATE\">Choose the style to be applied if the specified condition matches.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_TEMPLATE\">Permite seleccionar el estilo que debe aplicarse cuando se cumple la condición.</ahelp>"
+
+#: 05120000.xhp#hd_id0509200913175331.help.text
+msgid "New Style"
+msgstr "Nuevo estilo"
+
+#: 05120000.xhp#par_id0509200913175368.help.text
+msgid "<ahelp hid=\".\">If you haven't already defined a style to be used, you can click New Style to open the Organizer tab page of the Cell Style dialog. Define a new style there and click OK.</ahelp>"
+msgstr "<ahelp hid=\".\">Si todavía no ha definido un estilo para utilizarlo, haga clic en Nuevo estilo para abrir la ficha Organizador del cuadro de diálogo Estilo de celda. Defina un nuevo estilo y haga clic en Aceptar.</ahelp>"
+
+#: 05120000.xhp#hd_id3146316.11.help.text
+msgid "Parameter field"
+msgstr "Campo de parámetro"
+
+#: 05120000.xhp#par_id3155114.12.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONDFORMAT:EDT_COND3_2\" visibility=\"hidden\">Enter a reference, value or formula.</ahelp> Enter a reference, value or formula in the parameter field, or in both parameter fields if you have selected a condition that requires two parameters. You can also enter formulas containing relative references."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONDFORMAT:EDT_COND3_2\" visibility=\"hidden\">Escriba una referencia, valor o fórmula.</ahelp> Escriba una referencia, valor o fórmula en el campo del parámetro o en ambos parámetros si ha seleccionado una condición que los requiera. También puede especificar fórmulas con referencias relativas."
+
+#: 05120000.xhp#par_id3145257.13.help.text
+msgid "Once the parameters have been defined, the condition is complete. It may appear as:"
+msgstr "De este modo se completa la condición. Esta podría tener, por ejemplo, la forma siguiente:"
+
+#: 05120000.xhp#par_id3150784.14.help.text
+msgid "Cell value is equal 0: Cell style Null value (You must have already defined a cell style with this name before assigning it to a condition)."
+msgstr "Valor de celda igual a 0: Estilo de celda Valor cero; este ejemplo requiere haber definido previamente un estilo de celda con el nombre Valor cero, que destaca este tipo de valores."
+
+#: 05120000.xhp#par_id3150365.15.help.text
+msgid "Cell value is between $B$20 and $B$21: Cell style Result (The corresponding value limits must already exist in cells B20 and B21)."
+msgstr "El valor de la celda se ecuentra entre $B$20 y $B$21: Estilo de celda \"Resultado\" (los correspondientes valores extremos ya deben existir en las celdas B20 y B21)."
+
+#: 05120000.xhp#par_id3152992.16.help.text
+msgid "Formula is SUM($A$1:$A$5)=10: Cell style Result (The selected cells are formatted with the Result style if the sum of the contents in cells A1 to A5 is equal to 10)."
+msgstr "La fórmula es SUMA($A$1:$A$5)=10: Estilo de celda \"Resultado\"; las celdas seleccionadas se formatean con el estilo \"Resultado\" cuando la suma de los contenidos de las celdas entre A1 y A5 es igual a 10."
+
+#: 05120000.xhp#par_idN107E1.help.text
+msgid " <embedvar href=\"text/scalc/guide/cellstyle_conditional.xhp#cellstyle_conditional\"/> "
+msgstr " <embedvar href=\"text/scalc/guide/cellstyle_conditional.xhp#cellstyle_conditional\"/> "
+
+#: 04060109.xhp#tit.help.text
+msgctxt "04060109.xhp#tit.help.text"
+msgid "Spreadsheet Functions"
+msgstr "Funciones de hoja de cálculo"
+
+#: 04060109.xhp#bm_id3148522.help.text
+msgid "<bookmark_value>spreadsheets; functions</bookmark_value> <bookmark_value>Function Wizard; spreadsheets</bookmark_value> <bookmark_value>functions; spreadsheets</bookmark_value>"
+msgstr "<bookmark_value>hojas de cálculo;funciones</bookmark_value> <bookmark_value>Asistente para funciones;hojas de cálculo</bookmark_value> <bookmark_value>funciones;hojas de cálculo</bookmark_value>"
+
+#: 04060109.xhp#hd_id3148522.1.help.text
+msgctxt "04060109.xhp#hd_id3148522.1.help.text"
+msgid "Spreadsheet Functions"
+msgstr "Funciones de la hoja de cálculo"
+
+#: 04060109.xhp#par_id3144508.2.help.text
+msgid "<variable id=\"tabelletext\">This section contains descriptions of the <emph>Spreadsheet</emph> functions together with an example.</variable>"
+msgstr "<variable id=\"tabelletext\">Esta sección contiene descripciones de las funciones para <emph>hojas de cálculo</emph> junto con un ejemplo. </variable>"
+
+#: 04060109.xhp#bm_id3146968.help.text
+msgid "<bookmark_value>ADDRESS function</bookmark_value>"
+msgstr "<bookmark_value>DIRECCIÓN</bookmark_value>"
+
+#: 04060109.xhp#hd_id3146968.3.help.text
+msgctxt "04060109.xhp#hd_id3146968.3.help.text"
+msgid "ADDRESS"
+msgstr "DIRECCIÓN"
+
+#: 04060109.xhp#par_id3155762.4.help.text
+msgid "<ahelp hid=\"HID_FUNC_ADRESSE\">Returns a cell address (reference) as text, according to the specified row and column numbers.</ahelp> You can determine whether the address is interpreted as an absolute address (for example, $A$1) or as a relative address (as A1) or in a mixed form (A$1 or $A1). You can also specify the name of the sheet."
+msgstr "<ahelp hid=\"HID_FUNC_ADRESSE\">Devuelve una dirección de celda (referencia) en forma de texto, según los números de fila y columna especificados.</ahelp> Se puede determinar si la dirección se interpreta como dirección absoluta (por ejemplo, $A$1), relativa (por ejemplo, A1) o mixta (A$1 o $A1). También se puede especificar el nombre de la hoja."
+
+#: 04060109.xhp#par_id1027200802301348.help.text
+msgid "For interoperability the ADDRESS and INDIRECT functions support an optional parameter to specify whether the R1C1 address notation instead of the usual A1 notation should be used."
+msgstr "Para la interoperabilidad las funciones de DIRECCION e INDIRECTO soportan un parámetro opcional para especificar entre la notación de la dirección R1C1 en vez de la notación usual A1 que debería ser usada ."
+
+#: 04060109.xhp#par_id1027200802301445.help.text
+msgid "In ADDRESS, the parameter is inserted as the fourth parameter, shifting the optional sheet name parameter to the fifth position."
+msgstr "En DIRECCION, el parámetro es insertado como cuarto parámetro, cambiando el parámetro nombre de la hoja a la quinta posición."
+
+#: 04060109.xhp#par_id102720080230153.help.text
+msgid "In INDIRECT, the parameter is appended as the second parameter."
+msgstr "En INDIRECTO, el parámetro se agrega como el segundo parámetro ."
+
+#: 04060109.xhp#par_id102720080230151.help.text
+msgid "In both functions, if the argument is inserted with the value 0, then the R1C1 notation is used. If the argument is not given or has a value other than 0, then the A1 notation is used. "
+msgstr "En ambas funciones, si se inserta el argumento con el valor 0, entonces lse usa la rotación R1C1. Si no se da el argumento o tiene otro valor que no sea el 0, entonces se usa la notación A1. "
+
+#: 04060109.xhp#par_id1027200802301556.help.text
+msgid "In case of R1C1 notation, ADDRESS returns address strings using the exclamation mark '!' as the sheet name separator, and INDIRECT expects the exclamation mark as sheet name separator. Both functions still use the dot '.' sheet name separator with A1 notation."
+msgstr "En el caso de la notación R1C1, DIRECCION retorna una cadena de direcciones usando la marca de exclamación '!' como el separador de nombres de la hoja, y INDIRECTO expera la marca de exclamación como nombre de separador de hoja. Ambas funciones aún usan el punto '.' como separador de nombre de hoja con la notación A1."
+
+#: 04060109.xhp#par_id1027200802301521.help.text
+msgid "When opening documents from ODF 1.0/1.1 format, the ADDRESS functions that show a sheet name as the fourth paramater will shift that sheet name to become the fifth parameter. A new fourth parameter with the value 1 will be inserted."
+msgstr "Cuando se abren documentos desde el formato ODF 1.0/1.1 las funciones de DIRECCION que muestran un nombre de hoja como el cuarto parámetro que cambiará el nombre de la hoja a un quinto parámetro . Se insertará un nuevo cuarto parámetro con el valor 1 ."
+
+#: 04060109.xhp#par_id1027200802301650.help.text
+msgid "When storing a document in ODF 1.0/1.1 format, if ADDRESS functions have a fourth parameter, that parameter will be removed."
+msgstr "Cuando se almacena un documento en formato ODF 1.0/1.1 , si las funciones de DIRECCION tienen un cuarto parámetro, ese parámetro se borrará ."
+
+#: 04060109.xhp#par_id102720080230162.help.text
+msgid "Do not save a spreadsheet in the old ODF 1.0/1.1 format if the ADDRESS function's new fourth parameter was used with a value of 0."
+msgstr "No guarde la Hoja en el formato antiguo de ODF 1.0/1.1 si las nuevas funciones de DIRECCION con su cuarto parámetro se usó con un valor 0 ."
+
+#: 04060109.xhp#par_id1027200802301756.help.text
+msgid "The INDIRECT function is saved without conversion to ODF 1.0/1.1 format. If the second parameter was present, an older version of Calc will return an error for that function."
+msgstr "La función INDIRECTO se guarda sin conversión al formato ODF 1.0/1.1 Si está presente el segundo parámetro, una versión antigua de Calc retornará un error para esa función ."
+
+#: 04060109.xhp#hd_id3151196.5.help.text
+msgctxt "04060109.xhp#hd_id3151196.5.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060109.xhp#par_id3154707.6.help.text
+msgid "ADDRESS(Row; Column; Abs; A1; \"Sheet\")"
+msgstr "DIRECCIÓN(Fila; Columna; Abs; \"Hoja\")"
+
+#: 04060109.xhp#par_id3147505.7.help.text
+msgid " <emph>Row</emph> represents the row number for the cell reference"
+msgstr " <emph>Fila</emph> representa el número de fila de la referencia de celda."
+
+#: 04060109.xhp#par_id3145323.8.help.text
+msgid " <emph>Column</emph> represents the column number for the cell reference (the number, not the letter)"
+msgstr " <emph>Columna</emph> representa el número de columna de la referencia de la celda (el número, no la letra)."
+
+#: 04060109.xhp#par_id3153074.9.help.text
+msgid " <emph>Abs</emph> determines the type of reference:"
+msgstr " <emph>Abs</emph> determina el tipo de referencia:"
+
+#: 04060109.xhp#par_id3153298.10.help.text
+msgid "1: absolute ($A$1)"
+msgstr "1: absoluto ($A$1)"
+
+#: 04060109.xhp#par_id3150431.11.help.text
+msgid "2: row reference type is absolute; column reference is relative (A$1)"
+msgstr "2: Fila absoluta; Columna relativa (A$1)"
+
+#: 04060109.xhp#par_id3146096.12.help.text
+msgid "3: row (relative); column (absolute) ($A1)"
+msgstr "3: Fila relativa; Columna absoluta ($A1)"
+
+#: 04060109.xhp#par_id3153334.13.help.text
+msgid "4: relative (A1)"
+msgstr "4: Relativa (A1)"
+
+#: 04060109.xhp#par_id1027200802465915.help.text
+msgctxt "04060109.xhp#par_id1027200802465915.help.text"
+msgid " <emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used."
+msgstr " <emph>A1</emph> (opcional): si se define en 0, se utiliza la notación R1C1. Si falta este parámetro o se define en otro valor distinto a 0, se utiliza la notación A1."
+
+#: 04060109.xhp#par_id3153962.14.help.text
+msgid " <emph>Sheet</emph> represents the name of the sheet. It must be placed in double quotes."
+msgstr " <emph>Hoja</emph> representa el nombre de la hoja. Debe ir entre comillas dobles."
+
+#: 04060109.xhp#hd_id3147299.15.help.text
+msgid "Example:"
+msgstr "Ejemplo"
+
+#: 04060109.xhp#par_id3148744.16.help.text
+msgid " <item type=\"input\">=ADDRESS(1;1;2;;\"Sheet2\")</item> returns the following: Sheet2.A$1"
+msgstr " <item type=\"input\">=DIRECCIÓN(1;1;2;;\"Hoja2\")</item> devuelve lo siguiente: Hoja2.A$1"
+
+#: 04060109.xhp#par_id3159260.17.help.text
+msgid "If the cell A1 in sheet 2 contains the value <item type=\"input\">-6</item>, you can refer indirectly to the referenced cell using a function in B2 by entering <item type=\"input\">=ABS(INDIRECT(B2))</item>. The result is the absolute value of the cell reference specified in B2, which in this case is 6."
+msgstr "Si la celda A1 dentro de la hoja 2 contiene el valor <item type=\"input\">-6</item>, puedes referir indirectamente las celdas usando la función en B2 ingresando <item type=\"input\">=ABS(INDIRECTO(B2))</item>. El resultado es el valor absoluto de las celdas referida especificadas en B2, el cual es el caso es 6."
+
+#: 04060109.xhp#bm_id3150372.help.text
+msgid "<bookmark_value>AREAS function</bookmark_value>"
+msgstr "<bookmark_value>ÁREAS</bookmark_value>"
+
+#: 04060109.xhp#hd_id3150372.19.help.text
+msgid "AREAS"
+msgstr "ÁREAS"
+
+#: 04060109.xhp#par_id3150036.20.help.text
+msgid "<ahelp hid=\"HID_FUNC_BEREICHE\">Returns the number of individual ranges that belong to a multiple range.</ahelp> A range can consist of contiguous cells or a single cell."
+msgstr "<ahelp hid=\"HID_FUNC_BEREICHE\">Devuelve el número de áreas individuales que pertenecen a un área múltiple.</ahelp> Un área se puede componer de celdas adyacentes o de una única celda."
+
+#: 04060109.xhp#par_id061020090307073.help.text
+msgid "The function expects a single argument. If you state multiple ranges, you must enclose them into additional parentheses. Multiple ranges can be entered using the semicolon (;) as divider, but this gets automatically converted to the tilde (~) operator. The tilde is used to join ranges."
+msgstr "La función espera un argumento simple. Si define varias áreas, debe incluirlas entre paréntesis adicionales. Se pueden especificar varias áreas mediante el símbolo de punto y coma (;) como divisor, pero éste se convierte automáticamente al operador tilde (~). La tilde se utiliza para unir áreas."
+
+#: 04060109.xhp#hd_id3145222.21.help.text
+msgctxt "04060109.xhp#hd_id3145222.21.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060109.xhp#par_id3155907.22.help.text
+msgid "AREAS(Reference)"
+msgstr "ÁREAS(referencia)"
+
+#: 04060109.xhp#par_id3153118.23.help.text
+msgid "Reference represents the reference to a cell or cell range."
+msgstr "La referencia es la referencia a una celda o a un área de celdas."
+
+#: 04060109.xhp#hd_id3148891.24.help.text
+msgctxt "04060109.xhp#hd_id3148891.24.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060109.xhp#par_id3149946.25.help.text
+msgid " <item type=\"input\">=AREAS((A1:B3;F2;G1))</item> returns 3, as it is a reference to three cells and/or areas. After entry this gets converted to =AREAS((A1:B3~F2~G1))."
+msgstr " <item type=\"input\">=ÁREAS((A1:B3;F2;G1))</item> devuelve 3, ya que es una referencia a tres celdas y/o áreas. Tras la entrada, se convierte a =ÁREAS((A1:B3~F2~G1))."
+
+#: 04060109.xhp#par_id3146820.26.help.text
+msgid " <item type=\"input\">=AREAS(All)</item> returns 1 if you have defined an area named All under <emph>Data - Define Range</emph>."
+msgstr " <item type=\"input\">=ÁREAS(Todos)</item> devuelve 1 si se ha definido un área que se llama Todos en <emph>Datos - Definir área</emph>."
+
+#: 04060109.xhp#bm_id3148727.help.text
+msgid "<bookmark_value>DDE function</bookmark_value>"
+msgstr "<bookmark_value>DDE</bookmark_value>"
+
+#: 04060109.xhp#hd_id3148727.28.help.text
+msgid "DDE"
+msgstr "DDE"
+
+#: 04060109.xhp#par_id3149434.29.help.text
+msgid "<ahelp hid=\"HID_FUNC_DDE\">Returns the result of a DDE-based link.</ahelp> If the contents of the linked range or section changes, the returned value will also change. You must reload the spreadsheet or choose <emph>Edit - Links</emph> to see the updated links. Cross-platform links, for example from a <item type=\"productname\">%PRODUCTNAME</item> installation running on a Windows machine to a document created on a Linux machine, are not allowed."
+msgstr "<ahelp hid=\"HID_FUNC_DDE\">Devuelve el resultado de un vínculo basado en DDE.</ahelp> Si el contenido del área o sección vinculada se modifica, el valor devuelto también cambiará. Para ver los vínculos actualizados se debe volver a cargar la hoja de cálculo o elegir <emph>Editar - Vínculos</emph>. No se permite definir vínculos entre plataformas distintas, por ejemplo vincular desde una instalación de <item type=\"productname\">%PRODUCTNAME</item> en una máquina Windows un documento creado en una máquina Linux."
+
+#: 04060109.xhp#hd_id3150700.30.help.text
+msgctxt "04060109.xhp#hd_id3150700.30.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060109.xhp#par_id3148886.31.help.text
+msgid "DDE(\"Server\"; \"File\"; \"Range\"; Mode)"
+msgstr "DDE(\"Servidor \"Archivo\"; \"Área\"; Modo)"
+
+#: 04060109.xhp#par_id3154842.32.help.text
+msgid " <emph>Server</emph> is the name of a server application. <item type=\"productname\">%PRODUCTNAME</item>applications have the server name \"Soffice\"."
+msgstr " <emph>Servidor</emph> es el nombre de una aplicación de servidor. Las aplicaciones de <item type=\"productname\">%PRODUCTNAME</item> tienen el nombre de servidor \"Soffice\"."
+
+#: 04060109.xhp#par_id3153034.33.help.text
+msgid " <emph>File</emph> is the complete file name, including path specification."
+msgstr " <emph>Archivo</emph> es el nombre completo de archivo, incluida la especificación de la ruta."
+
+#: 04060109.xhp#par_id3147472.34.help.text
+msgid " <emph>Range</emph> is the area containing the data to be evaluated."
+msgstr " <emph>Rango</emph> es el área que contiene los datos que se van a evaluar."
+
+#: 04060109.xhp#par_id3152773.184.help.text
+msgid " <emph>Mode</emph> is an optional parameter that controls the method by which the DDE server converts its data into numbers."
+msgstr " <emph>Modo</emph> es un parámetro opcional que controla el método por el que el servidor DDE convierte sus datos en números."
+
+#: 04060109.xhp#par_id3154383.185.help.text
+msgid " <emph>Mode</emph> "
+msgstr " <emph>Modo</emph> "
+
+#: 04060109.xhp#par_id3145146.186.help.text
+msgid " <emph>Effect</emph> "
+msgstr " <emph>Efecto</emph> "
+
+#: 04060109.xhp#par_id3154558.187.help.text
+msgctxt "04060109.xhp#par_id3154558.187.help.text"
+msgid "0 or missing"
+msgstr "0 o se omite"
+
+#: 04060109.xhp#par_id3145596.188.help.text
+msgid "Number format from the \"Default\" cell style"
+msgstr "Formato numérico procedente del estilo de celda \"predeterminado\""
+
+#: 04060109.xhp#par_id3152785.189.help.text
+msgctxt "04060109.xhp#par_id3152785.189.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060109.xhp#par_id3154380.190.help.text
+msgid "Data are always interpreted in the standard format for US English"
+msgstr "Los datos se interpretan siempre con el formato predeterminado para inglés de EE.UU."
+
+#: 04060109.xhp#par_id3150279.191.help.text
+msgctxt "04060109.xhp#par_id3150279.191.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060109.xhp#par_id3153775.192.help.text
+msgid "Data are retrieved as text; no conversion to numbers"
+msgstr "Los datos se aceptan como texto; no se transforman en números"
+
+#: 04060109.xhp#hd_id3149546.35.help.text
+msgctxt "04060109.xhp#hd_id3149546.35.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060109.xhp#par_id3148734.36.help.text
+msgid " <item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\data1.sxc\";\"sheet1.A1\")</item> reads the contents of cell A1 in sheet1 of the <item type=\"productname\">%PRODUCTNAME</item> Calc spreadsheet data1.sxc."
+msgstr " <item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\data1.sxc\";\"hoja1.A1\")</item> lee el contenido de la celda A1 en la hoja1 de la hoja de cálculo <item type=\"productname\">%PRODUCTNAME</item> Calc data1.sxc."
+
+#: 04060109.xhp#par_id3153081.37.help.text
+msgid " <item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\motto.sxw\";\"Today's motto\")</item> returns a motto in the cell containing this formula. First, you must enter a line in the motto.sxw document containing the motto text and define it as the first line of a section named <item type=\"literal\">Today's Motto</item> (in <item type=\"productname\">%PRODUCTNAME</item> Writer under <emph>Insert - Section</emph>). If the motto is modified (and saved) in the <item type=\"productname\">%PRODUCTNAME</item> Writer document, the motto is updated in all <item type=\"productname\">%PRODUCTNAME</item> Calc cells in which this DDE link is defined."
+msgstr " <item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\motto.sxw\";\"Máxima del día\")</item> devuelve una máxima en la celda que contiene la fórmula. Primero, debe introducir una línea en el documento motto.sxw que contiene el texto de la máxima y definirlo como la primera línea de una sección que se llame <item type=\"literal\">Máxima del día</item> (en <item type=\"productname\">%PRODUCTNAME</item> Writer en <emph>Insertar - Sección</emph>). Si se modifica la máxima (y se guarda) en el documento de <item type=\"productname\">%PRODUCTNAME</item> Writer, la máxima se actualiza en todas las celdas de <item type=\"productname\">%PRODUCTNAME</item> Calc en las que se defina este vínculo DDE."
+
+#: 04060109.xhp#bm_id3153114.help.text
+msgid "<bookmark_value>ERRORTYPE function</bookmark_value>"
+msgstr "<bookmark_value>Función TIPO.DE.ERROR</bookmark_value>"
+
+#: 04060109.xhp#hd_id3153114.38.help.text
+msgid "ERRORTYPE"
+msgstr "TIPO.DE.ERROR"
+
+#: 04060109.xhp#par_id3148568.39.help.text
+msgid "<ahelp hid=\"HID_FUNC_FEHLERTYP\">Returns the number corresponding to an <link href=\"text/scalc/05/02140000.xhp\" name=\"error value\">error value</link> occurring in a different cell.</ahelp> With the aid of this number, you can generate an error message text."
+msgstr "<ahelp hid=\"HID_FUNC_FEHLERTYP\">Devuelve el número correspondiente a un <link href=\"text/scalc/05/02140000.xhp\" name=\"error value\">valor de error</link> que se produce en una celda distinta.</ahelp> Con la ayuda de este número, puede generar un texto de mensaje de error."
+
+#: 04060109.xhp#par_id3149877.40.help.text
+msgid "The Status Bar displays the predefined error code from <item type=\"productname\">%PRODUCTNAME</item> if you click the cell containing the error."
+msgstr "Al pulsar en la celda que contiene el error, en la barra de estado se muestra el código de error predefinido de $[officename]."
+
+#: 04060109.xhp#hd_id3154327.41.help.text
+msgctxt "04060109.xhp#hd_id3154327.41.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060109.xhp#par_id3151322.42.help.text
+msgid "ERRORTYPE(Reference)"
+msgstr "TIPO.DE.ERROR(referencia)"
+
+#: 04060109.xhp#par_id3150132.43.help.text
+msgid " <emph>Reference</emph> contains the address of the cell in which the error occurs."
+msgstr " <emph>Referencia</emph> contiene la dirección de la celda en la que se produce el error."
+
+#: 04060109.xhp#hd_id3145248.44.help.text
+msgctxt "04060109.xhp#hd_id3145248.44.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060109.xhp#par_id3146904.45.help.text
+msgid "If cell A1 displays Err:518, the function <item type=\"input\">=ERRORTYPE(A1)</item> returns the number 518."
+msgstr "Si la celda A1 muestra el Error:518, la función <item type=\"input\">=TIPO.DE.ERROR(A1)</item> devuelve el número 518."
+
+#: 04060109.xhp#bm_id3151221.help.text
+msgid "<bookmark_value>INDEX function</bookmark_value>"
+msgstr "<bookmark_value>Función ÍNDICE</bookmark_value>"
+
+#: 04060109.xhp#hd_id3151221.47.help.text
+msgid "INDEX"
+msgstr "ÍNDICE"
+
+#: 04060109.xhp#par_id3150268.48.help.text
+msgid "<ahelp hid=\"HID_FUNC_INDEX\">INDEX returns a sub range, specified by row and column number, or an optional range index. Depending on context, INDEX returns a reference or content.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_INDEX\">ÍNDICE devuelve un sub rango, especificado por el número de fila y columna, o por un índice de rango opcional. Dependiendo del contexto, ÍNDICE devuelve una referencia o contenido.</ahelp>"
+
+#: 04060109.xhp#hd_id3156063.49.help.text
+msgctxt "04060109.xhp#hd_id3156063.49.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060109.xhp#par_id3149007.50.help.text
+msgid "INDEX(Reference; Row; Column; Range)"
+msgstr "ÍNDICE(Referencia; Fila; Columna; Área)"
+
+#: 04060109.xhp#par_id3153260.51.help.text
+msgid " <emph>Reference</emph> is a reference, entered either directly or by specifying a range name. If the reference consists of multiple ranges, you must enclose the reference or range name in parentheses."
+msgstr " <emph>Referencia</emph> es una referencia, indicada directamente o mediante un nombre de área. Si la referencia consta de varias áreas, la referencia o el nombre de área debe ir entre paréntesis."
+
+#: 04060109.xhp#par_id3145302.52.help.text
+msgid " <emph>Row</emph> (optional) represents the row index of the reference range, for which to return a value. In case of zero (no specific row) all referenced rows are returned."
+msgstr " <emph>Fila</emph> (opcional) representa el índice de fila del área de referencia, para la que devolver un valor. En caso de cero (ninguna fila específica) se devuelven todas las filas referenciadas."
+
+#: 04060109.xhp#par_id3154628.53.help.text
+msgid " <emph>Column</emph> (optional) represents the column index of the reference range, for which to return a value. In case of zero (no specific column) all referenced columns are returned."
+msgstr " <emph>Columna</emph> (opcional) representa el índice de columna del área de referencia, para la que devolver un valor. En caso de cero (ninguna columna específica) se devuelven todas las columnas referenciadas."
+
+#: 04060109.xhp#par_id3155514.54.help.text
+msgid " <emph>Range</emph> (optional) represents the index of the subrange if referring to a multiple range."
+msgstr " <emph>Rango</emph> (opcional) representa el índice de la subárea si hace referencia a un área múltiple."
+
+#: 04060109.xhp#hd_id3145264.55.help.text
+msgctxt "04060109.xhp#hd_id3145264.55.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060109.xhp#par_id3159112.56.help.text
+msgid " <item type=\"input\">=INDEX(Prices;4;1)</item> returns the value from row 4 and column 1 of the database range defined in <emph>Data - Define</emph> as <emph>Prices</emph>."
+msgstr " <item type=\"input\">=ÍNDICE(Precios;4;1)</item> devuelve el valor de la fila 4 y la columna 1 el área de base de datos definido en <emph>Datos - Definir</emph> como <emph>Precios</emph>."
+
+#: 04060109.xhp#par_id3150691.57.help.text
+msgid " <item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
+msgstr " <item type=\"input\">=ÍNDICE(SumaX;4;1)</item> devuelve el valor del área <emph>SumaX</emph> en la fila 4 y columna 1 como se define en <emph>Insertar - Nombres - Definir</emph>."
+
+#: 04060109.xhp#par_id4109012.help.text
+msgid " <item type=\"input\">=INDEX(A1:B6;1)</item> returns a reference to the first row of A1:B6."
+msgstr " <item type=\"input\">=ÍNDICE(A1:B6;1)</item> devuelve una referencia a la primera fila de A1:B6."
+
+#: 04060109.xhp#par_id9272133.help.text
+msgid " <item type=\"input\">=INDEX(A1:B6;0;1)</item> returns a reference to the first column of A1:B6."
+msgstr " <item type=\"input\">=ÍNDICE(A1:B6;1)</item> devuelve una referencia a la primera columna de A1:B6."
+
+#: 04060109.xhp#par_id3158419.58.help.text
+msgid " <item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgstr " <item type=\"input\">=ÍNDICE((multi);4;1)</item> indica el valor contenido en la cuarta fila y primera columna del intervalo (múltiple), al cual se le asignó el nombre <emph>multi</emph> a través de <emph>Insertar - Nombres - Definir</emph>. El intervalo múltiple puede consistir en varias áreas rectangulares, cada una de las cuales posee una fila 4 y columna 1. Después, si se desea acceder al segundo bloque de este intervalo múltiple, se ingresa el número <item type=\"input\">2</item> como parámetro <emph>intervalo</emph>."
+
+#: 04060109.xhp#par_id3148595.59.help.text
+msgid " <item type=\"input\">=INDEX(A1:B6;1;1)</item> indicates the value in the upper-left of the A1:B6 range."
+msgstr " <item type=\"input\">=ÍNDICE(A1:B6;1;1)</item> indica el valor en la parte superior izquierda del área A1:B6."
+
+#: 04060109.xhp#par_id9960020.help.text
+msgid " <item type=\"input\">=INDEX((multi);0;0;2)</item> returns a reference to the second range of the multiple range."
+msgstr " <item type=\"input\">=ÍNDICE((multi);0;0;2)</item> devuelve una referencia a la segunda área del área múltiple."
+
+#: 04060109.xhp#bm_id3153181.help.text
+msgid "<bookmark_value>INDIRECT function</bookmark_value>"
+msgstr "<bookmark_value>Función INDIRECTO</bookmark_value>"
+
+#: 04060109.xhp#hd_id3153181.62.help.text
+msgid "INDIRECT"
+msgstr "INDIRECTO"
+
+#: 04060109.xhp#par_id3147169.63.help.text
+msgid "<ahelp hid=\"HID_FUNC_INDIREKT\">Returns the <emph>reference</emph> specified by a text string.</ahelp> This function can also be used to return the area of a corresponding string."
+msgstr "<ahelp hid=\"HID_FUNC_INDIREKT\">Devuelve la <emph>referencia</emph> especificada por una cadena de texto.</ahelp> Esta función también se puede utilizar para calcular el área de la cadena correspondiente."
+
+#: 04060109.xhp#hd_id3153717.64.help.text
+msgctxt "04060109.xhp#hd_id3153717.64.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060109.xhp#par_id3149824.65.help.text
+msgid "INDIRECT(Ref; A1)"
+msgstr "INDIRECTO(Ref, A1)"
+
+#: 04060109.xhp#par_id3154317.66.help.text
+msgid " <emph>Ref</emph> represents a reference to a cell or an area (in text form) for which to return the contents."
+msgstr " <emph>Ref</emph> representa una referencia a una celda o a un área (con formato de texto) para la que se devuelve el contenido."
+
+#: 04060109.xhp#par_id1027200802470312.help.text
+msgctxt "04060109.xhp#par_id1027200802470312.help.text"
+msgid " <emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used."
+msgstr " <emph>A1</emph> (opcional): si se define en 0, se utiliza la notación R1C1. Si falta este parámetro o se define en otro valor distinto a 0, se utiliza la notación A1."
+
+#: 04060109.xhp#par_idN10CAE.help.text
+msgid "If you open an Excel spreadsheet that uses indirect addresses calculated from string functions, the sheet addresses will not be translated automatically. For example, the Excel address in INDIRECT(\"filename!sheetname\"&B1) is not converted into the Calc address in INDIRECT(\"filename.sheetname\"&B1)."
+msgstr "Si abre una hoja de cálculo de Excel que utilice direcciones indirectas calculadas a partir de funciones de cadenas, las direcciones de hojas no se traducirán automáticamente. Por ejemplo, la dirección de Excel en INDIRECTO(\"nombrearchivo!nombrehoja\"&B1) no se convierte en una dirección de Calc en INDIRECTO(\"nombrearchivo.nombrehoja\"&B1)."
+
+#: 04060109.xhp#hd_id3150389.67.help.text
+msgctxt "04060109.xhp#hd_id3150389.67.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060109.xhp#par_id3150608.68.help.text
+msgid " <item type=\"input\">=INDIRECT(A1)</item> equals 100 if A1 contains C108 as a reference and cell C108 contains a value of <item type=\"input\">100</item>."
+msgstr " <item type=\"input\">=INDIRECTA(A1)</item> es igual a 100 si A1 contiene C108 como referencia y la celda C108 contiene un valor de <item type=\"input\">100</item>."
+
+#: 04060109.xhp#par_id3083286.181.help.text
+msgid " <item type=\"input\">=SUM(INDIRECT(\"a1:\" & ADDRESS(1;3)))</item> totals the cells in the area of A1 up to the cell with the address defined by row 1 and column 3. This means that area A1:C1 is totaled."
+msgstr " <item type=\"input\">=SUMA(INDIRECTA(\"a1:\" & DIRECCIÓN(1;3)))</item> suma las celdas en el área de A1 hasta la celda con la dirección definida por la fila 1 y columna 3. Esto significa que se suma el área A1:C1."
+
+#: 04060109.xhp#bm_id3154818.help.text
+msgid "<bookmark_value>COLUMN function</bookmark_value>"
+msgstr "<bookmark_value>COLUMNA</bookmark_value>"
+
+#: 04060109.xhp#hd_id3154818.70.help.text
+msgid "COLUMN"
+msgstr "COLUMNA"
+
+#: 04060109.xhp#par_id3149711.193.help.text
+msgid "<ahelp hid=\"HID_FUNC_SPALTE\">Returns the column number of a cell reference.</ahelp> If the reference is a cell the column number of the cell is returned; if the parameter is a cell area, the corresponding column numbers are returned in a single-row <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"array\">array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">as an array formula</link>. If the COLUMN function with an area reference parameter is not used for an array formula, only the column number of the first cell within the area is determined."
+msgstr "<ahelp hid=\"HID_FUNC_SPALTE\">Devuelve el número de columna de una referencia de celda.</ahelp> Si la referencia es una celda, se devuelve su número de columna; si el parámetro es un área, se devuelven los números de columna correspondientes en forma de <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"matriz\">matriz</link> de una sola fila cuando la fórmula se escribe como <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">fórmula de matriz</link>. Si en una fórmula de matriz no se utiliza la función COLUMNA con un parámetro de referencia de área, sólo se determina el número de columna de la primera celda del área."
+
+#: 04060109.xhp#hd_id3149283.72.help.text
+msgctxt "04060109.xhp#hd_id3149283.72.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060109.xhp#par_id3149447.73.help.text
+msgid "COLUMN(Reference)"
+msgstr "COLUMNA(Referencia)"
+
+#: 04060109.xhp#par_id3156310.74.help.text
+msgid " <emph>Reference</emph> is the reference to a cell or cell area whose first column number is to be found."
+msgstr " <emph>Referencia</emph> es la referencia a una celda o un área de celdas cuyo número de columnas se va a buscar."
+
+#: 04060109.xhp#par_id3155837.194.help.text
+msgid "If no reference is entered, the column number of the cell in which the formula is entered is found. <item type=\"productname\">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell."
+msgstr "Si se omite la referencia, se calcula el número de columna de la celda en la que se introduce la fórmula. $[officename] Calc establece automáticamente la referencia a la celda actual."
+
+#: 04060109.xhp#hd_id3152932.75.help.text
+msgctxt "04060109.xhp#hd_id3152932.75.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060109.xhp#par_id3147571.76.help.text
+msgid " <item type=\"input\">=COLUMN(A1)</item> equals 1. Column A is the first column in the table."
+msgstr " <item type=\"input\">=COLUMNA(A1)</item> es igual a 1. La columna A es la primera de la tabla."
+
+#: 04060109.xhp#par_id3147079.77.help.text
+msgid " <item type=\"input\">=COLUMN(C3:E3)</item> equals 3. Column C is the third column in the table."
+msgstr " <item type=\"input\">=COLUMNA(C3:E3)</item> es igual a 3. La columna C es la tercera de la tabla."
+
+#: 04060109.xhp#par_id3146861.195.help.text
+msgid " <item type=\"input\">=COLUMN(D3:G10)</item> returns 4 because column D is the fourth column in the table and the COLUMN function is not used as an array formula. (In this case, the first value of the array is always used as the result.)"
+msgstr " <item type=\"input\">=COLUMNA(D3:G10)</item> devuelve 4 porque la columna D es la cuarta columna de la tabla y la función COLUMNA no se utiliza como una fórmula de matriz. En este caso, el primer valor de la matriz se utiliza siempre como el resultado."
+
+#: 04060109.xhp#par_id3156320.196.help.text
+msgid " <item type=\"input\">{=COLUMN(B2:B7)}</item> and <item type=\"input\">=COLUMN(B2:B7)</item> both return 2 because the reference only contains column B as the second column in the table. Because single-column areas have only one column number, it does not make a difference whether or not the formula is used as an array formula."
+msgstr " <item type=\"input\">{=COLUMNA(B2:B7)}</item> y <item type=\"input\">=COLUMNA(B2:B7)</item> devuelven 2 porque la referencia sólo contiene la columna B como la primera columna de la tabla. Debido a que las áreas de una sola columna sólo tienen un número de columna, no hay ninguna diferencia si la fórmula se utiliza como fórmula de matriz o no."
+
+#: 04060109.xhp#par_id3150872.197.help.text
+msgid " <item type=\"input\">=COLUMN()</item> returns 3 if the formula was entered in column C."
+msgstr " <item type=\"input\">=COLUMNA()</item> devuelve 3 si la fórmula se especificó en la columna C."
+
+#: 04060109.xhp#par_id3153277.198.help.text
+msgid " <item type=\"input\">{=COLUMN(Rabbit)}</item> returns the single-row array (3, 4) if \"Rabbit\" is the named area (C1:D3)."
+msgstr " <item type=\"input\">{=COLUMNA(Conejo)}</item> devuelve la matriz de una fila (3, 4) si \"Conejo\" es el área con nombre (C1:D3)."
+
+#: 04060109.xhp#bm_id3154643.help.text
+msgid "<bookmark_value>COLUMNS function</bookmark_value>"
+msgstr "<bookmark_value>Función COLUMNAS</bookmark_value>"
+
+#: 04060109.xhp#hd_id3154643.79.help.text
+msgid "COLUMNS"
+msgstr "COLUMNAS"
+
+#: 04060109.xhp#par_id3151182.80.help.text
+msgid "<ahelp hid=\"HID_FUNC_SPALTEN\">Returns the number of columns in the given reference.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SPALTEN\">Devuelve el número de columnas en la referencia especificada.</ahelp>"
+
+#: 04060109.xhp#hd_id3149141.81.help.text
+msgctxt "04060109.xhp#hd_id3149141.81.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060109.xhp#par_id3154047.82.help.text
+msgid "COLUMNS(Array)"
+msgstr "COLUMNAS(Matriz)"
+
+#: 04060109.xhp#par_id3154745.83.help.text
+msgid " <emph>Array</emph> is the reference to a cell range whose total number of columns is to be found. The argument can also be a single cell."
+msgstr " <emph>Matriz</emph> es la referencia a un rango de celdas cuyo número total de columnas se va a buscar. El argumento también puede ser una única celda."
+
+#: 04060109.xhp#hd_id3153622.84.help.text
+msgctxt "04060109.xhp#hd_id3153622.84.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060109.xhp#par_id3149577.200.help.text
+msgid " <item type=\"input\">=COLUMNS(B5)</item> returns 1 because a cell only contains one column."
+msgstr " <item type=\"input\">=COLUMNAS(B5)</item> devuelve 1 porque una celda contiene solamente una columna."
+
+#: 04060109.xhp#par_id3145649.85.help.text
+msgid " <item type=\"input\">=COLUMNS(A1:C5)</item> equals 3. The reference comprises three columns."
+msgstr " <item type=\"input\">=COLUMNAS(A1:C5)</item> es igual a 3. La referencia incluye tres columnas."
+
+#: 04060109.xhp#par_id3155846.201.help.text
+msgid " <item type=\"input\">=COLUMNS(Rabbit)</item> returns 2 if <item type=\"literal\">Rabbit</item> is the named range (C1:D3)."
+msgstr " <item type=\"input\">=COLUMNAS(Conejo)</item> devuelve 2 si <item type=\"literal\">Conejo</item> es el área con nombre (C1:D3)."
+
+#: 04060109.xhp#bm_id3153152.help.text
+msgid "<bookmark_value>vertical search function</bookmark_value> <bookmark_value>VLOOKUP function</bookmark_value>"
+msgstr "<bookmark_value>función de búsqueda vertical</bookmark_value> <bookmark_value>BUSCARV</bookmark_value>"
+
+#: 04060109.xhp#hd_id3153152.87.help.text
+msgid "VLOOKUP"
+msgstr "BUSCARV"
+
+#: 04060109.xhp#par_id3149984.88.help.text
+msgid "<ahelp hid=\"HID_FUNC_SVERWEIS\">Vertical search with reference to adjacent cells to the right.</ahelp> This function checks if a specific value is contained in the first column of an array. The function then returns the value in the same row of the column named by <item type=\"literal\">Index</item>. If the <item type=\"literal\">SortOrder</item> parameter is omitted or set to TRUE or one, it is assumed that the data is sorted in ascending order. In this case, if the exact <item type=\"literal\">SearchCriterion</item> is not found, the last value that is smaller than the criterion will be returned. If <item type=\"literal\">SortOrder</item> is set to FALSE or zero, an exact match must be found, otherwise the error <emph>Error: Value Not Available</emph> will be the result. Thus with a value of zero the data does not need to be sorted in ascending order."
+msgstr "<ahelp hid=\"HID_FUNC_SVERWEIS\">Búsqueda vertical con referencia a las celdas adyacentes a la derecha</ahelp> Esta función comprueba si un valor específico esta contenido en la primera columna de una matriz. La función devuelve el valor en la misma fila de la columna llamada por el <item type=\"literal\">Índice</item>. Si el parámetro <item type=\"literal\">Ordenar</item> se omite o es establecido como VERDADERO o uno, se asume que los datos están ordenados de manera ascendente. En este caso, si el <item type=\"literal\">Criterio de búsqueda</item> no es encontrado, el último valor que es más pequeño que el criterio será devuelto. Si <item type=\"literal\">Ordenar</item> es establecido como FALSO o cero, una concordancia exacta debe ser encontrada, de otro modo el <emph>Error: Valor no disponible</emph> será el resultado. Así, con el valor cero de los datos no tiene que ser ordenados de manera ascendente."
+
+#: 04060109.xhp#hd_id3146898.89.help.text
+msgctxt "04060109.xhp#hd_id3146898.89.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060109.xhp#par_id3150156.90.help.text
+msgid "=VLOOKUP(SearchCriterion; Array; Index; SortOrder)"
+msgstr "=BUSCARV(CriteriodeBúsqueda; Matriz; Índice; Ordenar)"
+
+#: 04060109.xhp#par_id3149289.91.help.text
+msgid " <emph>SearchCriterion</emph> is the value searched for in the first column of the array."
+msgstr " <emph>CriteriodeBúsqueda</emph> es el valor buscado en la primera columna de la matriz."
+
+#: 04060109.xhp#par_id3153884.92.help.text
+msgid " <emph>Array</emph> is the reference, which is to comprise at least two columns."
+msgstr " <emph>Matriz</emph> es la referencia, que debe comprender al menos dos columnas."
+
+#: 04060109.xhp#par_id3156005.93.help.text
+msgid " <emph>Index</emph> is the number of the column in the array that contains the value to be returned. The first column has the number 1."
+msgstr " <emph>Índice</emph> es el número de la columna en la matriz que contiene el valor que se va a devolver. La primera columna tiene el número 1."
+
+#: 04060109.xhp#par_id3151208.94.help.text
+msgid " <emph>SortOrder</emph> is an optional parameter that indicates whether the first column in the array is sorted in ascending order. Enter the Boolean value FALSE or zero if the first column is not sorted in ascending order. Sorted columns can be searched much faster and the function always returns a value, even if the search value was not matched exactly, if it is between the lowest and highest value of the sorted list. In unsorted lists, the search value must be matched exactly. Otherwise the function will return this message: <emph>Error: Value Not Available</emph>."
+msgstr " <emph>Ordenar</emph> es un parámetro opcional que indica si la primera columna de la matriz se ordena en orden ascendente. Especifique el valor booleano FALSO o cero si la primera columna no está ordenada en orden ascendente. Las columnas ordenadas se pueden buscar más deprisa y la función siempre devuelve un valor, incluso si el valor de búsqueda no coincide exactamente, si se encuentra entre el valor más alto y más bajo de la lista ordenada. En las listas sin ordenar, el valor de búsqueda debe coincidir exactamente. De lo contrario, la función devuelve este mensaje: <emph>Error: Valor no disponible</emph>."
+
+#: 04060109.xhp#hd_id3147487.95.help.text
+msgctxt "04060109.xhp#hd_id3147487.95.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060109.xhp#par_id3154129.96.help.text
+msgid "You want to enter the number of a dish on the menu in cell A1, and the name of the dish is to appear as text in the neighboring cell (B1) immediately. The Number to Name assignment is contained in the D1:E100 array. D1 contains <item type=\"input\">100</item>, E1 contains the name <item type=\"input\">Vegetable Soup</item>, and so forth, for 100 menu items. The numbers in column D are sorted in ascending order; thus, the optional <item type=\"literal\">SortOrder</item> parameter is not necessary."
+msgstr "Desea introducir el número de un plato en el menú en la celda A1, y el nombre del plato para aparezca como texto en las celdas vecinas (B1). El Número para el Nombre asignado esta contenido en la matriz D1:E100. D1 contiene <item type=\"input\">100</item>, E1 contiene el nombre <item type=\"input\">Sopa de vegetales</item>, y así sucesivamente, para 100 elementos del menú. Los números en la columna D son ordenados de manera ascendente; por lo tando, el parámetro opcional <item type=\"literal\">Ordenar</item> no es necesario."
+
+#: 04060109.xhp#par_id3145663.97.help.text
+msgid "Enter the following formula in B1:"
+msgstr "Introduzca la fórmula siguiente en B1:"
+
+#: 04060109.xhp#par_id3151172.98.help.text
+msgid " <item type=\"input\">=VLOOKUP(A1;D1:E100;2)</item> "
+msgstr " <item type=\"input\">=BUSCARV(A1;D1:E100;2)</item> "
+
+#: 04060109.xhp#par_id3149200.99.help.text
+msgid "As soon as you enter a number in A1 B1 will show the corresponding text contained in the second column of reference D1:E100. Entering a nonexistent number displays the text with the next number down. To prevent this, enter FALSE as the last parameter in the formula so that an error message is generated when a nonexistent number is entered."
+msgstr "Al introducir un número en A1, en B1 aparece rápidamente el texto contenido en la segunda columna de la referencia D1:E100. Si se introduce un número inexistente, el texto que aparece es el correspondiente al número inferior más cercano. A fin de que esto no ocurra, hay que introducir un último parámetro FALSO en la fórmula de forma que en caso de introducir un número inexistente la función produzca como resultado un mensaje de error."
+
+#: 04060109.xhp#bm_id3153905.help.text
+msgid "<bookmark_value>sheet numbers; looking up</bookmark_value> <bookmark_value>SHEET function</bookmark_value>"
+msgstr "<bookmark_value>números de hojas;buscar</bookmark_value> <bookmark_value>HOJAS</bookmark_value>"
+
+#: 04060109.xhp#hd_id3153905.215.help.text
+msgctxt "04060109.xhp#hd_id3153905.215.help.text"
+msgid "SHEET"
+msgstr "HOJA"
+
+#: 04060109.xhp#par_id3150309.216.help.text
+msgid "<ahelp hid=\"HID_FUNC_TABELLE\">Returns the sheet number of a reference or a string representing a sheet name.</ahelp> If you do not enter any parameters, the result is the sheet number of the spreadsheet containing the formula."
+msgstr "<ahelp hid=\"HID_FUNC_TABELLE\">Devuelve el número de hoja de una referencia o una cadena que representa un nombre de hoja.</ahelp> Si no especifica ningún parámetro, el resultado es el número de la hoja de cálculo que contiene la fórmula."
+
+#: 04060109.xhp#hd_id3148564.217.help.text
+msgctxt "04060109.xhp#hd_id3148564.217.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060109.xhp#par_id3153095.218.help.text
+msgid "SHEET(Reference)"
+msgstr "HOJA(referencia)"
+
+#: 04060109.xhp#par_id3154588.219.help.text
+msgid " <emph>Reference</emph> is optional and is the reference to a cell, an area, or a sheet name string."
+msgstr " <emph>Referencia</emph> es opcional; es la referencia a una celda, un área o una cadena de nombre de hoja."
+
+#: 04060109.xhp#hd_id3155399.220.help.text
+msgctxt "04060109.xhp#hd_id3155399.220.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060109.xhp#par_id3146988.221.help.text
+msgid " <item type=\"input\">=SHEET(Sheet2.A1)</item> returns 2 if Sheet2 is the second sheet in the spreadsheet document."
+msgstr " <item type=\"input\">=HOJAS(Hoja2.A1)</item> devuelve 2 si la Hoja2 es la segunda hoja del documento de hoja de cálculo."
+
+#: 04060109.xhp#bm_id3148829.help.text
+msgid "<bookmark_value>number of sheets; function</bookmark_value> <bookmark_value>SHEETS function</bookmark_value>"
+msgstr "<bookmark_value>número de hojas; función</bookmark_value> <bookmark_value>HOJAS</bookmark_value>"
+
+#: 04060109.xhp#hd_id3148829.222.help.text
+msgid "SHEETS"
+msgstr "HOJAS"
+
+#: 04060109.xhp#par_id3148820.223.help.text
+msgid "<ahelp hid=\"HID_FUNC_TABELLEN\">Determines the number of sheets in a reference.</ahelp> If you do not enter any parameters, it returns the number of sheets in the current document."
+msgstr "<ahelp hid=\"HID_FUNC_TABELLEN\">Determina el número de hojas de una referencia.</ahelp> Si no especifica ningún parámetro, devuelve el número de hojas del documento actual."
+
+#: 04060109.xhp#hd_id3154220.224.help.text
+msgctxt "04060109.xhp#hd_id3154220.224.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060109.xhp#par_id3150777.225.help.text
+msgid "SHEETS(Reference)"
+msgstr "HOJAS(referencia)"
+
+#: 04060109.xhp#par_id3153060.226.help.text
+msgid " <emph>Reference</emph> is the reference to a sheet or an area. This parameter is optional."
+msgstr " <emph>Referencia</emph> es la referencia a una hoja o área. Este parámetro es opcional."
+
+#: 04060109.xhp#hd_id3149766.227.help.text
+msgctxt "04060109.xhp#hd_id3149766.227.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060109.xhp#par_id3150507.228.help.text
+msgid " <item type=\"input\">=SHEETS(Sheet1.A1:Sheet3.G12)</item> returns 3 if Sheet1, Sheet2, and Sheet3 exist in the sequence indicated."
+msgstr " <item type=\"input\">=HOJAS(Hoja1.A1:Hoja3.G12)</item> devuelve 3 si Hoja1, Hoja2 y Hoja3 existen en la secuencia indicada."
+
+#: 04060109.xhp#bm_id3158407.help.text
+msgid "<bookmark_value>MATCH function</bookmark_value>"
+msgstr "<bookmark_value>COINCIDIR</bookmark_value>"
+
+#: 04060109.xhp#hd_id3158407.101.help.text
+msgid "MATCH"
+msgstr "COINCIDIR"
+
+#: 04060109.xhp#par_id3154896.102.help.text
+msgid "<ahelp hid=\"HID_FUNC_VERGLEICH\">Returns the relative position of an item in an array that matches a specified value.</ahelp> The function returns the position of the value found in the lookup_array as a number."
+msgstr "<ahelp hid=\"HID_FUNC_VERGLEICH\">Devuelve la posición relativa de un elemento de una matriz que coincide con el valor especificado.</ahelp> La función devuelve, en forma de número, la posición del valor encontrado en buscar_matriz."
+
+#: 04060109.xhp#hd_id3153834.103.help.text
+msgctxt "04060109.xhp#hd_id3153834.103.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060109.xhp#par_id3159152.104.help.text
+msgid "MATCH(SearchCriterion; LookupArray; Type)"
+msgstr "COINCIDIR(CriteriodeBúsqueda; BuscarMatriz; tipo_de_coincidencia)"
+
+#: 04060109.xhp#par_id3149336.105.help.text
+msgid " <emph>SearchCriterion</emph> is the value which is to be searched for in the single-row or single-column array."
+msgstr " <emph>CriteriodeBúsqueda</emph> es el valor que se va a buscar en la matriz de una fila o una columna."
+
+#: 04060109.xhp#par_id3159167.106.help.text
+msgid " <emph>LookupArray</emph> is the reference searched. A lookup array can be a single row or column, or part of a single row or column."
+msgstr " <emph>BuscarMatriz</emph> es la referencia buscada. Una matriz de búsqueda puede ser una sola fila o columna, o parte de una sola fila o columna."
+
+#: 04060109.xhp#par_id3147239.107.help.text
+msgid " <emph>Type</emph> may take the values 1, 0, or -1. If Type = 1 or if this optional parameter is missing, it is assumed that the first column of the search array is sorted in ascending order. If Type = -1 it is assumed that the column in sorted in descending order. This corresponds to the same function in Microsoft Excel."
+msgstr " <emph>Tipo</emph> puede tomar los valores 1, 0 o -1. Si Tipo = 1 o si falta este parámetro opcional, se asume que la primera columna de la matriz de búsqueda se ordena en orden ascendente. Si Tipo = -1, se asume que la columna se ordena en orden descendente. Esto se corresponde con la misma función en Microsoft Excel."
+
+#: 04060109.xhp#par_id3154265.231.help.text
+msgid "If Type = 0, only exact matches are found. If the search criterion is found more than once, the function returns the index of the first matching value. Only if Type = 0 can you search for regular expressions."
+msgstr "Si el Tipo = 0, solo encuentra coincidencias exactas. Si el criterio de búsqueda es encontrado. Si el criterio de búsqueda se encuentra más de una vez, la función devuelve el índice de la primera coincidencia. Solamente si el Tipo = 0 puede buscar expresiones regulares."
+
+#: 04060109.xhp#par_id3147528.232.help.text
+msgid "If Type = 1 or the third parameter is missing, the index of the last value that is smaller or equal to the search criterion is returned. This applies even when the search array is not sorted. For Type = -1, the first value that is larger or equal is returned."
+msgstr "Si el Tipo = 1 o el tercer parámetro es desconocido, el índice del último valor que es menor o igual al criterio de búsqueda se devuelve. Esto se aplica incluso cuando la matriz de búsqueda no está ordenada. Por Tipo = -1, el primer valor que es mayor o igual se devuelve."
+
+#: 04060109.xhp#hd_id3155119.108.help.text
+msgctxt "04060109.xhp#hd_id3155119.108.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060109.xhp#par_id3155343.109.help.text
+msgid " <item type=\"input\">=MATCH(200;D1:D100)</item> searches the area D1:D100, which is sorted by column D, for the value 200. As soon as this value is reached, the number of the row in which it was found is returned. If a higher value is found during the search in the column, the number of the previous row is returned."
+msgstr " <item type=\"input\">=COINCIDIR(200;D1:D100)</item> busca el área D1:D100, que se ordena por la columna D, para el valor 200. Tan pronto como se alcanza este valor, el devuelve el número de la fila en que se encontró. Si se encuentra un valor mayor durante la búsqueda en la columna, se devuelve el número de la fila anterior."
+
+#: 04060109.xhp#bm_id3158430.help.text
+msgid "<bookmark_value>OFFSET function</bookmark_value>"
+msgstr "<bookmark_value>DESREF</bookmark_value>"
+
+#: 04060109.xhp#hd_id3158430.111.help.text
+msgid "OFFSET"
+msgstr "DESREF"
+
+#: 04060109.xhp#par_id3149167.112.help.text
+msgid "<ahelp hid=\"HID_FUNC_VERSCHIEBUNG\">Returns the value of a cell offset by a certain number of rows and columns from a given reference point.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VERSCHIEBUNG\">Devuelve el valor de una celda desplazada una determinada cantidad de filas y columnas de un punto de referencia concreto.</ahelp>"
+
+#: 04060109.xhp#hd_id3146952.113.help.text
+msgctxt "04060109.xhp#hd_id3146952.113.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060109.xhp#par_id3159194.114.help.text
+msgid "OFFSET(Reference; Rows; Columns; Height; Width)"
+msgstr "DESREF(Referencia; Filas; Columnas; Alto; Ancho)"
+
+#: 04060109.xhp#par_id3152360.115.help.text
+msgid " <emph>Reference</emph> is the reference from which the function searches for the new reference."
+msgstr " <emph>Referencia</emph> es la referencia desde la que la función busca una nueva referencia."
+
+#: 04060109.xhp#par_id3156032.116.help.text
+msgid " <emph>Rows</emph> is the number of rows by which the reference was corrected up (negative value) or down."
+msgstr " <emph>Filas</emph> es el número de filas en que se corrigió la referencia hacia arriba (valor negativo) o hacia abajo."
+
+#: 04060109.xhp#par_id3166458.117.help.text
+msgid " <emph>Columns</emph> (optional) is the number of columns by which the reference was corrected to the left (negative value) or to the right."
+msgstr " <emph>Columnas</emph> (opcional) es el número de columnas en que se corrigió la referencia hacia la izquierda (valor negativo) o la derecha."
+
+#: 04060109.xhp#par_id3150708.118.help.text
+msgid " <emph>Height</emph> (optional) is the vertical height for an area that starts at the new reference position."
+msgstr " <emph>Alto</emph> (opcional) es el alto vertical de un área que comienza en la nueva posición de referencia."
+
+#: 04060109.xhp#par_id3147278.119.help.text
+msgid " <emph>Width</emph> (optional) is the horizontal width for an area that starts at the new reference position."
+msgstr " <emph>Ancho</emph> (opcional) es el ancho horizontal de un área que comienza en la nueva posición de referencia."
+
+#: 04060109.xhp#par_id8662373.help.text
+msgid "Arguments <emph>Rows</emph> and <emph>Columns</emph> must not lead to zero or negative start row or column."
+msgstr "Los argumentos <emph>Filas</emph> y <emph>Columnas</emph> no deben resultar en una fila o columna inicial que dé cero o un valor negativo."
+
+#: 04060109.xhp#par_id9051484.help.text
+msgid "Arguments <emph>Height</emph> and <emph>Width</emph> must not lead to zero or negative count of rows or columns."
+msgstr "Argumentos <emph>Filas</emph> y <emph>Columnas</emph> no debe llevar a cero o un comienzo negativo de fila o columna."
+
+#: 04060109.xhp#par_idN1104B.help.text
+msgctxt "04060109.xhp#par_idN1104B.help.text"
+msgid " <embedvar href=\"text/scalc/00/00000004.xhp#optional\"/> "
+msgstr " <embedvar href=\"text/scalc/00/00000004.xhp#optional\"/> "
+
+#: 04060109.xhp#hd_id3155586.120.help.text
+msgctxt "04060109.xhp#hd_id3155586.120.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060109.xhp#par_id3149744.121.help.text
+msgid " <item type=\"input\">=OFFSET(A1;2;2)</item> returns the value in cell C3 (A1 moved by two rows and two columns down). If C3 contains the value <item type=\"input\">100</item> this function returns the value 100."
+msgstr " <item type=\"input\">=DESREF(A1;2;2)</item> devuelve el valor en la celda C3 (A1 movida por dos filas y dos columnas hacia abajo). Si C3 contiene el valor <item type=\"input\">100</item>, esta función devuelve el valor 100."
+
+#: 04060109.xhp#par_id7439802.help.text
+msgid " <item type=\"input\">=OFFSET(B2:C3;1;1)</item> returns a reference to B2:C3 moved down by 1 row and one column to the right (C3:D4)."
+msgstr " <item type=\"input\">=DESREF(B2:C3;1;1)</item> devuelve una referencia a B2:C3 movida abajo 1 fila y una columna a la derecha (C3:D4)."
+
+#: 04060109.xhp#par_id3009430.help.text
+msgid " <item type=\"input\">=OFFSET(B2:C3;-1;-1)</item> returns a reference to B2:C3 moved up by 1 row and one column to the left (A1:B2)."
+msgstr " <item type=\"input\">=DESREF(B2:C3;-1;-1)</item> devuelve una referencia a B2:C3 movida arriba 1 fila y una columna a la izquierda (A1:B2)."
+
+#: 04060109.xhp#par_id2629169.help.text
+msgid " <item type=\"input\">=OFFSET(B2:C3;0;0;3;4)</item> returns a reference to B2:C3 resized to 3 rows and 4 columns (B2:E4)."
+msgstr " <item type=\"input\">=DESREF(B2:C3;0;0;3;4)</item> devuelve una referencia a B2:C3 con cambio de tamaño a 3 filas y 4 columnas (B2:E4)."
+
+#: 04060109.xhp#par_id6668599.help.text
+msgid " <item type=\"input\">=OFFSET(B2:C3;1;0;3;4)</item> returns a reference to B2:C3 moved down by one row resized to 3 rows and 4 columns (B2:E4)."
+msgstr " <item type=\"input\">=DESREF(B2:C3;1;0;3;4)</item> devuelve una referencia a B2:C3 movida abajo una fila y con cambio de tamaño a 3 filas y 4 columnas (B2:E4)."
+
+#: 04060109.xhp#par_id3153739.122.help.text
+msgid " <item type=\"input\">=SUM(OFFSET(A1;2;2;5;6))</item> determines the total of the area that starts in cell C3 and has a height of 5 rows and a width of 6 columns (area=C3:H7)."
+msgstr " <item type=\"input\">=SUMA(DESREF(A1;2;2;5;6))</item> determina el total del área que comienza en la celda C3 y tiene una altura de 5 filas y un ancho de 6 columnas (área=C3:H7)."
+
+#: 04060109.xhp#bm_id3159273.help.text
+msgid "<bookmark_value>LOOKUP function</bookmark_value>"
+msgstr "<bookmark_value>BUSCAR</bookmark_value>"
+
+#: 04060109.xhp#hd_id3159273.123.help.text
+msgid "LOOKUP"
+msgstr "BUSCAR"
+
+#: 04060109.xhp#par_id3153389.124.help.text
+msgid "<ahelp hid=\"HID_FUNC_VERWEIS\">Returns the contents of a cell either from a one-row or one-column range.</ahelp> Optionally, the assigned value (of the same index) is returned in a different column and row. As opposed to <link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> and <link href=\"text/scalc/01/04060109.xhp\" name=\"HLOOKUP\">HLOOKUP</link>, search and result vector may be at different positions; they do not have to be adjacent. Additionally, the search vector for the LOOKUP must be sorted ascending, otherwise the search will not return any usable results."
+msgstr "<ahelp hid=\"HID_FUNC_VERWEIS\">Devuelve el contenido de una celda o bien desde un rango de una solo fila o una sola columna.</ahelp> Opcionalmente, el valor asignado (del mismo índice) devuelto en una columna y fila diferente. Como A diferencia de<link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">BUSCARV</link> y <link href=\"text/scalc/01/04060109.xhp\" name=\"HLOOKUP\">BUSCARH</link>, la búsqueda y el resultado del vector pueden estar en diferentes posiciones; no tienen que ser adyacentes. Además, el vector de la búsqueda BUSCAR deben ser ordenados de manera ascendente, de lo contrario, la búsqueda no mostrará resultados utilizables."
+
+#: 04060109.xhp#par_id4484084.help.text
+msgid "If LOOKUP cannot find the search criterion, it matches the largest value in the search vector that is less than or equal to the search criterion."
+msgstr "Si LOOKUP no puede encontrar el criterio de búsqueda, utiliza el valor más grande del vector de búsqueda que sea menor o igual que criterio de búsqueda."
+
+#: 04060109.xhp#hd_id3152947.125.help.text
+msgctxt "04060109.xhp#hd_id3152947.125.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060109.xhp#par_id3154104.126.help.text
+msgid "LOOKUP(SearchCriterion; SearchVector; ResultVector)"
+msgstr "BUSCAR(CriteriodeBúsqueda; VectordeBúsqueda; VectordeResultado)"
+
+#: 04060109.xhp#par_id3150646.127.help.text
+msgid " <emph>SearchCriterion</emph> is the value to be searched for; entered either directly or as a reference."
+msgstr " <emph>CriteriodeBúsqueda</emph> es el valor que se buscará; se especifica directamente o como referencia."
+
+#: 04060109.xhp#par_id3154854.128.help.text
+msgid " <emph>SearchVector</emph> is the single-row or single-column area to be searched."
+msgstr " <emph>VectordeBúsqueda</emph> es el área de una columna o una fila que se va a buscar."
+
+#: 04060109.xhp#par_id3149925.129.help.text
+msgid " <emph>ResultVector</emph> is another single-row or single-column range from which the result of the function is taken. The result is the cell of the result vector with the same index as the instance found in the search vector."
+msgstr " <emph>VectordeResultado</emph> es otra área de una columna o una fila desde la que se toma el resultado de la función. El resultado es la celda del vector de resultado con el mismo índice que la instancia que se encontró con el vector de búsqueda."
+
+#: 04060109.xhp#hd_id3148624.130.help.text
+msgctxt "04060109.xhp#hd_id3148624.130.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060109.xhp#par_id3149809.131.help.text
+msgid " <item type=\"input\">=LOOKUP(A1;D1:D100;F1:F100)</item> searches the corresponding cell in range D1:D100 for the number you entered in A1. For the instance found, the index is determined, for example, the 12th cell in this range. Then, the contents of the 12th cell are returned as the value of the function (in the result vector)."
+msgstr " <item type=\"input\">=BUSCAR(A1;D1:D100;F1:F100)</item> busca la celda correspondiente en el área D1:D100 del número especificado en A1. Para la instancia encontrada, se determina el índice, por ejemplo, la celda 12 de esta área. A continuación, el contenido de la celda 12 se devuelve como el valor de la función (en el vector de resultado)."
+
+#: 04060109.xhp#bm_id3149425.help.text
+msgid "<bookmark_value>STYLE function</bookmark_value>"
+msgstr "<bookmark_value>ESTILO</bookmark_value>"
+
+#: 04060109.xhp#hd_id3149425.133.help.text
+msgid "STYLE"
+msgstr "ESTILO"
+
+#: 04060109.xhp#par_id3150826.134.help.text
+msgid "<ahelp hid=\"HID_FUNC_VORLAGE\">Applies a style to the cell containing the formula.</ahelp> After a set amount of time, another style can be applied. This function always returns the value 0, allowing you to add it to another function without changing the value. Together with the CURRENT function you can apply a color to a cell regardless of the value. For example: =...+STYLE(IF(CURRENT()>3;\"red\";\"green\")) applies the style \"red\" to the cell if the value is greater than 3, otherwise the style \"green\" is applied. Both cell formats have to be defined beforehand."
+msgstr "<ahelp hid=\"HID_FUNC_VORLAGE\">Aplica un estilo a la celda que contiene la fórmula.</ahelp> Después de un determinado tiempo, se puede aplicar otro estilo. Esta función siempre devuelve el valor 0, que permite agregarlo a otra función sin cambiar el valor. Junto con la función ACTUAL, puede aplicar un color a una celda sea cual sea su valor. Por ejemplo: =... + ESTILO(SI(ACTUAL()>3;\"rojo\";\"verde\")) aplica el estilo \"rojo\" a la celda si el valor es mayor que 3; si es menor, se aplica el estilo \"verde\". Los dos formatos de celda deben haberse definido previamente."
+
+#: 04060109.xhp#hd_id3145373.135.help.text
+msgctxt "04060109.xhp#hd_id3145373.135.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060109.xhp#par_id3149302.136.help.text
+msgid "STYLE(\"Style\"; Time; \"Style2\")"
+msgstr "ESTILO(\"Estilo\"; Tiempo \"Estilo2\")"
+
+#: 04060109.xhp#par_id3150596.137.help.text
+msgid " <emph>Style</emph> is the name of a cell style assigned to the cell. Style names must be entered in quotation marks."
+msgstr " <emph>Estilo</emph> es el nombre del estilo de celda asignado a la celda. Los nombres de estilo deben escribirse entre comillas."
+
+#: 04060109.xhp#par_id3156149.138.help.text
+msgid " <emph>Time</emph> is an optional time range in seconds. If this parameter is missing the style will not be changed after a certain amount of time has passed."
+msgstr " <emph>Tiempo</emph> es un intervalo de tiempo opcional en segundos. Si falta este parámetro, el estilo no se cambiará trascurrida una cantidad determinada de tiempo."
+
+#: 04060109.xhp#par_id3149520.139.help.text
+msgid " <emph>Style2</emph> is the optional name of a cell style assigned to the cell after a certain amount of time has passed. If this parameter is missing \"Default\" is assumed."
+msgstr " <emph>Estilo2</emph> es el nombre opcional de un estilo de celda asignado a la celda tras un determinado intervalo de tiempo. Si falta este parámetro, se asume \"Predeterminado\"."
+
+#: 04060109.xhp#par_idN111CA.help.text
+msgctxt "04060109.xhp#par_idN111CA.help.text"
+msgid " <embedvar href=\"text/scalc/00/00000004.xhp#optional\"/> "
+msgstr " <embedvar href=\"text/scalc/00/00000004.xhp#optional\"/> "
+
+#: 04060109.xhp#hd_id3159254.140.help.text
+msgctxt "04060109.xhp#hd_id3159254.140.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060109.xhp#par_id3151374.141.help.text
+msgid " <item type=\"input\">=STYLE(\"Invisible\";60;\"Default\")</item> formats the cell in transparent format for 60 seconds after the document was recalculated or loaded, then the Default format is assigned. Both cell formats have to be defined beforehand."
+msgstr " <item type=\"input\">=ESTILO(\"Invisible\";60;\"Predeterminado\")</item> asigna el formato transparente a la celda durante 60 segundos después de volver a calcular o cargar el documento, a continuación, se asigna el formato Predeterminado. Los dos formatos de celda deben haberse definido previamente."
+
+#: 04060109.xhp#par_id8056886.help.text
+msgid "Since STYLE() has a numeric return value of zero, this return value gets appended to a string. This can be avoided using T() as in the following example "
+msgstr "Desde ESTILO () tiene un valor numérico devuelto de cero, este valor devuelto se adjunta a una cadena. Esto se puede evitar usando T() como en el ejemplo siguiente"
+
+#: 04060109.xhp#par_id3668935.help.text
+msgid " <item type=\"input\">=\"Text\"&T(STYLE(\"myStyle\"))</item> "
+msgstr " <item type=\"input\">=\"Texto\"&T(ESTILO(\"miEstilo\"))</item> "
+
+#: 04060109.xhp#par_id3042085.help.text
+msgid "See also CURRENT() for another example."
+msgstr "Vea también ACTUAL() para otro ejemplo."
+
+#: 04060109.xhp#bm_id3150430.help.text
+msgid "<bookmark_value>CHOOSE function</bookmark_value>"
+msgstr "<bookmark_value>Función ELEGIR</bookmark_value>"
+
+#: 04060109.xhp#hd_id3150430.142.help.text
+msgid "CHOOSE"
+msgstr "ELEGIR"
+
+#: 04060109.xhp#par_id3143270.143.help.text
+msgid "<ahelp hid=\"HID_FUNC_WAHL\">Uses an index to return a value from a list of up to 30 values.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_WAHL\">Utiliza un índice para producir un valor a partir de una lista formada por hasta 30 valores.</ahelp>"
+
+#: 04060109.xhp#hd_id3153533.144.help.text
+msgctxt "04060109.xhp#hd_id3153533.144.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060109.xhp#par_id3155425.145.help.text
+msgid "CHOOSE(Index; Value1; ...; Value30)"
+msgstr "ELEGIR(Índice; Valor1; ...; Valor30)"
+
+#: 04060109.xhp#par_id3144755.146.help.text
+msgid " <emph>Index</emph> is a reference or number between 1 and 30 indicating which value is to be taken from the list."
+msgstr " <emph>Índice</emph> es una referencia o número entre 1 y 30 que indica el valor que se va a tomar de la lista."
+
+#: 04060109.xhp#par_id3149939.147.help.text
+msgid " <emph>Value1...Value30</emph> is the list of values entered as a reference to a cell or as individual values."
+msgstr " <emph>Valor1...Valor30</emph> es la lista de valores especificados como una referencia a una celda o como valores individuales."
+
+#: 04060109.xhp#hd_id3151253.148.help.text
+msgctxt "04060109.xhp#hd_id3151253.148.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060109.xhp#par_id3150625.149.help.text
+msgid " <item type=\"input\">=CHOOSE(A1;B1;B2;B3;\"Today\";\"Yesterday\";\"Tomorrow\")</item>, for example, returns the contents of cell B2 for A1 = 2; for A1 = 4, the function returns the text \"Today\"."
+msgstr " <item type=\"input\">=ELEGIR(A1;B1;B2;B3;\"Hoy\";\"Ayer\";\"Mañana\")</item>, por ejemplo, devuelve el contenido de la celda B2 para A1 = 2; para A1 = 4, la función devuelve el texto \"Hoy\"."
+
+#: 04060109.xhp#bm_id3151001.help.text
+msgid "<bookmark_value>HLOOKUP function</bookmark_value>"
+msgstr "<bookmark_value>Función BUSCARH</bookmark_value>"
+
+#: 04060109.xhp#hd_id3151001.151.help.text
+msgid "HLOOKUP"
+msgstr "BUSCARH"
+
+#: 04060109.xhp#par_id3148688.152.help.text
+msgid "<ahelp hid=\"HID_FUNC_WVERWEIS\">Searches for a value and reference to the cells below the selected area.</ahelp> This function verifies if the first row of an array contains a certain value. The function returns then the value in a row of the array, named in the <emph>Index</emph>, in the same column."
+msgstr "<ahelp hid=\"HID_FUNC_WVERWEIS\">Busca un valor y una referencia a las celdas situadas por debajo del área seleccionada.</ahelp> Esta función comprueba si la primera fila de una matriz contiene un cierto valor. La función devuelve el valor situado en una fila de la matriz, indicada en <emph>Índice</emph>, en la misma columna."
+
+#: 04060109.xhp#hd_id3154661.153.help.text
+msgctxt "04060109.xhp#hd_id3154661.153.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060109.xhp#par_id3146070.154.help.text
+msgid "HLOOKUP(SearchCriteria; Array; Index; Sorted)"
+msgstr "BUSCARH(CriteriodeBúsqueda; Matriz; Índice; Ordenar)"
+
+#: 04060109.xhp#par_id3148672.155.help.text
+msgid "See also:<link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> (columns and rows are exchanged)"
+msgstr "Consulte también:<link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">BUSCARV</link> (se intercambian filas y columnas)"
+
+#: 04060109.xhp#bm_id3147321.help.text
+msgid "<bookmark_value>ROW function</bookmark_value>"
+msgstr "<bookmark_value>FILA</bookmark_value>"
+
+#: 04060109.xhp#hd_id3147321.157.help.text
+msgctxt "04060109.xhp#hd_id3147321.157.help.text"
+msgid "ROW"
+msgstr "FILA"
+
+#: 04060109.xhp#par_id3154564.203.help.text
+msgid "<ahelp hid=\"HID_FUNC_ZEILE\">Returns the row number of a cell reference.</ahelp> If the reference is a cell, it returns the row number of the cell. If the reference is a cell range, it returns the corresponding row numbers in a one-column <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"Array\">Array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">as an array formula</link>. If the ROW function with a range reference is not used in an array formula, only the row number of the first range cell will be returned."
+msgstr "<ahelp hid=\"HID_FUNC_ZEILE\">Devuelve el número de fila de una referencia de celda.</ahelp> Si la referencia es una celda, devuelve el número de fila de la celda. Si la referencia es un área de celdas, devuelve los números de fila correspondientes en una <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"Array\">matriz</link> de una columna, si la fórmula se escribe como <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">fórmula de matriz</link>. Si la función FILA con referencia de área no se utiliza en una fórmula de matriz, sólo se devuelve el número de fila de la primera celda del área."
+
+#: 04060109.xhp#hd_id3158439.159.help.text
+msgctxt "04060109.xhp#hd_id3158439.159.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060109.xhp#par_id3154916.160.help.text
+msgid "ROW(Reference)"
+msgstr "FILA(Referencia)"
+
+#: 04060109.xhp#par_id3156336.161.help.text
+msgid " <emph>Reference</emph> is a cell, an area, or the name of an area."
+msgstr " <emph>Referencia</emph> es una celda, un área o el nombre de un área."
+
+#: 04060109.xhp#par_id3151109.204.help.text
+msgid "If you do not indicate a reference, the row number of the cell in which the formula is entered will be found. <item type=\"productname\">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell."
+msgstr "Si se omite la referencia, la función calcula el número de fila de la celda en la que se introduce la fórmula. $[officename] Calc establece automáticamente la referencia a la celda actual."
+
+#: 04060109.xhp#hd_id3155609.162.help.text
+msgctxt "04060109.xhp#hd_id3155609.162.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060109.xhp#par_id3154830.205.help.text
+msgid " <item type=\"input\">=ROW(B3)</item> returns 3 because the reference refers to the third row in the table."
+msgstr " <item type=\"input\">=FILA(B3)</item> devuelve 3 porque la referencia hace mención a la tercera fila de la tabla."
+
+#: 04060109.xhp#par_id3147094.206.help.text
+msgid " <item type=\"input\">{=ROW(D5:D8)}</item> returns the single-column array (5, 6, 7, 8) because the reference specified contains rows 5 through 8."
+msgstr " <item type=\"input\">{=FILA(D5:D8)}</item> devuelve la matriz de una columna (5, 6, 7, 8) porque la referencia especificada contiene las filas 5 a 8."
+
+#: 04060109.xhp#par_id3153701.207.help.text
+msgid " <item type=\"input\">=ROW(D5:D8)</item> returns 5 because the ROW function is not used as array formula and only the number of the first row of the reference is returned."
+msgstr " <item type=\"input\">=FILA(D5:D8)</item> devuelve 5 porque la función FILA no se utiliza como fórmula de matriz y sólo se devuelve el número de la primera fila de la referencia."
+
+#: 04060109.xhp#par_id3150996.208.help.text
+msgid " <item type=\"input\">{=ROW(A1:E1)}</item> and <item type=\"input\">=ROW(A1:E1)</item> both return 1 because the reference only contains row 1 as the first row in the table. (Because single-row areas only have one row number it does not make any difference whether or not the formula is used as an array formula.)"
+msgstr " <item type=\"input\">{=FILA(A1:E1)}</item> y <item type=\"input\">=FILA(A1:E1)</item> devuelven 1 porque la referencia sólo contiene la fila 1 como la primera fila de la tabla. Debido a que las áreas de una sola fila sólo tienen un número de fila, no hay ninguna diferencia en si la fórmula se utiliza como fórmula de matriz."
+
+#: 04060109.xhp#par_id3153671.209.help.text
+msgid " <item type=\"input\">=ROW()</item> returns 3 if the formula was entered in row 3."
+msgstr " <item type=\"input\">=FILA()</item> devuelve 3 si la fórmula se especificó en la fila 3."
+
+#: 04060109.xhp#par_id3153790.210.help.text
+msgid " <item type=\"input\">{=ROW(Rabbit)}</item> returns the single-column array (1, 2, 3) if \"Rabbit\" is the named area (C1:D3)."
+msgstr " <item type=\"input\">{=FILA(Conejo)}</item> devuelve la matriz de una columna (1, 2, 3) si \"Conejo\" es el área con nombre (C1:D3)."
+
+#: 04060109.xhp#bm_id3145772.help.text
+msgid "<bookmark_value>ROWS function</bookmark_value>"
+msgstr "<bookmark_value>Función FILAS</bookmark_value>"
+
+#: 04060109.xhp#hd_id3145772.166.help.text
+msgid "ROWS"
+msgstr "FILAS"
+
+#: 04060109.xhp#par_id3148971.167.help.text
+msgid "<ahelp hid=\"HID_FUNC_ZEILEN\">Returns the number of rows in a reference or array.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZEILEN\">Devuelve el número de filas de una referencia o matriz.</ahelp>"
+
+#: 04060109.xhp#hd_id3156051.168.help.text
+msgctxt "04060109.xhp#hd_id3156051.168.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060109.xhp#par_id3154357.169.help.text
+msgid "ROWS(Array)"
+msgstr "FILAS(Matriz)"
+
+#: 04060109.xhp#par_id3155942.170.help.text
+msgid " <emph>Array</emph> is the reference or named area whose total number of rows is to be determined."
+msgstr " <emph>Matriz</emph> es la referencia o área con nombre cuyo número total de filas se va a determinar."
+
+#: 04060109.xhp#hd_id3155869.171.help.text
+msgctxt "04060109.xhp#hd_id3155869.171.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060109.xhp#par_id3154725.212.help.text
+msgid " <item type=\"input\">=Rows(B5)</item> returns 1 because a cell only contains one row."
+msgstr " <item type=\"input\">=Filas(B5)</item> devuelve 1 porque una celda contiene solamente una fila."
+
+#: 04060109.xhp#par_id3150102.172.help.text
+msgid " <item type=\"input\">=ROWS(A10:B12)</item> returns 3."
+msgstr " <item type=\"input\">=FILAS(A10:B12)</item> devuelve 3."
+
+#: 04060109.xhp#par_id3155143.213.help.text
+msgid " <item type=\"input\">=ROWS(Rabbit)</item> returns 3 if \"Rabbit\" is the named area (C1:D3)."
+msgstr " <item type=\"input\">=FILAS(Conejo)</item> devuelve 3 si \"Conejo\" es el área con nombre (C1:D3)."
+
+#: 04060109.xhp#bm_id9959410.help.text
+msgid "<bookmark_value>HYPERLINK function</bookmark_value>"
+msgstr "<bookmark_value>Función HIPERVÍNCULO</bookmark_value>"
+
+#: 04060109.xhp#par_idN11798.help.text
+msgid "HYPERLINK"
+msgstr "HIPERVÍNCULO"
+
+#: 04060109.xhp#par_idN117F1.help.text
+msgid "<ahelp hid=\"HID_FUNC_HYPERLINK\">When you click a cell that contains the HYPERLINK function, the hyperlink opens.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_HYPERLINK\">Al hacer clic en una celda que contiene la función HIPERVÍNCULO, se abre el hipervínculo.</ahelp>"
+
+#: 04060109.xhp#par_idN11800.help.text
+msgid "If you use the optional <emph>CellText</emph> parameter, the formula locates the URL, and then displays the text or number."
+msgstr "Si utiliza el parámetro <emph>TextodeCelda</emph> opcional, la fórmula busca la dirección URL y muestra el texto o número."
+
+#: 04060109.xhp#par_idN11803.help.text
+msgid "To open a hyperlinked cell with the keyboard, select the cell, press F2 to enter the Edit mode, move the cursor in front of the hyperlink, press Shift+F10, and then choose <emph>Open Hyperlink</emph>."
+msgstr "Para abrir con el teclado una celda con hipervínculo, seleccione la celda, pulse F2 para acceder al modo de edición, mueva el cursor delante del hipervínculo, pulse Mayús + F10 y, a continuación, seleccione <emph>Abrir hipervínculo</emph>."
+
+#: 04060109.xhp#par_idN1180A.help.text
+msgctxt "04060109.xhp#par_idN1180A.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060109.xhp#par_idN1180E.help.text
+msgid "HYPERLINK(\"URL\") or HYPERLINK(\"URL\"; \"CellText\")"
+msgstr "HIPERVÍNCULO(\"URL\") o HIPERVÍNCULO(\"URL\"; \"TextodeCelda\")"
+
+#: 04060109.xhp#par_idN11811.help.text
+msgid " <emph>URL</emph> specifies the link target. The optional <emph>CellText</emph> parameter is the text or a number that is displayed in the cell and will be returned as the result. If the <emph>CellText</emph> parameter is not specified, the <emph>URL</emph> is displayed in the cell text and will be returned as the result."
+msgstr " <emph>URL</emph> especifica el destino del vínculo. El parámetro <emph>TextodeCelda</emph> opcional es el texto o un número que se muestra en la celda y que se devolverá como resultado. Si no se especifica el parámetro <emph>TextodeCelda</emph>, se muestra la dirección <emph>URL</emph> en el texto de la celda y se devolverá como resultado."
+
+#: 04060109.xhp#par_id0907200912224576.help.text
+msgid "The number 0 is returned for empty cells and matrix elements."
+msgstr "Se devuelve el número 0 para las celdas y los elementos de matriz vacíos."
+
+#: 04060109.xhp#par_idN11823.help.text
+msgctxt "04060109.xhp#par_idN11823.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060109.xhp#par_idN11827.help.text
+msgid " <item type=\"input\">=HYPERLINK(\"http://www.example.org\")</item> displays the text \"http://www.example.org\" in the cell and executes the hyperlink http://www.example.org when clicked."
+msgstr " <item type=\"input\">=HIPERVÍNCULO(\"http://www.example.org\")</item> muestra el texto \"http://www.example.org\" en la celda y ejecuta el hipervínculo http://www.example.org al hacer clic."
+
+#: 04060109.xhp#par_idN1182A.help.text
+msgid " <item type=\"input\">=HYPERLINK(\"http://www.example.org\";\"Click here\")</item> displays the text \"Click here\" in the cell and executes the hyperlink http://www.example.org when clicked."
+msgstr " <item type=\"input\">=HIPERVÍNCULO(\"http://www.example.org\";\"Clic aquí \")</item> muestra el texto \"clic aquí\" en la celda y ejecuta el hipervínculo http://www.example.org al hacer clic."
+
+#: 04060109.xhp#par_id0907200912224534.help.text
+msgid "=HYPERLINK(\"http://www.example.org\";12345) displays the number 12345 and executes the hyperlink http://www.example.org when clicked."
+msgstr "=HIPERVÍNCULO(\"http://www.example.org\";12345) muestra el número 12345 y ejecuta el hipervínculo http://www.example.org cuando se hace clic en él."
+
+#: 04060109.xhp#par_idN1182D.help.text
+msgid " <item type=\"input\">=HYPERLINK($B4)</item> where cell B4 contains <item type=\"input\">http://www.example.org</item>. The function adds http://www.example.org to the URL of the hyperlink cell and returns the same text which is used as formula result."
+msgstr " <item type=\"input\">=HIPERVÍNCULO($B4)</item> donde la celda B4 contiene <item type=\"input\">http://www.example.org</item>. La función agrega http://www.example.org a la dirección URL de la celda del hipervínculo y devuelve el mismo texto que se utiliza como resultado de la fórmula."
+
+#: 04060109.xhp#par_idN11830.help.text
+msgid " <item type=\"input\">=HYPERLINK(\"http://www.\";\"Click \") & \"example.org\"</item> displays the text Click example.org in the cell and executes the hyperlink http://www.example.org when clicked."
+msgstr " <item type=\"input\">=HIPERVÍNCULO(\"http://www.\";\"Clic \") Y \"example.org\"</item> muestra el texto Clic example.org en la celda y ejecuta el hipervínculo http://www.example.org al hacer clic."
+
+#: 04060109.xhp#par_id8859523.help.text
+msgid " <item type=\"input\">=HYPERLINK(\"#Sheet1.A1\";\"Go to top\")</item> displays the text Go to top and jumps to cell Sheet1.A1 in this document."
+msgstr " <item type=\"input\">=HIPERVÍNCULO(\"#Hoja1.A1\";\"Ir arriba\")</item> muestra el texto Ir arriba y va a la celda Hoja1.A1 de este documento."
+
+#: 04060109.xhp#par_id2958769.help.text
+msgid " <item type=\"input\">=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")</item>displays the text Go to Writer bookmark, loads the specified text document and jumps to bookmark \"Specification\"."
+msgstr " <item type=\"input\">=HIPERVÍNCULO(\"archivo:///C:/writer.odt#Specification\";\"Ir a marcador de Writer\")</item>muestra el texto Ir al marcador de Writer, carga el documento de texto especificado y va al marcador \"Especificación\"."
+
+#: 04060109.xhp#bm_id7682424.help.text
+msgid "<bookmark_value>GETPIVOTDATA function</bookmark_value>"
+msgstr "<bookmark_value>función GETPIVOTDATA</bookmark_value>"
+
+#: 04060109.xhp#hd_id3747062.help.text
+msgid "GETPIVOTDATA"
+msgstr "GETPIVOTDATA"
+
+#: 04060109.xhp#par_id3593859.help.text
+#, fuzzy
+msgid "<ahelp hid=\".\">The GETPIVOTDATA function returns a result value from a pivot table. The value is addressed using field and item names, so it remains valid if the layout of the pivot table changes.</ahelp>"
+msgstr "<ahelp hid=\".\">La función GETPIVOTDATA regresa un valor de resultado de una tabla de Piloto de datos. El valor es señalado usando el campo y el nombre de los elementos, de esta manera permanece valido si el despliegue de la tabla del Piloto de datos cambia.</ahelp>"
+
+#: 04060109.xhp#hd_id9741508.help.text
+msgctxt "04060109.xhp#hd_id9741508.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060109.xhp#par_id909451.help.text
+msgid "Two different syntax definitions can be used:"
+msgstr "Se puede usar dos diferentes definiciones en la sintaxis:"
+
+#: 04060109.xhp#par_id1665089.help.text
+#, fuzzy
+msgid "GETPIVOTDATA(TargetField; pivot table; [ Field 1; Item 1; ... ])"
+msgstr "GETPIVOTDATA(CampoDestino; DatosPiloto; [ Campo 1; Elemento 1; ... ])"
+
+#: 04060109.xhp#par_id4997100.help.text
+msgid "GETPIVOTDATA(pivot table; Constraints)"
+msgstr "GETPIVOTDATA(tabla dinámica; Limitantes)"
+
+#: 04060109.xhp#par_id1672109.help.text
+msgid "The second syntax is assumed if exactly two parameters are given, of which the first parameter is a cell or cell range reference. The first syntax is assumed in all other cases. The Function Wizard shows the first syntax."
+msgstr "Se asume la segunda sitaxis son exactamente dos parametros que se dan, de la cual el primer parametro de una celda o rango de celda referenciada. La primer sintaxis se asume que estan en otros casos. El asistente para funciones muestra la primer sintaxis."
+
+#: 04060109.xhp#hd_id9464094.help.text
+msgid "First Syntax"
+msgstr "Primera sintaxis"
+
+#: 04060109.xhp#par_id9302346.help.text
+#, fuzzy
+msgid " <emph>TargetField</emph> is a string that selects one of the pivot table's data fields. The string can be the name of the source column, or the data field name as shown in the table (like \"Sum - Sales\")."
+msgstr " <emph>CampoDestino</emph> es una cadena que selecciona uno de los campos de datos de la tabla Piloto de datos. La cadena puede ser el nombre de la columna de origen o el nombre del campo de datos como se muestra en la tabla (como \"Suma - Ventas\")."
+
+#: 04060109.xhp#par_id8296151.help.text
+msgid " <emph>pivot table</emph> is a reference to a cell or cell range that is positioned within a pivot table or contains a pivot table. If the cell range contains several pivot tables, the table that was created last is used."
+msgstr " <emph>tabla dinámica</emph> es una referencia a una celda o rango de celdas que se ubica dentro de una tabla dinámica o contiene una tabla dinámica. Si el rango de celdas contiene varias tablas dinámicas, se utiliza la tabla que fue creada al último."
+
+#: 04060109.xhp#par_id4809411.help.text
+#, fuzzy
+msgid "If no <emph>Field n / Item n</emph> pairs are given, the grand total is returned. Otherwise, each pair adds a constraint that the result must satisfy. <emph>Field n</emph> is the name of a field from the pivot table. <emph>Item n</emph> is the name of an item from that field."
+msgstr "Si no hay pares ha dado <emph>Campos n / Elementos n</emph>, el gran total no devuelve nada. De cualquier forma, cada par agrega una constante que el resultado debe ser satisfecho. <emph>Campo n</emph> es el nombre del campo de la tabla de Piloto de datos. <emph>Elemento n</emph> es el nombre del elemento del campo."
+
+#: 04060109.xhp#par_id6454969.help.text
+msgid "If the pivot table contains only a single result value that fulfills all of the constraints, or a subtotal result that summarizes all matching values, that result is returned. If there is no matching result, or several ones without a subtotal for them, an error is returned. These conditions apply to results that are included in the pivot table."
+msgstr "Si la tabla dinámica solamente contiene un solo valor de resultado que cumpla con todas las limitantes, o un resultado de subtotal que resume todos los valores coincidentes, se devuelve ese resultado. Si no hay un resultado coincidente, o varios que carezcan de un subtotal, se devuelve un error. Estas condiciones aplican a los resultados que se incluyen en la tabla dinámica."
+
+#: 04060109.xhp#par_id79042.help.text
+msgid "If the source data contains entries that are hidden by settings of the pivot table, they are ignored. The order of the Field/Item pairs is not significant. Field and item names are not case-sensitive."
+msgstr "Si el origen de datos contiene entradas que están ocultas por la configuración de la tabla dinámica, ellas se ignoran. No importa el orden de los pares Campo/Elemento. Los nombres de los campos y de los elementos no distinguen entre mayúsculas y minúsculas."
+
+#: 04060109.xhp#par_id7928708.help.text
+#, fuzzy
+msgid "If no constraint for a page field is given, the field's selected value is implicitly used. If a constraint for a page field is given, it must match the field's selected value, or an error is returned. Page fields are the fields at the top left of a pivot table, populated using the \"Page Fields\" area of the pivot table layout dialog. From each page field, an item (value) can be selected, which means only that item is included in the calculation."
+msgstr "Si ningún limitante para un campo de página es dado, el valor seleccionada para un campo esta usado implícitamente. Si un limitante para un campo de página es dado, debe compaginar con el valor seleccionada del campo, o se retorno un error. Campos de páginas son los campos arriba a la izquierda de la tabla del Piloto de Datos, poblado usando la área de \"Campos de Páginas\" del dialogo de diseño del Piloto de Datos. Desde cada campo de página, un ítem (valor) puede ser seleccionado, lo cual significa que solo aquel ítem esta incluido en la calculación."
+
+#: 04060109.xhp#par_id3864253.help.text
+#, fuzzy
+msgid "Subtotal values from the pivot table are only used if they use the function \"auto\" (except when specified in the constraint, see <item type=\"literal\">Second Syntax</item> below)."
+msgstr "Solo se utilizan los valores de subtotal de la tabla dinámica si éstos usan la función «auto» (excepto cuando se especifican en la limitante, vea <item type=\"literal\">Segunda sintaxis</item> mas abajo)."
+
+#: 04060109.xhp#hd_id3144016.help.text
+msgid "Second Syntax"
+msgstr "Segunda sintaxis"
+
+#: 04060109.xhp#par_id9937131.help.text
+msgid " <emph>pivot table</emph> has the same meaning as in the first syntax."
+msgstr " <emph>tabla dinámica</emph> tiene el mismo significado que en la primera sintaxis."
+
+#: 04060109.xhp#par_id5616626.help.text
+msgid " <emph>Constraints</emph> is a space-separated list. Entries can be quoted (single quotes). The whole string must be enclosed in quotes (double quotes), unless you reference the string from another cell."
+msgstr " <emph>Limitantes</emph> es una lista separada por espacios. Las entradas se pueden poner entre comillas (comillas simples). Toda la cadena se debe poner entre comillas (comillas dobles), a menos que haga referencia a la cadena desde otra celda."
+
+#: 04060109.xhp#par_id4076357.help.text
+#, fuzzy
+msgid "One of the entries can be the data field name. The data field name can be left out if the pivot table contains only one data field, otherwise it must be present."
+msgstr "Una de las entradas puede ser los nombres de los campos de datos. Los nombres de campos de datos pueden ser separados de las tablas de piloto de datos solamente un campo de datos, de lo contrario debe estar presente."
+
+#: 04060109.xhp#par_id8231757.help.text
+#, fuzzy
+msgid "Each of the other entries specifies a constraint in the form <item type=\"literal\">Field[Item]</item> (with literal characters [ and ]), or only <item type=\"literal\">Item</item> if the item name is unique within all fields that are used in the pivot table."
+msgstr "Cada una de las otras entradas especifica un limite de la forma <item type=\"literal\">Field[Item]</item> (con caracteres literales [ y ]), o solamente <item type=\"literal\">Ítem</item> si el nombre del ítem es única dentro de todos los campos utilizados en la tabla del Piloto de Data."
+
+#: 04060109.xhp#par_id3168736.help.text
+msgid "A function name can be added in the form <emph>Field[Item;Function]</emph>, which will cause the constraint to match only subtotal values which use that function. The possible function names are Sum, Count, Average, Max, Min, Product, Count (Numbers only), StDev (Sample), StDevP (Population), Var (Sample), and VarP (Population), case-insensitive."
+msgstr "Un nombre de función puede se añadido en la forma <emph>Campo[Elemento;Función]</emph>, que harán que el contraste para que coincida con los valores subtotales que solamente usa esa función. Los posibles nombres de las funciones son Suma, Contar, Promedio, Max, Min, Producto, Contar(Sólo números), DesvEst(Muestra), DesvEst(Población), Var(Muestra), y VarP(Población), distingue entre mayúsculas y minúsculas."
+
+#: 12040201.xhp#tit.help.text
+msgctxt "12040201.xhp#tit.help.text"
+msgid "More"
+msgstr "Más"
+
+#: 12040201.xhp#hd_id3148492.1.help.text
+msgctxt "12040201.xhp#hd_id3148492.1.help.text"
+msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
+msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"Más\">Más</link>"
+
+#: 12040201.xhp#par_id3159400.2.help.text
+msgid "<variable id=\"zusaetzetext\"><ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_SPEC_FILTER:BTN_MORE\">Shows additional filter options.</ahelp></variable>"
+msgstr "<variable id=\"zusaetzetext\"><ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_SPEC_FILTER:BTN_MORE\">Muestra opciones de filtro adicionales.</ahelp></variable>"
+
+#: 12040201.xhp#hd_id3150791.3.help.text
+msgctxt "12040201.xhp#hd_id3150791.3.help.text"
+msgid "Options"
+msgstr "Opciones"
+
+#: 12040201.xhp#hd_id3154138.5.help.text
+msgctxt "12040201.xhp#hd_id3154138.5.help.text"
+msgid "Case sensitive"
+msgstr "Mayúsculas/Minúsculas"
+
+#: 12040201.xhp#par_id3147228.6.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_CASE\">Distinguishes between uppercase and lowercase letters when filtering the data.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_CASE\">Al filtrar los datos distingue los caracteres en mayúscula y en minúscula.</ahelp>"
+
+#: 12040201.xhp#hd_id3154908.7.help.text
+msgid "Range contains column labels"
+msgstr "El área contiene los títulos de columnas"
+
+#: 12040201.xhp#par_id3153768.8.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_HEADER\">Includes the column labels in the first row of a cell range.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_HEADER\">Incluye las etiquetas de columna en la primera fila de un área de celdas.</ahelp>"
+
+#: 12040201.xhp#hd_id3155306.9.help.text
+msgctxt "12040201.xhp#hd_id3155306.9.help.text"
+msgid "Copy results to"
+msgstr "Copiar resultado en..."
+
+#: 12040201.xhp#par_id3154319.10.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_COPY_AREA\">Select the check box, and then select the cell range where you want to display the filter results.</ahelp> You can also select a named range from the list."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_COPY_AREA\">Marque la casilla de verificación y seleccione el área de celdas en que desea ver el resultado de la aplicación del filtro.</ahelp>En la lista también puede seleccionar un área con nombre."
+
+#: 12040201.xhp#hd_id3145272.11.help.text
+msgid "Regular expression"
+msgstr "Expresión corriente"
+
+#: 12040201.xhp#par_id3152576.12.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_REGEXP\">Allows you to use wildcards in the filter definition.</ahelp> For a list of the regular expressions that $[officename] supports, click <link href=\"text/shared/01/02100001.xhp\" name=\"here\">here</link>."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_REGEXP\">Permite el uso de comodines en la definición de filtros.</ahelp> Si desea obtener una lista de las expresiones regulares válidas en $[officename], haga clic <link href=\"text/shared/01/02100001.xhp\" name=\"aquí\">aquí</link>."
+
+#: 12040201.xhp#par_id3149377.33.help.text
+msgid "If the <emph>Regular Expressions</emph> check box is selected, you can use regular expressions in the Value field if the Condition list box is set to '=' EQUAL or '<>' UNEQUAL. This also applies to the respective cells that you reference for an advanced filter."
+msgstr "Si selecciona la casilla de verificación <emph>Expresiones regulares</emph>, en el campo Valor puede utilizar expresiones regulares si el cuadro de lista Condición se define en '=' IGUAL o '<>' NO IGUAL. También es válido en las celdas respectivas a las que se hace referencia en la aplicación de un filtro avanzado."
+
+#: 12040201.xhp#hd_id3149958.34.help.text
+msgid "No duplication"
+msgstr "Sin duplicados"
+
+#: 12040201.xhp#par_id3153876.35.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_UNIQUE\">Excludes duplicate rows in the list of filtered data.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_UNIQUE\">Excluye las filas duplicadas en la lista de los datos filtrados.</ahelp>"
+
+#: 12040201.xhp#hd_id3154018.40.help.text
+msgid "Keep filter criteria"
+msgstr "Mantener criterios"
+
+#: 12040201.xhp#par_id3149123.41.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FILTER:BTN_DEST_PERS\">Select the <emph>Copy results to</emph> check box, and then specify the destination range where you want to display the filtered data. If this box is checked, the destination range remains linked to the source range. You must have defined the source range under <emph>Data - Define range</emph> as a database range.</ahelp> Following this, you can reapply the defined filter at any time as follows: click into the source range, then choose <emph>Data - Refresh Range</emph>."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FILTER:BTN_DEST_PERS\">Seleccione la casilla de verificación <emph>Copiar resultado en</emph>; a continuación, especifique el área de destino en la que desea mostrar los datos filtrados. Si se selecciona esta casilla, el área de destino queda vinculada con la de origen. El área de origen debe definirse en <emph>Datos - Definir área</emph> como área de base de datos.</ahelp> Una vez hecho esto, el filtro definido puede volverse a aplicar como se indica a continuación: haga clic en el área de origen y seleccione <emph>Datos - Actualizar área</emph>."
+
+#: 12040201.xhp#hd_id3149018.36.help.text
+msgid "Data range"
+msgstr "Área de datos"
+
+#: 12040201.xhp#par_id3150042.37.help.text
+msgid "Displays the cell range or the name of the cell range that you want to filter."
+msgstr "Muestra el área de celdas o el nombre del área que se desea filtrar."
+
+#: 02190000.xhp#tit.help.text
+msgid "Delete Manual Breaks"
+msgstr "Borrar saltos manuales"
+
+#: 02190000.xhp#hd_id3150541.1.help.text
+msgid "<link href=\"text/scalc/01/02190000.xhp\" name=\"Delete Manual Breaks\">Delete Manual Break</link>"
+msgstr "<link href=\"text/scalc/01/02190000.xhp\" name=\"Delete Manual Breaks\">Borrar salto manual</link>"
+
+#: 02190000.xhp#par_id3154365.2.help.text
+msgid "<ahelp hid=\".\">Choose the type of manual break that you want to delete.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccione el tipo de salto manual que desee borrar.</ahelp>"
+
+#: 06990000.xhp#tit.help.text
+msgid "Cell Contents"
+msgstr "Contenido de las celdas"
+
+#: 06990000.xhp#hd_id3153087.1.help.text
+msgid "<link href=\"text/scalc/01/06990000.xhp\" name=\"Cell Contents\">Cell Contents</link>"
+msgstr "<link href=\"text/scalc/01/06990000.xhp\" name=\"Contenidos de celda\">Contenidos de celda</link>"
+
+#: 06990000.xhp#par_id3145674.2.help.text
+msgid "Opens a submenu with commands to calculate tables and activate AutoInput."
+msgstr "Abre un submenú que contiene órdenes para calcular tablas y activar la Entrada automática."
+
+#: 04060000.xhp#tit.help.text
+msgid "Function Wizard"
+msgstr "Asistente para funciones"
+
+#: 04060000.xhp#bm_id3147426.help.text
+msgid "<bookmark_value>inserting functions; Function Wizard</bookmark_value><bookmark_value>functions;Function Wizard</bookmark_value><bookmark_value>wizards; functions</bookmark_value>"
+msgstr "<bookmark_value>insertar funciones;Asistente para funciones</bookmark_value><bookmark_value>funciones;Asistente para funciones</bookmark_value><bookmark_value>asistentes;funciones</bookmark_value>"
+
+#: 04060000.xhp#hd_id3147426.1.help.text
+msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Function Wizard</link>"
+msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Asistente para funciones</link>"
+
+#: 04060000.xhp#par_id3145271.2.help.text
+msgid "<variable id=\"funktionsautopilottext\"><ahelp hid=\".uno:FunctionDialog\">Opens the <emph>Function Wizard</emph>, which helps you to interactively create formulas.</ahelp></variable> Before you start the Wizard, select a cell or a range of cells from the current sheet, in order to determine the position at which the formula will be inserted."
+msgstr "<variable id=\"funktionsautopilottext\"><ahelp hid=\".uno:FunctionDialog\">Abre el <emph>Asistente para funciones</emph>, que ayuda a crear fórmulas de modo interactivo.</ahelp></variable> Antes de iniciar el asistente, seleccione una celda o área de celdas de la hoja actual para determinar la posición en la que se va a insertar la fórmula."
+
+#: 04060000.xhp#par_id8007446.help.text
+msgid "You can download the complete ODFF (OpenDocument Format Formula) specification from the <link href=\"http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula\">OASIS</link> web site."
+msgstr "Puede descargar las especificaciones completas de ODFF (OpenDocument Formato de Fórmula) del sitio web <link href=\"http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula\">OASIS</link>."
+
+#: 04060000.xhp#par_id3159153.60.help.text
+msgid "The <emph>Function Wizard</emph> has two tabs: <emph>Functions</emph> is used to create formulas, and <emph>Structure</emph> is used to check the formula build."
+msgstr "El <emph>Asistente para funciones</emph> cuenta con dos pestañas: <emph>Funciones</emph> se utiliza para crear fórmulas, y <emph>Estructura</emph> se utiliza para comprobarlas."
+
+#: 04060000.xhp#hd_id3154490.3.help.text
+msgid "Functions Tab"
+msgstr "Pestaña de funciones"
+
+#: 04060000.xhp#par_id3149378.5.help.text
+msgctxt "04060000.xhp#par_id3149378.5.help.text"
+msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
+msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">Lista de categorías y funciones</link>"
+
+#: 04060000.xhp#hd_id3154730.36.help.text
+msgid "Category"
+msgstr "Categoría"
+
+#: 04060000.xhp#par_id3153417.37.help.text
+msgid "<variable id=\"kategorienliste\"><ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_CATEGORY\">Lists all the categories to which the different functions are assigned. Select a category to view the appropriate functions in the list field below.</ahelp> Select \"All\" to view all functions in alphabetical order, irrespective of category. \"Last Used\" lists the functions you have most recently used. </variable>"
+msgstr "<variable id=\"kategorienliste\"><ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_CATEGORY\">Lista todos los categorias al cual los funciones diferentes estan asignado. Seleccione una categoria para ver los funciones apropriadas en el campo de listado, abajo. </ahelp> Seleccione \"Todo\" para ver los funciones en orden alfabetica, sin importar la categoria. \"Última usado\" lista las funciones más recientemente usado. </variable>"
+
+#: 04060000.xhp#hd_id3150749.6.help.text
+msgctxt "04060000.xhp#hd_id3150749.6.help.text"
+msgid "Function"
+msgstr "Función"
+
+#: 04060000.xhp#par_id3155445.7.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_FUNCTION\">Displays the functions found under the selected category. Double-click to select a function.</ahelp> A single-click displays a short function description."
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_FUNCTION\">Muestra las funciones incluidas en la categoría seleccionada. Pulse dos veces para seleccionar una función.</ahelp> Al hacer clic una sola vez se muestra una breve descripción de la función."
+
+#: 04060000.xhp#hd_id3159264.8.help.text
+msgid "Array"
+msgstr "Matriz"
+
+#: 04060000.xhp#par_id3149566.9.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FORMULA:BTN_MATRIX\">Specifies that the selected function is inserted into the selected cell range as an array formula. </ahelp> Array formulas operate on multiple cells. Each cell in the array contains the formula, not as a copy but as a common formula shared by all matrix cells."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FORMULA:BTN_MATRIX\">Especifica que la función seleccionada se inserte en el área de celdas seleccionada como fórmula de matriz. </ahelp> Las fórmulas de matriz operan sobre varias celdas. Cada una de las celdas de la matriz contiene la fórmula; ésta no es una copia, sino una fórmula común que comparten todas las celdas de la matriz."
+
+#: 04060000.xhp#par_id3155959.61.help.text
+msgid "The <emph>Array</emph> option is identical to the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter command, which is used to enter and confirm formulas in the sheet. The formula is inserted as a matrix formula indicated by two braces { }."
+msgstr "La opción <emph>Array</emph> es idéntica a la orden<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Intro, la cual es usada para ingresar y confirmar formulas en la hoja. El formula se inserta como una formula matriz indicada por dos llaves { }."
+
+#: 04060000.xhp#par_id3152993.40.help.text
+msgid "The maximum size of an array range is 128 by 128 cells."
+msgstr "El tamaño máximo de un área de matriz es de 128 por 128 celdas."
+
+#: 04060000.xhp#hd_id3150367.41.help.text
+msgid "Argument Input Fields"
+msgstr "Campos de ingreso de argumentos"
+
+#: 04060000.xhp#par_id3145587.15.help.text
+msgid "When you double-click a function, the argument input field(s) appear on the right side of the dialog. To select a cell reference as an argument, click directly into the cell, or drag across the required range on the sheet while holding down the mouse button. You can also enter numerical and other values or references directly into the corresponding fields in the dialog. When using <link href=\"text/scalc/01/04060102.xhp\" name=\"date entries\">date entries</link>, make sure you use the correct format. Click OK to insert the result into the spreadsheet."
+msgstr "Al hacer doble clic en una función, el campo o los campos de entrada de argumento aparecen a la derecha del diálogo. Para seleccionar una referencia de celda como argumento, haga clic directamente en la celda o arrastre en la pertinente área de la hoja manteniendo pulsado el botón del ratón.También puede entrar valores numéricos o de otro tipo o referencias directamente en los campos correspondientes del diálogo. Si utiliza <link href=\"text/scalc/01/04060102.xhp\" name=\"date entries\">entradas de fecha</link>, hágalo en el formato correcto. Haga clic en Aceptar para insertar el resultado en la hoja de cálculo."
+
+#: 04060000.xhp#hd_id3149408.18.help.text
+msgid "Function Result"
+msgstr "Subtotal"
+
+#: 04060000.xhp#par_id3155809.19.help.text
+msgid "As soon you enter arguments in the function, the result is calculated. This preview informs you if the calculation can be carried out with the arguments given. If the arguments result in an error, the corresponding <link href=\"text/scalc/05/02140000.xhp\" name=\"error code\">error code</link> is displayed."
+msgstr "En cuanto se introducen argumentos en la función, se efectúa la operación de cálculo. La previsualización informa de si el cálculo de la función se puede realizar con los argumentos introducidos. Si los argumentos introducidos provocan un error, se muestra el <link href=\"text/scalc/05/02140000.xhp\" name=\"error code\">código de error</link> correspondiente."
+
+#: 04060000.xhp#par_id3148700.23.help.text
+msgid "The required arguments are indicated by names in bold print."
+msgstr "Los argumentos requeridos se indican por nombre con los caracteres en negrita."
+
+#: 04060000.xhp#hd_id3153064.22.help.text
+msgid "f(x) (depending on the selected function)"
+msgstr "f(x) (dependiendo de la función seleccionada)"
+
+#: 04060000.xhp#par_id3157980.24.help.text
+msgid "<ahelp hid=\"HID_SC_FAP_BTN_FX4\">Allows you to access a subordinate level of the <emph>Function Wizard</emph> in order to nest another function within the function, instead of a value or reference.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_FAP_BTN_FX4\">Permite accesar a un nivel subordinado del <emph>Asistente para Funciones</emph> para anidar una función dentro de otra, en vez de un valor o referencia.</ahelp>"
+
+#: 04060000.xhp#hd_id3145076.25.help.text
+msgid "Argument/Parameter/Cell Reference (depending on the selected function)"
+msgstr "Referencia al Argumento/Parámetro/Celda (dependiendo en la función seleccionado)"
+
+#: 04060000.xhp#par_id3159097.26.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FORMULA:ED_REF\">The number of visible text fields depends on the function. Enter arguments either directly into the argument fields or by clicking a cell in the table.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_FORMULA:ED_REF\">El número de campos visibles de texto depende en la función. Entra argumentos directamente al campo del argumento o a través de haga clik en una celda en la tabla.</ahelp>"
+
+#: 04060000.xhp#hd_id3154957.51.help.text
+msgctxt "04060000.xhp#hd_id3154957.51.help.text"
+msgid "Result"
+msgstr "Resultado"
+
+#: 04060000.xhp#par_id3150211.52.help.text
+msgid "Displays the calculation result or an error message."
+msgstr "Muestra el resultado del cálculo o un mensaje de error."
+
+#: 04060000.xhp#hd_id3151304.43.help.text
+msgid "Formula"
+msgstr "Fórmula"
+
+#: 04060000.xhp#par_id3149898.44.help.text
+msgid "<ahelp hid=\"HID_SC_FAP_FORMULA\">Displays the created formula. Type your entries directly, or create the formula using the wizard.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_FAP_FORMULA\">Muestra la formula creado. Tipea sus entradas directamente, o crear la formula con el Asistente.</ahelp>"
+
+#: 04060000.xhp#hd_id3153249.45.help.text
+msgid "Back"
+msgstr "Regresar"
+
+#: 04060000.xhp#par_id3152869.53.help.text
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_BACKWARD\">Moves the focus back through the formula components, marking them as it does so.</ahelp>"
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_BACKWARD\">Desplaza el foco hacia atrás en los componentes de la fórmula, y los marca a medida que se desplaza.</ahelp>"
+
+#: 04060000.xhp#par_id3146966.56.help.text
+msgid "To select a single function from a complex formula consisting of several functions, double-click the function in the formula window."
+msgstr "Para seleccionar una única función dentro de una fórmula compleja que consta de varias funciones, pulse dos veces en la función en la ventana de fórmula."
+
+#: 04060000.xhp#hd_id3155762.54.help.text
+msgid "Next"
+msgstr "Siguiente"
+
+#: 04060000.xhp#par_id3149316.55.help.text
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_FORWARD\">Moves forward through the formula components in the formula window.</ahelp> This button can also be used to assign functions to the formula. If you select a function and click the <emph>Next </emph>button, the selection appears in the formula window."
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_FORWARD\">Se desplaza hacia delante en los componentes de una fórmula en la ventana de fórmula.</ahelp> Este botón se puede utilizar también para asignar funciones a la fórmula. Si selecciona una función y hace clic en <emph>Siguiente</emph>, la selección aparece en la ventana de fórmula."
+
+#: 04060000.xhp#par_id3159262.57.help.text
+msgid "Double-click a function in the selection window to transfer it to the formula window."
+msgstr "Mediante una doble pulsación puede incluir en la ventana de fórmulas una función de la ventana de selección."
+
+#: 04060000.xhp#hd_id3148745.58.help.text
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: 04060000.xhp#par_id3147402.59.help.text
+msgid "Closes the dialog without implementing the formula."
+msgstr "Cierra el diálogo sin implementar la fórmula."
+
+#: 04060000.xhp#hd_id3150534.32.help.text
+msgid "OK"
+msgstr "Aceptar"
+
+#: 04060000.xhp#par_id3153029.33.help.text
+msgid "Ends the <emph>Function Wizard</emph>, and transfers the formula to the selected cells."
+msgstr "Termina el <emph>Asistente para Funciones</emph>, y transfiere la formula a las celdas seleccionadas."
+
+#: 04060000.xhp#par_id3156400.34.help.text
+msgctxt "04060000.xhp#par_id3156400.34.help.text"
+msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
+msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">Lista de categorías y funciones</link>"
+
+#: 04060000.xhp#hd_id3147610.47.help.text
+msgid "Structure tab"
+msgstr "Pestaña Estructura"
+
+#: 04060000.xhp#par_id3153122.48.help.text
+msgid "On this page, you can view the structure of the function."
+msgstr "En esta página, puede ver la estructura de la función."
+
+#: 04060000.xhp#par_id3149350.4.help.text
+msgid "If you start the <emph>Function Wizard</emph> while the cell cursor is positioned in a cell that already contains a function, the <emph>Structure</emph> tab is opened and shows the composition of the current formula."
+msgstr "Si empiezas el <emph>Asistente para Funciones</emph>mientras que el cursor de celda esta posicionada en una celda que y contiene una función, el tabulador <emph>Estructura</emph> esta abierta y muestra la composición de la formula corriente."
+
+#: 04060000.xhp#hd_id3149014.49.help.text
+msgid "Structure"
+msgstr "Estructura"
+
+#: 04060000.xhp#par_id3150481.50.help.text
+msgid "<ahelp hid=\"HID_SC_FAP_STRUCT\">Displays a hierarchical representation of the current function.</ahelp> You can hide or show the arguments by a click on the plus or minus sign in front."
+msgstr "<ahelp hid=\"HID_SC_FAP_STRUCT\">Muestra una representación jerárquica de la función actual.</ahelp> Los argumentos se pueden mostrar u ocultar haciendo clic en los signos más y menos situados delante."
+
+#: 04060000.xhp#par_id3148886.63.help.text
+msgid "Blue dots denote correctly entered arguments. Red dots indicate incorrect data types. For example: if the SUM function has one argument entered as text, this is highlighted in red as SUM only permits number entries."
+msgstr "Los argumentos se señalan con un punto azul si están correctamente introducidos. En cambio, un punto de color rojo indica que el tipo de dato es incorrecto. Por ejemplo, si en la función SUMA se introduce un texto como argumento, este último se muestra resaltado en rojo ya que la función sólo admite números como argumentos."
+
+#: 04060118.xhp#tit.help.text
+msgctxt "04060118.xhp#tit.help.text"
+msgid "Financial Functions Part Three"
+msgstr "Funciones financieras, tercera parte"
+
+#: 04060118.xhp#hd_id3146780.1.help.text
+msgctxt "04060118.xhp#hd_id3146780.1.help.text"
+msgid "Financial Functions Part Three"
+msgstr "Categoría finanzas, parte 3"
+
+#: 04060118.xhp#bm_id3145112.help.text
+msgid "<bookmark_value>ODDFPRICE function</bookmark_value><bookmark_value>prices;securities with irregular first interest date</bookmark_value>"
+msgstr "<bookmark_value>PRECIO.PER.IRREGULAR.1</bookmark_value><bookmark_value>precios;títulos con primera fecha de interés irregular</bookmark_value>"
+
+#: 04060118.xhp#hd_id3145112.71.help.text
+msgid "ODDFPRICE"
+msgstr "PRECIO.PER.IRREGULAR.1"
+
+#: 04060118.xhp#par_id3147250.72.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_ODDFPRICE\">Calculates the price per 100 currency units par value of a security, if the first interest date falls irregularly.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDFPRICE\">Calcula el precio de 100 unidades monetarias por valor de un título, si la fecha del primer interés es irregular.</ahelp>"
+
+#: 04060118.xhp#hd_id3153074.73.help.text
+msgctxt "04060118.xhp#hd_id3153074.73.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060118.xhp#par_id3146098.74.help.text
+msgid "ODDFPRICE(Settlement; Maturity; Issue; FirstCoupon; Rate; Yield; Redemption; Frequency; Basis)"
+msgstr "PRECIO.PER.IRREGULAR.1(Liquidación; Vencimiento; Emisión; PrimerCupón; Tasa; Rendimiento; Redención; Frecuencia; Base)"
+
+#: 04060118.xhp#par_id3153337.75.help.text
+msgctxt "04060118.xhp#par_id3153337.75.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Liquidación</emph> es la fecha de compra de la seguridad."
+
+#: 04060118.xhp#par_id3149051.76.help.text
+msgctxt "04060118.xhp#par_id3149051.76.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Vencimiento</emph> es la fecha en cuando la seguridad ha cumplido el periodo especificado (vences)."
+
+#: 04060118.xhp#par_id3147297.77.help.text
+msgctxt "04060118.xhp#par_id3147297.77.help.text"
+msgid "<emph>Issue</emph> is the date of issue of the security."
+msgstr "<emph>Emisión</emph> es la fecha de emisión del seguro. "
+
+#: 04060118.xhp#par_id3150393.78.help.text
+msgid "<emph>FirstCoupon</emph> is the first interest date of the security."
+msgstr "<emph>PrimerCupón </emph> es la fecha del primer interés del seguro. "
+
+#: 04060118.xhp#par_id3147402.79.help.text
+msgctxt "04060118.xhp#par_id3147402.79.help.text"
+msgid "<emph>Rate</emph> is the annual rate of interest."
+msgstr "<emph>Tasa</emph> es la tasa anual de interés."
+
+#: 04060118.xhp#par_id3151387.80.help.text
+msgctxt "04060118.xhp#par_id3151387.80.help.text"
+msgid "<emph>Yield</emph> is the annual yield of the security."
+msgstr "<emph>Rendimeinto</emph> es la ganancia anual de la seguridad."
+
+#: 04060118.xhp#par_id3153023.81.help.text
+msgctxt "04060118.xhp#par_id3153023.81.help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr "<emph>Redención</emph> es el valor de redención del seguro por cada 100 unidades monetarias de valor nominal."
+
+#: 04060118.xhp#par_id3150539.82.help.text
+msgctxt "04060118.xhp#par_id3150539.82.help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frecuencia</emph> es el número de pagos de interés por año (1, 2 o 4)."
+
+#: 04060118.xhp#bm_id3157871.help.text
+msgid "<bookmark_value>ODDFYIELD function</bookmark_value>"
+msgstr "<bookmark_value>RENDTO.PER.IRREGULAR.1</bookmark_value>"
+
+#: 04060118.xhp#hd_id3157871.87.help.text
+msgid "ODDFYIELD"
+msgstr "RENDTO.PER.IRREGULAR.1"
+
+#: 04060118.xhp#par_id3147414.88.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_ODDFYIELD\">Calculates the yield of a security if the first interest date falls irregularly.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDFYIELD\">Calcula el rendimiento de un título si la fecha del primer interés es irregular.</ahelp>"
+
+#: 04060118.xhp#hd_id3150651.89.help.text
+msgctxt "04060118.xhp#hd_id3150651.89.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060118.xhp#par_id3152982.90.help.text
+msgid "ODDFYIELD(Settlement; Maturity; Issue; FirstCoupon; Rate; Price; Redemption; Frequency; Basis)"
+msgstr "RENDTO.PER.IRREGULAR.1(Liquidación; Vencimiento; Emisión; PrimerCupón; Tasa; Precio; Redención; Frecuencia; Base)"
+
+#: 04060118.xhp#par_id3157906.91.help.text
+msgctxt "04060118.xhp#par_id3157906.91.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Liquidación</emph> es la fecha de compra de la seguridad."
+
+#: 04060118.xhp#par_id3150026.92.help.text
+msgctxt "04060118.xhp#par_id3150026.92.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Vencimiento</emph> es la fecha en cuando la seguridad ha cumplido el periodo especificado (vences)."
+
+#: 04060118.xhp#par_id3149012.93.help.text
+msgctxt "04060118.xhp#par_id3149012.93.help.text"
+msgid "<emph>Issue</emph> is the date of issue of the security."
+msgstr "<emph>Emisión</emph> es la fecha de emisión del seguro. "
+
+#: 04060118.xhp#par_id3148725.94.help.text
+msgid "<emph>FirstCoupon</emph> is the first interest period of the security."
+msgstr "<emph>PrimerInterés </emph> es la fecha del primer interés del seguro. "
+
+#: 04060118.xhp#par_id3150465.95.help.text
+msgctxt "04060118.xhp#par_id3150465.95.help.text"
+msgid "<emph>Rate</emph> is the annual rate of interest."
+msgstr "<emph>Tasa</emph> es la tasa anual de interés."
+
+#: 04060118.xhp#par_id3146940.96.help.text
+msgctxt "04060118.xhp#par_id3146940.96.help.text"
+msgid "<emph>Price</emph> is the price of the security."
+msgstr "<emph>Precio</emph> es el precio de la seguridad."
+
+#: 04060118.xhp#par_id3149893.97.help.text
+msgctxt "04060118.xhp#par_id3149893.97.help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr "<emph>Redención</emph> es el valor de redención del seguro por cada 100 unidades monetarias de valor nominal."
+
+#: 04060118.xhp#par_id3148888.98.help.text
+msgctxt "04060118.xhp#par_id3148888.98.help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frecuencia</emph> es el número de pagos de interés por año (1, 2 o 4)."
+
+#: 04060118.xhp#bm_id3153933.help.text
+msgid "<bookmark_value>ODDLPRICE function</bookmark_value>"
+msgstr "<bookmark_value>PRECIO.PER.IRREGULAR.2</bookmark_value>"
+
+#: 04060118.xhp#hd_id3153933.103.help.text
+msgid "ODDLPRICE"
+msgstr "PRECIO.PER.IRREGULAR.2"
+
+#: 04060118.xhp#par_id3145145.104.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_ODDLPRICE\">Calculates the price per 100 currency units par value of a security, if the last interest date falls irregularly.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDLPRICE\">Calcula el precio de 100 unidades monetarias por valor de un título, si la fecha del último interés es irregular.</ahelp>"
+
+#: 04060118.xhp#hd_id3152784.105.help.text
+msgctxt "04060118.xhp#hd_id3152784.105.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060118.xhp#par_id3155262.106.help.text
+msgid "ODDLPRICE(Settlement; Maturity; LastInterest; Rate; Yield; Redemption; Frequency; Basis)"
+msgstr "PRECIO.PER.IRREGULAR.2(Liquidación; Vencimiento; ÚltimoInterés; Tasa; Rendimiento; Redención; Frecuencia; Base)"
+
+#: 04060118.xhp#par_id3149689.107.help.text
+msgctxt "04060118.xhp#par_id3149689.107.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Liquidación</emph> es la fecha de compra de la seguridad."
+
+#: 04060118.xhp#par_id3148753.108.help.text
+msgctxt "04060118.xhp#par_id3148753.108.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Vencimiento</emph> es la fecha en cuando la seguridad ha cumplido el periodo especificado (vences)."
+
+#: 04060118.xhp#par_id3150861.109.help.text
+msgctxt "04060118.xhp#par_id3150861.109.help.text"
+msgid "<emph>LastInterest</emph> is the last interest date of the security."
+msgstr "<emph>PrimerInterés </emph> es la fecha del primer interés del seguro. "
+
+#: 04060118.xhp#par_id3155831.110.help.text
+msgctxt "04060118.xhp#par_id3155831.110.help.text"
+msgid "<emph>Rate</emph> is the annual rate of interest."
+msgstr "<emph>Tasa</emph> es la tasa anual de interés."
+
+#: 04060118.xhp#par_id3153328.111.help.text
+msgctxt "04060118.xhp#par_id3153328.111.help.text"
+msgid "<emph>Yield</emph> is the annual yield of the security."
+msgstr "<emph>Rendimeinto</emph> es la ganancia anual de la seguridad."
+
+#: 04060118.xhp#par_id3149186.112.help.text
+msgctxt "04060118.xhp#par_id3149186.112.help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr "<emph>Redención</emph> es el valor de redención del seguro por cada 100 unidades monetarias de valor nominal."
+
+#: 04060118.xhp#par_id3149726.113.help.text
+msgctxt "04060118.xhp#par_id3149726.113.help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frecuencia</emph> es el número de pagos de interés por año (1, 2 o 4)."
+
+#: 04060118.xhp#hd_id3153111.114.help.text
+msgctxt "04060118.xhp#hd_id3153111.114.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060118.xhp#par_id3152999.115.help.text
+msgid "Settlement date: February 7 1999, maturity date: June 15 1999, last interest: October 15 1998. Interest rate: 3.75 per cent, yield: 4.05 per cent, redemption value: 100 currency units, frequency of payments: half-yearly = 2, basis: = 0"
+msgstr "Fecha de liquidación: 7 de febrero de 1999, fecha de vencimiento: 15 de junio de 1999, último plazo de interés: 15 de octubre de 1998. Tasa de interés: 3,75 por ciento, rédito: 4,05 por ciento, valor de devolución: 100 unidades de moneda, frecuencia de los pagos: cada medio año = 2, base: = 0"
+
+#: 04060118.xhp#par_id3148567.116.help.text
+msgid "The price per 100 currency units per value of a security, which has an irregular last interest date, is calculated as follows:"
+msgstr "El precio por 100 monedas por el valor del seguro, cuando tiene una última fecha de interés irregular, se calcula como sigue:"
+
+#: 04060118.xhp#par_id3150332.117.help.text
+msgid "=ODDLPRICE(\"1999-02-07\";\"1999-06-15\";\"1998-10-15\"; 0.0375; 0.0405;100;2;0) returns 99.87829."
+msgstr "=PRECIO.PER.IRREGULAR.1(\"1999-02-07\";\"1999-06-15\";\"1998-10-15\"; 0.0375; 0.0405;100;2;0) devuelve 99.87829."
+
+#: 04060118.xhp#bm_id3153564.help.text
+msgid "<bookmark_value>ODDLYIELD function</bookmark_value>"
+msgstr "<bookmark_value>RENDTO.PER.IRREGULAR.2</bookmark_value>"
+
+#: 04060118.xhp#hd_id3153564.118.help.text
+msgid "ODDLYIELD"
+msgstr "RENDTO.PER.IRREGULAR.2"
+
+#: 04060118.xhp#par_id3158002.119.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_ODDLYIELD\">Calculates the yield of a security if the last interest date falls irregularly.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDLYIELD\">Calcula el rendimiento de un título si la fecha del último interés es irregular.</ahelp>"
+
+#: 04060118.xhp#hd_id3147366.120.help.text
+msgctxt "04060118.xhp#hd_id3147366.120.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060118.xhp#par_id3150018.121.help.text
+msgid "ODDLYIELD(Settlement; Maturity; LastInterest; Rate; Price; Redemption; Frequency; Basis)"
+msgstr "RENDTO.PER.IRREGULAR.1(Liquidación; Vencimiento; ÚltimoInteres; Tasa; Precio; Redención; Frecuencia; Base)"
+
+#: 04060118.xhp#par_id3159132.122.help.text
+msgctxt "04060118.xhp#par_id3159132.122.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Liquidación</emph> es la fecha de compra de la seguridad."
+
+#: 04060118.xhp#par_id3150134.123.help.text
+msgctxt "04060118.xhp#par_id3150134.123.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Vencimiento</emph> es la fecha en cuando la seguridad ha cumplido el periodo especificado (vences)."
+
+#: 04060118.xhp#par_id3145245.124.help.text
+msgctxt "04060118.xhp#par_id3145245.124.help.text"
+msgid "<emph>LastInterest</emph> is the last interest date of the security."
+msgstr "<emph>ÚltimoInterés </emph> es la fecha del último interés de la seguridad. "
+
+#: 04060118.xhp#par_id3151014.125.help.text
+msgctxt "04060118.xhp#par_id3151014.125.help.text"
+msgid "<emph>Rate</emph> is the annual rate of interest."
+msgstr "<emph>Tasa</emph> es la tasa anual de interés."
+
+#: 04060118.xhp#par_id3149003.126.help.text
+msgctxt "04060118.xhp#par_id3149003.126.help.text"
+msgid "<emph>Price</emph> is the price of the security."
+msgstr "<emph>Precio</emph> es el precio de la seguridad."
+
+#: 04060118.xhp#par_id3148880.127.help.text
+msgctxt "04060118.xhp#par_id3148880.127.help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr "<emph>Redención</emph> es el valor de redención del seguro por cada 100 unidades monetarias de valor nominal."
+
+#: 04060118.xhp#par_id3155622.128.help.text
+msgctxt "04060118.xhp#par_id3155622.128.help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frecuencia</emph> es el número de pagos de interés por año (1, 2 o 4)."
+
+#: 04060118.xhp#hd_id3145303.129.help.text
+msgctxt "04060118.xhp#hd_id3145303.129.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060118.xhp#par_id3145350.130.help.text
+msgid "Settlement date: April 20 1999, maturity date: June 15 1999, last interest: October 15 1998. Interest rate: 3.75 per cent, price: 99.875 currency units, redemption value: 100 currency units, frequency of payments: half-yearly = 2, basis: = 0"
+msgstr "Fecha de liquidación: 20 de abril de 1999, fecha de vencimiento: 15 de junio de 1999, último plazo de intereses: 15 de octubre de 1998. Tasa de interés: 3,75 por ciento, cotización: 99,875 unidades monetarias, valor de devolución: 100 unidades monetarias, frecuencia de los pagos: semestral = 2, base: = 0"
+
+#: 04060118.xhp#par_id3157990.131.help.text
+msgid "The yield of the security, that has an irregular last interest date, is calculated as follows:"
+msgstr "El rédito del valor que tiene un último plazo de interés irregular se calcula de esta forma:"
+
+#: 04060118.xhp#par_id3150572.132.help.text
+msgid "=ODDLYIELD(\"1999-04-20\";\"1999-06-15\"; \"1998-10-15\"; 0.0375; 99.875; 100;2;0) returns 0.044873 or 4.4873%."
+msgstr "=RENDTO.PER.IRREGULAR.1(\"1999-04-20\";\"1999-06-15\"; \"1998-10-15\"; 0,0375; 99,875; 100;2;0) devuelve 0,044873 o 4,4873%."
+
+#: 04060118.xhp#bm_id3148768.help.text
+msgid "<bookmark_value>calculating;variable declining depreciations</bookmark_value><bookmark_value>depreciations;variable declining</bookmark_value><bookmark_value>VDB function</bookmark_value>"
+msgstr "<bookmark_value>calcular;depreciación variable decreciente</bookmark_value><bookmark_value>depreciación;variable decreciente</bookmark_value><bookmark_value>DVS</bookmark_value>"
+
+#: 04060118.xhp#hd_id3148768.222.help.text
+msgid "VDB"
+msgstr "DVS"
+
+#: 04060118.xhp#par_id3154636.223.help.text
+msgid "<ahelp hid=\"HID_FUNC_VDB\">Returns the depreciation of an asset for a specified or partial period using a variable declining balance method.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VDB\">Devuelve la depreciación de un activo en un período especifico o parcial según el método geométrico decreciente.</ahelp>"
+
+#: 04060118.xhp#hd_id3155519.224.help.text
+msgctxt "04060118.xhp#hd_id3155519.224.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060118.xhp#par_id3149025.225.help.text
+msgid "VDB(Cost; Salvage; Life; S; End; Factor; Type)"
+msgstr "VDB(Costo; Valor de salvamento; Vida; S; Fin; Factor; Tipo)"
+
+#: 04060118.xhp#par_id3150692.226.help.text
+msgid "<emph>Cost</emph> is the initial value of an asset."
+msgstr "<emph>Costo</emph> es el valor inicial de un activo."
+
+#: 04060118.xhp#par_id3155369.227.help.text
+msgctxt "04060118.xhp#par_id3155369.227.help.text"
+msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
+msgstr "<emph>Valor de salvamento</emph> es el valor residual del bien tras la amortización."
+
+#: 04060118.xhp#par_id3154954.228.help.text
+msgid "<emph>Life</emph> is the depreciation duration of the asset."
+msgstr "<emph>Vida</emph> es la duración de la depreciación de activos."
+
+#: 04060118.xhp#par_id3152817.229.help.text
+msgid "<emph>S</emph> is the start of the depreciation. A must be entered in the same date unit as the duration."
+msgstr "<emph>S</emph> es el comienzo de la depreciación. Deberá consignarse en la misma unidad de fecha como la duración."
+
+#: 04060118.xhp#par_id3153221.230.help.text
+msgid "<emph>End</emph> is the end of the depreciation."
+msgstr "<emph>Final</emph> es la tasa final de depreciación."
+
+#: 04060118.xhp#par_id3147536.231.help.text
+msgid "<emph>Factor</emph> (optional) is the depreciation factor. Factor = 2 is double rate depreciation."
+msgstr "<emph>Factor</emph> (opcional) es el factor de depreciación. Factor = 2 es el doble de la tasa de depreciación."
+
+#: 04060118.xhp#par_id3154865.232.help.text
+msgid "<emph>Type </emph>is an optional parameter. Type = 1 means a switch to linear depreciation. In Type = 0 no switch is made."
+msgstr "<emph>Tipo </emph> es un parámetro opcional. Tipo = 1 significa un cambio a depreciación lineal. En Tipo = 0 no se efectúa el cambio."
+
+#: 04060118.xhp#par_idN10A0D.help.text
+msgctxt "04060118.xhp#par_idN10A0D.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060118.xhp#hd_id3148429.233.help.text
+msgctxt "04060118.xhp#hd_id3148429.233.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060118.xhp#par_id3153927.234.help.text
+msgid "What is the declining-balance double-rate depreciation for a period if the initial cost is 35,000 currency units and the value at the end of the depreciation is 7,500 currency units. The depreciation period is 3 years. The depreciation from the 10th to the 20th period is calculated."
+msgstr "¿A cuánto asciende la amortización aritméticamente degresiva en plazos dobles para un espacio de tiempo periódico determinado si el valor de adquisición es 35000 unidades monetarias y el valor residual, 7500 unidades monetarias? El tiempo de uso es de tres años. Se calcula la amortización del período 10 al 20."
+
+#: 04060118.xhp#par_id3155991.235.help.text
+msgid "<item type=\"input\">=VDB(35000;7500;36;10;20;2)</item> = 8603.80 currency units. The depreciation during the period between the 10th and the 20th period is 8,603.80 currency units."
+msgstr "<item type=\"input\">=DVS(35000;7500;36;10;20;2)</item> = 8603.80 unidades de moneda. La depreciación durante el período comprendido entre el 10ª y el 20ª período es de 8603,80 unidades de moneda."
+
+#: 04060118.xhp#bm_id3147485.help.text
+msgid "<bookmark_value>calculating;internal rates of return, irregular payments</bookmark_value><bookmark_value>internal rates of return;irregular payments</bookmark_value><bookmark_value>XIRR function</bookmark_value>"
+msgstr "<bookmark_value>calcular;interés interno, pagos irregulares</bookmark_value><bookmark_value>interés interno, pagos irregulares</bookmark_value><bookmark_value>TIR.NO.PER</bookmark_value>"
+
+#: 04060118.xhp#hd_id3147485.193.help.text
+msgid "XIRR"
+msgstr "TIR.NO.PER"
+
+#: 04060118.xhp#par_id3145614.194.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_XIRR\">Calculates the internal rate of return for a list of payments which take place on different dates.</ahelp> The calculation is based on a 365 days per year basis, ignoring leap years."
+msgstr "<ahelp hid=\"HID_AAI_FUNC_XIRR\">Calcula el interés interno de una serie de pagos no periódicos.</ahelp> El cálculo se basa en un esquema de 365 días al año, y omite los años bisiestos."
+
+#: 04060118.xhp#par_idN10E62.help.text
+msgid "If the payments take place at regular intervals, use the IRR function."
+msgstr "Si los pagos se efectúan a intervalos regulares, utilice la función TIR."
+
+#: 04060118.xhp#hd_id3146149.195.help.text
+msgctxt "04060118.xhp#hd_id3146149.195.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060118.xhp#par_id3149826.196.help.text
+msgid "XIRR(Values; Dates; Guess)"
+msgstr "TIR.NO.PER(Valores; Datos; Valor_estimado)"
+
+#: 04060118.xhp#par_id3163821.197.help.text
+msgid "<emph>Values</emph> and <emph>Dates</emph> refer to a series of payments and the series of associated date values. The first pair of dates defines the start of the payment plan. All other date values must be later, but need not be in any order. The series of values must contain at least one negative and one positive value (receipts and deposits)."
+msgstr "<emph>Valores</emph> y <emph>Datos</emph> se refieren a una serie de pagos y la serie de valores de fecha asociados. El primer par de fechas define el inicio del plan de pago. Todos los demás valores de fecha deben ser posteriores, pero no necesitan estar en un orden. La serie de valores debe contener al menos un negativo y un valor positivo (ingresos y depósitos)."
+
+#: 04060118.xhp#par_id3149708.198.help.text
+msgid "<emph>Guess</emph> (optional) is a guess that can be input for the internal rate of return. The default is 10%."
+msgstr "<emph>Valor estimado</emph> (opcional) es un valor estimado que puede ser insumo para la tasa interna de retorno. El valor predeterminado es 10%."
+
+#: 04060118.xhp#hd_id3145085.199.help.text
+msgctxt "04060118.xhp#hd_id3145085.199.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060118.xhp#par_id3149273.200.help.text
+msgid "Calculation of the internal rate of return for the following five payments:"
+msgstr "Calula el tipo de interés interno para los siguientes cinco pagos:"
+
+#: 04060118.xhp#par_id3155838.305.help.text
+msgctxt "04060118.xhp#par_id3155838.305.help.text"
+msgid "A"
+msgstr "<emph>A</emph>"
+
+#: 04060118.xhp#par_id3152934.306.help.text
+msgctxt "04060118.xhp#par_id3152934.306.help.text"
+msgid "B"
+msgstr "<emph>B</emph>"
+
+#: 04060118.xhp#par_id3154638.307.help.text
+msgctxt "04060118.xhp#par_id3154638.307.help.text"
+msgid "C"
+msgstr "<emph>C</emph>"
+
+#: 04060118.xhp#par_id3147083.308.help.text
+msgctxt "04060118.xhp#par_id3147083.308.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060118.xhp#par_id3151187.309.help.text
+msgid "2001-01-01"
+msgstr "2001-01-01"
+
+#: 04060118.xhp#par_id3145212.201.help.text
+msgid "-<item type=\"input\">10000</item>"
+msgstr "<item type=\"input\">10000</item>"
+
+#: 04060118.xhp#par_id3146856.202.help.text
+msgid "<item type=\"input\">Received</item>"
+msgstr "<item type=\"input\">Recibido</item> "
+
+#: 04060118.xhp#par_id3153277.310.help.text
+msgctxt "04060118.xhp#par_id3153277.310.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060118.xhp#par_id3154052.203.help.text
+msgid "2001-01-02"
+msgstr "2001-01-02"
+
+#: 04060118.xhp#par_id3151297.204.help.text
+msgid "<item type=\"input\">2000</item>"
+msgstr "<item type=\"input\">2000</item>"
+
+#: 04060118.xhp#par_id3149985.205.help.text
+msgid "<item type=\"input\">Deposited</item>"
+msgstr "<item type=\"input\">Depositado</item>"
+
+#: 04060118.xhp#par_id3154744.311.help.text
+msgctxt "04060118.xhp#par_id3154744.311.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060118.xhp#par_id3153151.206.help.text
+msgid "2001-03-15"
+msgstr "2001-03-15"
+
+#: 04060118.xhp#par_id3145657.207.help.text
+msgid "2500"
+msgstr "2500"
+
+#: 04060118.xhp#par_id3155101.312.help.text
+msgctxt "04060118.xhp#par_id3155101.312.help.text"
+msgid "4"
+msgstr "4"
+
+#: 04060118.xhp#par_id3146894.208.help.text
+msgid "2001-05-12"
+msgstr "2001-05-12"
+
+#: 04060118.xhp#par_id3143231.209.help.text
+msgid "5000"
+msgstr "5000"
+
+#: 04060118.xhp#par_id3156012.313.help.text
+msgctxt "04060118.xhp#par_id3156012.313.help.text"
+msgid "5"
+msgstr "5"
+
+#: 04060118.xhp#par_id3149758.210.help.text
+msgid "2001-08-10"
+msgstr "2001-08-10"
+
+#: 04060118.xhp#par_id3147495.211.help.text
+msgid "1000"
+msgstr "1000"
+
+#: 04060118.xhp#par_id3152793.212.help.text
+msgid "=XIRR(B1:B5; A1:A5; 0.1) returns 0.1828."
+msgstr "=TIR.NO.PER(B1:B5; A1:A5; 0.1) devuelve 0,1828."
+
+#: 04060118.xhp#bm_id3149198.help.text
+msgid "<bookmark_value>XNPV function</bookmark_value>"
+msgstr "<bookmark_value>VNA.NO.PER</bookmark_value>"
+
+#: 04060118.xhp#hd_id3149198.213.help.text
+msgid "XNPV"
+msgstr "VNA.NO.PER"
+
+#: 04060118.xhp#par_id3153904.214.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_XNPV\">Calculates the capital value (net present value)for a list of payments which take place on different dates.</ahelp> The calculation is based on a 365 days per year basis, ignoring leap years."
+msgstr "<ahelp hid=\"HID_AAI_FUNC_XNPV\">Calcula el valor efectivo neto (valor del capital) de una serie de pagos no periódicos.</ahelp> El cálculo se basa en un esquema de 365 días al año, y omite los años bisiestos."
+
+#: 04060118.xhp#par_idN11138.help.text
+msgid "If the payments take place at regular intervals, use the NPV function."
+msgstr "Si los pagos se efectúan a intervalos regulares, utilice la función VNA."
+
+#: 04060118.xhp#hd_id3155323.215.help.text
+msgctxt "04060118.xhp#hd_id3155323.215.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060118.xhp#par_id3150117.216.help.text
+msgid "XNPV(Rate; Values; Dates)"
+msgstr "VNA.NO.PER(Tasa; Valores; Datos)"
+
+#: 04060118.xhp#par_id3153100.217.help.text
+msgid "<emph>Rate</emph> is the internal rate of return for the payments."
+msgstr "<emph>Tasa</emph> es la tasa interna de retorno para los pagos."
+
+#: 04060118.xhp#par_id3155395.218.help.text
+msgid "<emph>Values</emph> and <emph>Dates</emph> refer to a series of payments and the series of associated date values. The first pair of dates defines the start of the payment plan. All other date values must be later, but need not be in any order. The series of values must contain at least one negative and one positive value (receipts and deposits)"
+msgstr "<emph>Valores</emph> y <emph>Datos</emph> se refieren a una serie de pagos y la serie de valores de fecha asociados. El primer par de fechas define el inicio del plan de pago. Todos los demás valores de fecha deben ser posteriores, pero no necesitan estar en un orden. La serie de valores debe contener al menos un negativo y un valor positivo (ingresos y depósitos)."
+
+#: 04060118.xhp#hd_id3148832.219.help.text
+msgctxt "04060118.xhp#hd_id3148832.219.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060118.xhp#par_id3150525.220.help.text
+msgid "Calculation of the net present value for the above-mentioned five payments for a notional internal rate of return of 6%."
+msgstr "Calcula el valor del capital para los cinco pagos nombrados más arriba con un interés interno del 6%:"
+
+#: 04060118.xhp#par_id3149910.221.help.text
+msgid "<item type=\"input\">=XNPV(0.06;B1:B5;A1:A5)</item> returns 323.02."
+msgstr "<item type=\"input\">=VNA.NO.PER(0.06;B1:B5;A1:A5)</item> devuelve 323.02."
+
+#: 04060118.xhp#bm_id3148822.help.text
+msgid "<bookmark_value>calculating;rates of return</bookmark_value><bookmark_value>RRI function</bookmark_value>"
+msgstr "<bookmark_value>calcular;interés de rendimiento</bookmark_value><bookmark_value>INT.RENDIMIENTO</bookmark_value>"
+
+#: 04060118.xhp#hd_id3148822.237.help.text
+msgid "RRI"
+msgstr "INT.RENDIMIENTO"
+
+#: 04060118.xhp#par_id3154293.238.help.text
+msgid "<ahelp hid=\"HID_FUNC_ZGZ\">Calculates the interest rate resulting from the profit (return) of an investment.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZGZ\">Calcula el tipo de interés que resulta del beneficio (rendimiento) generado por una inversión.</ahelp>"
+
+#: 04060118.xhp#hd_id3148444.239.help.text
+msgctxt "04060118.xhp#hd_id3148444.239.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060118.xhp#par_id3148804.240.help.text
+msgid "RRI(P; PV; FV)"
+msgstr "INT.RENDIMIENTO(P; VA; VF)"
+
+#: 04060118.xhp#par_id3154901.241.help.text
+msgid "<emph>P</emph> is the number of periods needed for calculating the interest rate."
+msgstr "<emph>P</emph> es el número de períodos necesarios para el cálculo de la tasa de interés."
+
+#: 04060118.xhp#par_id3159149.242.help.text
+msgctxt "04060118.xhp#par_id3159149.242.help.text"
+msgid "<emph>PV</emph> is the present (current) value. The cash value is the deposit of cash or the current cash value of an allowance in kind. As a deposit value a positive value must be entered; the deposit must not be 0 or <0."
+msgstr "<emph>VA</emph> es el valor actual. El valor en efectivo es el depósito de efectivo o el valor en efectivo actual de un subsidio en beneficio. Como un valor de depósito un valor positivo debe ser introducido; el depósito no debe ser 0 o <0. "
+
+#: 04060118.xhp#par_id3149771.243.help.text
+msgid "<emph>FV</emph> determines what is desired as the cash value of the deposit."
+msgstr "<emph>VF</emph> determina lo que se desea como el valor en efectivo del depósito."
+
+#: 04060118.xhp#hd_id3148941.244.help.text
+msgctxt "04060118.xhp#hd_id3148941.244.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060118.xhp#par_id3154212.245.help.text
+msgid "For four periods (years) and a cash value of 7,500 currency units, the interest rate of the return is to be calculated if the future value is 10,000 currency units."
+msgstr "Para cuatro períodos (años) y un valor efectivo de 7.500 unidades monetarias, la tasa de interés del rendimiento se calculará si el valor futuro es de 10.000 unidades monetarias."
+
+#: 04060118.xhp#par_id3150775.246.help.text
+msgid "<item type=\"input\">=RRI(4;7500;10000)</item> = 7.46 %"
+msgstr "<item type=\"input\">=INT.RENDIMIENTO(4;7500;10000)</item> = 7.46 %"
+
+#: 04060118.xhp#par_id3145413.247.help.text
+msgid "The interest rate must be 7.46 % so that 7,500 currency units will become 10,000 currency units."
+msgstr "El interés debe ascender al 7,46 % para que las 7500 unidades monetarias se conviertan en 10000."
+
+#: 04060118.xhp#bm_id3154267.help.text
+msgid "<bookmark_value>calculating;constant interest rates</bookmark_value><bookmark_value>constant interest rates</bookmark_value><bookmark_value>RATE function</bookmark_value>"
+msgstr "<bookmark_value>calcular;interés constante</bookmark_value><bookmark_value>interés constante</bookmark_value><bookmark_value>TASA</bookmark_value>"
+
+#: 04060118.xhp#hd_id3154267.249.help.text
+msgid "RATE"
+msgstr "TASA"
+
+#: 04060118.xhp#par_id3151052.250.help.text
+msgid "<ahelp hid=\"HID_FUNC_ZINS\">Returns the constant interest rate per period of an annuity.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZINS\">Calcula el tipo de interés constante de una anualidad.</ahelp>"
+
+#: 04060118.xhp#hd_id3154272.251.help.text
+msgctxt "04060118.xhp#hd_id3154272.251.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060118.xhp#par_id3158423.252.help.text
+msgid "RATE(NPer; Pmt; PV; FV; Type; Guess)"
+msgstr "TASA(NPer; Pago; VA; VF; Tipo; Valor estimado)"
+
+#: 04060118.xhp#par_id3148910.253.help.text
+msgid "<emph>NPer</emph> is the total number of periods, during which payments are made (payment period)."
+msgstr "<emph>NPer</emph> es el número total de períodos, durante los cuales se efectúan los pagos (período de pago)."
+
+#: 04060118.xhp#par_id3148925.254.help.text
+msgid "<emph>Pmt</emph> is the constant payment (annuity) paid during each period."
+msgstr "<emph>Pago</emph> es el pago constante (anualidad) cancelado durante cada período."
+
+#: 04060118.xhp#par_id3149160.255.help.text
+msgid "<emph>PV</emph> is the cash value in the sequence of payments."
+msgstr "<emph>VA</emph> es el valor efectivo en la serie de pagos."
+
+#: 04060118.xhp#par_id3166456.256.help.text
+msgid "<emph>FV</emph> (optional) is the future value, which is reached at the end of the periodic payments."
+msgstr "<emph>VF</emph> (opcional) define el valor futuro, una vez finalizados los períodos de pago."
+
+#: 04060118.xhp#par_id3153243.257.help.text
+msgid "<emph>Type</emph> (optional) is the due date of the periodic payment, either at the beginning or at the end of a period."
+msgstr "<emph>Tipo</emph> (opcional) es la fecha de vencimiento de los periódicos de pago, ya sea al comienzo o al final de un período."
+
+#: 04060118.xhp#par_id3146949.258.help.text
+msgid "<emph>Guess</emph> (optional) determines the estimated value of the interest with iterative calculation."
+msgstr "<emph>Valor estimado</emph> (opcional) determina el valor estimado del intereses del cálculo interactivo."
+
+#: 04060118.xhp#par_idN10E2A.help.text
+msgctxt "04060118.xhp#par_idN10E2A.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060118.xhp#hd_id3149791.259.help.text
+msgctxt "04060118.xhp#hd_id3149791.259.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060118.xhp#par_id3150706.260.help.text
+msgid "What is the constant interest rate for a payment period of 3 periods if 10 currency units are paid regularly and the present cash value is 900 currency units."
+msgstr "¿Cuál es el tipo de interés constante para un espacio de tiempo de 3 períodos si se pagan regularmente 10 unidades monetarias y el valor efectivo actual es de 900 unidades monetarias?"
+
+#: 04060118.xhp#par_id3155586.261.help.text
+msgid "<item type=\"input\">=RATE(3;10;900)</item> = -121% The interest rate is therefore 121%."
+msgstr "<item type=\"input\">=TASA(3;10;900)</item> = -121% El tipo de interés es 121%."
+
+#: 04060118.xhp#bm_id3149106.help.text
+msgid "<bookmark_value>INTRATE function</bookmark_value>"
+msgstr "<bookmark_value>TASA.INT</bookmark_value>"
+
+#: 04060118.xhp#hd_id3149106.60.help.text
+msgid "INTRATE"
+msgstr "TASA.INT"
+
+#: 04060118.xhp#par_id3149918.61.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_INTRATE\">Calculates the annual interest rate that results when a security (or other item) is purchased at an investment value and sold at a redemption value. No interest is paid.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_INTRATE\">Calcula la tasa de interés anual que resulta cuando se compra un título (u otro artículo) a un valor de inversión y se vende a un valor de amortización. No se paga interés.</ahelp>"
+
+#: 04060118.xhp#hd_id3149974.62.help.text
+msgctxt "04060118.xhp#hd_id3149974.62.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060118.xhp#par_id3149800.63.help.text
+msgid "INTRATE(Settlement; Maturity; Investment; Redemption; Basis)"
+msgstr "TASA.INT(Liquidación; Vencimiento; Inversiones; Redención; Base)"
+
+#: 04060118.xhp#par_id3148618.64.help.text
+msgctxt "04060118.xhp#par_id3148618.64.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Liquidación</emph> es la fecha de compra de la seguridad."
+
+#: 04060118.xhp#par_id3148988.65.help.text
+msgid "<emph>Maturity</emph> is the date on which the security is sold."
+msgstr "<emph>Vencimiento</emph> es la fecha cuando el seguro vence."
+
+#: 04060118.xhp#par_id3154604.66.help.text
+msgid "<emph>Investment</emph> is the purchase price."
+msgstr "<emph>Inversión</emph> es el precio de compra."
+
+#: 04060118.xhp#par_id3154337.67.help.text
+msgid "<emph>Redemption</emph> is the selling price."
+msgstr "<emph>Redención</emph> es el precio de venta."
+
+#: 04060118.xhp#hd_id3145380.68.help.text
+msgctxt "04060118.xhp#hd_id3145380.68.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060118.xhp#par_id3149426.69.help.text
+msgid "A painting is bought on 1990-01-15 for 1 million and sold on 2002-05-05 for 2 million. The basis is daily balance calculation (basis = 3). What is the average annual level of interest?"
+msgstr "Se compra un cuadro el 15.01.1990 por 1 millón y se vende el 05.05.2002 por 2 millones. La base es diariamente calculada (Base = 3). ¿A cuánto asciende la tasa de interés anual?"
+
+#: 04060118.xhp#par_id3151125.70.help.text
+msgid "=INTRATE(\"1990-01-15\"; \"2002-05-05\"; 1000000; 2000000; 3) returns 8.12%."
+msgstr "=TASA.INT(\"1990-01-15\"; \"2002-05-05\"; 1000000; 2000000; 3) devuelve 8,12%."
+
+#: 04060118.xhp#bm_id3148654.help.text
+msgid "<bookmark_value>COUPNCD function</bookmark_value>"
+msgstr "<bookmark_value>CUPON.FECHA.L2</bookmark_value>"
+
+#: 04060118.xhp#hd_id3148654.163.help.text
+msgid "COUPNCD"
+msgstr "CUPON.FECHA.L2"
+
+#: 04060118.xhp#par_id3149927.164.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPNCD\">Returns the date of the first interest date after the settlement date. Format the result as a date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPNCD\">Devuelve la fecha del primer interés después de la fecha de liquidación. Asigne al resultado formato de fecha.</ahelp>"
+
+#: 04060118.xhp#hd_id3153317.165.help.text
+msgctxt "04060118.xhp#hd_id3153317.165.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060118.xhp#par_id3150423.166.help.text
+msgid "COUPNCD(Settlement; Maturity; Frequency; Basis)"
+msgstr "CUPON.FECHA.L2(Liquidación; Vencimiento; Frecuencia; Base)"
+
+#: 04060118.xhp#par_id3150628.167.help.text
+msgctxt "04060118.xhp#par_id3150628.167.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Liquidación</emph> es la fecha de compra de la seguridad."
+
+#: 04060118.xhp#par_id3153536.168.help.text
+msgctxt "04060118.xhp#par_id3153536.168.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Vencimiento</emph> es la fecha en cuando la seguridad ha cumplido el periodo especificado (vences)."
+
+#: 04060118.xhp#par_id3145313.169.help.text
+msgctxt "04060118.xhp#par_id3145313.169.help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frecuencia</emph> es el número de pagos de interés por año (1, 2 o 4)."
+
+#: 04060118.xhp#hd_id3155424.170.help.text
+msgctxt "04060118.xhp#hd_id3155424.170.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060118.xhp#par_id3154794.171.help.text
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) when is the next interest date?"
+msgstr "Un seguro es comprado el 25.1.2001; la fecha de vencimiento es el 15.11.2001. Los intereses se pagan cada medio año (frecuencia es 2). Con un cálculo diario (Base 3), ¿cuándo es el próximo plazo?"
+
+#: 04060118.xhp#par_id3159251.172.help.text
+msgid "=COUPNCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2001-05-15."
+msgstr "=CUPON.FECHA.L2(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2001-05-15."
+
+#: 04060118.xhp#bm_id3143281.help.text
+msgid "<bookmark_value>COUPDAYS function</bookmark_value>"
+msgstr "<bookmark_value>CUPON.DIAS</bookmark_value>"
+
+#: 04060118.xhp#hd_id3143281.143.help.text
+msgid "COUPDAYS"
+msgstr "CUPON.DIAS"
+
+#: 04060118.xhp#par_id3149488.144.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYS\">Returns the number of days in the current interest period in which the settlement date falls.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPDAYS\">Devuelve el número de días del período actual de interés que incluye la fecha de liquidación.</ahelp>"
+
+#: 04060118.xhp#hd_id3148685.145.help.text
+msgctxt "04060118.xhp#hd_id3148685.145.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060118.xhp#par_id3149585.146.help.text
+msgid "COUPDAYS(Settlement; Maturity; Frequency; Basis)"
+msgstr "CUPON.DIAS(Liquidación; Vencimiento; Frecuencia; Base)"
+
+#: 04060118.xhp#par_id3152767.147.help.text
+msgctxt "04060118.xhp#par_id3152767.147.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Liquidación</emph> es la fecha de compra de la seguridad."
+
+#: 04060118.xhp#par_id3151250.148.help.text
+msgctxt "04060118.xhp#par_id3151250.148.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Vencimiento</emph> es la fecha en cuando la seguridad ha cumplido el periodo especificado (vences)."
+
+#: 04060118.xhp#par_id3146126.149.help.text
+msgctxt "04060118.xhp#par_id3146126.149.help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frecuencia</emph> es el número de pagos de interés por año (1, 2 o 4)."
+
+#: 04060118.xhp#hd_id3153705.150.help.text
+msgctxt "04060118.xhp#hd_id3153705.150.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060118.xhp#par_id3147530.151.help.text
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days are there in the interest period in which the settlement date falls?"
+msgstr "Un seguro es comprado en 25.1.2001; la fecha de vencimiento es el 15.11.2001. Los intereses se pagarán cada medio año (frecuencia es 2). Con un cálculo diario (base 3), ¿cuántos días hay en el período de interés en el que caiga la fecha de liquidación?"
+
+#: 04060118.xhp#par_id3156338.152.help.text
+msgid "=COUPDAYS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 181."
+msgstr "=CUPON.DIAS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) devuelve 181."
+
+#: 04060118.xhp#bm_id3154832.help.text
+msgid "<bookmark_value>COUPDAYSNC function</bookmark_value>"
+msgstr "<bookmark_value>CUPON.DIAS.L2</bookmark_value>"
+
+#: 04060118.xhp#hd_id3154832.153.help.text
+msgid "COUPDAYSNC"
+msgstr "CUPON.DIAS.L2"
+
+#: 04060118.xhp#par_id3147100.154.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYSNC\">Returns the number of days from the settlement date until the next interest date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPDAYSNC\">Devuelve el número de días desde la fecha de liquidación hasta la siguiente fecha de interés.</ahelp>"
+
+#: 04060118.xhp#hd_id3151312.155.help.text
+msgctxt "04060118.xhp#hd_id3151312.155.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060118.xhp#par_id3155121.156.help.text
+msgid "COUPDAYSNC(Settlement; Maturity; Frequency; Basis)"
+msgstr "CUPON.DIAS.L2(Liquidación; Vencimiento; Frecuencia; Base)"
+
+#: 04060118.xhp#par_id3158440.157.help.text
+msgctxt "04060118.xhp#par_id3158440.157.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Liquidación</emph> es la fecha de compra de la seguridad."
+
+#: 04060118.xhp#par_id3146075.158.help.text
+msgctxt "04060118.xhp#par_id3146075.158.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Vencimiento</emph> es la fecha en cuando la seguridad ha cumplido el periodo especificado (vences)."
+
+#: 04060118.xhp#par_id3154620.159.help.text
+msgid "<emph>Frequency </emph>is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frecuencia</emph> es el número de pagos de interés por año (1, 2 o 4)."
+
+#: 04060118.xhp#hd_id3155604.160.help.text
+msgctxt "04060118.xhp#hd_id3155604.160.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060118.xhp#par_id3148671.161.help.text
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days are there until the next interest payment?"
+msgstr "Un seguro es comprado el 25.1.2001; la fecha de vencimiento es el 15.11.2001. Los intereses se pagarán cada medio año (frecuencia es 2). Con un cálculo diario (base 3), ¿cuántos días quedan hasta el próximo pago de intereses?"
+
+#: 04060118.xhp#par_id3156158.162.help.text
+msgid "=COUPDAYSNC(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 110."
+msgstr "=CUPON.DIAS.L2(\"2001-01-25\"; \"2001-11-15\"; 2; 3) devuelve 110."
+
+#: 04060118.xhp#bm_id3150408.help.text
+msgid "<bookmark_value>COUPDAYBS function</bookmark_value><bookmark_value>durations;first interest payment until settlement date</bookmark_value><bookmark_value>securities;first interest payment until settlement date</bookmark_value>"
+msgstr "<bookmark_value>CUPON.DIAS.L1</bookmark_value><bookmark_value>duraciones;primer pago de interés hasta fecha de liquidación</bookmark_value><bookmark_value>títulos;primer pago de interés hasta fecha de liquidación</bookmark_value>"
+
+#: 04060118.xhp#hd_id3150408.133.help.text
+msgid "COUPDAYBS"
+msgstr "CUPON.DIAS.L1"
+
+#: 04060118.xhp#par_id3146795.134.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYBS\">Returns the number of days from the first day of interest payment on a security until the settlement date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPDAYBS\">Devuelve el número de días desde el primer día de pago de intereses de un título hasta la fecha de liquidación.</ahelp>"
+
+#: 04060118.xhp#hd_id3156142.135.help.text
+msgctxt "04060118.xhp#hd_id3156142.135.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060118.xhp#par_id3159083.136.help.text
+msgid "COUPDAYBS(Settlement; Maturity; Frequency; Basis)"
+msgstr "CUPON.DIAS.L1(Liquidación; Vencimiento; Frecuencia; Base)"
+
+#: 04060118.xhp#par_id3146907.137.help.text
+msgctxt "04060118.xhp#par_id3146907.137.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Liquidación</emph> es la fecha de compra de la seguridad."
+
+#: 04060118.xhp#par_id3159390.138.help.text
+msgctxt "04060118.xhp#par_id3159390.138.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Vencimiento</emph> es la fecha en cuando la seguridad ha cumplido el periodo especificado (vences)."
+
+#: 04060118.xhp#par_id3154414.139.help.text
+msgctxt "04060118.xhp#par_id3154414.139.help.text"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frecuencia</emph> es el número de pagos de interés al año (1, 2 o 4)."
+
+#: 04060118.xhp#hd_id3153880.140.help.text
+msgctxt "04060118.xhp#hd_id3153880.140.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060118.xhp#par_id3150592.141.help.text
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days is this?"
+msgstr "Un seguro es comprado el 25.1.2001; la fecha de vencimiento es el 15.11.2001. Los intereses se pagarán cada medio año (frecuencia es 2). Con un cálculo diario (base 3) ¿Cuántos días existen en este?"
+
+#: 04060118.xhp#par_id3151103.142.help.text
+msgid "=COUPDAYBS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 71."
+msgstr "=CUPON.DIAS.L1(\"2001-01-25\"; \"2001-11-15\"; 2; 3) devuelve 71."
+
+#: 04060118.xhp#bm_id3152957.help.text
+msgid "<bookmark_value>COUPPCD function</bookmark_value><bookmark_value>dates;interest date prior to settlement date</bookmark_value>"
+msgstr "<bookmark_value>CUPON.FECHA.L1</bookmark_value><bookmark_value>fechas;fecha de interés anterior a fecha de liquidación</bookmark_value>"
+
+#: 04060118.xhp#hd_id3152957.183.help.text
+msgid "COUPPCD"
+msgstr "CUPON.FECHA.L1"
+
+#: 04060118.xhp#par_id3153678.184.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPPCD\">Returns the date of the interest date prior to the settlement date. Format the result as a date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPPCD\">Devuelve la fecha de interés anterior a la fecha de liquidación. Asigne al resultado formato de fecha.</ahelp>"
+
+#: 04060118.xhp#hd_id3156269.185.help.text
+msgctxt "04060118.xhp#hd_id3156269.185.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060118.xhp#par_id3153790.186.help.text
+msgid "COUPPCD(Settlement; Maturity; Frequency; Basis)"
+msgstr "CUPON.FECHA.L1(Liquidación; Vencimiento; Frecuencia; Base)"
+
+#: 04060118.xhp#par_id3150989.187.help.text
+msgctxt "04060118.xhp#par_id3150989.187.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Liquidación</emph> es la fecha de compra de la seguridad."
+
+#: 04060118.xhp#par_id3154667.188.help.text
+msgctxt "04060118.xhp#par_id3154667.188.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Vencimiento</emph> es la fecha en cuando la seguridad ha cumplido el periodo especificado (vences)."
+
+#: 04060118.xhp#par_id3154569.189.help.text
+msgctxt "04060118.xhp#par_id3154569.189.help.text"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frecuencia</emph> es el número de pagos de interés al año (1, 2 o 4)."
+
+#: 04060118.xhp#hd_id3150826.190.help.text
+msgctxt "04060118.xhp#hd_id3150826.190.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060118.xhp#par_id3148968.191.help.text
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) what was the interest date prior to purchase?"
+msgstr "Un seguro es comprado el 25.1.2001; la fecha de vencimiento es el 15.11.2001. Los intereses se pagarán cada medio año (frecuencia es 2). Con un cálculo diario (base 3), ¿cuál fue la fecha de interés antes de la compra?"
+
+#: 04060118.xhp#par_id3149992.192.help.text
+msgid "=COUPPCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2000-15-11."
+msgstr "=CUPON.FECHA.L1(\"2001-01-25\"; \"2001-11-15\"; 2; 3) devuelve 2000-15-11."
+
+#: 04060118.xhp#bm_id3150673.help.text
+msgid "<bookmark_value>COUPNUM function</bookmark_value><bookmark_value>number of coupons</bookmark_value>"
+msgstr "<bookmark_value>CUPON.NUM</bookmark_value><bookmark_value>número de cupones</bookmark_value>"
+
+#: 04060118.xhp#hd_id3150673.173.help.text
+msgid "COUPNUM"
+msgstr "CUPON.NUM"
+
+#: 04060118.xhp#par_id3154350.174.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPNUM\">Returns the number of coupons (interest payments) between the settlement date and the maturity date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPNUM\">Devuelve el número de cupones (pagos de interés) entre la fecha de liquidación y la fecha de vencimiento.</ahelp>"
+
+#: 04060118.xhp#hd_id3148400.175.help.text
+msgctxt "04060118.xhp#hd_id3148400.175.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060118.xhp#par_id3153200.176.help.text
+msgid "COUPNUM(Settlement; Maturity; Frequency; Basis)"
+msgstr "CUPON.NUM(Liquidación; Vencimiento; Frecuencia; Base)"
+
+#: 04060118.xhp#par_id3159406.177.help.text
+msgctxt "04060118.xhp#par_id3159406.177.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Liquidación</emph> es la fecha de compra de la seguridad."
+
+#: 04060118.xhp#par_id3155864.178.help.text
+msgctxt "04060118.xhp#par_id3155864.178.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Vencimiento</emph> es la fecha en cuando la seguridad ha cumplido el periodo especificado (vences)."
+
+#: 04060118.xhp#par_id3154720.179.help.text
+msgctxt "04060118.xhp#par_id3154720.179.help.text"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frecuencia</emph> es el número de pagos de interés al año (1, 2 o 4)."
+
+#: 04060118.xhp#hd_id3149319.180.help.text
+msgctxt "04060118.xhp#hd_id3149319.180.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060118.xhp#par_id3152460.181.help.text
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many interest dates are there?"
+msgstr "Un seguro es comprado el 25.1.2001; la fecha de vencimiento es el 15.11.2001. Los intereses se pagarán cada medio año (frecuencia es 2). Con un cálculo diario (base 3) ¿Cuántos plazos de intereses existen?"
+
+#: 04060118.xhp#par_id3150640.182.help.text
+msgid "=COUPNUM(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2."
+msgstr "=CUPON.NUM(\"2001-01-25\"; \"2001-11-15\"; 2; 3) devuelve 2."
+
+#: 04060118.xhp#bm_id3149339.help.text
+msgid "<bookmark_value>IPMT function</bookmark_value><bookmark_value>periodic amortizement rates</bookmark_value>"
+msgstr "<bookmark_value>PAGOINT</bookmark_value><bookmark_value>tasa de amortización periódica</bookmark_value>"
+
+#: 04060118.xhp#hd_id3149339.263.help.text
+msgid "IPMT"
+msgstr "PAGOINT"
+
+#: 04060118.xhp#par_id3154522.264.help.text
+msgid "<ahelp hid=\"HID_FUNC_ZINSZ\">Calculates the periodic amortizement for an investment with regular payments and a constant interest rate.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZINSZ\">Calcula la amortización periódica de una inversión con pagos regulares y un interés constante.</ahelp>"
+
+#: 04060118.xhp#hd_id3153266.265.help.text
+msgctxt "04060118.xhp#hd_id3153266.265.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060118.xhp#par_id3151283.266.help.text
+msgid "IPMT(Rate; Period; NPer; PV; FV; Type)"
+msgstr "PAGOINT(Tasa; Periodo; NPer; VP; VF; Tipo)"
+
+#: 04060118.xhp#par_id3147313.267.help.text
+msgctxt "04060118.xhp#par_id3147313.267.help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "<emph>Tasa</emph> define el tipo de interés periódico."
+
+#: 04060118.xhp#par_id3145158.268.help.text
+msgid "<emph>Period</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr "<emph>Período</emph> indica los períodos para los que se calcula interés compuesto. Período=NPER cuando se calcula el interés compuesto del último período."
+
+#: 04060118.xhp#par_id3147577.269.help.text
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr "<emph>NPer</emph> es el número total de períodos, durante los cuales la anualidad se paga."
+
+#: 04060118.xhp#par_id3156211.270.help.text
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr "<emph>VA</emph> define el valor efectivo actual de la serie de pagos."
+
+#: 04060118.xhp#par_id3151213.271.help.text
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr "<emph>VF</emph> (opcional) define el valor final (valor futuro) una vez concluidos los períodos."
+
+#: 04060118.xhp#par_id3154195.272.help.text
+msgid "<emph>Type</emph> is the due date for the periodic payments."
+msgstr "<emph>Tipo</emph> define el vencimiento de los pagos periódicos."
+
+#: 04060118.xhp#hd_id3150102.273.help.text
+msgctxt "04060118.xhp#hd_id3150102.273.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060118.xhp#par_id3149438.274.help.text
+msgid "What is the interest rate during the fifth period (year) if the constant interest rate is 5% and the cash value is 15,000 currency units? The periodic payment is seven years."
+msgstr "¿Cuál es el interés del quinto período (año) si el interés constante se define en el 5% y el valor efectivo es de 15000 unidades monetarias? El espacio de tiempo del pago periódico es de siete años."
+
+#: 04060118.xhp#par_id3150496.275.help.text
+msgid "<item type=\"input\">=IPMT(5%;5;7;15000)</item> = -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr "<item type=\"input\">=PAGOINT(5%;5;7;15000)</item> = -352,97 unidades de moneda. El interés compuesto durante el quinto período (año) es 352,97 unidades de moneda."
+
+#: 04060118.xhp#bm_id3151205.help.text
+msgid "<bookmark_value>calculating;future values</bookmark_value><bookmark_value>future values;constant interest rates</bookmark_value><bookmark_value>FV function</bookmark_value>"
+msgstr "<bookmark_value>calcular;valores futuros</bookmark_value><bookmark_value>valores futuros; tipos de interés constantes</bookmark_value><bookmark_value>VF</bookmark_value>"
+
+#: 04060118.xhp#hd_id3151205.277.help.text
+msgid "FV"
+msgstr "Vf"
+
+#: 04060118.xhp#par_id3154140.278.help.text
+msgid "<ahelp hid=\"HID_FUNC_ZW\">Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZW\">Calcula el valor final de una inversión con pagos regulares y un tipo de interés constante (valor futuro).</ahelp>"
+
+#: 04060118.xhp#hd_id3155178.279.help.text
+msgctxt "04060118.xhp#hd_id3155178.279.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060118.xhp#par_id3145215.280.help.text
+msgid "FV(Rate; NPer; Pmt; PV; Type)"
+msgstr "VA(Tasa; NPer; Pago; VA; Tipo)"
+
+#: 04060118.xhp#par_id3155136.281.help.text
+msgctxt "04060118.xhp#par_id3155136.281.help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "<emph>Tasa</emph> define el tipo de interés periódico."
+
+#: 04060118.xhp#par_id3156029.282.help.text
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr "<emph>NPer</emph> es la cantidad total de periodos (periodo de pago)."
+
+#: 04060118.xhp#par_id3151322.283.help.text
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr "<emph>Pmt</emph> es la anualidad pagada regularmente en el periodo."
+
+#: 04060118.xhp#par_id3145256.284.help.text
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr "<emph>VA</emph> (opcional) es el valor en efectivo (actual) de una inversión."
+
+#: 04060118.xhp#par_id3150999.285.help.text
+msgid "<emph>Type</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr "<emph>Tipo</emph> (opcional) define si el pago se debe al principio o al final de un período."
+
+#: 04060118.xhp#par_idN114D8.help.text
+msgctxt "04060118.xhp#par_idN114D8.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060118.xhp#hd_id3146800.286.help.text
+msgctxt "04060118.xhp#hd_id3146800.286.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060118.xhp#par_id3146813.287.help.text
+msgid "What is the value at the end of an investment if the interest rate is 4% and the payment period is two years, with a periodic payment of 750 currency units. The investment has a present value of 2,500 currency units."
+msgstr "¿Cuál es el valor final de una inversión si el tipo de interés es del 4% y el pago se efectúa en cuotas periódicas de 750 unidades monetarias durante dos años? La inversión tiene un valor actual de 2500 unidades monetarias."
+
+#: 04060118.xhp#par_id3149302.288.help.text
+msgid "<item type=\"input\">=FV(4%;2;750;2500) </item>= -4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr "<item type=\"input\">=VF(4%;2;750;2500) </item>= -4234.00 unidades de la moneda. El valor al final de la inversión es 4234,00 unidades de la moneda."
+
+#: 04060118.xhp#bm_id3155912.help.text
+msgid "<bookmark_value>FVSCHEDULE function</bookmark_value><bookmark_value>future values;varying interest rates</bookmark_value>"
+msgstr "<bookmark_value>VF.PLAN</bookmark_value><bookmark_value>valores futuros;tipos de interés variable</bookmark_value>"
+
+#: 04060118.xhp#hd_id3155912.51.help.text
+msgid "FVSCHEDULE"
+msgstr "VF.PLAN"
+
+#: 04060118.xhp#par_id3163726.52.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_FVSCHEDULE\">Calculates the accumulated value of the starting capital for a series of periodically varying interest rates.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_FVSCHEDULE\">Calcula el valor acumulado del capital inicial para una serie de tipos de interés de variación periódica.</ahelp>"
+
+#: 04060118.xhp#hd_id3149571.53.help.text
+msgctxt "04060118.xhp#hd_id3149571.53.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060118.xhp#par_id3148891.54.help.text
+msgid "FVSCHEDULE(Principal; Schedule)"
+msgstr "VF.PLAN(Principal; Plan)"
+
+#: 04060118.xhp#par_id3148904.55.help.text
+msgid "<emph>Principal</emph> is the starting capital."
+msgstr "<emph>Principal</emph> es la capital inicial."
+
+#: 04060118.xhp#par_id3148562.56.help.text
+msgid "<emph>Schedule</emph> is a series of interest rates, for example, as a range H3:H5 or as a (List) (see example)."
+msgstr "<emph>Plan</emph> es una serie de tasas de intereses, por ejemplo, como un rango H3:H5 o como una (Lista) (ver ejemplo)."
+
+#: 04060118.xhp#hd_id3147288.57.help.text
+msgctxt "04060118.xhp#hd_id3147288.57.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060118.xhp#par_id3148638.58.help.text
+msgid "1000 currency units have been invested in for three years. The interest rates were 3%, 4% and 5% per annum. What is the value after three years?"
+msgstr "Se invirtieron 1000 unidades de moneda por un periodo de tres años. Los intereses anuales son 3%, 4% y 5%. ¿Cuál es el valor tras tres años?"
+
+#: 04060118.xhp#par_id3156358.59.help.text
+msgid "<item type=\"input\">=FVSCHEDULE(1000;{0.03;0.04;0.05})</item> returns 1124.76."
+msgstr "<item type=\"input\">=VF.PLAN(1000;{0.03;0.04;0.05})</item> devuelve 1124.76."
+
+#: 04060118.xhp#bm_id3156435.help.text
+msgid "<bookmark_value>calculating;number of payment periods</bookmark_value><bookmark_value>payment periods;number of</bookmark_value><bookmark_value>number of payment periods</bookmark_value><bookmark_value>NPER function</bookmark_value>"
+msgstr "<bookmark_value>calcular;número de períodos de pago</bookmark_value><bookmark_value>períodos de pago;número</bookmark_value><bookmark_value>número de períodos de pago</bookmark_value><bookmark_value>NPER</bookmark_value>"
+
+#: 04060118.xhp#hd_id3156435.290.help.text
+msgid "NPER"
+msgstr "NPER"
+
+#: 04060118.xhp#par_id3152363.291.help.text
+msgid "<ahelp hid=\"HID_FUNC_ZZR\">Returns the number of periods for an investment based on periodic, constant payments and a constant interest rate.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZZR\">Calcula el número de períodos de pago de una inversión con pagos regulares y una tasa de interés constante.</ahelp>"
+
+#: 04060118.xhp#hd_id3147216.292.help.text
+msgctxt "04060118.xhp#hd_id3147216.292.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060118.xhp#par_id3155934.293.help.text
+msgid "NPER(Rate; Pmt; PV; FV; Type)"
+msgstr "NPER(Tasa; Pago; VA; VF; Tipo)"
+
+#: 04060118.xhp#par_id3155946.294.help.text
+msgctxt "04060118.xhp#par_id3155946.294.help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "<emph>Tasa</emph> define el tipo de interés periódico."
+
+#: 04060118.xhp#par_id3149042.295.help.text
+msgid "<emph>Pmt</emph> is the constant annuity paid in each period."
+msgstr "<emph>Pago</emph> es la constante de anualidades pagadas en cada período."
+
+#: 04060118.xhp#par_id3153134.296.help.text
+msgctxt "04060118.xhp#par_id3153134.296.help.text"
+msgid "<emph>PV</emph> is the present value (cash value) in a sequence of payments."
+msgstr "<emph>VA</emph> es el valor actual (valor en efectivo) en una secuencia de pagos."
+
+#: 04060118.xhp#par_id3154398.297.help.text
+msgid "<emph>FV</emph> (optional) is the future value, which is reached at the end of the last period."
+msgstr "<emph>VF</emph> (opcional) es el valor futuro, el cual se alcanza al final del último periodo."
+
+#: 04060118.xhp#par_id3145127.298.help.text
+msgid "<emph>Type</emph> (optional) is the due date of the payment at the beginning or at the end of the period."
+msgstr "<emph>Tipo</emph> (opcional) es la fecha de vencimiento del pago, al comienzo o al final del período."
+
+#: 04060118.xhp#par_idN1166C.help.text
+msgctxt "04060118.xhp#par_idN1166C.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060118.xhp#hd_id3155795.299.help.text
+msgctxt "04060118.xhp#hd_id3155795.299.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060118.xhp#par_id3147378.300.help.text
+msgid "How many payment periods does a payment period cover with a periodic interest rate of 6%, a periodic payment of 153.75 currency units and a present cash value of 2.600 currency units."
+msgstr "¿Cuántos períodos comprende un espacio de tiempo para el pago si el tipo de interés es del 6%, el pago periódico 153,75 unidades monetarias y el valor efectivo actual, 2600 unidades monetarias?"
+
+#: 04060118.xhp#par_id3156171.301.help.text
+msgid "<item type=\"input\">=NPER(6%;153.75;2600)</item> = -12,02. The payment period covers 12.02 periods."
+msgstr "<item type=\"input\">=NPER(6%;153.75;2600)</item> = -12,02. El período de pago cubre 12,02 períodos."
+
+#: 04060118.xhp#par_id3150309.314.help.text
+msgctxt "04060118.xhp#par_id3150309.314.help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Back to Financial Functions Part One</link>"
+msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Regresar a las funciones financieras, parte 1</link>"
+
+#: 04060118.xhp#par_id3153163.315.help.text
+msgid "<link href=\"text/scalc/01/04060119.xhp\" name=\"Back to Financial Functions Part Two\">Back to Financial Functions Part Two</link>"
+msgstr "<link href=\"text/scalc/01/04060119.xhp\" name=\"Back to Financial Functions Part Two\">Regresar a las funciones financieras, parte 2</link>"
+
+#: 04060184.xhp#tit.help.text
+msgid "Statistical Functions Part Four"
+msgstr "Funciones estadísticas, cuarta parte"
+
+#: 04060184.xhp#hd_id3153415.1.help.text
+msgid "<variable id=\"mq\"><link href=\"text/scalc/01/04060184.xhp\" name=\"Statistical Functions Part Four\">Statistical Functions Part Four</link></variable>"
+msgstr "<variable id=\"mq\"><link href=\"text/scalc/01/04060184.xhp\" name=\"Funciones estadísticas, cuarta parte\">Funciones estadísticas, cuarta parte</link></variable>"
+
+#: 04060184.xhp#bm_id3154511.help.text
+msgid "<bookmark_value>MAX function</bookmark_value>"
+msgstr "<bookmark_value>MÁX</bookmark_value>"
+
+#: 04060184.xhp#hd_id3154511.2.help.text
+msgctxt "04060184.xhp#hd_id3154511.2.help.text"
+msgid "MAX"
+msgstr "MÁX"
+
+#: 04060184.xhp#par_id3153709.3.help.text
+msgid "<ahelp hid=\"HID_FUNC_MAX\">Returns the maximum value in a list of arguments.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MAX\">Devuelve el valor máximo de una lista de argumentos.</ahelp>"
+
+#: 04060184.xhp#par_id9282509.help.text
+msgctxt "04060184.xhp#par_id9282509.help.text"
+msgid "Returns 0 if no numeric value and no error was encountered in the cell range(s) passed as cell reference(s). Text cells are ignored by MIN() and MAX(). The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered. Passing a literal string argument to MIN() or MAX(), e.g. MIN(\"string\"), still results in an error."
+msgstr "Devuelve 0 si no ha encontrado un valor numérico y un error en el(los) rango(s) de celdas pasando como referencia(s) de celda(s). Las celdas de Texto son ignoradas por MÍN() y MÁX(). Las funciones MÍNA() y MÁXA() devuelven 0 si no encuentran un valor (numérico o texto) y un error. Pasando un argumento de cadena literal para MIN() o MAX(), por ejemplo. MÍN(\"cadena\"), sigue resultando en un error."
+
+#: 04060184.xhp#hd_id3154256.4.help.text
+msgctxt "04060184.xhp#hd_id3154256.4.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060184.xhp#par_id3147340.5.help.text
+msgid "MAX(Number1; Number2; ...Number30)"
+msgstr "MÁX(Número1; Número2; ...; Número30)"
+
+#: 04060184.xhp#par_id3149568.6.help.text
+msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges. "
+msgstr "<emph>Número1; Número2;... Número30</emph> son los valores o rangos numéricos. "
+
+#: 04060184.xhp#hd_id3153963.7.help.text
+msgctxt "04060184.xhp#hd_id3153963.7.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060184.xhp#par_id3147343.8.help.text
+msgid "<item type=\"input\">=MAX(A1;A2;A3;50;100;200)</item> returns the largest value from the list."
+msgstr "<item type=\"input\">=MÁX(A1;A2;A3;50;100;200)</item> devuelve el valor máximo de la lista."
+
+#: 04060184.xhp#par_id3148485.9.help.text
+msgid "<item type=\"input\">=MAX(A1:B100)</item> returns the largest value from the list."
+msgstr "<item type=\"input\">=MÁX(A1:B100)</item> devuelve el valor máximo de la lista."
+
+#: 04060184.xhp#bm_id3166426.help.text
+msgid "<bookmark_value>MAXA function</bookmark_value>"
+msgstr "<bookmark_value>MÁXA</bookmark_value>"
+
+#: 04060184.xhp#hd_id3166426.139.help.text
+msgid "MAXA"
+msgstr "MÁXA"
+
+#: 04060184.xhp#par_id3150363.140.help.text
+msgid "<ahelp hid=\"HID_FUNC_MAXA\">Returns the maximum value in a list of arguments. In opposite to MAX, here you can enter text. The value of the text is 0.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MAXA\">Devuelve el valor máximo de una lista de argumentos. A diferencia de MÁX, esta función admite texto. El valor del texto es 0.</ahelp>"
+
+#: 04060184.xhp#par_id7689443.help.text
+msgctxt "04060184.xhp#par_id7689443.help.text"
+msgid "The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered."
+msgstr "Las funciones MÍNA() and MÁXA() devuelven 0 si no hay valor (numérico o texto) y si no se ha encontrado error."
+
+#: 04060184.xhp#hd_id3150516.141.help.text
+msgctxt "04060184.xhp#hd_id3150516.141.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060184.xhp#par_id3166431.142.help.text
+msgid "MAXA(Value1; Value2; ... Value30)"
+msgstr "MÁXA(Valor1; Valor2; ... Valor30)"
+
+#: 04060184.xhp#par_id3150202.143.help.text
+msgctxt "04060184.xhp#par_id3150202.143.help.text"
+msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
+msgstr "<emph>Valor1; Valor2;... Valor30</emph> son los valores o rangos. Al texto se asigna el valor 0."
+
+#: 04060184.xhp#hd_id3156290.144.help.text
+msgctxt "04060184.xhp#hd_id3156290.144.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060184.xhp#par_id3156446.145.help.text
+msgid "<item type=\"input\">=MAXA(A1;A2;A3;50;100;200;\"Text\")</item> returns the largest value from the list."
+msgstr "<item type=\"input\">=MÁXA(A1;A2;A3;50;100;200;\"Texto\")</item> devuelve el valor máximo de la lista."
+
+#: 04060184.xhp#par_id3149404.146.help.text
+msgid "<item type=\"input\">=MAXA(A1:B100)</item> returns the largest value from the list."
+msgstr "<item type=\"input\">=MÁXA(A1:B100)</item> devuelve el valor máximo de la lista."
+
+#: 04060184.xhp#bm_id3153820.help.text
+msgid "<bookmark_value>MEDIAN function</bookmark_value>"
+msgstr "<bookmark_value>MEDIANA</bookmark_value>"
+
+#: 04060184.xhp#hd_id3153820.11.help.text
+msgid "MEDIAN"
+msgstr "MEDIANA"
+
+#: 04060184.xhp#par_id3151241.12.help.text
+msgid "<ahelp hid=\"HID_FUNC_MEDIAN\">Returns the median of a set of numbers. In a set containing an uneven number of values, the median will be the number in the middle of the set and in a set containing an even number of values, it will be the mean of the two values in the middle of the set.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MEDIAN\">Calcula la mediana (punto medio) de un grupo de números. En un grupo que contiene una cantidad de valores impar, la mediana es el número que se encuentra en medio; en un grupo que contiene una cantidad de valores par, es la mediana de los dos valores del medio.</ahelp>"
+
+#: 04060184.xhp#hd_id3148871.13.help.text
+msgctxt "04060184.xhp#hd_id3148871.13.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060184.xhp#par_id3155264.14.help.text
+msgid "MEDIAN(Number1; Number2; ...Number30)"
+msgstr "MEDIANA(Número1; Número2; ...; Número30)"
+
+#: 04060184.xhp#par_id3150109.15.help.text
+msgid "<emph>Number1; Number2;...Number30</emph> are values or ranges, which represent a sample. Each number can also be replaced by a reference."
+msgstr "<emph>Número1; Número2;...Número30</emph> son los valores o rangos, que representan una muestra. Cada número se puede reemplazar por una referencia."
+
+#: 04060184.xhp#hd_id3144506.16.help.text
+msgctxt "04060184.xhp#hd_id3144506.16.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060184.xhp#par_id3145078.17.help.text
+msgid "for an odd number: <item type=\"input\">=MEDIAN(1;5;9;20;21)</item> returns 9 as the median value."
+msgstr "para un número impar: <item type=\"input\">=MEDIANA(1;5;9;20;21)</item> devuelve 9 como valor mediano."
+
+#: 04060184.xhp#par_id3149126.165.help.text
+msgid "for an even number: <item type=\"input\">=MEDIAN(1;5;9;20)</item> returns the average of the two middle values 5 and 9, thus 7."
+msgstr "para un número par:<item type=\"input\">=MEDIAN(1;5;9;20)</item> devuelve el promedio de los dos valores medios de 5 a 9, es decir 7."
+
+#: 04060184.xhp#bm_id3154541.help.text
+msgid "<bookmark_value>MIN function</bookmark_value>"
+msgstr "<bookmark_value>MÍN</bookmark_value>"
+
+#: 04060184.xhp#hd_id3154541.19.help.text
+msgctxt "04060184.xhp#hd_id3154541.19.help.text"
+msgid "MIN"
+msgstr "MÍN"
+
+#: 04060184.xhp#par_id3143222.20.help.text
+msgid "<ahelp hid=\"HID_FUNC_MIN\">Returns the minimum value in a list of arguments.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MIN\">Devuelve el valor mínimo de una lista de argumentos.</ahelp>"
+
+#: 04060184.xhp#par_id2301400.help.text
+msgctxt "04060184.xhp#par_id2301400.help.text"
+msgid "Returns 0 if no numeric value and no error was encountered in the cell range(s) passed as cell reference(s). Text cells are ignored by MIN() and MAX(). The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered. Passing a literal string argument to MIN() or MAX(), e.g. MIN(\"string\"), still results in an error."
+msgstr "Devuelve 0 si el valor no es numérico y no se encontró error en el rango(s) de celdas definidas como celdas de referencia(s). La celdas con texto son ignoradas por MÍNIMO() y MÁXIMO(). Las funciones MÍNIMOA() y MÁXIMOA() devuelven 0 si el valor no es (numérico o texto) y no se encontró error. Pasar como argumento una cadena de caracteres a la función MÍNIMO() o MÁXIMO(), ej: MÍNIMO(\"caracteres\"), el resultado será un error."
+
+#: 04060184.xhp#hd_id3154651.21.help.text
+msgctxt "04060184.xhp#hd_id3154651.21.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060184.xhp#par_id3146964.22.help.text
+msgid "MIN(Number1; Number2; ...Number30)"
+msgstr "MÍN(Número1; Número2; ...; Número30)"
+
+#: 04060184.xhp#par_id3153486.23.help.text
+msgctxt "04060184.xhp#par_id3153486.23.help.text"
+msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
+msgstr "<emph>Número1; Número2;...Número30</emph> son los valores o rangos numéricos."
+
+#: 04060184.xhp#hd_id3155523.24.help.text
+msgctxt "04060184.xhp#hd_id3155523.24.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060184.xhp#par_id3154734.25.help.text
+msgid "<item type=\"input\">=MIN(A1:B100)</item> returns the smallest value in the list."
+msgstr "<item type=\"input\">=MÍN(A1:B100)</item> devuelve el valor más pequeño de la lista."
+
+#: 04060184.xhp#bm_id3147504.help.text
+msgid "<bookmark_value>MINA function</bookmark_value>"
+msgstr "<bookmark_value>MÍNA</bookmark_value>"
+
+#: 04060184.xhp#hd_id3147504.148.help.text
+msgid "MINA"
+msgstr "MÍNA"
+
+#: 04060184.xhp#par_id3147249.149.help.text
+msgid "<ahelp hid=\"HID_FUNC_MINA\">Returns the minimum value in a list of arguments. Here you can also enter text. The value of the text is 0.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MINA\">Devuelve el valor mínimo de una lista de argumentos. También puede introducir texto. El valor del texto es 0.</ahelp>"
+
+#: 04060184.xhp#par_id4294564.help.text
+msgctxt "04060184.xhp#par_id4294564.help.text"
+msgid "The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered."
+msgstr "Las funciones MÍNA() y MÁXA() devuelven 0 si no encuentran un valor (numérico o texto) y un error."
+
+#: 04060184.xhp#hd_id3150435.150.help.text
+msgctxt "04060184.xhp#hd_id3150435.150.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060184.xhp#par_id3153336.151.help.text
+msgid "MINA(Value1; Value2; ... Value30)"
+msgstr "MÍNA(Valor1; Valor2; ... Valor30)"
+
+#: 04060184.xhp#par_id3146098.152.help.text
+msgctxt "04060184.xhp#par_id3146098.152.help.text"
+msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
+msgstr "<emph>Valor1; Valor2;... Valor30</emph> son los valores o rangos. Al texto se asigna el valor 0."
+
+#: 04060184.xhp#hd_id3148743.153.help.text
+msgctxt "04060184.xhp#hd_id3148743.153.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060184.xhp#par_id3147401.154.help.text
+msgid "<item type=\"input\">=MINA(1;\"Text\";20)</item> returns 0."
+msgstr "<item type=\"input\">=MÍNA(1;\"Texto\";20)</item> devuelve 0."
+
+#: 04060184.xhp#par_id3147295.155.help.text
+msgid "<item type=\"input\">=MINA(A1:B100)</item> returns the smallest value in the list."
+msgstr "<item type=\"input\">=MÍNA(A1:B100)</item> devuelve el valor más pequeño de la lista."
+
+#: 04060184.xhp#bm_id3166465.help.text
+msgid "<bookmark_value>AVEDEV function</bookmark_value><bookmark_value>averages;statistical functions</bookmark_value>"
+msgstr "<bookmark_value>DESVPROM</bookmark_value><bookmark_value>promedios;funciones estadísticas</bookmark_value>"
+
+#: 04060184.xhp#hd_id3166465.27.help.text
+msgid "AVEDEV"
+msgstr "DESVPROM"
+
+#: 04060184.xhp#par_id3150373.28.help.text
+msgid "<ahelp hid=\"HID_FUNC_MITTELABW\">Returns the average of the absolute deviations of data points from their mean.</ahelp> Displays the diffusion in a data set."
+msgstr "<ahelp hid=\"HID_FUNC_MITTELABW\">Devuelve la media de las desviaciones absolutas de puntos de datos a partir de su media.</ahelp> Muestra la dispersión de un grupo de datos."
+
+#: 04060184.xhp#hd_id3150038.29.help.text
+msgctxt "04060184.xhp#hd_id3150038.29.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060184.xhp#par_id3145636.30.help.text
+msgid "AVEDEV(Number1; Number2; ...Number30)"
+msgstr "DESVPROM(Número1; Número2; ...; Número30)"
+
+#: 04060184.xhp#par_id3157871.31.help.text
+msgid "<emph>Number1, Number2,...Number30</emph> are values or ranges that represent a sample. Each number can also be replaced by a reference."
+msgstr "<emph>Número1; Número2;... Número30</emph> son los valores o rangos, que representan una muestra. Cada número se puede reemplazar por una referencia."
+
+#: 04060184.xhp#hd_id3149725.32.help.text
+msgctxt "04060184.xhp#hd_id3149725.32.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060184.xhp#par_id3153122.33.help.text
+msgid " <item type=\"input\">=AVEDEV(A1:A50)</item> "
+msgstr " <item type=\"input\">=DESVPROM(A1:A50)</item> "
+
+#: 04060184.xhp#bm_id3145824.help.text
+msgid "<bookmark_value>AVERAGE function</bookmark_value>"
+msgstr "<bookmark_value>PROMEDIO</bookmark_value>"
+
+#: 04060184.xhp#hd_id3145824.35.help.text
+msgctxt "04060184.xhp#hd_id3145824.35.help.text"
+msgid "AVERAGE"
+msgstr "PROMEDIO"
+
+#: 04060184.xhp#par_id3150482.36.help.text
+msgid "<ahelp hid=\"HID_FUNC_MITTELWERT\">Returns the average of the arguments.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MITTELWERT\">Calcula la media de los argumentos.</ahelp>"
+
+#: 04060184.xhp#hd_id3146943.37.help.text
+msgctxt "04060184.xhp#hd_id3146943.37.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060184.xhp#par_id3154679.38.help.text
+msgid "AVERAGE(Number1; Number2; ...Number30)"
+msgstr "PROMEDIO(Número1; Número2; ...; Número30)"
+
+#: 04060184.xhp#par_id3150741.39.help.text
+msgid "<emph>Number1; Number2;...Number 0</emph> are numerical values or ranges."
+msgstr "<emph>Número1; Número2;... Número0</emph> son los valores o rangos numéricos."
+
+#: 04060184.xhp#hd_id3153039.40.help.text
+msgctxt "04060184.xhp#hd_id3153039.40.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060184.xhp#par_id3151232.41.help.text
+msgid "<item type=\"input\">=AVERAGE(A1:A50)</item>"
+msgstr "<item type=\"input\">=PROMEDIO(A1:A50)</item>"
+
+#: 04060184.xhp#bm_id3148754.help.text
+msgid "<bookmark_value>AVERAGEA function</bookmark_value>"
+msgstr "<bookmark_value>PROMEDIOA</bookmark_value>"
+
+#: 04060184.xhp#hd_id3148754.157.help.text
+msgid "AVERAGEA"
+msgstr "PROMEDIOA"
+
+#: 04060184.xhp#par_id3145138.158.help.text
+msgid "<ahelp hid=\"HID_FUNC_MITTELWERTA\">Returns the average of the arguments. The value of a text is 0.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MITTELWERTA\">Calcula la media de los argumentos. El valor del texto es 0.</ahelp>"
+
+#: 04060184.xhp#hd_id3153326.159.help.text
+msgctxt "04060184.xhp#hd_id3153326.159.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060184.xhp#par_id3149734.160.help.text
+msgid "AVERAGEA(Value1; Value2; ... Value30)"
+msgstr "PROMEDIO(Valor1; Valor2; ... Valor30)"
+
+#: 04060184.xhp#par_id3155260.161.help.text
+msgctxt "04060184.xhp#par_id3155260.161.help.text"
+msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
+msgstr "<emph>Valor1; Valor2;... Valor30</emph> son los valores o rangos. Al texto se asigna el valor 0."
+
+#: 04060184.xhp#hd_id3149504.162.help.text
+msgctxt "04060184.xhp#hd_id3149504.162.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060184.xhp#par_id3150864.163.help.text
+msgid "<item type=\"input\">=AVERAGEA(A1:A50)</item>"
+msgstr "<item type=\"input\">=PROMEDIO(A1:A50)</item>"
+
+#: 04060184.xhp#bm_id3153933.help.text
+msgid "<bookmark_value>MODE function</bookmark_value><bookmark_value>most common value</bookmark_value>"
+msgstr "<bookmark_value>MODA</bookmark_value><bookmark_value>valor más común</bookmark_value>"
+
+#: 04060184.xhp#hd_id3153933.43.help.text
+msgid "MODE"
+msgstr "MODA"
+
+#: 04060184.xhp#par_id3153085.44.help.text
+msgid "<ahelp hid=\"HID_FUNC_MODALWERT\">Returns the most common value in a data set.</ahelp> If there are several values with the same frequency, it returns the smallest value. An error occurs when a value doesn't appear twice."
+msgstr "<ahelp hid=\"HID_FUNC_MODALWERT\">Devuelve el valor más común de un grupo de datos.</ahelp> Si hay varios valores con la misma frecuencia, devuelve el inferior. Si ningún valor se repite dos veces, se muestra un mensaje de error."
+
+#: 04060184.xhp#hd_id3153003.45.help.text
+msgctxt "04060184.xhp#hd_id3153003.45.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060184.xhp#par_id3155950.46.help.text
+msgid "MODE(Number1; Number2; ...Number30)"
+msgstr "MODO(Número1; Número2; ...; Número30)"
+
+#: 04060184.xhp#par_id3150337.47.help.text
+msgctxt "04060184.xhp#par_id3150337.47.help.text"
+msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
+msgstr "<emph>Número1; Número2;... Número30</emph> son los valores o rangos numéricos."
+
+#: 04060184.xhp#hd_id3153571.48.help.text
+msgctxt "04060184.xhp#hd_id3153571.48.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060184.xhp#par_id3153733.49.help.text
+msgid "<item type=\"input\">=MODE(A1:A50)</item>"
+msgstr "<item type=\"input\">=MODO(A1:A50)</item>"
+
+#: 04060184.xhp#bm_id3149879.help.text
+msgid "<bookmark_value>NEGBINOMDIST function</bookmark_value><bookmark_value>negative binomial distribution</bookmark_value>"
+msgstr "<bookmark_value>NEGBINOMDIST</bookmark_value><bookmark_value>distribución binomial negativa</bookmark_value>"
+
+#: 04060184.xhp#hd_id3149879.51.help.text
+msgid "NEGBINOMDIST"
+msgstr "NEGBINOMDIST"
+
+#: 04060184.xhp#par_id3155437.52.help.text
+msgid "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Returns the negative binomial distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Devuelve la distribución binomial negativa.</ahelp>"
+
+#: 04060184.xhp#hd_id3145351.53.help.text
+msgctxt "04060184.xhp#hd_id3145351.53.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060184.xhp#par_id3150935.54.help.text
+msgid "NEGBINOMDIST(X; R; SP)"
+msgstr "NEGBINOMDIST(núm_fracasos; núm_éxitos; prob_éxito)"
+
+#: 04060184.xhp#par_id3153044.55.help.text
+msgid "<emph>X</emph> represents the value returned for unsuccessful tests."
+msgstr "<emph>X</emph> representa el valor devuelto para las pruebas realizadas sin éxito."
+
+#: 04060184.xhp#par_id3151018.56.help.text
+msgid "<emph>R</emph> represents the value returned for successful tests."
+msgstr "<emph>R</emph> representa el valor devuelto para las pruebas realizadas con éxito."
+
+#: 04060184.xhp#par_id3148878.57.help.text
+msgid "<emph>SP</emph> is the probability of the success of an attempt."
+msgstr "<emph>prob_éxito</emph> es la probabilidad del éxito de un intento."
+
+#: 04060184.xhp#hd_id3149539.58.help.text
+msgctxt "04060184.xhp#hd_id3149539.58.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060184.xhp#par_id3148770.59.help.text
+msgid "<item type=\"input\">=NEGBINOMDIST(1;1;0.5)</item> returns 0.25."
+msgstr "<item type=\"input\">=NEGBINOMDIST(1;1;0,5)</item> devuelve 0,25."
+
+#: 04060184.xhp#bm_id3155516.help.text
+msgid "<bookmark_value>NORMINV function</bookmark_value><bookmark_value>normal distribution;inverse of</bookmark_value>"
+msgstr "<bookmark_value>DISTR.NORM.INV</bookmark_value><bookmark_value>distribución normal;inversa de</bookmark_value>"
+
+#: 04060184.xhp#hd_id3155516.61.help.text
+msgid "NORMINV"
+msgstr "DISTR.NORM.INV"
+
+#: 04060184.xhp#par_id3154634.62.help.text
+msgid "<ahelp hid=\"HID_FUNC_NORMINV\">Returns the inverse of the normal cumulative distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NORMINV\">Devuelve el inverso de la distribución normal acumulativa.</ahelp>"
+
+#: 04060184.xhp#hd_id3153227.63.help.text
+msgctxt "04060184.xhp#hd_id3153227.63.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060184.xhp#par_id3147534.64.help.text
+msgid "NORMINV(Number; Mean; StDev)"
+msgstr "DISTR.NORM.INV(Número; Media; Desv_estándar)"
+
+#: 04060184.xhp#par_id3154950.65.help.text
+msgid "<emph>Number</emph> represents the probability value used to determine the inverse normal distribution."
+msgstr "<emph>Número</emph> representa el valor de probabilidad utilizado para determinar la distribución normal inversa."
+
+#: 04060184.xhp#par_id3150690.66.help.text
+msgid "<emph>Mean</emph> represents the mean value in the normal distribution."
+msgstr "<emph>Media</emph> es el valor medio de la distribución normal."
+
+#: 04060184.xhp#par_id3148594.67.help.text
+msgid "<emph>StDev</emph> represents the standard deviation of the normal distribution."
+msgstr "<emph>Desv_estándar</emph> es la desviación estándar de la distribución normal."
+
+#: 04060184.xhp#hd_id3155822.68.help.text
+msgctxt "04060184.xhp#hd_id3155822.68.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060184.xhp#par_id3153921.69.help.text
+msgid "<item type=\"input\">=NORMINV(0.9;63;5)</item> returns 69.41. If the average egg weighs 63 grams with a standard deviation of 5, then there will be 90% probability that the egg will not be heavier than 69.41g grams."
+msgstr "<item type=\"input\">=DISTR.NORM.INV(0,9;63;5)</item> devuelve 69,41. Si un huevo de gallina pesa una media de 63 gramos, con una desviación estándar de 5, la probabilidad de que un huevo no pese más de 69,41 gramos es del 90%."
+
+#: 04060184.xhp#bm_id3153722.help.text
+msgid "<bookmark_value>NORMDIST function</bookmark_value><bookmark_value>density function</bookmark_value>"
+msgstr "<bookmark_value>DISTR.NORM</bookmark_value><bookmark_value>función de densidad</bookmark_value>"
+
+#: 04060184.xhp#hd_id3153722.71.help.text
+msgid "NORMDIST"
+msgstr "DISTR.NORM"
+
+#: 04060184.xhp#par_id3150386.72.help.text
+msgid "<ahelp hid=\"HID_FUNC_NORMVERT\">Returns the density function or the normal cumulative distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NORMVERT\">Devuelve la función de densidad o la distribución acumulativa normal.</ahelp>"
+
+#: 04060184.xhp#hd_id3083282.73.help.text
+msgctxt "04060184.xhp#hd_id3083282.73.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060184.xhp#par_id3150613.74.help.text
+msgid "NORMDIST(Number; Mean; StDev; C)"
+msgstr "DISTR.NORM(Número; Media; Desv_estándar; C)"
+
+#: 04060184.xhp#par_id3149820.75.help.text
+msgid "<emph>Number</emph> is the value of the distribution based on which the normal distribution is to be calculated."
+msgstr "<emph>Número</emph> es el valor de la distribución en la que se basará para calcular el valor de la distribución normal."
+
+#: 04060184.xhp#par_id3146063.76.help.text
+msgid "<emph>Mean</emph> is the mean value of the distribution."
+msgstr "<emph>Media</emph> es el valor medio de la distribución."
+
+#: 04060184.xhp#par_id3156295.77.help.text
+msgid "<emph>StDev</emph> is the standard deviation of the distribution."
+msgstr "<emph>Desv_estándar</emph> es la desviación estándar de la distribución."
+
+#: 04060184.xhp#par_id3145080.78.help.text
+msgid "<emph>C</emph> is optional. <emph>C</emph> = 0 calculates the density function, <emph>C</emph> = 1 calculates the distribution."
+msgstr "<emph>C</emph> es opcional. <emph>C</emph> = 0 calcula la función de densidad y <emph>C</emph> = 1 calcula la distribución."
+
+#: 04060184.xhp#hd_id3152972.79.help.text
+msgctxt "04060184.xhp#hd_id3152972.79.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060184.xhp#par_id3149283.80.help.text
+msgid "<item type=\"input\">=NORMDIST(70;63;5;0)</item> returns 0.03."
+msgstr "<item type=\"input\">=DISTR.NORM(70;63;5;0)</item> devuelve 0,03."
+
+#: 04060184.xhp#par_id3149448.81.help.text
+msgid "<item type=\"input\">=NORMDIST(70;63;5;1)</item> returns 0.92."
+msgstr "<item type=\"input\">=DISTR.NORM(70;63;5;1)</item> devuelve 0,92."
+
+#: 04060184.xhp#bm_id3152934.help.text
+msgid "<bookmark_value>PEARSON function</bookmark_value>"
+msgstr "<bookmark_value>PEARSON</bookmark_value>"
+
+#: 04060184.xhp#hd_id3152934.83.help.text
+msgid "PEARSON"
+msgstr "PEARSON"
+
+#: 04060184.xhp#par_id3153216.84.help.text
+msgid "<ahelp hid=\"HID_FUNC_PEARSON\">Returns the Pearson product moment correlation coefficient r.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_PEARSON\">Calcula el coeficiente de correlación producto o momento r de Pearson.</ahelp>"
+
+#: 04060184.xhp#hd_id3147081.85.help.text
+msgctxt "04060184.xhp#hd_id3147081.85.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060184.xhp#par_id3156133.86.help.text
+msgid "PEARSON(Data1; Data2)"
+msgstr "PEARSON(Datos1; Datos2)"
+
+#: 04060184.xhp#par_id3151272.87.help.text
+msgid "<emph>Data1</emph> represents the array of the first data set."
+msgstr "<emph>Datos1</emph> representa la matriz del primer conjunto de datos."
+
+#: 04060184.xhp#par_id3153279.88.help.text
+msgid "<emph>Data2</emph> represents the array of the second data set."
+msgstr "<emph>Datos2</emph> representa la matriz del segundo conjunto de datos."
+
+#: 04060184.xhp#hd_id3147567.89.help.text
+msgctxt "04060184.xhp#hd_id3147567.89.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060184.xhp#par_id3151187.90.help.text
+msgid "<item type=\"input\">=PEARSON(A1:A30;B1:B30)</item> returns the Pearson correlation coefficient of both data sets."
+msgstr "<item type=\"input\">=PEARSON(A1:A30;B1:B30)</item> devuelve el coeficiente de correlación de Pearson de ambos conjuntos de datos."
+
+#: 04060184.xhp#bm_id3152806.help.text
+msgid "<bookmark_value>PHI function</bookmark_value>"
+msgstr "<bookmark_value>PHI</bookmark_value>"
+
+#: 04060184.xhp#hd_id3152806.92.help.text
+msgid "PHI"
+msgstr "PHI"
+
+#: 04060184.xhp#par_id3150254.93.help.text
+msgid "<ahelp hid=\"HID_FUNC_PHI\">Returns the values of the distribution function for a standard normal distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_PHI\">Devuelve los valores de la función de distribución para una distribución normal estándar.</ahelp>"
+
+#: 04060184.xhp#hd_id3154748.94.help.text
+msgctxt "04060184.xhp#hd_id3154748.94.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060184.xhp#par_id3149976.95.help.text
+msgid "PHI(Number)"
+msgstr "PHI(Número)"
+
+#: 04060184.xhp#par_id3156108.96.help.text
+msgid "<emph>Number</emph> represents the value based on which the standard normal distribution is calculated."
+msgstr "<emph>Número</emph> representa el valor en el que se basa para calcular la distribución de normal estándar."
+
+#: 04060184.xhp#hd_id3153621.97.help.text
+msgctxt "04060184.xhp#hd_id3153621.97.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060184.xhp#par_id3155849.98.help.text
+msgid "<item type=\"input\">=PHI(2.25) </item>= 0.03"
+msgstr "<item type=\"input\">=PHI(2,25)</item> = 0,03"
+
+#: 04060184.xhp#par_id3143236.99.help.text
+msgid "<item type=\"input\">=PHI(-2.25)</item> = 0.03"
+msgstr "<item type=\"input\">=PHI(-2,25)</item> = 0,03"
+
+#: 04060184.xhp#par_id3149286.100.help.text
+msgid "<item type=\"input\">=PHI(0)</item> = 0.4"
+msgstr "<item type=\"input\">=PHI(0)</item> = 0,4"
+
+#: 04060184.xhp#bm_id3153985.help.text
+msgid "<bookmark_value>POISSON function</bookmark_value>"
+msgstr "<bookmark_value>POISSON</bookmark_value>"
+
+#: 04060184.xhp#hd_id3153985.102.help.text
+msgid "POISSON"
+msgstr "POISSON"
+
+#: 04060184.xhp#par_id3154298.103.help.text
+msgid "<ahelp hid=\"HID_FUNC_POISSON\">Returns the Poisson distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_POISSON\">Devuelve la distribución de Poisson.</ahelp>"
+
+#: 04060184.xhp#hd_id3159183.104.help.text
+msgctxt "04060184.xhp#hd_id3159183.104.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060184.xhp#par_id3146093.105.help.text
+msgid "POISSON(Number; Mean; C)"
+msgstr "POISSON(x; media; acumulado)"
+
+#: 04060184.xhp#par_id3147253.106.help.text
+msgid "<emph>Number</emph> represents the value based on which the Poisson distribution is calculated."
+msgstr "<emph>Número</emph> representa el valor en el que se basa para calcular la distribución de Poisson."
+
+#: 04060184.xhp#par_id3151177.107.help.text
+msgid "<emph>Mean</emph> represents the middle value of the Poisson distribution."
+msgstr "<emph>Media</emph> es el valor medio de la distribución de Poisson."
+
+#: 04060184.xhp#par_id3149200.108.help.text
+msgid "<emph>C</emph> (optional) = 0 or False calculates the density function; <emph>C</emph> = 1 or True calculates the distribution. When omitted, the default value True is inserted when you save the document, for best compatibility with other programs and older versions of %PRODUCTNAME."
+msgstr "<emph>C</emph> (opcional) = 0 o Falso calcula la función de densidad. <emph>C</emph> = 1 o Verdadero calcula la distribución. Cuando se omite, se inserta el valor predeterminado Verdadero cuando guarda el documento, para una mayor compatibilidad con otros programas y versiones anteriores de %PRODUCTNAME."
+
+#: 04060184.xhp#hd_id3159347.109.help.text
+msgctxt "04060184.xhp#hd_id3159347.109.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060184.xhp#par_id3150113.110.help.text
+msgid "<item type=\"input\">=POISSON(60;50;1)</item> returns 0.93."
+msgstr "<item type=\"input\">=POISSON(60;50;1)</item> devuelve 0,93."
+
+#: 04060184.xhp#bm_id3153100.help.text
+msgid "<bookmark_value>PERCENTILE function</bookmark_value>"
+msgstr "<bookmark_value>PERCENTIL</bookmark_value>"
+
+#: 04060184.xhp#hd_id3153100.112.help.text
+msgid "PERCENTILE"
+msgstr "PERCENTIL"
+
+#: 04060184.xhp#par_id3154940.113.help.text
+msgid "<ahelp hid=\"HID_FUNC_QUANTIL\">Returns the alpha-percentile of data values in an array.</ahelp> A percentile returns the scale value for a data series which goes from the smallest (Alpha=0) to the largest value (alpha=1) of a data series. For <item type=\"literal\">Alpha</item> = 25%, the percentile means the first quartile; <item type=\"literal\">Alpha</item> = 50% is the MEDIAN."
+msgstr "<ahelp hid=\"HID_FUNC_QUANTIL\">devuelve el alpha-percentil de los valores de datos en una matriz.</ahelp> Un percentil devuelve la escala de valores para una serie de datos que van desde el valor más pequeño (Alpha=0) al más alto (alpha=1) de una serie. Para <item type=\"literal\">Alpha</item> = 25%, el percentil significa el primer cuartil; <item type=\"literal\">Alpha</item> = 50% es la MEDIANA."
+
+#: 04060184.xhp#hd_id3150531.114.help.text
+msgctxt "04060184.xhp#hd_id3150531.114.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060184.xhp#par_id3148813.115.help.text
+msgid "PERCENTILE(Data; Alpha)"
+msgstr "PERCENTIL(Datos; Alpha)"
+
+#: 04060184.xhp#par_id3153054.116.help.text
+msgid "<emph>Data</emph> represents the array of data."
+msgstr "<emph>Datos</emph> es la matriz de los datos."
+
+#: 04060184.xhp#par_id3154212.117.help.text
+msgid "<emph>Alpha</emph> represents the percentage of the scale between 0 and 1."
+msgstr "<emph>Alfa</emph> representa el porcentaje de la escala entre 0 y 1."
+
+#: 04060184.xhp#hd_id3154290.118.help.text
+msgctxt "04060184.xhp#hd_id3154290.118.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060184.xhp#par_id3159147.119.help.text
+msgid "<item type=\"input\">=PERCENTILE(A1:A50;0.1)</item> represents the value in the data set, which equals 10% of the total data scale in A1:A50."
+msgstr "<item type=\"input\">=PERCENTIL(A1:A50;0,1)</item> representa el valor en el grupo de datos, que equivale al 10% de la escala de todos los datos contenidos en A1:A50."
+
+#: 04060184.xhp#bm_id3148807.help.text
+msgid "<bookmark_value>PERCENTRANK function</bookmark_value>"
+msgstr "<bookmark_value>RANGO.PERCENTIL</bookmark_value>"
+
+#: 04060184.xhp#hd_id3148807.121.help.text
+msgid "PERCENTRANK"
+msgstr "RANGO.PERCENTIL"
+
+#: 04060184.xhp#par_id3153573.122.help.text
+msgid "<ahelp hid=\"HID_FUNC_QUANTILSRANG\">Returns the percentage rank of a value in a sample.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_QUANTILSRANG\">Calcula el rango porcentual de un valor en una muestra.</ahelp>"
+
+#: 04060184.xhp#hd_id3147512.123.help.text
+msgctxt "04060184.xhp#hd_id3147512.123.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060184.xhp#par_id3147238.124.help.text
+msgid "PERCENTRANK(Data; Value)"
+msgstr "RANGO.PERCENTIL(Datos; x)"
+
+#: 04060184.xhp#par_id3154266.125.help.text
+msgctxt "04060184.xhp#par_id3154266.125.help.text"
+msgid "<emph>Data</emph> represents the array of data in the sample."
+msgstr "<emph>Datos</emph> es la matriz de datos en la muestra."
+
+#: 04060184.xhp#par_id3148475.126.help.text
+msgid "<emph>Value</emph> represents the value whose percentile rank must be determined."
+msgstr "<emph>Valor</emph> representa el valor para el que debe determinarse el rango de percentil."
+
+#: 04060184.xhp#hd_id3155364.127.help.text
+msgctxt "04060184.xhp#hd_id3155364.127.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060184.xhp#par_id3149163.128.help.text
+msgid "<item type=\"input\">=PERCENTRANK(A1:A50;50)</item> returns the percentage rank of the value 50 from the total range of all values found in A1:A50. If 50 falls outside the total range, an error message will appear."
+msgstr "<item type=\"input\">=RANGO.PERCENTIL(A1:A50;50)</item> devuelve el rango de porcentaje del valor 50 a partir del rango total de todos los valores que se encuentran en A1:A50. Si 50 no está dentro del rango total, aparecerá un mensaje de error."
+
+#: 04060184.xhp#bm_id3166442.help.text
+msgid "<bookmark_value>QUARTILE function</bookmark_value>"
+msgstr "<bookmark_value>CUARTIL</bookmark_value>"
+
+#: 04060184.xhp#hd_id3166442.130.help.text
+msgid "QUARTILE"
+msgstr "CUARTIL"
+
+#: 04060184.xhp#par_id3146958.131.help.text
+msgid "<ahelp hid=\"HID_FUNC_QUARTILE\">Returns the quartile of a data set.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_QUARTILE\">Calcula el cuartil de un conjunto de datos.</ahelp>"
+
+#: 04060184.xhp#hd_id3152942.132.help.text
+msgctxt "04060184.xhp#hd_id3152942.132.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060184.xhp#par_id3153684.133.help.text
+msgid "QUARTILE(Data; Type)"
+msgstr "CUARTIL(Datos; Cuartil)"
+
+#: 04060184.xhp#par_id3153387.134.help.text
+msgctxt "04060184.xhp#par_id3153387.134.help.text"
+msgid "<emph>Data</emph> represents the array of data in the sample."
+msgstr "<emph>Datos</emph> es la matriz de datos en la muestra."
+
+#: 04060184.xhp#par_id3155589.135.help.text
+msgid "<emph>Type</emph> represents the type of quartile. (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% and 4 = MAX.)"
+msgstr "<emph>Tipo</emph> representa el tipo de cuartil. (0 = MÍN, 1 = 25%, 2 = 50% (MEDIA), 3 = 75% y 4 = MÁX.)"
+
+#: 04060184.xhp#hd_id3149103.136.help.text
+msgctxt "04060184.xhp#hd_id3149103.136.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060184.xhp#par_id3159276.137.help.text
+msgid "<item type=\"input\">=QUARTILE(A1:A50;2)</item> returns the value of which 50% of the scale corresponds to the lowest to highest values in the range A1:A50."
+msgstr "<item type=\"input\">=CUARTIL(A1:A50;2)</item> devuelve el valor cuyo 50% de la escala corresponde a los valores de inferior a superior en el área A1:A50."
+
+#: 04060182.xhp#tit.help.text
+msgid "Statistical Functions Part Two"
+msgstr "Funciones estadísticas, segunda parte"
+
+#: 04060182.xhp#hd_id3154372.1.help.text
+msgid "<variable id=\"fh\"><link href=\"text/scalc/01/04060182.xhp\" name=\"Statistical Functions Part Two\">Statistical Functions Part Two</link></variable>"
+msgstr "<variable id=\"fh\"><link href=\"text/scalc/01/04060182.xhp\" name=\"Funciones estadísticas, segunda parte\">Funciones estadísticas, segunda parte</link></variable>"
+
+#: 04060182.xhp#bm_id3145388.help.text
+msgid "<bookmark_value>FINV function</bookmark_value> <bookmark_value>inverse F probability distribution</bookmark_value>"
+msgstr "<bookmark_value>DISTR.F.INV</bookmark_value> <bookmark_value>distribución de probabilidad F inversa</bookmark_value>"
+
+#: 04060182.xhp#hd_id3145388.2.help.text
+msgid "FINV"
+msgstr "DISTR.F.INV"
+
+#: 04060182.xhp#par_id3155089.3.help.text
+msgid "<ahelp hid=\"HID_FUNC_FINV\">Returns the inverse of the F probability distribution.</ahelp> The F distribution is used for F tests in order to set the relation between two differing data sets."
+msgstr "<ahelp hid=\"HID_FUNC_FINV\">Devuelve el inverso de la distribución de probabilidad F.</ahelp> La distribución F se utiliza en pruebas F para establecer la relación entre dos grupos de datos distintos."
+
+#: 04060182.xhp#hd_id3153816.4.help.text
+msgctxt "04060182.xhp#hd_id3153816.4.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060182.xhp#par_id3153068.5.help.text
+msgid "FINV(Number; DegreesFreedom1; DegreesFreedom2)"
+msgstr "DISTR.F.INV(Número; GradosdeLibertad1; GradosdeLibertad2)"
+
+#: 04060182.xhp#par_id3146866.6.help.text
+msgid " <emph>Number</emph> is probability value for which the inverse F distribution is to be calculated."
+msgstr " <emph>Número</emph> es el valor del intervalo de probabilidad para el cual se debe calcular la distribución F inversa."
+
+#: 04060182.xhp#par_id3153914.7.help.text
+msgid " <emph>DegreesFreedom1</emph> is the number of degrees of freedom in the numerator of the F distribution."
+msgstr " <emph>GradosdeLibertad1</emph> es el número de grados de libertad en el numerador de la distribución F."
+
+#: 04060182.xhp#par_id3148607.8.help.text
+msgid " <emph>DegreesFreedom2</emph> is the number of degrees of freedom in the denominator of the F distribution."
+msgstr " <emph>GradosdeLibertad2</emph> es el número de grados de libertad en el denominador de la distribución F."
+
+#: 04060182.xhp#hd_id3156021.9.help.text
+msgctxt "04060182.xhp#hd_id3156021.9.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060182.xhp#par_id3145073.10.help.text
+msgid " <item type=\"input\">=FINV(0.5;5;10)</item> yields 0.93."
+msgstr " <item type=\"input\">=DISTR.F.INV(0,5;5;10)</item> da 0,93."
+
+#: 04060182.xhp#bm_id3150888.help.text
+msgid "<bookmark_value>FISHER function</bookmark_value>"
+msgstr "<bookmark_value>FISHER</bookmark_value>"
+
+#: 04060182.xhp#hd_id3150888.12.help.text
+msgid "FISHER"
+msgstr "FISHER"
+
+#: 04060182.xhp#par_id3155384.13.help.text
+msgid "<ahelp hid=\"HID_FUNC_FISHER\">Returns the Fisher transformation for x and creates a function close to a normal distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_FISHER\">Devuelve la función inversa de la transformación de Fisher para x y crea una función que se distribuye de forma casi normal.</ahelp>"
+
+#: 04060182.xhp#hd_id3149898.14.help.text
+msgctxt "04060182.xhp#hd_id3149898.14.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060182.xhp#par_id3143220.15.help.text
+msgid "FISHER(Number)"
+msgstr "FISHER(número)"
+
+#: 04060182.xhp#par_id3159228.16.help.text
+msgid " <emph>Number</emph> is the value to be transformed."
+msgstr " <emph>Número</emph> es el valor que se transformará."
+
+#: 04060182.xhp#hd_id3154763.17.help.text
+msgctxt "04060182.xhp#hd_id3154763.17.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060182.xhp#par_id3149383.18.help.text
+msgid " <item type=\"input\">=FISHER(0.5)</item> yields 0.55."
+msgstr " <item type=\"input\">=FISHER(0,5)</item> da 0,55."
+
+#: 04060182.xhp#bm_id3155758.help.text
+msgid "<bookmark_value>FISHERINV function</bookmark_value> <bookmark_value>inverse of Fisher transformation</bookmark_value>"
+msgstr "<bookmark_value>PRUEBA.FISHER.INV</bookmark_value> <bookmark_value>inverso de transformación Fisher</bookmark_value>"
+
+#: 04060182.xhp#hd_id3155758.20.help.text
+msgid "FISHERINV"
+msgstr "PRUEBA.FISHER.INV"
+
+#: 04060182.xhp#par_id3154734.21.help.text
+msgid "<ahelp hid=\"HID_FUNC_FISHERINV\">Returns the inverse of the Fisher transformation for x and creates a function close to a normal distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_FISHERINV\">Devuelve la función inversa de la transformación de Fisher para X y da como resultado una función que se distribuye de forma casi normal.</ahelp>"
+
+#: 04060182.xhp#hd_id3155755.22.help.text
+msgctxt "04060182.xhp#hd_id3155755.22.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060182.xhp#par_id3146108.23.help.text
+msgid "FISHERINV(Number)"
+msgstr "PRUEBA.FISHER.INV(número)"
+
+#: 04060182.xhp#par_id3145115.24.help.text
+msgid " <emph>Number</emph> is the value that is to undergo reverse-transformation."
+msgstr " <emph>Número</emph> es el valor que va a recibir una transformación inversa."
+
+#: 04060182.xhp#hd_id3155744.25.help.text
+msgctxt "04060182.xhp#hd_id3155744.25.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060182.xhp#par_id3150432.26.help.text
+msgid " <item type=\"input\">=FISHERINV(0.5)</item> yields 0.46."
+msgstr " <item type=\"input\">=PRUEBA.FISHER.INV(0,5)</item> da 0,46."
+
+#: 04060182.xhp#bm_id3151390.help.text
+msgid "<bookmark_value>FTEST function</bookmark_value>"
+msgstr "<bookmark_value>PRUEBA.F</bookmark_value>"
+
+#: 04060182.xhp#hd_id3151390.28.help.text
+msgid "FTEST"
+msgstr "PRUEBA.F"
+
+#: 04060182.xhp#par_id3150534.29.help.text
+msgid "<ahelp hid=\"HID_FUNC_FTEST\">Returns the result of an F test.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_FTEST\">Devuelve el resultado de una prueba F.</ahelp>"
+
+#: 04060182.xhp#hd_id3166466.30.help.text
+msgctxt "04060182.xhp#hd_id3166466.30.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060182.xhp#par_id3153024.31.help.text
+msgid "FTEST(Data1; Data2)"
+msgstr "PRUEBA.F(Datos1; Datos2)"
+
+#: 04060182.xhp#par_id3150032.32.help.text
+msgid " <emph>Data1</emph> is the first record array."
+msgstr " <emph>Datos1</emph> es la primera matriz de registros."
+
+#: 04060182.xhp#par_id3153018.33.help.text
+msgid " <emph>Data2</emph> is the second record array."
+msgstr " <emph>Datos2</emph> es la segunda matriz de registros."
+
+#: 04060182.xhp#hd_id3153123.34.help.text
+msgctxt "04060182.xhp#hd_id3153123.34.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060182.xhp#par_id3159126.35.help.text
+msgid " <item type=\"input\">=FTEST(A1:A30;B1:B12)</item> calculates whether the two data sets are different in their variance and returns the probability that both sets could have come from the same total population."
+msgstr " <item type=\"input\">=PRUEBA.F(A1:A30;B1:B12)</item> calcula si los dos conjuntos de datos son distintos en su varianza y devuelve la probabilidad de que ambos conjuntos procedan de la misma población total."
+
+#: 04060182.xhp#bm_id3150372.help.text
+msgid "<bookmark_value>FDIST function</bookmark_value>"
+msgstr "<bookmark_value>DISTR.F</bookmark_value>"
+
+#: 04060182.xhp#hd_id3150372.37.help.text
+msgid "FDIST"
+msgstr "DISTR.F"
+
+#: 04060182.xhp#par_id3152981.38.help.text
+msgid "<ahelp hid=\"HID_FUNC_FVERT\">Calculates the values of an F distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_FVERT\">Calcula el valor de la función de distribución F.</ahelp>"
+
+#: 04060182.xhp#hd_id3150484.39.help.text
+msgctxt "04060182.xhp#hd_id3150484.39.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060182.xhp#par_id3145826.40.help.text
+msgid "FDIST(Number; DegreesFreedom1; DegreesFreedom2)"
+msgstr "DISTR.F(Número; GradosdeLibertad1; GradosdeLibertad2)"
+
+#: 04060182.xhp#par_id3150461.41.help.text
+msgid " <emph>Number</emph> is the value for which the F distribution is to be calculated."
+msgstr " <emph>Número</emph> es el valor para el cual se debe calcular la distribución F."
+
+#: 04060182.xhp#par_id3150029.42.help.text
+msgid " <emph>degreesFreedom1</emph> is the degrees of freedom in the numerator in the F distribution."
+msgstr " <emph>GradosdeLibertad1</emph> son los grados de libertad en el numerador de la distribución F."
+
+#: 04060182.xhp#par_id3146877.43.help.text
+msgid " <emph>degreesFreedom2</emph> is the degrees of freedom in the denominator in the F distribution."
+msgstr " <emph>GradosdeLibertad2</emph> son los grados de libertad en el denominador de la distribución F."
+
+#: 04060182.xhp#hd_id3147423.44.help.text
+msgctxt "04060182.xhp#hd_id3147423.44.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060182.xhp#par_id3150696.45.help.text
+msgid " <item type=\"input\">=FDIST(0.8;8;12)</item> yields 0.61."
+msgstr " <item type=\"input\">=DISTR.F(0,8;8;12)</item> da 0,61."
+
+#: 04060182.xhp#bm_id0119200903223192.help.text
+msgid "<bookmark_value>GAMMA function</bookmark_value>"
+msgstr "<bookmark_value>GAMMA</bookmark_value>"
+
+#: 04060182.xhp#hd_id0119200903205393.help.text
+msgid "GAMMA"
+msgstr "GAMMA"
+
+#: 04060182.xhp#par_id0119200903205379.help.text
+msgid "<ahelp hid=\".\">Returns the Gamma function value.</ahelp> Note that GAMMAINV is not the inverse of GAMMA, but of GAMMADIST."
+msgstr "<ahelp hid=\".\">Devuelve el valor de la función Gamma.</ahelp> DISTR.GAMMA.INV no es el inverso de GAMMA, sino de DISTR.GAMMA."
+
+#: 04060182.xhp#hd_id0119200903271613.help.text
+msgctxt "04060182.xhp#hd_id0119200903271613.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060182.xhp#par_id0119200903271614.help.text
+msgid " <emph>Number</emph> is the number for which the Gamma function value is to be calculated."
+msgstr " <emph>Número</emph> es el número para el que debe calcularse la función Gamma."
+
+#: 04060182.xhp#bm_id3154841.help.text
+msgid "<bookmark_value>GAMMAINV function</bookmark_value>"
+msgstr "<bookmark_value>DISTR.GAMMA.INV</bookmark_value>"
+
+#: 04060182.xhp#hd_id3154841.47.help.text
+msgid "GAMMAINV"
+msgstr "DISTR.GAMMA.INV"
+
+#: 04060182.xhp#par_id3153932.48.help.text
+msgid "<ahelp hid=\"HID_FUNC_GAMMAINV\">Returns the inverse of the Gamma cumulative distribution GAMMADIST.</ahelp> This function allows you to search for variables with different distribution."
+msgstr "<ahelp hid=\"HID_FUNC_GAMMAINV\">Devuelve el inverso de la distribución gamma acumulativa DISTR.GAMMA.</ahelp> Esta función permite buscar variables con distribución diferente."
+
+#: 04060182.xhp#hd_id3149949.49.help.text
+msgctxt "04060182.xhp#hd_id3149949.49.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060182.xhp#par_id3155828.50.help.text
+msgid "GAMMAINV(Number; Alpha; Beta)"
+msgstr "DISTR.GAMMA.INV(probabilidad; alfa; beta)"
+
+#: 04060182.xhp#par_id3145138.51.help.text
+msgid " <emph>Number</emph> is the probability value for which the inverse Gamma distribution is to be calculated."
+msgstr " <emph>Número</emph> es el valor del intervalo de probabilidad para el cual se debe calcular la distribución Gamma inversa."
+
+#: 04060182.xhp#par_id3152785.52.help.text
+msgctxt "04060182.xhp#par_id3152785.52.help.text"
+msgid " <emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
+msgstr " <emph>Alfa</emph> es el parámetro Alfa de la distribución Gamma."
+
+#: 04060182.xhp#par_id3154561.53.help.text
+msgid " <emph>Beta</emph> is the parameter Beta of the Gamma distribution."
+msgstr " <emph>Beta</emph> es el parámetro Beta de la distribución Gamma."
+
+#: 04060182.xhp#hd_id3148734.54.help.text
+msgctxt "04060182.xhp#hd_id3148734.54.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060182.xhp#par_id3153331.55.help.text
+msgid " <item type=\"input\">=GAMMAINV(0.8;1;1)</item> yields 1.61."
+msgstr " <item type=\"input\">=DISTR.GAMMA.INV(0,8;1;1)</item> da 1,61."
+
+#: 04060182.xhp#bm_id3154806.help.text
+msgid "<bookmark_value>GAMMALN function</bookmark_value> <bookmark_value>natural logarithm of Gamma function</bookmark_value>"
+msgstr "<bookmark_value>GAMMA.LN</bookmark_value> <bookmark_value>logaritmo natural de función Gamma</bookmark_value>"
+
+#: 04060182.xhp#hd_id3154806.57.help.text
+msgid "GAMMALN"
+msgstr "GAMMA.LN"
+
+#: 04060182.xhp#par_id3148572.58.help.text
+msgid "<ahelp hid=\"HID_FUNC_GAMMALN\">Returns the natural logarithm of the Gamma function: G(x).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GAMMALN\">Devuelve el logaritmo natural de la función gamma: G(x).</ahelp>"
+
+#: 04060182.xhp#hd_id3152999.59.help.text
+msgctxt "04060182.xhp#hd_id3152999.59.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060182.xhp#par_id3153112.60.help.text
+msgid "GAMMALN(Number)"
+msgstr "GAMMA.LN(X)"
+
+#: 04060182.xhp#par_id3154502.61.help.text
+msgid " <emph>Number</emph> is the value for which the natural logarithm of the Gamma function is to be calculated."
+msgstr " <emph>Número</emph> es el valor para el que debe calcularse el logaritmo natural de la función Gamma."
+
+#: 04060182.xhp#hd_id3153568.62.help.text
+msgctxt "04060182.xhp#hd_id3153568.62.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060182.xhp#par_id3153730.63.help.text
+msgid " <item type=\"input\">=GAMMALN(2)</item> yields 0."
+msgstr " <item type=\"input\">=GAMMA.LN(2)</item> da 0."
+
+#: 04060182.xhp#bm_id3150132.help.text
+msgid "<bookmark_value>GAMMADIST function</bookmark_value>"
+msgstr "<bookmark_value>DISTR.GAMMA</bookmark_value>"
+
+#: 04060182.xhp#hd_id3150132.65.help.text
+msgid "GAMMADIST"
+msgstr "DISTR.GAMMA"
+
+#: 04060182.xhp#par_id3155931.66.help.text
+msgid "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Returns the values of a Gamma distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Devuelve el valor de una distribución gamma.</ahelp>"
+
+#: 04060182.xhp#par_id0119200903333675.help.text
+msgid "The inverse function is GAMMAINV."
+msgstr "La función inversa es DISTR.GAMMA.INV."
+
+#: 04060182.xhp#hd_id3147373.67.help.text
+msgctxt "04060182.xhp#hd_id3147373.67.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060182.xhp#par_id3155436.68.help.text
+msgid "GAMMADIST(Number; Alpha; Beta; C)"
+msgstr "DISTR.GAMMA(x; alfa; beta; acum)"
+
+#: 04060182.xhp#par_id3150571.69.help.text
+msgid " <emph>Number</emph> is the value for which the Gamma distribution is to be calculated."
+msgstr " <emph>Número</emph> es el valor para el cual se debe calcular la distribución Gamma."
+
+#: 04060182.xhp#par_id3145295.70.help.text
+msgctxt "04060182.xhp#par_id3145295.70.help.text"
+msgid " <emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
+msgstr " <emph>Alfa</emph> es el parámetro Alfa de la distribución Gamma."
+
+#: 04060182.xhp#par_id3151015.71.help.text
+msgid " <emph>Beta</emph> is the parameter Beta of the Gamma distribution"
+msgstr " <emph>Beta</emph> es el parámetro Beta de la distribución Gamma."
+
+#: 04060182.xhp#par_id3157972.72.help.text
+msgid " <emph>C</emph> (optional) = 0 or False calculates the density function <emph>C</emph> = 1 or True calculates the distribution."
+msgstr " <emph>C</emph> (opcional) = 0 o Falso calcula la función de densidad. <emph>C</emph> = 1 o Verdadero calcula la distribución."
+
+#: 04060182.xhp#hd_id3149535.73.help.text
+msgctxt "04060182.xhp#hd_id3149535.73.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060182.xhp#par_id3145354.74.help.text
+msgid " <item type=\"input\">=GAMMADIST(2;1;1;1)</item> yields 0.86."
+msgstr " <item type=\"input\">=DISTR.GAMMA(2;1;1;1)</item> da 0,86."
+
+#: 04060182.xhp#bm_id3150272.help.text
+msgid "<bookmark_value>GAUSS function</bookmark_value> <bookmark_value>normal distribution; standard</bookmark_value>"
+msgstr "<bookmark_value>GAUSS</bookmark_value> <bookmark_value>distribución normal; estándar</bookmark_value>"
+
+#: 04060182.xhp#hd_id3150272.76.help.text
+msgid "GAUSS"
+msgstr "GAUSS"
+
+#: 04060182.xhp#par_id3149030.77.help.text
+msgid "<ahelp hid=\"HID_FUNC_GAUSS\">Returns the standard normal cumulative distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GAUSS\">Calcula la distribución normal predeterminada acumulativa.</ahelp>"
+
+#: 04060182.xhp#par_id2059694.help.text
+msgctxt "04060182.xhp#par_id2059694.help.text"
+msgid "It is GAUSS(x)=NORMSDIST(x)-0.5"
+msgstr "Es GAUSS(x)=NORMSDIST(x)-0.5"
+
+#: 04060182.xhp#hd_id3153551.78.help.text
+msgctxt "04060182.xhp#hd_id3153551.78.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060182.xhp#par_id3155368.79.help.text
+msgid "GAUSS(Number)"
+msgstr "GAUSS(Número)"
+
+#: 04060182.xhp#par_id3153228.80.help.text
+msgid " <emph>Number</emph> is the value for which the value of the standard normal distribution is to be calculated."
+msgstr " <emph>Número</emph> es el valor para el que se calculará el valor de la distribución normal estándar."
+
+#: 04060182.xhp#hd_id3150691.81.help.text
+msgctxt "04060182.xhp#hd_id3150691.81.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060182.xhp#par_id3154867.82.help.text
+msgid " <item type=\"input\">=GAUSS(0.19)</item> = 0.08"
+msgstr " <item type=\"input\">=GAUSS(0,19)</item> = 0,08"
+
+#: 04060182.xhp#par_id3148594.83.help.text
+msgid " <item type=\"input\">=GAUSS(0.0375)</item> = 0.01"
+msgstr " <item type=\"input\">=GAUSS(0,0375)</item> = 0,01"
+
+#: 04060182.xhp#bm_id3148425.help.text
+msgid "<bookmark_value>GEOMEAN function</bookmark_value> <bookmark_value>means;geometric</bookmark_value>"
+msgstr "<bookmark_value>MEDIA.GEOM</bookmark_value> <bookmark_value>medias;geométricas</bookmark_value>"
+
+#: 04060182.xhp#hd_id3148425.85.help.text
+msgid "GEOMEAN"
+msgstr "MEDIA.GEOM"
+
+#: 04060182.xhp#par_id3156257.86.help.text
+msgid "<ahelp hid=\"HID_FUNC_GEOMITTEL\">Returns the geometric mean of a sample.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GEOMITTEL\">Calcula la media geométrica de una muestra.</ahelp>"
+
+#: 04060182.xhp#hd_id3147167.87.help.text
+msgctxt "04060182.xhp#hd_id3147167.87.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060182.xhp#par_id3153720.88.help.text
+msgid "GEOMEAN(Number1; Number2; ...Number30)"
+msgstr "MEDIA.GEOM(Número1; Número2; ...; Número30)"
+
+#: 04060182.xhp#par_id3152585.89.help.text
+msgid " <emph>Number1, Number2,...Number30</emph> are numeric arguments or ranges that represent a random sample."
+msgstr " <emph>Número1, Número2... Número30</emph> son argumentos o rangos numéricos que representan un ejemplo aleatorio."
+
+#: 04060182.xhp#hd_id3146146.90.help.text
+msgctxt "04060182.xhp#hd_id3146146.90.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060182.xhp#par_id3149819.92.help.text
+msgid " <item type=\"input\">=GEOMEAN(23;46;69)</item> = 41.79. The geometric mean value of this random sample is therefore 41.79."
+msgstr " <item type=\"input\">=MEDIA.GEOM(23;46;69)</item> = 41,79. El valor de la media geométrica de este ejemplo aleatorio es, por tanto, 41,79."
+
+#: 04060182.xhp#bm_id3152966.help.text
+msgid "<bookmark_value>TRIMMEAN function</bookmark_value> <bookmark_value>means;of data set without margin data</bookmark_value>"
+msgstr "<bookmark_value>MEDIA.ACOTADA</bookmark_value> <bookmark_value>medias;de grupo de datos sin datos de margen</bookmark_value>"
+
+#: 04060182.xhp#hd_id3152966.94.help.text
+msgid "TRIMMEAN"
+msgstr "MEDIA.ACOTADA"
+
+#: 04060182.xhp#par_id3149716.95.help.text
+msgid "<ahelp hid=\"HID_FUNC_GESTUTZTMITTEL\">Returns the mean of a data set without the Alpha percent of data at the margins.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GESTUTZTMITTEL\">Calcula el promedio de un grupo de datos sin tener en cuenta el porcentaje alfa de los datos en los márgenes.</ahelp>"
+
+#: 04060182.xhp#hd_id3149281.96.help.text
+msgctxt "04060182.xhp#hd_id3149281.96.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060182.xhp#par_id3154821.97.help.text
+msgid "TRIMMEAN(Data; Alpha)"
+msgstr "MEDIA.ACOTADA(datos; alfa)"
+
+#: 04060182.xhp#par_id3155834.98.help.text
+msgid " <emph>Data</emph> is the array of data in the sample."
+msgstr " <emph>Datos</emph> es la matriz de datos en la muestra."
+
+#: 04060182.xhp#par_id3156304.99.help.text
+msgid " <emph>Alpha</emph> is the percentage of the marginal data that will not be taken into consideration."
+msgstr " <emph>Alfa</emph> es el porcentaje de datos marginales que no se tendrán en cuenta."
+
+#: 04060182.xhp#hd_id3151180.100.help.text
+msgctxt "04060182.xhp#hd_id3151180.100.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060182.xhp#par_id3156130.101.help.text
+msgid " <item type=\"input\">=TRIMMEAN(A1:A50; 0.1)</item> calculates the mean value of numbers in A1:A50, without taking into consideration the 5 percent of the values representing the highest values and the 5 percent of the values representing the lowest ones. The percentage numbers refer to the amount of the untrimmed mean value, not to the number of summands."
+msgstr " <item type=\"input\">=MEDIA.ACOTADA(A1:A50; 0,1)</item> calcula el promedio de los números en A1:A50, sin tener en cuenta el 5 por ciento de valores más bajos y el 5 por ciento de valores más altos. Los porcentajes se aplican a la cantidad del promedio no recortado, no a la cantidad de los sumandos."
+
+#: 04060182.xhp#bm_id3153216.help.text
+msgid "<bookmark_value>ZTEST function</bookmark_value>"
+msgstr "<bookmark_value>PRUEBA.Z</bookmark_value>"
+
+#: 04060182.xhp#hd_id3153216.103.help.text
+msgid "ZTEST"
+msgstr "PRUEBA.Z"
+
+#: 04060182.xhp#par_id3150758.104.help.text
+msgid "<ahelp hid=\"HID_FUNC_GTEST\">Calculates the probability of observing a z-statistic greater than the one computed based on a sample.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GTEST\">Calcula la probabilidad de observar un estadístico z mayor que el calculado basado en una muestra.</ahelp>"
+
+#: 04060182.xhp#hd_id3150872.105.help.text
+msgctxt "04060182.xhp#hd_id3150872.105.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060182.xhp#par_id3153274.106.help.text
+msgid "ZTEST(Data; mu; Sigma)"
+msgstr "PRUEBA.Z(Datos; mu; Sigma)"
+
+#: 04060182.xhp#par_id3156109.107.help.text
+msgid " <emph>Data</emph> is the given sample, drawn from a normally distributed population."
+msgstr " <emph>Datos</emph> es la muestra indicada, extraida de una población distribuida en forma normal."
+
+#: 04060182.xhp#par_id3149977.108.help.text
+msgid " <emph>mu</emph> is the known mean of the population."
+msgstr " <emph>mu</emph> es la media conocida de la población."
+
+#: 04060182.xhp#par_id3154740.109.help.text
+msgid " <emph>Sigma</emph> (optional) is the known standard deviation of the population. If omitted, the standard deviation of the given sample is used."
+msgstr " <emph>Sigma</emph> (opcional) es la desviación estándar conocida de la población. Si se omite, se utiliza la desviación estándar de la muestra indicada."
+
+#: 04060182.xhp#par_id0305200911372999.help.text
+msgid "See also the <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_ZTEST_function\">Wiki page</link>."
+msgstr "Consulte también la <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_ZTEST_function\">página del wiki</link>."
+
+#: 04060182.xhp#bm_id3153623.help.text
+msgid "<bookmark_value>HARMEAN function</bookmark_value> <bookmark_value>means;harmonic</bookmark_value>"
+msgstr "<bookmark_value>MEDIA.ARMO</bookmark_value> <bookmark_value>medias;armónicas</bookmark_value>"
+
+#: 04060182.xhp#hd_id3153623.113.help.text
+msgid "HARMEAN"
+msgstr "MEDIA.ARMO"
+
+#: 04060182.xhp#par_id3155102.114.help.text
+msgid "<ahelp hid=\"HID_FUNC_HARMITTEL\">Returns the harmonic mean of a data set.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_HARMITTEL\">Calcula la media armonizada de un grupo de datos.</ahelp>"
+
+#: 04060182.xhp#hd_id3146900.115.help.text
+msgctxt "04060182.xhp#hd_id3146900.115.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060182.xhp#par_id3149287.116.help.text
+msgid "HARMEAN(Number1; Number2; ...Number30)"
+msgstr "MEDIA.ARMO(Número1; Número2; ...; Número30)"
+
+#: 04060182.xhp#par_id3154303.117.help.text
+msgid " <emph>Number1,Number2,...Number30</emph> are up to 30 values or ranges, that can be used to calculate the harmonic mean."
+msgstr " <emph>Número1,Número2... Número30</emph> son hasta 30 valores o rangos que se pueden utilizar para calcular la media armónica."
+
+#: 04060182.xhp#hd_id3159179.118.help.text
+msgctxt "04060182.xhp#hd_id3159179.118.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060182.xhp#par_id3146093.120.help.text
+msgid " <item type=\"input\">=HARMEAN(23;46;69)</item> = 37.64. The harmonic mean of this random sample is thus 37.64"
+msgstr " <item type=\"input\">=MEDIA.ARMO(23;46;69)</item> = 37,64. La media armónica de este ejemplo aleatorio es, por tanto, 37,64."
+
+#: 04060182.xhp#bm_id3152801.help.text
+msgid "<bookmark_value>HYPGEOMDIST function</bookmark_value> <bookmark_value>sampling without replacement</bookmark_value>"
+msgstr "<bookmark_value>DISTR.HIPERGEOM</bookmark_value> <bookmark_value>muestras sin reemplazo</bookmark_value>"
+
+#: 04060182.xhp#hd_id3152801.122.help.text
+msgid "HYPGEOMDIST"
+msgstr "DISTR.HIPERGEOM"
+
+#: 04060182.xhp#par_id3159341.123.help.text
+msgid "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">Returns the hypergeometric distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">Devuelve la distribución hipergeométrica.</ahelp>"
+
+#: 04060182.xhp#hd_id3154697.124.help.text
+msgctxt "04060182.xhp#hd_id3154697.124.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060182.xhp#par_id3155388.125.help.text
+msgid "HYPGEOMDIST(X; NSample; Successes; NPopulation)"
+msgstr "DISTR.HIPERGEOM(X; EjemploN; Éxitos; PoblaciónN)"
+
+#: 04060182.xhp#par_id3154933.126.help.text
+msgid " <emph>X</emph> is the number of results achieved in the random sample."
+msgstr " <emph>X</emph> es el número de resultados obtenidos en la muestra aleatoria."
+
+#: 04060182.xhp#par_id3153106.127.help.text
+msgid " <emph>NSample</emph> is the size of the random sample."
+msgstr " <emph>EjemploN</emph> es el tamaño del ejemplo aleatorio."
+
+#: 04060182.xhp#par_id3146992.128.help.text
+msgid " <emph>Successes</emph> is the number of possible results in the total population."
+msgstr " <emph>Éxitos</emph> es el número de posibles resultados en la población total."
+
+#: 04060182.xhp#par_id3148826.129.help.text
+msgid " <emph>NPopulation </emph>is the size of the total population."
+msgstr " <emph>PoblaciónN</emph> es el tamaño de la población total."
+
+#: 04060182.xhp#hd_id3150529.130.help.text
+msgctxt "04060182.xhp#hd_id3150529.130.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060182.xhp#par_id3154904.131.help.text
+msgid " <item type=\"input\">=HYPGEOMDIST(2;2;90;100)</item> yields 0.81. If 90 out of 100 pieces of buttered toast fall from the table and hit the floor with the buttered side first, then if 2 pieces of buttered toast are dropped from the table, the probability is 81%, that both will strike buttered side first."
+msgstr " <item type=\"input\">=DISTR.HIPERGEOM(2;2;90;100)</item> da 0,81. Si 90 de cada 100 piezas de tostadas con mantequilla que caen de una mesa caen sobre el suelo con la parte con mantequilla primero, entonces si se caen 2 tostadas con mantequilla de la mesa, la probabilidad de que ambas caigan con la parte con mantequilla primero es del 81%."
+
+#: func_timevalue.xhp#tit.help.text
+msgid "TIMEVALUE "
+msgstr "HORANÚMERO"
+
+#: func_timevalue.xhp#bm_id3146755.help.text
+msgid "<bookmark_value>TIMEVALUE function</bookmark_value>"
+msgstr "<bookmark_value>HORANÚMERO</bookmark_value>"
+
+#: func_timevalue.xhp#hd_id3146755.160.help.text
+msgid "<variable id=\"timevalue\"><link href=\"text/scalc/01/func_timevalue.xhp\">TIMEVALUE</link></variable>"
+msgstr "<variable id=\"timevalue\"><link href=\"text/scalc/01/func_timevalue.xhp\">HORANÚMERO</link></variable>"
+
+#: func_timevalue.xhp#par_id3148502.161.help.text
+msgid "<ahelp hid=\"HID_FUNC_ZEITWERT\">TIMEVALUE returns the internal time number from a text enclosed by quotes and which may show a possible time entry format.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZEITWERT\">HORANÚMERO devuelve el número de tiempo interno a partir de un texto entre comillas y puede mostrar un posible formato de entrada de tiempo.</ahelp>"
+
+#: func_timevalue.xhp#par_id3150794.162.help.text
+msgid "The internal number indicated as a decimal is the result of the date system used under $[officename] to calculate date entries."
+msgstr "El número interno, originado como número decimal, resulta de los cálculos que $[officename] efectúa para obtener fechas."
+
+#: func_timevalue.xhp#par_id011920090347118.help.text
+msgid "If the text string also includes a year, month, or day, TIMEVALUE only returns the fractional part of the conversion."
+msgstr "Si la cadena de texto también incluye un año, mes o día, FECHANÚMERO sólo devuelve la parte fraccional de la conversión."
+
+#: func_timevalue.xhp#hd_id3150810.163.help.text
+msgctxt "func_timevalue.xhp#hd_id3150810.163.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: func_timevalue.xhp#par_id3150823.164.help.text
+msgid "TIMEVALUE(\"Text\")"
+msgstr "HORANÚMERO(\"texto\")"
+
+#: func_timevalue.xhp#par_id3152556.165.help.text
+msgid " <emph>Text</emph> is a valid time expression and must be entered in quotation marks."
+msgstr " <emph>Texto</emph> es una expresión de hora válida y debe ir entre comillas."
+
+#: func_timevalue.xhp#hd_id3146815.166.help.text
+msgctxt "func_timevalue.xhp#hd_id3146815.166.help.text"
+msgid "Examples"
+msgstr "Ejemplos"
+
+#: func_timevalue.xhp#par_id3146829.167.help.text
+msgid " <item type=\"input\">=TIMEVALUE(\"4PM\")</item> returns 0.67. When formatting in time format HH:MM:SS, you then get 16:00:00."
+msgstr " <item type=\"input\">=FECHANÚMERO(\"4PM\")</item> devuelve 0,67. Cuando el formato de hora es HH:MM:SS, recibirá 16:00:00."
+
+#: func_timevalue.xhp#par_id3153632.168.help.text
+msgid " <item type=\"input\">=TIMEVALUE(\"24:00\")</item> returns 1. If you use the HH:MM:SS time format, the value is 00:00:00."
+msgstr " <item type=\"input\">=HORANÚMERO(\"24:00\")</item> devuelve 1. Si utiliza el formato de hora HH:MM:SS, el valor es 00:00:00."
+
+#: 05050000.xhp#tit.help.text
+msgctxt "05050000.xhp#tit.help.text"
+msgid "Sheet"
+msgstr "Hoja"
+
+#: 05050000.xhp#bm_id1245460.help.text
+msgid "<bookmark_value>CTL;right-to-left sheets</bookmark_value><bookmark_value>sheets;right-to-left</bookmark_value><bookmark_value>right-to-left text;spreadsheets</bookmark_value>"
+msgstr "<bookmark_value>CTL;hojas de derecha a izquierda</bookmark_value><bookmark_value>hojas;de derecha a izquierda</bookmark_value><bookmark_value>texto de derecha a izquierda;hojas de cálculo</bookmark_value>"
+
+#: 05050000.xhp#hd_id3155923.1.help.text
+msgid "<link href=\"text/scalc/01/05050000.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr "<link href=\"text/scalc/01/05050000.xhp\" name=\"Hoja de cálculo\">Hoja de cálculo</link>"
+
+#: 05050000.xhp#par_id3154758.2.help.text
+msgid "<ahelp hid=\".\">Sets the sheet name and hides or shows selected sheets.</ahelp>"
+msgstr "<ahelp hid=\".\">Establece el nombre de la hoja y oculta o muestra las hojas seleccionadas.</ahelp>"
+
+#: 05050000.xhp#hd_id3156280.3.help.text
+msgid "<link href=\"text/scalc/01/05050100.xhp\" name=\"Rename\">Rename</link>"
+msgstr "<link href=\"text/scalc/01/05050100.xhp\" name=\"Cambiar nombre...\">Cambiar nombre...</link>"
+
+#: 05050000.xhp#hd_id3145787.4.help.text
+msgid "<link href=\"text/scalc/01/05050300.xhp\" name=\"Show\">Show</link>"
+msgstr "<link href=\"text/scalc/01/05050300.xhp\" name=\"Mostrar...\">Mostrar...</link>"
+
+#: 05050000.xhp#par_id3150542.5.help.text
+msgid "If a sheet has been hidden, the Show Sheet dialog opens, which allows you to select a sheet to be shown again."
+msgstr "Si hay alguna hoja oculta, se abrirá el diálogo Mostrar hoja, que permite seleccionar una hoja para volver a mostrarla."
+
+#: 05050000.xhp#par_idN10656.help.text
+msgid "Right-To-Left"
+msgstr "De derecha a izquierda"
+
+#: 05050000.xhp#par_idN1065A.help.text
+msgid "<ahelp hid=\".uno:SheetRightToLeft\">Changes the orientation of the current sheet to Right-To-Left if <link href=\"text/shared/optionen/01150300.xhp\">CTL</link> support is enabled.</ahelp>"
+msgstr "<ahelp hid=\".uno:SheetRightToLeft\">Cambia la orientación de la hoja actual de derecha a izquierda si se ha activado la admisión de <link href=\"text/shared/optionen/01150300.xhp\">CTL</link>.</ahelp>"
+
+#: func_weeknum.xhp#tit.help.text
+msgid "WEEKNUM"
+msgstr "NÚM.SEMANA"
+
+#: func_weeknum.xhp#bm_id3159161.help.text
+msgid "<bookmark_value>WEEKNUM function</bookmark_value>"
+msgstr "<bookmark_value>NÚM.SEMANA</bookmark_value>"
+
+#: func_weeknum.xhp#hd_id3159161.54.help.text
+msgid "<variable id=\"weeknum\"><link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link></variable>"
+msgstr "<variable id=\"weeknum\"><link href=\"text/scalc/01/func_weeknum.xhp\">NÚM.SEMANA</link></variable>"
+
+#: func_weeknum.xhp#par_id3149770.55.help.text
+msgid "<ahelp hid=\"HID_FUNC_KALENDERWOCHE\">WEEKNUM calculates the week number of the year for the internal date value.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KALENDERWOCHE\">NÚM.SEMANA calcula el número de semana del año para el valor de fecha interno.</ahelp>"
+
+#: func_weeknum.xhp#par_idN105E4.help.text
+msgid "The International Standard ISO 8601 has decreed that Monday shall be the first day of the week. A week that lies partly in one year and partly in another is assigned a number in the year in which most of its days lie. That means that week number 1 of any year is the week that contains the January 4th."
+msgstr "El Estándar Internacional ISO 8601 ha decretado que el lunes será el primer día de la semana. Una semana que se encuentra en parte en un año y, en parte de otro se le asigna un número en el año en el que la mayor parte de sus días tiene. Esto significa que el número de semana 1 de cualquier año es la semana que contiene el 4 de Enero."
+
+#: func_weeknum.xhp#hd_id3153055.56.help.text
+msgctxt "func_weeknum.xhp#hd_id3153055.56.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: func_weeknum.xhp#par_id3147236.57.help.text
+msgid "WEEKNUM(Number; Mode)"
+msgstr "SEM.DEL.AÑO(Número; Modo)"
+
+#: func_weeknum.xhp#par_id3147511.58.help.text
+msgid "<emph>Number</emph> is the internal date number."
+msgstr "El <emph>número</emph> corresponde al número interno de la fecha."
+
+#: func_weeknum.xhp#par_id3154269.59.help.text
+msgid "<emph>Mode</emph> sets the start of the week and the calculation type."
+msgstr "EL <emph>modo</emph> determina el comienzo de semana y el tipo de cálculo."
+
+#: func_weeknum.xhp#par_id3148930.60.help.text
+msgid "1 = Sunday"
+msgstr "1 = domingo"
+
+#: func_weeknum.xhp#par_id3154280.61.help.text
+msgid "2 = Monday"
+msgstr "2 = lunes"
+
+#: func_weeknum.xhp#hd_id3146948.62.help.text
+msgctxt "func_weeknum.xhp#hd_id3146948.62.help.text"
+msgid "Examples"
+msgstr "Ejemplos"
+
+#: func_weeknum.xhp#par_id3150704.65.help.text
+msgid "=WEEKNUM(\"1995-01-01\";1) returns 1"
+msgstr "=SEM.DEL.AÑO(\"1995-01-01\";1) devuelve 1"
+
+#: func_weeknum.xhp#par_id3149792.64.help.text
+msgid "=WEEKNUM(\"1995-01-01\";2) returns 52. If the week starts on Monday, Sunday belongs to the last week of the previous year."
+msgstr "=SEM.DEL.AÑO(\"1995-01-01\";2) devuelve 52. Si la semana comienza el lunes, el domingo pertenece a la última semana del año previo."
+
+#: 06080000.xhp#tit.help.text
+msgid "Recalculate"
+msgstr "Recalcular"
+
+#: 06080000.xhp#bm_id3157909.help.text
+msgid "<bookmark_value>recalculating;all formulas in sheets</bookmark_value><bookmark_value>formulas; recalculating manually</bookmark_value><bookmark_value>cell contents; recalculating</bookmark_value>"
+msgstr "<bookmark_value>recalcular;todas las formulas de hojas</bookmark_value><bookmark_value>fórmulas; recalcular manualmente</bookmark_value><bookmark_value>contenido de celdas; recalcular</bookmark_value>"
+
+#: 06080000.xhp#hd_id3157909.1.help.text
+msgid "<link href=\"text/scalc/01/06080000.xhp\" name=\"Recalculate\">Recalculate</link>"
+msgstr "<link href=\"text/scalc/01/06080000.xhp\" name=\"Recalcular\">Recalcular</link>"
+
+#: 06080000.xhp#par_id3154758.2.help.text
+msgid "<ahelp hid=\".uno:Calculate\">Recalculates all changed formulas. If AutoCalculate is enabled, the Recalculate command applies only to formulas like RAND or NOW.</ahelp>"
+msgstr "<ahelp hid=\".uno:Calculate\">Recalcula todas las frórmulas modificadas. Si el cálculo automático esta habilitado, el comamdo \"Recalcular\" solamente se aplica a fórmulas como ALEATORIO o AHORA.</ahelp>"
+
+#: 06080000.xhp#par_id315475899.help.text
+msgid "Press F9 to recalculate. Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas in the document."
+msgstr "Presione F9 para recalcular. Presione Mayús+<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 para recalcular todas las fórmulas del documento."
+
+#: 06080000.xhp#par_id3150793.5.help.text
+msgid "After the document has been recalculated, the display is refreshed. All charts are also refreshed."
+msgstr "Después de que el documento se ha recalculado, la visualización se actualiza. Todos los diagramas también se actualizan."
+
+#: 06080000.xhp#par_id315475855.help.text
+msgid "The Add-In functions like RANDBETWEEN currently cannot respond to the Recalculate command or F9. Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas, including the Add-In functions."
+msgstr "Las funciones de los \"Agregados\" (Add-ins) como ALEATORIO.ENTRE actualmente no responden al comando \"Recalcular\" o F9. Hay que presionar Mayús+<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 para recalcular todas las fórmulas, incluyendo las de las funciones de los \"Agregados\"."
+
+#: format_graphic.xhp#tit.help.text
+msgid "Graphic"
+msgstr "Gráfico"
+
+#: format_graphic.xhp#par_idN10548.help.text
+msgid "<link href=\"text/scalc/01/format_graphic.xhp\">Graphic</link>"
+msgstr "<link href=\"text/scalc/01/format_graphic.xhp\">Gráfico</link>"
+
+#: format_graphic.xhp#par_idN10558.help.text
+msgid "<ahelp hid=\".\">Opens a submenu to edit the properties of the selected object.</ahelp>"
+msgstr "<ahelp hid=\".\">Abre un submenú para editar las propiedades del objeto seleccionado.</ahelp>"
+
+#: format_graphic.xhp#par_id1650440.help.text
+msgid "<link href=\"text/shared/01/05990000.xhp\">Define Text Attributes</link>"
+msgstr "<link href=\"text/shared/01/05990000.xhp\">Definir atributos de texto</link>"
+
+#: format_graphic.xhp#par_id363475.help.text
+msgid "Sets the layout and anchoring properties for text in the selected drawing or text object."
+msgstr "Define el diseño y las propiedades de anclaje del texto en el dibujo u objeto de texto seleccionado."
+
+#: format_graphic.xhp#par_id9746696.help.text
+msgid "Points"
+msgstr "Puntos"
+
+#: format_graphic.xhp#par_id2480544.help.text
+msgid "<ahelp hid=\".\">Switches <emph>Edit Points</emph> mode for an inserted freeform line on and off.</ahelp>"
+msgstr "<ahelp hid=\".\">Alterna el modo<emph>Editar puntos</emph> para activar y desactivar una línea a mano alzada insertada.</ahelp>"
+
+#: 04060199.xhp#tit.help.text
+msgctxt "04060199.xhp#tit.help.text"
+msgid "Operators in $[officename] Calc"
+msgstr "Operadores en $[officename] Calc"
+
+#: 04060199.xhp#bm_id3156445.help.text
+msgid "<bookmark_value>formulas; operators</bookmark_value><bookmark_value>operators; formula functions</bookmark_value><bookmark_value>division sign, see also operators</bookmark_value><bookmark_value>multiplication sign, see also operators</bookmark_value><bookmark_value>minus sign, see also operators</bookmark_value><bookmark_value>plus sign, see also operators</bookmark_value><bookmark_value>text operators</bookmark_value><bookmark_value>comparisons;operators in Calc</bookmark_value><bookmark_value>arithmetical operators</bookmark_value><bookmark_value>reference operators</bookmark_value>"
+msgstr "<bookmark_value>fórmulas; operadores</bookmark_value><bookmark_value>operadores; función de fórmulas</bookmark_value><bookmark_value>signo de división, ver también operadores</bookmark_value><bookmark_value>signo de multiplicación, ver también operadores</bookmark_value><bookmark_value>signo de menos, ver también operadores</bookmark_value><bookmark_value>signo de suma, ver también operador</bookmark_value><bookmark_value>operadores de texto</bookmark_value><bookmark_value>comparación;operadores en Calc</bookmark_value><bookmark_value>operadores aritméticos</bookmark_value><bookmark_value>reference operators</bookmark_value><bookmark_value>operadores de referencia</bookmark_value>"
+
+#: 04060199.xhp#hd_id3156445.1.help.text
+msgctxt "04060199.xhp#hd_id3156445.1.help.text"
+msgid "Operators in $[officename] Calc"
+msgstr "Operadores en $[officename] Calc"
+
+#: 04060199.xhp#par_id3155812.2.help.text
+msgid "You can use the following operators in $[officename] Calc:"
+msgstr "En $[officename] Calc se pueden utilizar los operadores siguientes:"
+
+#: 04060199.xhp#hd_id3153066.3.help.text
+msgid "Arithmetical Operators"
+msgstr "Operadores aritméticos"
+
+#: 04060199.xhp#par_id3148601.4.help.text
+msgid "These operators return numerical results."
+msgstr "Estos operadores proporcionan resultados numéricos."
+
+#: 04060199.xhp#par_id3144768.5.help.text
+msgctxt "04060199.xhp#par_id3144768.5.help.text"
+msgid "Operator"
+msgstr "<emph>Operador</emph>"
+
+#: 04060199.xhp#par_id3157982.6.help.text
+msgctxt "04060199.xhp#par_id3157982.6.help.text"
+msgid "Name"
+msgstr "<emph>Nombre</emph>"
+
+#: 04060199.xhp#par_id3159096.7.help.text
+msgctxt "04060199.xhp#par_id3159096.7.help.text"
+msgid "Example"
+msgstr "<emph>Ejemplo</emph>"
+
+#: 04060199.xhp#par_id3149126.8.help.text
+msgid "+ (Plus)"
+msgstr "+ (Más)"
+
+#: 04060199.xhp#par_id3150892.9.help.text
+msgid "Addition"
+msgstr "Suma"
+
+#: 04060199.xhp#par_id3153247.10.help.text
+msgid "1+1"
+msgstr "1+1"
+
+#: 04060199.xhp#par_id3159204.11.help.text
+msgctxt "04060199.xhp#par_id3159204.11.help.text"
+msgid "- (Minus)"
+msgstr "- (Menos)"
+
+#: 04060199.xhp#par_id3145362.12.help.text
+msgid "Subtraction"
+msgstr "Resta"
+
+#: 04060199.xhp#par_id3153554.13.help.text
+msgid "2-1"
+msgstr "2-1"
+
+#: 04060199.xhp#par_id3153808.14.help.text
+msgctxt "04060199.xhp#par_id3153808.14.help.text"
+msgid "- (Minus)"
+msgstr "- (Menos)"
+
+#: 04060199.xhp#par_id3151193.15.help.text
+msgid "Negation"
+msgstr "Negación"
+
+#: 04060199.xhp#par_id3154712.16.help.text
+msgctxt "04060199.xhp#par_id3154712.16.help.text"
+msgid "-5"
+msgstr "-5"
+
+#: 04060199.xhp#par_id3149873.17.help.text
+msgid "* (asterisk)"
+msgstr "* (Asterisco)"
+
+#: 04060199.xhp#par_id3147504.18.help.text
+msgid "Multiplication"
+msgstr "Multiplicación"
+
+#: 04060199.xhp#par_id3149055.19.help.text
+msgid "2*2"
+msgstr "2*2"
+
+#: 04060199.xhp#par_id3151341.20.help.text
+msgid "/ (Slash)"
+msgstr "/ (Barra invertida)"
+
+#: 04060199.xhp#par_id3159260.21.help.text
+msgid "Division"
+msgstr "División"
+
+#: 04060199.xhp#par_id3153027.22.help.text
+msgid "9/3"
+msgstr "9/3"
+
+#: 04060199.xhp#par_id3156396.23.help.text
+msgid "% (Percent)"
+msgstr "% (Porcentaje)"
+
+#: 04060199.xhp#par_id3150372.24.help.text
+msgid "Percent"
+msgstr "Porciento"
+
+#: 04060199.xhp#par_id3145632.25.help.text
+msgid "15%"
+msgstr "15%"
+
+#: 04060199.xhp#par_id3149722.26.help.text
+msgid "^ (Caret)"
+msgstr "^ (Caret)"
+
+#: 04060199.xhp#par_id3159127.27.help.text
+msgid "Exponentiation"
+msgstr "Potencia"
+
+#: 04060199.xhp#par_id3157873.28.help.text
+msgid "3^2"
+msgstr "3^2"
+
+#: 04060199.xhp#hd_id3152981.29.help.text
+msgid "Comparative operators"
+msgstr "Operadores de comparación"
+
+#: 04060199.xhp#par_id3157902.30.help.text
+msgid "These operators return either true or false."
+msgstr "Estos operadores muestran el valor VERDADERO o FALSO."
+
+#: 04060199.xhp#par_id3149889.31.help.text
+msgctxt "04060199.xhp#par_id3149889.31.help.text"
+msgid "Operator"
+msgstr "<emph>Operador</emph>"
+
+#: 04060199.xhp#par_id3150743.32.help.text
+msgctxt "04060199.xhp#par_id3150743.32.help.text"
+msgid "Name"
+msgstr "<emph>Nombre</emph>"
+
+#: 04060199.xhp#par_id3146877.33.help.text
+msgctxt "04060199.xhp#par_id3146877.33.help.text"
+msgid "Example"
+msgstr "<emph>Ejemplo</emph>"
+
+#: 04060199.xhp#par_id3148888.34.help.text
+msgid "= (equal sign)"
+msgstr "= (símbolo de igualdad)"
+
+#: 04060199.xhp#par_id3154845.35.help.text
+msgid "Equal"
+msgstr "Igual"
+
+#: 04060199.xhp#par_id3154546.36.help.text
+msgid "A1=B1"
+msgstr "A1=B1"
+
+#: 04060199.xhp#par_id3154807.37.help.text
+msgid "> (Greater than)"
+msgstr "> (Mayor que)"
+
+#: 04060199.xhp#par_id3148580.38.help.text
+msgid "Greater than"
+msgstr "Mayor que"
+
+#: 04060199.xhp#par_id3145138.39.help.text
+msgid "A1>B1"
+msgstr "A1>B1"
+
+#: 04060199.xhp#par_id3149507.40.help.text
+msgid "< (Less than)"
+msgstr "< (Menor que)"
+
+#: 04060199.xhp#par_id3150145.41.help.text
+msgid "Less than"
+msgstr "Menor que"
+
+#: 04060199.xhp#par_id3150901.42.help.text
+msgid "A1<B1"
+msgstr "A1<B1"
+
+#: 04060199.xhp#par_id3153078.43.help.text
+msgid ">= (Greater than or equal to)"
+msgstr ">= (Mayor que o igual a)"
+
+#: 04060199.xhp#par_id3150866.44.help.text
+msgid "Greater than or equal to"
+msgstr "Mayor que o igual a"
+
+#: 04060199.xhp#par_id3153111.45.help.text
+msgid "A1>=B1"
+msgstr "A1>=B1"
+
+#: 04060199.xhp#par_id3153004.46.help.text
+msgid "<= (Less than or equal to)"
+msgstr "<= (Menor que o igual a)"
+
+#: 04060199.xhp#par_id3150335.47.help.text
+msgid "Less than or equal to"
+msgstr "Menor que o igual a"
+
+#: 04060199.xhp#par_id3148760.48.help.text
+msgid "A1<=B1"
+msgstr "A1<=B1"
+
+#: 04060199.xhp#par_id3157994.49.help.text
+msgid "<> (Inequality)"
+msgstr "<> (No es igual a)"
+
+#: 04060199.xhp#par_id3150019.50.help.text
+msgid "Inequality"
+msgstr "No es igual a"
+
+#: 04060199.xhp#par_id3149878.51.help.text
+msgid "A1<>B1"
+msgstr "A1<>B1"
+
+#: 04060199.xhp#hd_id3145241.52.help.text
+msgid "Text operators"
+msgstr "Operador de texto"
+
+#: 04060199.xhp#par_id3155438.53.help.text
+msgid "The operator combines separate texts into one text."
+msgstr "El operador une varios textos en uno solo."
+
+#: 04060199.xhp#par_id3150566.54.help.text
+msgctxt "04060199.xhp#par_id3150566.54.help.text"
+msgid "Operator"
+msgstr "<emph>Operador</emph>"
+
+#: 04060199.xhp#par_id3153048.55.help.text
+msgctxt "04060199.xhp#par_id3153048.55.help.text"
+msgid "Name"
+msgstr "<emph>Nombre</emph>"
+
+#: 04060199.xhp#par_id3149001.56.help.text
+msgctxt "04060199.xhp#par_id3149001.56.help.text"
+msgid "Example"
+msgstr "<emph>Ejemplo</emph>"
+
+#: 04060199.xhp#par_id3148769.57.help.text
+msgid "& (And)"
+msgstr "& (Y)"
+
+#: 04060199.xhp#bm_id3157975.help.text
+msgid "<bookmark_value>text concatenation AND</bookmark_value>"
+msgstr "<bookmark_value>Concatenación de texto Y</bookmark_value>"
+
+#: 04060199.xhp#par_id3157975.58.help.text
+msgid "text concatenation AND"
+msgstr "Vínculo de texto Y"
+
+#: 04060199.xhp#par_id3157993.59.help.text
+msgid "\"Sun\" & \"day\" is \"Sunday\""
+msgstr "\"Sun\" & \"day\" se convierte en \"Sunday\""
+
+#: 04060199.xhp#hd_id3153550.60.help.text
+msgid "Reference operators"
+msgstr "Operadores de referencia"
+
+#: 04060199.xhp#par_id3149024.61.help.text
+msgid "These operators return a cell range of zero, one or more cells."
+msgstr "Estos operadores devuelven un rango de celdas de con cero, una o más celdas."
+
+#: 04060199.xhp#par_id2324900.help.text
+msgid "Range has the highest precedence, then intersection, and then finally union."
+msgstr "El rango tiene la más alta precedencia, luego la intersección y finalmente la unión."
+
+#: 04060199.xhp#par_id3158416.62.help.text
+msgctxt "04060199.xhp#par_id3158416.62.help.text"
+msgid "Operator"
+msgstr "<emph>Operador</emph>"
+
+#: 04060199.xhp#par_id3152822.63.help.text
+msgctxt "04060199.xhp#par_id3152822.63.help.text"
+msgid "Name"
+msgstr "<emph>Nombre</emph>"
+
+#: 04060199.xhp#par_id3154949.64.help.text
+msgctxt "04060199.xhp#par_id3154949.64.help.text"
+msgid "Example"
+msgstr "<emph>Ejemplo</emph>"
+
+#: 04060199.xhp#par_id3156257.65.help.text
+msgid ": (Colon)"
+msgstr ": (dos puntos)"
+
+#: 04060199.xhp#par_id3153924.66.help.text
+msgctxt "04060199.xhp#par_id3153924.66.help.text"
+msgid "Range"
+msgstr "Área"
+
+#: 04060199.xhp#par_id3148432.67.help.text
+msgid "A1:C108"
+msgstr "A1:C108"
+
+#: 04060199.xhp#par_id3152592.68.help.text
+msgid "! (Exclamation point)"
+msgstr "! (signo de admiración)"
+
+#: 04060199.xhp#bm_id3150606.help.text
+msgid "<bookmark_value>intersection operator</bookmark_value>"
+msgstr "<bookmark_value>intersección;operador</bookmark_value>"
+
+#: 04060199.xhp#par_id3150606.69.help.text
+msgid "Intersection"
+msgstr "Intersección"
+
+#: 04060199.xhp#par_id3083445.70.help.text
+msgid "SUM(A1:B6!B5:C12)"
+msgstr "SUMA(A1:B6!B5:C12)"
+
+#: 04060199.xhp#par_id3150385.71.help.text
+msgid "Calculates the sum of all cells in the intersection; in this example, the result yields the sum of cells B5 and B6."
+msgstr "En este ejemplo B5 y B6 están en la intersección y se calcula su suma."
+
+#: 04060199.xhp#par_id4003723.help.text
+msgid "~ (Tilde)"
+msgstr "~ (Virgulilla)"
+
+#: 04060199.xhp#par_id838953.help.text
+msgid "Concatenation or union"
+msgstr "Encadenar o unir"
+
+#: 04060199.xhp#par_id2511978.help.text
+msgid "Takes two references and returns a reference list, which is a concatenation of the left reference followed by the right reference. Double entries are referenced twice. See note below this table."
+msgstr "Toma dos referencias y devuelve una lista de referencia, la cual es una concatenación de las referencias a la izquierda seguida por las referencias a la derecha. A las entradas dobles se les hace referencia dos veces. Ver nota debajo de esta tabla."
+
+#: 04060199.xhp#par_id181890.help.text
+msgid "Reference concatenation using a tilde character was implemented lately. When a formula with the tilde operator exists in a document that is opened in old versions of the software, an error is returned. A reference list is not allowed inside an array expression."
+msgstr "La concatenación de referencias por medio del carácter de virgulilla se implementó recientemente. Se devuelve un error cuando se abre en una versión antigua del software un documento que contiene una fórmula con el operador virgulilla. No está permitido el uso de una lista de referencias dentro de una expresión de matriz."
+
+#: 12030000.xhp#tit.help.text
+msgctxt "12030000.xhp#tit.help.text"
+msgid "Sort"
+msgstr "Ordenar"
+
+#: 12030000.xhp#hd_id3150275.1.help.text
+msgctxt "12030000.xhp#hd_id3150275.1.help.text"
+msgid "Sort"
+msgstr "Ordenar"
+
+#: 12030000.xhp#par_id3155922.2.help.text
+msgid "<variable id=\"sorttext\"><ahelp hid=\".uno:DataSort\">Sorts the selected rows according to the conditions that you specify.</ahelp></variable> $[officename] automatically recognizes and selects database ranges."
+msgstr "<variable id=\"sorttext\"><ahelp hid=\".uno:DataSort\">Ordena las filas seleccionadas según las condiciones que se especifiquen.</ahelp></variable> $[officename] reconoce y selecciona automáticamente las áreas de la base de datos."
+
+#: 12030000.xhp#par_id3147428.4.help.text
+msgid "You cannot sort data if the <link href=\"text/shared/01/02230000.xhp\" name=\"Record changes\">Record changes</link> options is enabled."
+msgstr "No se pueden ordenar datos si las opciones de <link href=\"text/shared/01/02230000.xhp\" name=\"cambios de registros de datos\">cambios de registros de datos</link> están habilitadas."
+
+#: 05030400.xhp#tit.help.text
+msgctxt "05030400.xhp#tit.help.text"
+msgid "Show"
+msgstr "Mostrar"
+
+#: 05030400.xhp#bm_id3147264.help.text
+msgid "<bookmark_value>spreadsheets; showing columns</bookmark_value><bookmark_value>showing; columns</bookmark_value><bookmark_value>showing; rows</bookmark_value>"
+msgstr "<bookmark_value>hojas de cálculo;mostrar columnas</bookmark_value><bookmark_value>mostrar;columnas</bookmark_value><bookmark_value>mostrar;filas</bookmark_value>"
+
+#: 05030400.xhp#hd_id3147264.1.help.text
+msgid "<link href=\"text/scalc/01/05030400.xhp\" name=\"Show\">Show</link>"
+msgstr "<link href=\"text/scalc/01/05030400.xhp\" name=\"Mostrar\">Mostrar</link>"
+
+#: 05030400.xhp#par_id3150447.2.help.text
+msgid "<ahelp hid=\".uno:ShowColumn\">Choose this command to show previously hidden rows or columns.</ahelp>"
+msgstr "<ahelp hid=\".uno:ShowColumn\">Elija este comando para mostrar las filas o columnas ocultas.</ahelp>"
+
+#: 05030400.xhp#par_id3155131.3.help.text
+msgid "To show a column or row, select the range of rows or columns containing the hidden elements, then choose <emph>Format - Row - Show</emph> or <emph>Format - Column - Show</emph>."
+msgstr "Para mostrar filas o columnas seleccione el área de filas o columnas que contienen elementos ocultos y, a continuación, el comando <emph>Formato - Fila - Mostrar </emph>o <emph>Formato - Columna - Mostrar</emph>."
+
+#: 05030400.xhp#par_id3145748.4.help.text
+msgid "To show all hidden cells, first click in the field in the upper left corner. This selects all cells of the table."
+msgstr "Para mostrar todas las celdas ocultas, pulse en primer lugar en el cuadro de la esquina superior izquierda. De esta forma se seleccionan todas las celdas de la tabla."
+
+#: 05100200.xhp#tit.help.text
+msgctxt "05100200.xhp#tit.help.text"
+msgid "Split Cells"
+msgstr "Dividir celdas"
+
+#: 05100200.xhp#hd_id3154654.help.text
+msgctxt "05100200.xhp#hd_id3154654.help.text"
+msgid "Split Cells"
+msgstr "Dividir celdas"
+
+#: 05100200.xhp#par_id3083451.help.text
+msgid "<ahelp hid=\".\">Splits previously merged cells.</ahelp>"
+msgstr "<ahelp hid=\".\">Divide celdas combinadas previamente.</ahelp>"
+
+#: 05100200.xhp#par_id3154023.help.text
+msgid "Choose <emph>Format - Merge Cells - Split Cells</emph>"
+msgstr "Elija <emph>Formato - Combinar celdas - Dividir celdas</emph>"
+
+#: 04060106.xhp#tit.help.text
+msgctxt "04060106.xhp#tit.help.text"
+msgid "Mathematical Functions"
+msgstr "Funciones matemáticas"
+
+#: 04060106.xhp#bm_id3147124.help.text
+msgid "<bookmark_value>mathematical functions</bookmark_value><bookmark_value>Function Wizard; mathematical</bookmark_value><bookmark_value>functions; mathematical functions</bookmark_value><bookmark_value>trigonometric functions</bookmark_value>"
+msgstr "<bookmark_value>funciones matemáticas</bookmark_value><bookmark_value>Asistente para funciones;matemáticas</bookmark_value><bookmark_value>funciones;matemáticas</bookmark_value><bookmark_value>funciones trigonométricas</bookmark_value>"
+
+#: 04060106.xhp#hd_id3147124.1.help.text
+msgctxt "04060106.xhp#hd_id3147124.1.help.text"
+msgid "Mathematical Functions"
+msgstr "Funciones matemáticas"
+
+#: 04060106.xhp#par_id3154943.2.help.text
+msgid "<variable id=\"mathematiktext\">This category contains the <emph>Mathematical</emph> functions for Calc.</variable> To open the <emph>Function Wizard</emph>, choose <link href=\"text/scalc/01/04060000.xhp\" name=\"Insert - Function\"><emph>Insert - Function</emph></link>."
+msgstr "<variable id=\"mathematiktext\">Esta categoría contiene las funciones <emph>matemáticas</emph> de Calc.</variable> Para abrir el <emph>Asistente para funciones</emph>, elija <link href=\"text/scalc/01/04060000.xhp\" name=\"Insert - Function\"><emph>Insertar - Función</emph></link>."
+
+#: 04060106.xhp#bm_id3146944.help.text
+msgid "<bookmark_value>ABS function</bookmark_value><bookmark_value>absolute values</bookmark_value><bookmark_value>values;absolute</bookmark_value>"
+msgstr "<bookmark_value>ABS</bookmark_value><bookmark_value>valores absolutos</bookmark_value><bookmark_value>valores;absolutos</bookmark_value>"
+
+#: 04060106.xhp#hd_id3146944.33.help.text
+msgid "ABS"
+msgstr "ABS"
+
+#: 04060106.xhp#par_id3154546.34.help.text
+msgid "<ahelp hid=\"HID_FUNC_ABS\">Returns the absolute value of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ABS\">Devuelve el valor absoluto de un número.</ahelp>"
+
+#: 04060106.xhp#hd_id3154843.35.help.text
+msgctxt "04060106.xhp#hd_id3154843.35.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3147475.36.help.text
+msgid "ABS(Number)"
+msgstr "ABS(Número)"
+
+#: 04060106.xhp#par_id3148438.37.help.text
+msgid "<emph>Number</emph> is the number whose absolute value is to be calculated. The absolute value of a number is its value without the +/- sign."
+msgstr "<emph>Número</emph> es el valor cuyo valor absoluto debe calcularse. El valor absoluto de un número es su valor sin el signo +/-."
+
+#: 04060106.xhp#hd_id3155823.38.help.text
+msgctxt "04060106.xhp#hd_id3155823.38.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3152787.39.help.text
+msgid "<item type=\"input\">=ABS(-56)</item> returns 56."
+msgstr "<item type=\"input\">=ABS(-56)</item> devuelve 56."
+
+#: 04060106.xhp#par_id3148752.40.help.text
+msgid "<item type=\"input\">=ABS(12)</item> returns 12."
+msgstr "<item type=\"input\">=ABS(12)</item> devuelve 12."
+
+#: 04060106.xhp#par_id320139.help.text
+msgid "<item type=\"input\">=ABS(0)</item> returns 0."
+msgstr "<item type=\"input\">=ABS(0)</item> devuelve 0."
+
+#: 04060106.xhp#bm_id3150896.help.text
+msgid "<bookmark_value>COUNTBLANK function</bookmark_value><bookmark_value>counting;empty cells</bookmark_value><bookmark_value>empty cells;counting</bookmark_value>"
+msgstr "<bookmark_value>CONTAR.BLANCO</bookmark_value><bookmark_value>contar;celdas vacías</bookmark_value><bookmark_value>celdas vacías;contar</bookmark_value>"
+
+#: 04060106.xhp#hd_id3150896.42.help.text
+msgid "COUNTBLANK"
+msgstr "CONTAR.BLANCO"
+
+#: 04060106.xhp#par_id3155260.43.help.text
+msgid "<ahelp hid=\"HID_FUNC_ANZAHLLEEREZELLEN\">Returns the number of empty cells.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ANZAHLLEEREZELLEN\">Devuelve el número de celdas vacías.</ahelp> Escriba las referencias de las celdas separadas por dos puntos en el campo de texto de <emph>área</emph>."
+
+#: 04060106.xhp#hd_id3145144.44.help.text
+msgctxt "04060106.xhp#hd_id3145144.44.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3153931.45.help.text
+msgid "COUNTBLANK(Range)"
+msgstr "CONTAR.BLANCO(Rango)"
+
+#: 04060106.xhp#par_id3149512.46.help.text
+msgid " Returns the number of empty cells in the cell range <emph>Range</emph>."
+msgstr "Devuelve el número de celdas vacías en el rango de celdas<emph>Rango</emph>."
+
+#: 04060106.xhp#hd_id3146139.47.help.text
+msgctxt "04060106.xhp#hd_id3146139.47.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3148586.48.help.text
+msgid "<item type=\"input\">=COUNTBLANK(A1:B2)</item> returns 4 if cells A1, A2, B1, and B2 are all empty."
+msgstr "<item type=\"input\">=CONTAR.BLANCO(A1:B2)</item> devuelve 4 si las celdas A1, A2, B1 y B2 están vacías."
+
+#: 04060106.xhp#bm_id3153114.help.text
+msgid "<bookmark_value>ACOS function</bookmark_value>"
+msgstr "<bookmark_value>ACOS</bookmark_value>"
+
+#: 04060106.xhp#hd_id3153114.50.help.text
+msgid "ACOS"
+msgstr "ACOS"
+
+#: 04060106.xhp#par_id3145163.51.help.text
+msgid "<ahelp hid=\"HID_FUNC_ARCCOS\">Returns the inverse trigonometric cosine of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCCOS\">Devuelve la inversa del coseno trigonométrico de un número.</ahelp>"
+
+#: 04060106.xhp#hd_id3153565.52.help.text
+msgctxt "04060106.xhp#hd_id3153565.52.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3150020.53.help.text
+msgid "ACOS(Number)"
+msgstr "ACOS(Número)"
+
+#: 04060106.xhp#par_id3159134.54.help.text
+msgid " This function returns the inverse trigonometric cosine of <emph>Number</emph>, that is the angle (in radians) whose cosine is Number. The angle returned is between 0 and PI."
+msgstr "_Esta función devuelve la inversa del coseno trigonométrico del <emph>Número</emph>, que es el ángulo (en radianes) cuyo coseno es Número. El ángulo devuelto esta entre 0 y PI."
+
+#: 04060106.xhp#par_id679647.help.text
+msgctxt "04060106.xhp#par_id679647.help.text"
+msgid "To return the angle in degrees, use the DEGREES function."
+msgstr "Para volver el ángulo en grados, use la función GRADOS."
+
+#: 04060106.xhp#hd_id3149882.55.help.text
+msgctxt "04060106.xhp#hd_id3149882.55.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3150128.56.help.text
+msgid "<item type=\"input\">=ACOS(-1)</item> returns 3.14159265358979 (PI radians)"
+msgstr "<item type=\"input\">=ACOS(-1)</item> devuelve 3,14159265358979 (PI radianes)."
+
+#: 04060106.xhp#par_id8792382.help.text
+msgid "<item type=\"input\">=DEGREES(ACOS(0.5))</item> returns 60. The cosine of 60 degrees is 0.5."
+msgstr "<item type=\"input\">=GRADOS(ACOS(0,5))</item> devuelve 60. El coseno de 60 grados es 0,5."
+
+#: 04060106.xhp#bm_id3145355.help.text
+msgid "<bookmark_value>ACOSH function</bookmark_value>"
+msgstr "<bookmark_value>ACOSH</bookmark_value>"
+
+#: 04060106.xhp#hd_id3145355.60.help.text
+msgid "ACOSH"
+msgstr "ACOSH"
+
+#: 04060106.xhp#par_id3157993.61.help.text
+msgid "<ahelp hid=\"HID_FUNC_ARCOSHYP\">Returns the inverse hyperbolic cosine of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCOSHYP\">Devuelve el inverso del coseno hiperbólico de un número.</ahelp>"
+
+#: 04060106.xhp#hd_id3145295.62.help.text
+msgctxt "04060106.xhp#hd_id3145295.62.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3151017.63.help.text
+msgid "ACOSH(Number)"
+msgstr "ACOSH(Número)"
+
+#: 04060106.xhp#par_id3149000.64.help.text
+msgid " This function returns the inverse hyperbolic cosine of <emph>Number</emph>, that is the number whose hyperbolic cosine is Number. "
+msgstr "Esta función devuelve el inverso del coseno hiperbólico de <emph>Número</emph>, que es el número cuyo coseno hiperbólico es Número."
+
+#: 04060106.xhp#par_id6393932.help.text
+msgid " Number must be greater than or equal to 1."
+msgstr " Número debe ser mas o igual que 1."
+
+#: 04060106.xhp#hd_id3150566.65.help.text
+msgctxt "04060106.xhp#hd_id3150566.65.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3145629.66.help.text
+msgid "<item type=\"input\">=ACOSH(1)</item> returns 0."
+msgstr "<item type=\"input\">=ACOSH(1)</item> devuelve 0."
+
+#: 04060106.xhp#par_id951567.help.text
+msgid "<item type=\"input\">=ACOSH(COSH(4))</item> returns 4."
+msgstr "<item type=\"input\">=ACOSH(COSH(4))</item> devuelve 4."
+
+#: 04060106.xhp#bm_id3149027.help.text
+msgid "<bookmark_value>ACOT function</bookmark_value>"
+msgstr "<bookmark_value>ACOT</bookmark_value>"
+
+#: 04060106.xhp#hd_id3149027.70.help.text
+msgid "ACOT"
+msgstr "ACOT"
+
+#: 04060106.xhp#par_id3155818.71.help.text
+msgid "<ahelp hid=\"HID_FUNC_ARCCOT\">Returns the inverse cotangent (the arccotangent) of the given number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCCOT\">Devuelve el inverso de la cotangente del número especificado.</ahelp>"
+
+#: 04060106.xhp#hd_id3153225.72.help.text
+msgctxt "04060106.xhp#hd_id3153225.72.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3158419.73.help.text
+msgid "ACOT(Number)"
+msgstr "ACOT(Número)"
+
+#: 04060106.xhp#par_id3154948.74.help.text
+msgid " This function returns the inverse trigonometric cotangent of <emph>Number</emph>, that is the angle (in radians) whose cotangent is Number. The angle returned is between 0 and PI."
+msgstr "Esta función devuelv()e la cotangente trigonométrica inversa del <emph>Número</emph>, que es el ángulo (en radianes) cuyo número es cotangente. El ángulo que devuelve está entre 0 y PI."
+
+#: 04060106.xhp#par_id5834528.help.text
+msgctxt "04060106.xhp#par_id5834528.help.text"
+msgid "To return the angle in degrees, use the DEGREES function."
+msgstr "Para volver el ángulo en grados, use la función GRADOS."
+
+#: 04060106.xhp#hd_id3147538.75.help.text
+msgctxt "04060106.xhp#hd_id3147538.75.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3155375.76.help.text
+msgid "<item type=\"input\">=ACOT(1)</item> returns 0.785398163397448 (PI/4 radians)."
+msgstr "<item type=\"input\">=ACOT(1)</item> devuelve 0,785398163397448 (PI/4 radianes)."
+
+#: 04060106.xhp#par_id8589434.help.text
+msgid "<item type=\"input\">=DEGREES(ACOT(1))</item> returns 45. The tangent of 45 degrees is 1. "
+msgstr "<item type=\"input\">=GRADOS(ACOT(1))</item> devuelve 45. La tangente de 45 grados es 1. "
+
+#: 04060106.xhp#bm_id3148426.help.text
+msgid "<bookmark_value>ACOTH function</bookmark_value>"
+msgstr "<bookmark_value>ACOTH</bookmark_value>"
+
+#: 04060106.xhp#hd_id3148426.80.help.text
+msgid "ACOTH"
+msgstr "ACOTH"
+
+#: 04060106.xhp#par_id3147478.81.help.text
+msgid "<ahelp hid=\"HID_FUNC_ARCOTHYP\">Returns the inverse hyperbolic cotangent of the given number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCOTHYP\">Devuelve el inverso de la cotangente hiperbólica del número especificado.</ahelp>"
+
+#: 04060106.xhp#hd_id3152585.82.help.text
+msgctxt "04060106.xhp#hd_id3152585.82.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3147172.83.help.text
+msgid "ACOTH(Number)"
+msgstr "ACOTH(Número)"
+
+#: 04060106.xhp#par_id3146155.84.help.text
+msgid " This function returns the inverse hyperbolic cotangent of <emph>Number</emph>, that is the number whose hyperbolic cotangent is Number."
+msgstr " Esta función devuelve la inversa de la cotangente hiperbólica de <emph>Número</emph>, que es el número cuya cotangente hiperbólica es Número."
+
+#: 04060106.xhp#par_id5818659.help.text
+msgid "An error results if Number is between -1 and 1 inclusive."
+msgstr "Un resultado da error si Número esta entre -1 y 1, ambos inclusive."
+
+#: 04060106.xhp#hd_id3083452.85.help.text
+msgctxt "04060106.xhp#hd_id3083452.85.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3150608.86.help.text
+msgid "<item type=\"input\">=ACOTH(1.1)</item> returns inverse hyperbolic cotangent of 1.1, approximately 1.52226."
+msgstr "<item type=\"input\">=ACOTH(1.1)</item> devuelve la cotangente hiperbólica inversa de 1,1, aproximadamente 1,52226."
+
+#: 04060106.xhp#bm_id3145084.help.text
+msgid "<bookmark_value>ASIN function</bookmark_value>"
+msgstr "<bookmark_value>ASENO</bookmark_value>"
+
+#: 04060106.xhp#hd_id3145084.90.help.text
+msgid "ASIN"
+msgstr "ASENO"
+
+#: 04060106.xhp#par_id3156296.91.help.text
+msgid "<ahelp hid=\"HID_FUNC_ARCSIN\">Returns the inverse trigonometric sine of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCSIN\">Devuelve la inversa del seno trigonométrico de un número.</ahelp>"
+
+#: 04060106.xhp#hd_id3149716.92.help.text
+msgctxt "04060106.xhp#hd_id3149716.92.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3156305.93.help.text
+msgid "ASIN(Number)"
+msgstr "ASENO(Número)"
+
+#: 04060106.xhp#par_id3150964.94.help.text
+msgid " This function returns the inverse trigonometric sine of <emph>Number</emph>, that is the angle (in radians) whose sine is Number. The angle returned is between -PI/2 and +PI/2."
+msgstr "Esta función devuelve el seno trigonométrico inverso del <emph>Número</emph>, que es el ángulo (en radianes) cuyo seno es el Número. El ángulo que se muestra está entre -PI/2 y +PI/2."
+
+#: 04060106.xhp#par_id203863.help.text
+msgctxt "04060106.xhp#par_id203863.help.text"
+msgid "To return the angle in degrees, use the DEGREES function."
+msgstr "To return the angle in degrees, use the DEGREES function."
+
+#: 04060106.xhp#hd_id3149448.95.help.text
+msgctxt "04060106.xhp#hd_id3149448.95.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3156100.96.help.text
+msgid "<item type=\"input\">=ASIN(0)</item> returns 0."
+msgstr "<item type=\"input\">=ASENO(0)</item> devuelve 0."
+
+#: 04060106.xhp#par_id6853846.help.text
+msgid "<item type=\"input\">=ASIN(1)</item> returns 1.5707963267949 (PI/2 radians). "
+msgstr "<item type=\"input\">=ASENO(1)</item> devuelve 1,5707963267949 (PI/2 radianes). "
+
+#: 04060106.xhp#par_id8772240.help.text
+msgid "<item type=\"input\">=DEGREES(ASIN(0.5))</item> returns 30. The sine of 30 degrees is 0.5."
+msgstr "<item type=\"input\">=GRADOS(ASENO(0,5))</item> devuelve 30. El seno de 30 grados es 0,5."
+
+#: 04060106.xhp#bm_id3151266.help.text
+msgid "<bookmark_value>ASINH function</bookmark_value>"
+msgstr "<bookmark_value>ASENOH</bookmark_value>"
+
+#: 04060106.xhp#hd_id3151266.100.help.text
+msgid "ASINH"
+msgstr "ASENOH"
+
+#: 04060106.xhp#par_id3147077.101.help.text
+msgid "<ahelp hid=\"HID_FUNC_ARSINHYP\">Returns the inverse hyperbolic sine of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARSINHYP\">Devuelve el seno hiperbólico inverso de un número.</ahelp>"
+
+#: 04060106.xhp#hd_id3150763.102.help.text
+msgctxt "04060106.xhp#hd_id3150763.102.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3150882.103.help.text
+msgid "ASINH(Number)"
+msgstr "ASENOH(Número)"
+
+#: 04060106.xhp#par_id3147621.104.help.text
+msgid " This function returns the inverse hyperbolic sine of <emph>Number</emph>, that is the number whose hyperbolic sine is Number. "
+msgstr " Esta función devuelve el seno hiperbólico inverso del <emph>Número</emph>, que es el número cuyo seno hiperbólico es el número."
+
+#: 04060106.xhp#hd_id3153212.105.help.text
+msgctxt "04060106.xhp#hd_id3153212.105.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3156120.106.help.text
+msgid "<item type=\"input\">=ASINH(-90)</item> returns approximately -5.1929877."
+msgstr "<item type=\"input\">=ASENOH(-90)</item> da como resultado aproximadamente -5,1929877."
+
+#: 04060106.xhp#par_id4808496.help.text
+msgid "<item type=\"input\">=ASINH(SINH(4))</item> returns 4."
+msgstr "<item type=\"input\">=ASENOH(SENOH(4))</item> devuelve 4."
+
+#: 04060106.xhp#bm_id3155996.help.text
+msgid "<bookmark_value>ATAN function</bookmark_value>"
+msgstr "<bookmark_value>ATAN</bookmark_value>"
+
+#: 04060106.xhp#hd_id3155996.110.help.text
+msgid "ATAN"
+msgstr "ATAN"
+
+#: 04060106.xhp#par_id3149985.111.help.text
+msgid "<ahelp hid=\"HID_FUNC_ARCTAN\">Returns the inverse trigonometric tangent of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCTAN\">Devuelve la inversa de la tangente trigonométrica de un número.</ahelp>"
+
+#: 04060106.xhp#hd_id3151294.112.help.text
+msgctxt "04060106.xhp#hd_id3151294.112.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3150261.113.help.text
+msgid "ATAN(Number)"
+msgstr "ATAN(Número)"
+
+#: 04060106.xhp#par_id3147267.114.help.text
+msgid " This function returns the inverse trigonometric tangent of <emph>Number</emph>, that is the angle (in radians) whose tangent is Number. The angle returned is between -PI/2 and PI/2."
+msgstr "Esta función devuelve la tangente trigonométrica inversa del <emph>Número</emph>, que es el ángulo (en radianes) cuya tangente es el número. El ángulo muestra está entre -PI/2 y PI/2."
+
+#: 04060106.xhp#par_id6293527.help.text
+msgctxt "04060106.xhp#par_id6293527.help.text"
+msgid "To return the angle in degrees, use the DEGREES function."
+msgstr "To return the angle in degrees, use the DEGREES function."
+
+#: 04060106.xhp#hd_id3154054.115.help.text
+msgctxt "04060106.xhp#hd_id3154054.115.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3143229.116.help.text
+msgid "<item type=\"input\">=ATAN(1)</item> returns 0.785398163397448 (PI/4 radians)."
+msgstr "<item type=\"input\">=ATAN(1)</item> devuelve 0,785398163397448 (PI/4 radianes)."
+
+#: 04060106.xhp#par_id8746299.help.text
+msgid "<item type=\"input\">=DEGREES(ATAN(1))</item> returns 45. The tangent of 45 degrees is 1."
+msgstr "<item type=\"input\">=GRADOS(ATAN(1))</item> devuelve 45. La tangente de 45 grados es 1."
+
+#: 04060106.xhp#bm_id3153983.help.text
+msgid "<bookmark_value>ATAN2 function</bookmark_value>"
+msgstr "<bookmark_value>ATAN2</bookmark_value>"
+
+#: 04060106.xhp#hd_id3153983.120.help.text
+msgid "ATAN2"
+msgstr "ATAN2"
+
+#: 04060106.xhp#par_id3154297.121.help.text
+msgid "<ahelp hid=\"HID_FUNC_ARCTAN2\">Returns the inverse trigonometric tangent of the specified x and y coordinates.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCTAN2\">Devuelve la inversa de la tangente trigonométrica de las coordenadas x e y especificadas.</ahelp>"
+
+#: 04060106.xhp#hd_id3149758.122.help.text
+msgctxt "04060106.xhp#hd_id3149758.122.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3156013.123.help.text
+msgid "ATAN2(NumberX; NumberY)"
+msgstr "ATAN2(NúmeroX; NúmeroY)"
+
+#: 04060106.xhp#par_id3151168.124.help.text
+msgid "<emph>NumberX</emph> is the value of the x coordinate."
+msgstr "<emph>NúmeroX</emph> es el valor de la coordenada x."
+
+#: 04060106.xhp#par_id3152798.125.help.text
+msgid "<emph>NumberY</emph> is the value of the y coordinate."
+msgstr "<emph>NúmeroY</emph> es el valor de la coordenada y."
+
+#: 04060106.xhp#par_id5036164.help.text
+msgid "ATAN2 returns the inverse trigonometric tangent, that is, the angle (in radians) between the x-axis and a line from point NumberX, NumberY to the origin. The angle returned is between -PI and PI."
+msgstr "ATAN2 devuelve la tangente trigonométrica inversa, que es, el ángulo (en radianes) entre el eje X y una línea desde el punto NúmeroX, NúmeroY al origen.El ángulo que muestra está entre -PI y PI."
+
+#: 04060106.xhp#par_id3001800.help.text
+msgctxt "04060106.xhp#par_id3001800.help.text"
+msgid "To return the angle in degrees, use the DEGREES function."
+msgstr "To return the angle in degrees, use the DEGREES function."
+
+#: 04060106.xhp#hd_id3145663.126.help.text
+msgctxt "04060106.xhp#hd_id3145663.126.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3154692.127.help.text
+msgid "<item type=\"input\">=ATAN2(20;20)</item> returns 0.785398163397448 (PI/4 radians)."
+msgstr "<item type=\"input\">=ATAN2(20;20)</item> devuelve 0,785398163397448 (PI/4 radianes)."
+
+#: 04060106.xhp#par_id1477095.help.text
+msgid "<item type=\"input\">=DEGREES(ATAN2(12.3;12.3))</item> returns 45. The tangent of 45 degrees is 1."
+msgstr "<item type=\"input\">=GRADOS(ATAN2(12,3;12,3))</item> devuelve 45. La tangente de 45 grados es 1."
+
+#: 04060106.xhp#bm_id3155398.help.text
+msgid "<bookmark_value>ATANH function</bookmark_value>"
+msgstr "<bookmark_value>ATANH</bookmark_value>"
+
+#: 04060106.xhp#hd_id3155398.130.help.text
+msgid "ATANH"
+msgstr "ATANH"
+
+#: 04060106.xhp#par_id3148829.131.help.text
+msgid "<ahelp hid=\"HID_FUNC_ARTANHYP\">Returns the inverse hyperbolic tangent of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARTANHYP\">Devuelve la tangente hiperbólica inversa de un número.</ahelp>"
+
+#: 04060106.xhp#hd_id3146997.132.help.text
+msgctxt "04060106.xhp#hd_id3146997.132.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3149912.133.help.text
+msgid "ATANH(Number)"
+msgstr "ATANH(Número)"
+
+#: 04060106.xhp#par_id3150521.134.help.text
+msgid " This function returns the inverse hyperbolic tangent of <emph>Number</emph>, that is the number whose hyperbolic tangent is Number. "
+msgstr " Esta función devuelve la inversa de la tangente hiperbólica del <emph>Número</emph>, que es el número cuya tangente hiperbólica es Número. "
+
+#: 04060106.xhp#par_id9357280.help.text
+msgid " Number must obey the condition -1 < number < 1."
+msgstr " El número debe obedecer a la condición -1 < número < 1."
+
+#: 04060106.xhp#hd_id3148450.135.help.text
+msgctxt "04060106.xhp#hd_id3148450.135.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3145419.136.help.text
+msgid "<item type=\"input\">=ATANH(0)</item> returns 0."
+msgstr "<item type=\"input\">=ATANH(0)</item> devuelve 0."
+
+#: 04060106.xhp#bm_id3153062.help.text
+msgid "<bookmark_value>COS function</bookmark_value>"
+msgstr "<bookmark_value>COS</bookmark_value>"
+
+#: 04060106.xhp#hd_id3153062.149.help.text
+msgid "COS"
+msgstr "COS"
+
+#: 04060106.xhp#par_id3148803.150.help.text
+msgid "<ahelp hid=\"HID_FUNC_COS\">Returns the cosine of the given angle (in radians).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_COS\">Devuelve el coseno del número (ángulo) especificado.</ahelp>"
+
+#: 04060106.xhp#hd_id3150779.151.help.text
+msgctxt "04060106.xhp#hd_id3150779.151.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3154213.152.help.text
+msgid "COS(Number)"
+msgstr "COS(Número)"
+
+#: 04060106.xhp#par_id3154285.153.help.text
+msgid " Returns the (trigonometric) cosine of <emph>Number</emph>, the angle in radians."
+msgstr "<emph>Número</emph> es el valor cuyo coseno debe calcularse."
+
+#: 04060106.xhp#par_id831019.help.text
+msgid "To return the cosine of an angle in degrees, use the RADIANS function."
+msgstr "To return the cosine of an angle in degrees, use the RADIANS function."
+
+#: 04060106.xhp#hd_id3153579.154.help.text
+msgctxt "04060106.xhp#hd_id3153579.154.help.text"
+msgid "Examples"
+msgstr "Ejemplos"
+
+#: 04060106.xhp#par_id3147240.155.help.text
+msgid "<item type=\"input\">=COS(PI()/2)</item> returns 0, the cosine of PI/2 radians."
+msgstr "<item type=\"input\">=COSENO(PI()/2)</item> devuelve 0, el coseno de PI/2 radianes."
+
+#: 04060106.xhp#par_id3147516.156.help.text
+msgid "<item type=\"input\">=COS(RADIANS(60))</item> returns 0.5, the cosine of 60 degrees."
+msgstr "<item type=\"input\">=COSENO(RADIANES(60))</item> devuelve 0,5, el coseno de 60 grados."
+
+#: 04060106.xhp#bm_id3154277.help.text
+msgid "<bookmark_value>COSH function</bookmark_value>"
+msgstr "<bookmark_value>COSH</bookmark_value>"
+
+#: 04060106.xhp#hd_id3154277.159.help.text
+msgid "COSH"
+msgstr "COSH"
+
+#: 04060106.xhp#par_id3146946.160.help.text
+msgid "<ahelp hid=\"HID_FUNC_COSHYP\">Returns the hyperbolic cosine of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_COSHYP\">Devuelve el coseno hiperbólico de un número.</ahelp>"
+
+#: 04060106.xhp#hd_id3149792.161.help.text
+msgctxt "04060106.xhp#hd_id3149792.161.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3166440.162.help.text
+msgid "COSH(Number)"
+msgstr "COSH(Número)"
+
+#: 04060106.xhp#par_id3150710.163.help.text
+msgid "Returns the hyperbolic cosine of <emph>Number</emph>."
+msgstr "<emph>Número</emph> es el valor cuyo coseno hiperbólico debe calcularse."
+
+#: 04060106.xhp#hd_id3153234.164.help.text
+msgctxt "04060106.xhp#hd_id3153234.164.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3154099.165.help.text
+msgid "<item type=\"input\">=COSH(0)</item> returns 1, the hyperbolic cosine of 0."
+msgstr "<item type=\"input\">=COSH(0)</item> devuelve 1, el coseno hiperbólico de 0."
+
+#: 04060106.xhp#bm_id3152888.help.text
+msgid "<bookmark_value>COT function</bookmark_value>"
+msgstr "<bookmark_value>COT</bookmark_value>"
+
+#: 04060106.xhp#hd_id3152888.169.help.text
+msgid "COT"
+msgstr "COT"
+
+#: 04060106.xhp#par_id3153679.170.help.text
+msgid "<ahelp hid=\"HID_FUNC_COT\">Returns the cotangent of the given angle (in radians).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_COT\">Devuelve la cotangente del ángulo especificado.</ahelp>"
+
+#: 04060106.xhp#hd_id3152943.171.help.text
+msgctxt "04060106.xhp#hd_id3152943.171.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3154856.172.help.text
+msgid "COT(Number)"
+msgstr "COT(Número)"
+
+#: 04060106.xhp#par_id3149969.173.help.text
+msgid " Returns the (trigonometric) cotangent of <emph>Number</emph>, the angle in radians."
+msgstr "<emph>Número</emph> es el valor cuya cotangente debe calcularse."
+
+#: 04060106.xhp#par_id3444624.help.text
+msgid "To return the cotangent of an angle in degrees, use the RADIANS function."
+msgstr "Para regresar la cotangente de un angulo en grados, usa la función de RADIANES."
+
+#: 04060106.xhp#par_id6814477.help.text
+msgid "The cotangent of an angle is equivalent to 1 divided by the tangent of that angle."
+msgstr "The cotangent of an angle is equivalent to 1 divided by the tangent of that angle."
+
+#: 04060106.xhp#hd_id3149800.174.help.text
+msgid "Examples:"
+msgstr "Ejemplo:"
+
+#: 04060106.xhp#par_id3148616.175.help.text
+msgid "<item type=\"input\">=COT(PI()/4)</item> returns 1, the cotangent of PI/4 radians."
+msgstr "<item type=\"input\">=COT(PI()/4)</item> devuelve 1, la cotangente de PI/4 radianes."
+
+#: 04060106.xhp#par_id3148986.176.help.text
+msgid "<item type=\"input\">=COT(RADIANS(45))</item> returns 1, the cotangent of 45 degrees."
+msgstr "<item type=\"input\">=COT(RADIANES(45))</item> devuelve 1, la cotangente de 45 grados."
+
+#: 04060106.xhp#bm_id3154337.help.text
+msgid "<bookmark_value>COTH function</bookmark_value>"
+msgstr "<bookmark_value>COTH</bookmark_value>"
+
+#: 04060106.xhp#hd_id3154337.178.help.text
+msgid "COTH"
+msgstr "COTH"
+
+#: 04060106.xhp#par_id3149419.179.help.text
+msgid "<ahelp hid=\"HID_FUNC_COTHYP\">Returns the hyperbolic cotangent of a given number (angle).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_COTHYP\">Devuelve la cotangente hiperbólica de un número (ángulo) especificado.</ahelp>"
+
+#: 04060106.xhp#hd_id3149242.180.help.text
+msgctxt "04060106.xhp#hd_id3149242.180.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3143280.181.help.text
+msgid "COTH(Number)"
+msgstr "COTH(Número)"
+
+#: 04060106.xhp#par_id3154799.182.help.text
+msgid " Returns the hyperbolic cotangent of <emph>Number</emph>."
+msgstr "<emph>Número</emph> es el valor cuyo cotangente hiperbólica debe calcularse."
+
+#: 04060106.xhp#hd_id3155422.183.help.text
+msgctxt "04060106.xhp#hd_id3155422.183.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3144754.184.help.text
+msgid "<item type=\"input\">=COTH(1)</item> returns the hyperbolic cotangent of 1, approximately 1.3130."
+msgstr "<item type=\"input\">=COTH(1)</item> devuelve la cotangente hiperbólica de 1, aproximadamente 1,3130."
+
+#: 04060106.xhp#bm_id6110552.help.text
+msgid "<bookmark_value>CSC function</bookmark_value>"
+msgstr "<bookmark_value>Función CSC</bookmark_value>"
+
+#: 04060106.xhp#hd_id9523234.149.help.text
+msgid "CSC"
+msgstr "CSC"
+
+#: 04060106.xhp#par_id4896433.150.help.text
+msgid "<ahelp hid=\"HID_FUNC_COSECANT\">Returns the cosecant of the given angle (in radians). The cosecant of an angle is equivalent to 1 divided by the sine of that angle</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_COSECANT\">Devuelve la cosecante de un ángulo dado (en radianes). La cosecante de un ángulo equivale a 1 dividido entre el seno de dicho ángulo</ahelp>"
+
+#: 04060106.xhp#hd_id3534032.151.help.text
+msgctxt "04060106.xhp#hd_id3534032.151.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id4571344.152.help.text
+#, fuzzy
+msgid "CSC(Number)"
+msgstr "COSH(Número)"
+
+#: 04060106.xhp#par_id9859164.153.help.text
+msgid " Returns the (trigonometric) cosecant of <emph>Number</emph>, the angle in radians."
+msgstr " Devuelve la cosecante (trigonométrica) de <emph>Número</emph>, el ángulo en radianes."
+
+#: 04060106.xhp#par_id3428494.help.text
+#, fuzzy
+msgid "To return the cosecant of an angle in degrees, use the RADIANS function."
+msgstr "To return the cosine of an angle in degrees, use the RADIANS function."
+
+#: 04060106.xhp#hd_id2577161.154.help.text
+msgctxt "04060106.xhp#hd_id2577161.154.help.text"
+msgid "Examples"
+msgstr "Ejemplos"
+
+#: 04060106.xhp#par_id3736803.155.help.text
+msgid "<item type=\"input\">=CSC(PI()/4)</item> returns approximately 1.4142135624, the inverse of the sine of PI/4 radians."
+msgstr ""
+
+#: 04060106.xhp#par_id6016818.156.help.text
+msgid "<item type=\"input\">=CSC(RADIANS(30))</item> returns 2, the cosecant of 30 degrees."
+msgstr ""
+
+#: 04060106.xhp#bm_id9288877.help.text
+#, fuzzy
+msgid "<bookmark_value>CSCH function</bookmark_value>"
+msgstr "<bookmark_value>función ASC</bookmark_value>"
+
+#: 04060106.xhp#hd_id4325650.159.help.text
+#, fuzzy
+msgid "CSCH"
+msgstr "CSC"
+
+#: 04060106.xhp#par_id579916.160.help.text
+msgid "<ahelp hid=\"HID_FUNC_COSECANTHYP\">Returns the hyperbolic cosecant of a number.</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id5336768.161.help.text
+msgctxt "04060106.xhp#hd_id5336768.161.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3108851.162.help.text
+#, fuzzy
+msgid "CSCH(Number)"
+msgstr "COSH(Número)"
+
+#: 04060106.xhp#par_id1394188.163.help.text
+#, fuzzy
+msgid "Returns the hyperbolic cosecant of <emph>Number</emph>."
+msgstr "<emph>Número</emph> es el valor cuyo coseno hiperbólico debe calcularse."
+
+#: 04060106.xhp#hd_id6037477.164.help.text
+msgctxt "04060106.xhp#hd_id6037477.164.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id5426085.165.help.text
+msgid "<item type=\"input\">=CSCH(1)</item> returns approximately 0.8509181282, the hyperbolic cosecant of 1."
+msgstr ""
+
+#: 04060106.xhp#bm_id3145314.help.text
+msgid "<bookmark_value>DEGREES function</bookmark_value><bookmark_value>converting;radians, into degrees</bookmark_value>"
+msgstr "<bookmark_value>GRADOS</bookmark_value><bookmark_value>convertir;radianes, en grados</bookmark_value>"
+
+#: 04060106.xhp#hd_id3145314.188.help.text
+msgid "DEGREES"
+msgstr "GRADOS"
+
+#: 04060106.xhp#par_id3149939.189.help.text
+msgid "<ahelp hid=\"HID_FUNC_DEG\">Converts radians into degrees.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DEG\">Convierte radianes en grados.</ahelp>"
+
+#: 04060106.xhp#hd_id3150623.190.help.text
+msgctxt "04060106.xhp#hd_id3150623.190.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3145600.191.help.text
+msgid "DEGREES(Number)"
+msgstr "GRADOS(numero)"
+
+#: 04060106.xhp#par_id3149484.192.help.text
+msgid "<emph>Number</emph> is the angle in radians to be converted to degrees."
+msgstr "<emph>Número</emph> es el ángulo en radianes que se convertirá a grados."
+
+#: 04060106.xhp#hd_id3669545.help.text
+msgctxt "04060106.xhp#hd_id3669545.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3459578.help.text
+msgid "<item type=\"input\">=DEGREES(PI())</item> returns 180 degrees."
+msgstr "<item type=\"input\">=GRADOS(PI())</item> da como resultado 180 grados."
+
+#: 04060106.xhp#bm_id3148698.help.text
+msgid "<bookmark_value>EXP function</bookmark_value>"
+msgstr "<bookmark_value>EXP</bookmark_value>"
+
+#: 04060106.xhp#hd_id3148698.198.help.text
+msgid "EXP"
+msgstr "EXP"
+
+#: 04060106.xhp#par_id3150592.199.help.text
+msgid "<ahelp hid=\"HID_FUNC_EXP\">Returns e raised to the power of a number.</ahelp> The constant e has a value of approximately 2.71828182845904."
+msgstr "<ahelp hid=\"HID_FUNC_EXP\">Devuelve el resultado de elevar un número a una potencia.</ahelp> La constante e tiene un valor aproximado de 2,71828182845904."
+
+#: 04060106.xhp#hd_id3150351.200.help.text
+msgctxt "04060106.xhp#hd_id3150351.200.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3146786.201.help.text
+msgid "EXP(Number)"
+msgstr "EXP(Número)"
+
+#: 04060106.xhp#par_id3155608.202.help.text
+msgid "<emph>Number</emph> is the power to which e is to be raised."
+msgstr "<emph>Número</emph> es la potencia a la que se elevará el número e."
+
+#: 04060106.xhp#hd_id3154418.203.help.text
+msgctxt "04060106.xhp#hd_id3154418.203.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3156340.204.help.text
+msgid "<item type=\"input\">=EXP(1)</item> returns 2.71828182845904, the mathematical constant e to Calc's accuracy."
+msgstr "<item type=\"input\">=EXP(1)</item> devuelve 2,71828182845904, la constante matemática e con la precisión de Calc."
+
+#: 04060106.xhp#bm_id3145781.help.text
+msgid "<bookmark_value>FACT function</bookmark_value><bookmark_value>factorials;numbers</bookmark_value>"
+msgstr "<bookmark_value>FACT</bookmark_value><bookmark_value>factoriales;números</bookmark_value>"
+
+#: 04060106.xhp#hd_id3145781.208.help.text
+msgid "FACT"
+msgstr "FACT"
+
+#: 04060106.xhp#par_id3151109.209.help.text
+msgid "<ahelp hid=\"HID_FUNC_FAKULTAET\">Returns the factorial of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_FAKULTAET\">Devuelve el factorial de un número.</ahelp> FACT(0) devuelve 1. FACT(n) devuelve 1*2*3*4* ... *n."
+
+#: 04060106.xhp#hd_id3146902.210.help.text
+msgctxt "04060106.xhp#hd_id3146902.210.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3154661.211.help.text
+msgid "FACT(Number)"
+msgstr "FACT(Número)"
+
+#: 04060106.xhp#par_id3152952.212.help.text
+msgid " Returns Number!, the factorial of <emph>Number</emph>, calculated as 1*2*3*4* ... * Number."
+msgstr " Devuelve Número!, el factorial de <emph>Número</emph>, calculado como 1*2*3*4* ... * Número."
+
+#: 04060106.xhp#par_id3834650.help.text
+msgid "=FACT(0) returns 1 by definition. "
+msgstr "=FACT(0) devuelve 1 por definición."
+
+#: 04060106.xhp#par_id8429517.help.text
+msgid "The factorial of a negative number returns the \"invalid argument\" error."
+msgstr "El valor de un número negativo devuelve el error \"argumento inválido\"."
+
+#: 04060106.xhp#hd_id3154569.213.help.text
+msgctxt "04060106.xhp#hd_id3154569.213.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3154476.216.help.text
+msgid "<item type=\"input\">=FACT(3)</item> returns 6."
+msgstr "<item type=\"input\">=FACT(3)</item> devuelve 6."
+
+#: 04060106.xhp#par_id3147525.214.help.text
+msgid "<item type=\"input\">=FACT(0)</item> returns 1."
+msgstr "<item type=\"input\">=FACT(0)</item> devuelve 1."
+
+#: 04060106.xhp#bm_id3159084.help.text
+msgid "<bookmark_value>INT function</bookmark_value><bookmark_value>numbers;rounding down to next integer</bookmark_value><bookmark_value>rounding;down to next integer</bookmark_value>"
+msgstr "<bookmark_value>ENTERO</bookmark_value><bookmark_value>números;redondear hacia abajo hasta el siguiente entero</bookmark_value><bookmark_value>redondear;hacia abajo hasta el siguiente entero</bookmark_value>"
+
+#: 04060106.xhp#hd_id3159084.218.help.text
+msgid "INT"
+msgstr "ENTERO"
+
+#: 04060106.xhp#par_id3158441.219.help.text
+msgid "<ahelp hid=\"HID_FUNC_GANZZAHL\">Rounds a number down to the nearest integer.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GANZZAHL\">Redondea un número hacia abajo hasta el entero más próximo.</ahelp>"
+
+#: 04060106.xhp#hd_id3146132.220.help.text
+msgctxt "04060106.xhp#hd_id3146132.220.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3156146.221.help.text
+msgid "INT(Number)"
+msgstr "ENTERO(Número)"
+
+#: 04060106.xhp#par_id3154117.222.help.text
+msgid "Returns <emph>Number</emph> rounded down to the nearest integer."
+msgstr "Devuelve el <emph>Número</emph> redondeado al entero mas cercano."
+
+#: 04060106.xhp#par_id153508.help.text
+msgid "Negative numbers round down to the integer below."
+msgstr "Los números negativos se redondean al entero inferior."
+
+#: 04060106.xhp#hd_id3155118.223.help.text
+msgctxt "04060106.xhp#hd_id3155118.223.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3156267.224.help.text
+msgid "<item type=\"input\">=INT(5.7)</item> returns 5."
+msgstr "<item type=\"input\">=ENTERO(5.7)</item> devuelve 5."
+
+#: 04060106.xhp#par_id3147323.225.help.text
+msgid "<item type=\"input\">=INT(-1.3)</item> returns -2."
+msgstr "<item type=\"input\">=ENTERO(-1,3)</item> devuelve -2."
+
+#: 04060106.xhp#bm_id3150938.help.text
+msgid "<bookmark_value>EVEN function</bookmark_value><bookmark_value>numbers;rounding up/down to even integers</bookmark_value><bookmark_value>rounding;up/down to even integers</bookmark_value>"
+msgstr "<bookmark_value>REDONDEA.PAR</bookmark_value><bookmark_value>números;redondear hacia arriba/abajo hasta enteros pares</bookmark_value><bookmark_value>redondear;hacia arriba/abajo hasta enteros pares</bookmark_value>"
+
+#: 04060106.xhp#hd_id3150938.227.help.text
+msgid "EVEN"
+msgstr "REDONDEA.PAR"
+
+#: 04060106.xhp#par_id3149988.228.help.text
+msgid "<ahelp hid=\"HID_FUNC_GERADE\">Rounds a positive number up to the next even integer and a negative number down to the next even integer.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GERADE\">Redondea un número positivo hacia arriba hasta el entero par más próximo y un número negativo hacia abajo hasta el entero par más próximo.</ahelp>"
+
+#: 04060106.xhp#hd_id3148401.229.help.text
+msgctxt "04060106.xhp#hd_id3148401.229.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3150830.230.help.text
+msgid "EVEN(Number)"
+msgstr "REDONDEA.PAR(Número)"
+
+#: 04060106.xhp#par_id3153350.231.help.text
+msgid " Returns <emph>Number</emph> rounded to the next even integer up, away from zero. "
+msgstr " Devuelve <emph>Número</emph> redondeado al siguiente entero par, lejos de cero."
+
+#: 04060106.xhp#hd_id3155508.232.help.text
+msgctxt "04060106.xhp#hd_id3155508.232.help.text"
+msgid "Examples"
+msgstr "Ejemplos"
+
+#: 04060106.xhp#par_id3154361.233.help.text
+msgid "<item type=\"input\">=EVEN(2.3)</item> returns 4."
+msgstr "<item type=\"input\">=REDONDEA.PAR(2.3)</item> devuelve 4."
+
+#: 04060106.xhp#par_id8477736.help.text
+msgid "<item type=\"input\">=EVEN(2)</item> returns 2."
+msgstr "<item type=\"input\">=REDONDEA.PAR(2)</item> devuelve 2."
+
+#: 04060106.xhp#par_id159611.help.text
+msgid "<item type=\"input\">=EVEN(0)</item> returns 0."
+msgstr "<item type=\"input\">=REDONDEA.PAR(0)</item> devuelve 0."
+
+#: 04060106.xhp#par_id6097598.help.text
+msgid "<item type=\"input\">=EVEN(-0.5)</item> returns -2."
+msgstr "<item type=\"input\">=REDONDEA.PAR(-0.5)</item> devuelve -2."
+
+#: 04060106.xhp#bm_id3147356.help.text
+msgid "<bookmark_value>GCD function</bookmark_value><bookmark_value>greatest common divisor</bookmark_value>"
+msgstr "<bookmark_value>M.C.D</bookmark_value><bookmark_value>máximo común divisor</bookmark_value>"
+
+#: 04060106.xhp#hd_id3147356.237.help.text
+msgid "GCD"
+msgstr "M.C.D"
+
+#: 04060106.xhp#par_id3152465.238.help.text
+msgid "<ahelp hid=\"HID_FUNC_GGT\">Returns the greatest common divisor of two or more integers.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GGT\">Devuelve el máximo común divisor de dos o más enteros.</ahelp>"
+
+#: 04060106.xhp#par_id2769249.help.text
+msgid "The greatest common divisor is the positive largest integer which will divide, without remainder, each of the given integers."
+msgstr "El máximo común divisor es el entero positivo más grande que divide, sin resto, cada uno de los enteros dados."
+
+#: 04060106.xhp#hd_id3150643.239.help.text
+msgctxt "04060106.xhp#hd_id3150643.239.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3154524.240.help.text
+msgid "GCD(Integer1; Integer2; ...; Integer30)"
+msgstr "GCD(Entero1; Entero2; ...; Entero30)"
+
+#: 04060106.xhp#par_id3149340.241.help.text
+msgid "<emph>Integer1 To 30</emph> are up to 30 integers whose greatest common divisor is to be calculated."
+msgstr "<emph>Enteros de 1 a 30</emph> son hasta 30 números enteros de los que debe calcularse el máximo común divisor."
+
+#: 04060106.xhp#hd_id3147317.242.help.text
+msgctxt "04060106.xhp#hd_id3147317.242.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3151285.243.help.text
+msgid "<item type=\"input\">=GCD(16;32;24) </item>gives the result 8, because 8 is the largest number that can divide 16, 24 and 32 without a remainder."
+msgstr "<item type=\"input\">=M.C.D(16;32;24)</item> da 8 como resultado, porque 8 es el mayor número que puede dividir 16, 24 y 32 sin resto."
+
+#: 04060106.xhp#par_id1604663.help.text
+msgid "<item type=\"input\">=GCD(B1:B3)</item> where cells B1, B2, B3 contain <item type=\"input\">9</item>, <item type=\"input\">12</item>, <item type=\"input\">9</item> gives 3."
+msgstr "<item type=\"input\">=M.C.D.(B1:B3)</item> donde las celdas B1, B2, B3 contienen <item type=\"input\">9</item>, <item type=\"input\">12</item>, <item type=\"input\">9</item> da como resultado 3."
+
+#: 04060106.xhp#bm_id3151221.help.text
+msgid "<bookmark_value>GCD_ADD function</bookmark_value>"
+msgstr "<bookmark_value>M.C.D_ADD</bookmark_value>"
+
+#: 04060106.xhp#hd_id3151221.677.help.text
+msgid "GCD_ADD"
+msgstr "M.C.D_ADD"
+
+#: 04060106.xhp#par_id3153257.678.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_GCD\"> The result is the greatest common divisor of a list of numbers.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_GCD\"> El resultado es el máximo común divisor de una lista de números.</ahelp>"
+
+#: 04060106.xhp#hd_id3147548.679.help.text
+msgctxt "04060106.xhp#hd_id3147548.679.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3156205.680.help.text
+msgid "GCD_ADD(Number(s))"
+msgstr "GGT_ADD(Número(s))"
+
+#: 04060106.xhp#par_id3145150.681.help.text
+msgctxt "04060106.xhp#par_id3145150.681.help.text"
+msgid "<emph>Number(s)</emph> is a list of up to 30 numbers."
+msgstr "<emph>Número(s)</emph> es una lista de hasta 30 números."
+
+#: 04060106.xhp#hd_id3150239.682.help.text
+msgctxt "04060106.xhp#hd_id3150239.682.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3159192.683.help.text
+msgid "<item type=\"input\">=GCD_ADD(5;15;25)</item> returns 5."
+msgstr "<item type=\"input\">=MCD_ADD(5;15;25)</item> devuelve 5."
+
+#: 04060106.xhp#bm_id3156048.help.text
+msgid "<bookmark_value>ISEVEN function</bookmark_value><bookmark_value>even integers</bookmark_value>"
+msgstr "<bookmark_value>ESPAR</bookmark_value><bookmark_value>enteros pares</bookmark_value>"
+
+#: 04060106.xhp#hd_id3156048.245.help.text
+msgid "ISEVEN"
+msgstr "ESPAR"
+
+#: 04060106.xhp#par_id3149169.246.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTGERADE\">Returns TRUE if the value is an even integer, or FALSE if the value is odd.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISTGERADE\">Devuelve VERDADERO si el valor es un entero par, y FALSO si es impar.</ahelp>"
+
+#: 04060106.xhp#hd_id3146928.247.help.text
+msgctxt "04060106.xhp#hd_id3146928.247.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3151203.248.help.text
+msgid "ISEVEN(Value)"
+msgstr "ESPAR(Valor)"
+
+#: 04060106.xhp#par_id3150491.249.help.text
+msgctxt "04060106.xhp#par_id3150491.249.help.text"
+msgid "<emph>Value</emph> is the value to be checked."
+msgstr "<emph>Valor</emph> es el valor que se debe verificar."
+
+#: 04060106.xhp#par_id3445844.help.text
+msgctxt "04060106.xhp#par_id3445844.help.text"
+msgid "If Value is not an integer any digits after the decimal point are ignored. The sign of Value is also ignored."
+msgstr "Si el valor no es un entero cualquier dígito después del punto decimal se ignora. El signo de valor también es ignorado."
+
+#: 04060106.xhp#hd_id3154136.250.help.text
+msgctxt "04060106.xhp#hd_id3154136.250.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3163813.251.help.text
+msgid "<item type=\"input\">=ISEVEN(48)</item> returns TRUE"
+msgstr "<item type=\"input\">=ESPAR(48)</item> devuelve VERDADERO."
+
+#: 04060106.xhp#par_id8378856.help.text
+msgid "<item type=\"input\">=ISEVEN(33)</item> returns FALSE"
+msgstr "<item type=\"input\">=ESPAR(33)</item> devuelve FALSO."
+
+#: 04060106.xhp#par_id7154759.help.text
+msgid "<item type=\"input\">=ISEVEN(0)</item> returns TRUE"
+msgstr "<item type=\"input\">=ESPAR(0)</item> devuelve VERDADERO."
+
+#: 04060106.xhp#par_id1912289.help.text
+msgid "<item type=\"input\">=ISEVEN(-2.1)</item> returns TRUE"
+msgstr "<item type=\"input\">=ESPAR(-2.1)</item> devuelve VERDADERO."
+
+#: 04060106.xhp#par_id5627307.help.text
+msgid "<item type=\"input\">=ISEVEN(3.999)</item> returns FALSE"
+msgstr "<item type=\"input\">=ESPAR(3,999)</item> devuelve FALSO."
+
+#: 04060106.xhp#bm_id3156034.help.text
+msgid "<bookmark_value>ISODD function</bookmark_value><bookmark_value>odd integers</bookmark_value>"
+msgstr "<bookmark_value>ESIMPAR</bookmark_value><bookmark_value>enteros impares</bookmark_value>"
+
+#: 04060106.xhp#hd_id3156034.255.help.text
+msgid "ISODD"
+msgstr "ESIMPAR"
+
+#: 04060106.xhp#par_id3155910.256.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTUNGERADE\">Returns TRUE if the value is odd, or FALSE if the number is even.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISTUNGERADE\">Devuelve VERDADERO si el valor es impar, y FALSO si es par.</ahelp>"
+
+#: 04060106.xhp#hd_id3151006.257.help.text
+msgctxt "04060106.xhp#hd_id3151006.257.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3151375.258.help.text
+msgid "ISODD(value)"
+msgstr "ESIMPAR(Valor)"
+
+#: 04060106.xhp#par_id3155139.259.help.text
+msgctxt "04060106.xhp#par_id3155139.259.help.text"
+msgid "<emph>Value</emph> is the value to be checked."
+msgstr "<emph>Valor</emph> es el valor que se debe verificar."
+
+#: 04060106.xhp#par_id9027680.help.text
+msgctxt "04060106.xhp#par_id9027680.help.text"
+msgid "If Value is not an integer any digits after the decimal point are ignored. The sign of Value is also ignored."
+msgstr "Si el valor no es un entero cualquier dígito después del punto decimal se ignora. El signo de valor también es ignorado."
+
+#: 04060106.xhp#hd_id3163723.260.help.text
+msgctxt "04060106.xhp#hd_id3163723.260.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3155345.261.help.text
+msgid "<item type=\"input\">=ISODD(33)</item> returns TRUE"
+msgstr "<item type=\"input\">=ESIMPAR(33)</item> devuelve VERDADERO."
+
+#: 04060106.xhp#par_id9392986.help.text
+msgid "<item type=\"input\">=ISODD(48)</item> returns FALSE"
+msgstr "<item type=\"input\">=ESIMPAR(48)</item> devuelve FALSO."
+
+#: 04060106.xhp#par_id5971251.help.text
+msgid "<item type=\"input\">=ISODD(3.999)</item> returns TRUE"
+msgstr "<item type=\"input\">=ESIMPAR(3.999)</item> devuelve VERDADERO."
+
+#: 04060106.xhp#par_id4136478.help.text
+msgid "<item type=\"input\">=ISODD(-3.1)</item> returns TRUE"
+msgstr "<item type=\"input\">=ESIMPAR(-3.1)</item> devuelve VERDADERO."
+
+#: 04060106.xhp#bm_id3145213.help.text
+msgid "<bookmark_value>LCM function</bookmark_value><bookmark_value>least common multiples</bookmark_value><bookmark_value>lowest common multiples</bookmark_value>"
+msgstr "<bookmark_value>M.C.M.</bookmark_value><bookmark_value>mínimo común múltiplo</bookmark_value><bookmark_value>múltiplos comunes más bajos</bookmark_value>"
+
+#: 04060106.xhp#hd_id3145213.265.help.text
+msgid "LCM"
+msgstr "M.C.M"
+
+#: 04060106.xhp#par_id3146814.266.help.text
+msgid "<ahelp hid=\"HID_FUNC_KGV\">Returns the least common multiple of one or more integers.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KGV\">Devuelve el mínimo común múltiplo de uno o más enteros.</ahelp>"
+
+#: 04060106.xhp#hd_id3148632.267.help.text
+msgctxt "04060106.xhp#hd_id3148632.267.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3147279.268.help.text
+msgid "LCM(Integer1; Integer2; ...; Integer30)"
+msgstr "M.C.M(Entero1; Entero2; ...; Entero30)"
+
+#: 04060106.xhp#par_id3156348.269.help.text
+msgid "<emph>Integer1 to 30</emph> are up to 30 integers whose lowest common multiple is to be calculated."
+msgstr "<emph>Enteros de 1 a 30</emph> son números hasta 30 números enteros de los que debe calcularse el mínimo común múltiplo."
+
+#: 04060106.xhp#hd_id3156431.270.help.text
+msgctxt "04060106.xhp#hd_id3156431.270.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3154914.271.help.text
+msgid "If you enter the numbers <item type=\"input\">512</item>;<item type=\"input\">1024</item> and <item type=\"input\">2000</item> in the Integer 1;2 and 3 text boxes, 128000 will be returned as the result."
+msgstr "Si ingresa los números <item type=\"input\">512</item>;<item type=\"input\">1024</item> y <item type=\"input\">2000</item> en el cuadro de texto 1;2 y 3, 128000 se devolverá como resultado."
+
+#: 04060106.xhp#bm_id3154230.help.text
+msgid "<bookmark_value>LCM_ADD function</bookmark_value>"
+msgstr "<bookmark_value>M.C.M_ADD</bookmark_value>"
+
+#: 04060106.xhp#hd_id3154230.684.help.text
+msgid "LCM_ADD"
+msgstr "MCM_ADD"
+
+#: 04060106.xhp#par_id3149036.685.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_LCM\"> The result is the lowest common multiple of a list of numbers.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_LCM\"> El resultado es el mínimo común múltiplo de una lista de números.</ahelp>"
+
+#: 04060106.xhp#hd_id3153132.686.help.text
+msgctxt "04060106.xhp#hd_id3153132.686.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3154395.687.help.text
+msgid "LCM_ADD(Number(s))"
+msgstr "MCM_ADD(Número(s))"
+
+#: 04060106.xhp#par_id3147377.688.help.text
+msgctxt "04060106.xhp#par_id3147377.688.help.text"
+msgid "<emph>Number(s)</emph> is a list of up to 30 numbers."
+msgstr "<emph>Número(s)</emph> es una lista de hasta 30 números."
+
+#: 04060106.xhp#hd_id3145122.689.help.text
+msgctxt "04060106.xhp#hd_id3145122.689.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3145135.690.help.text
+msgid "<item type=\"input\">=LCM_ADD(5;15;25)</item> returns 75."
+msgstr "<item type=\"input\">=MCM_ADD(5;15;25)</item> devuelve 75."
+
+#: 04060106.xhp#bm_id3155802.help.text
+msgid "<bookmark_value>COMBIN function</bookmark_value><bookmark_value>number of combinations</bookmark_value>"
+msgstr "<bookmark_value>COMBINAR</bookmark_value><bookmark_value>número de combinaciones</bookmark_value>"
+
+#: 04060106.xhp#hd_id3155802.273.help.text
+msgid "COMBIN"
+msgstr "COMBINAR"
+
+#: 04060106.xhp#par_id3156172.274.help.text
+msgid "<ahelp hid=\"HID_FUNC_KOMBINATIONEN\">Returns the number of combinations for elements without repetition.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KOMBINATIONEN\">Devuelve el número de combinaciones para un número determinado de objetos sin repeticiones.</ahelp>"
+
+#: 04060106.xhp#hd_id3156193.275.help.text
+msgctxt "04060106.xhp#hd_id3156193.275.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3150223.276.help.text
+msgid "COMBIN(Count1; Count2)"
+msgstr "COMBINAR(Contar1; Contar2)"
+
+#: 04060106.xhp#par_id3150313.277.help.text
+msgctxt "04060106.xhp#par_id3150313.277.help.text"
+msgid "<emph>Count1</emph> is the number of items in the set."
+msgstr "<emph>Contar1</emph> es el número de elementos en el conjunto."
+
+#: 04060106.xhp#par_id3153830.278.help.text
+msgctxt "04060106.xhp#par_id3153830.278.help.text"
+msgid "<emph>Count2</emph> is the number of items to choose from the set."
+msgstr "<emph>Contar2</emph> es el número de elementos que elegir en el conjunto."
+
+#: 04060106.xhp#par_id6807458.help.text
+msgid "COMBIN returns the number of ordered ways to choose these items. For example if there are 3 items A, B and C in a set, you can choose 2 items in 3 different ways, namely AB, AC and BC."
+msgstr "COMBINAR devuelve el número de maneras de elegir esos elementos. Por ejemplo si hay 3 elementos A, B y C en un conjunto, puede elegir 2 elementos de 3 diferentes maneras: AB, AC y BC."
+
+#: 04060106.xhp#par_id7414471.help.text
+msgid "COMBIN implements the formula: Count1!/(Count2!*(Count1-Count2)!)"
+msgstr "COMBINAR aplica la siguiente fórmula: Contar1!/(Contar2!*(Contar1-Contar2)!)"
+
+#: 04060106.xhp#hd_id3153171.279.help.text
+msgctxt "04060106.xhp#hd_id3153171.279.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3153517.280.help.text
+msgid "<item type=\"input\">=COMBIN(3;2)</item> returns 3."
+msgstr "<item type=\"input\">=COMBINAR(3;2)</item> devuelve 3."
+
+#: 04060106.xhp#bm_id3150284.help.text
+msgid "<bookmark_value>COMBINA function</bookmark_value><bookmark_value>number of combinations with repetitions</bookmark_value>"
+msgstr "<bookmark_value>COMBINAR2</bookmark_value><bookmark_value>número de combinaciones con repeticiones</bookmark_value>"
+
+#: 04060106.xhp#hd_id3150284.282.help.text
+msgid "COMBINA"
+msgstr "COMBINAR2"
+
+#: 04060106.xhp#par_id3157894.283.help.text
+msgid "<ahelp hid=\"HID_FUNC_KOMBINATIONEN2\">Returns the number of combinations of a subset of items including repetitions.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KOMBINATIONEN2\">Devuelve el número de combinaciones para un número determinado de objetos incluyendo las repeticiones.</ahelp>"
+
+#: 04060106.xhp#hd_id3145752.284.help.text
+msgctxt "04060106.xhp#hd_id3145752.284.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3145765.285.help.text
+msgid "COMBINA(Count1; Count2)"
+msgstr "COMBINAR(Contar1; Contar2)"
+
+#: 04060106.xhp#par_id3153372.286.help.text
+msgctxt "04060106.xhp#par_id3153372.286.help.text"
+msgid "<emph>Count1</emph> is the number of items in the set."
+msgstr "<emph>Contar1</emph> es el número de elementos en el conjunto."
+
+#: 04060106.xhp#par_id3155544.287.help.text
+msgctxt "04060106.xhp#par_id3155544.287.help.text"
+msgid "<emph>Count2</emph> is the number of items to choose from the set."
+msgstr "<emph>Contar2</emph> es el número de elementos que elegir en el conjunto."
+
+#: 04060106.xhp#par_id1997131.help.text
+msgid "COMBINA returns the number of unique ways to choose these items, where the order of choosing is irrelevant, and repetition of items is allowed. For example if there are 3 items A, B and C in a set, you can choose 2 items in 6 different ways, namely AA, AB, AC, BB, BC and CC."
+msgstr "COMBINATA devuelve la cantidad de maneras únicas de elegir esos elementos, donde el orden de elección es irrelevante. Por ejemplo, si hay 3 elementos A, B y C en un conjunto, pueden elegir 2 elementos de 6 maneras diferentes: AA, AB, AC, BB, BC y CC."
+
+#: 04060106.xhp#par_id2052064.help.text
+msgid "COMBINA implements the formula: (Count1+Count2-1)! / (Count2!(Count1-1)!)"
+msgstr "COMBINAR aplica la siguiente fórmula: (Contar1+Contar2-1)!/(Contar2!(Contar1-1)!)"
+
+#: 04060106.xhp#hd_id3154584.288.help.text
+msgctxt "04060106.xhp#hd_id3154584.288.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3152904.289.help.text
+msgid "<item type=\"input\">=COMBINA(3;2)</item> returns 6."
+msgstr "<item type=\"input\">=COMBINA(3;2)</item> devuelve 6."
+
+#: 04060106.xhp#bm_id3156086.help.text
+msgid "<bookmark_value>TRUNC function</bookmark_value><bookmark_value>decimal places;cutting off</bookmark_value>"
+msgstr "<bookmark_value>TRUNCAR</bookmark_value><bookmark_value>decimales;eliminar</bookmark_value>"
+
+#: 04060106.xhp#hd_id3156086.291.help.text
+msgid "TRUNC"
+msgstr "TRUNCAR"
+
+#: 04060106.xhp#par_id3157866.292.help.text
+msgid "<ahelp hid=\"HID_FUNC_KUERZEN\">Truncates a number by removing decimal places.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KUERZEN\">Trunca un número al eliminar lugares decimales de la cifra según la precisión que se haya indicado en <emph>Cantidad</emph>.</ahelp>"
+
+#: 04060106.xhp#hd_id3148499.293.help.text
+msgctxt "04060106.xhp#hd_id3148499.293.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3148511.294.help.text
+msgid "TRUNC(Number; Count)"
+msgstr "TRUNCAR(Número; Cuenta)"
+
+#: 04060106.xhp#par_id3150796.295.help.text
+msgid "Returns <emph>Number</emph> with at most <emph>Count</emph> decimal places. Excess decimal places are simply removed, irrespective of sign."
+msgstr "Devuelve el <emph>Número</emph> al menos <emph>Contar</emph> espacios decimales. El exceso de decimales son eliminados, independientemente de su signo."
+
+#: 04060106.xhp#par_id3150816.296.help.text
+msgid "<item type=\"literal\">TRUNC(Number; 0)</item> behaves as <item type=\"literal\">INT(Number)</item> for positive numbers, but effectively rounds towards zero for negative numbers."
+msgstr "<item type=\"literal\">TRUNCAR(Número; 0)</item> se comporta como <item type=\"literal\">ENTERO(Número)</item> para los números positivos, pero en la práctica redondea hacia cero para los números negativos."
+
+#: 04060106.xhp#par_id3148548.557.help.text
+msgid "The <emph>visible</emph> decimal places of the result are specified in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - Calculate</link>."
+msgstr "La cantidad de decimales <emph>visibles</emph> del resultado se especifican en <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline> Herramientas - Opciones</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - Calcular</link>."
+
+#: 04060106.xhp#hd_id3152555.297.help.text
+msgctxt "04060106.xhp#hd_id3152555.297.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3152569.298.help.text
+msgid "<item type=\"input\">=TRUNC(1.239;2)</item> returns 1.23. The 9 is lost."
+msgstr "<item type=\"input\">=TRUNCAR(1,239;2)</item> devuelve 1,23. El 9 se pierde."
+
+#: 04060106.xhp#par_id7050080.help.text
+msgid "<item type=\"input\">=TRUNC(-1.234999;3)</item> returns -1.234. All the 9s are lost."
+msgstr "<item type=\"input\">=TRUNCAR(-1.234999;3)</item> devuelve -1.234. Se pierden todos los 9."
+
+#: 04060106.xhp#bm_id3153601.help.text
+msgid "<bookmark_value>LN function</bookmark_value><bookmark_value>natural logarithm</bookmark_value>"
+msgstr "<bookmark_value>LN</bookmark_value><bookmark_value>logaritmo natural</bookmark_value>"
+
+#: 04060106.xhp#hd_id3153601.301.help.text
+msgid "LN"
+msgstr "LN"
+
+#: 04060106.xhp#par_id3154974.302.help.text
+msgid "<ahelp hid=\"HID_FUNC_LN\">Returns the natural logarithm based on the constant e of a number.</ahelp> The constant e has a value of approximately 2.71828182845904."
+msgstr "<ahelp hid=\"HID_FUNC_LN\">Devuelve el logaritmo natural basándose en la constante e de un número.</ahelp> La constante e tiene un valor aproximado de 2.71828182845904."
+
+#: 04060106.xhp#hd_id3154993.303.help.text
+msgctxt "04060106.xhp#hd_id3154993.303.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3155284.304.help.text
+msgid "LN(Number)"
+msgstr "LN(Número)"
+
+#: 04060106.xhp#par_id3155297.305.help.text
+msgid "<emph>Number</emph> is the value whose natural logarithm is to be calculated."
+msgstr "<emph>Número</emph> es el valor cuyo logaritmo natural debe calcularse."
+
+#: 04060106.xhp#hd_id3153852.306.help.text
+msgctxt "04060106.xhp#hd_id3153852.306.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3153866.307.help.text
+msgid "<item type=\"input\">=LN(3)</item> returns the natural logarithm of 3 (approximately 1.0986)."
+msgstr "<item type=\"input\">=LN(3)</item> devuelve el logaritmo natural de 3 (aproximadamente 1,0986)."
+
+#: 04060106.xhp#par_id5747245.help.text
+msgid "<item type=\"input\">=LN(EXP(321))</item> returns 321."
+msgstr "<item type=\"input\">=LN(EXP(321))</item> devuelve 321."
+
+#: 04060106.xhp#bm_id3109813.help.text
+msgid "<bookmark_value>LOG function</bookmark_value><bookmark_value>logarithms</bookmark_value>"
+msgstr "<bookmark_value>LOG</bookmark_value><bookmark_value>logaritmos</bookmark_value>"
+
+#: 04060106.xhp#hd_id3109813.311.help.text
+msgid "LOG"
+msgstr "LOG"
+
+#: 04060106.xhp#par_id3109841.312.help.text
+msgid "<ahelp hid=\"HID_FUNC_LOG\">Returns the logarithm of a number to the specified base.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LOG\">Devuelve el logaritmo de un número en la base especificada.</ahelp>"
+
+#: 04060106.xhp#hd_id3144719.313.help.text
+msgctxt "04060106.xhp#hd_id3144719.313.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3144732.314.help.text
+msgid "LOG(Number; Base)"
+msgstr "LOG(Número; Base)"
+
+#: 04060106.xhp#par_id3144746.315.help.text
+msgid "<emph>Number</emph> is the value whose logarithm is to be calculated."
+msgstr "<emph>Número</emph> es el valor cuyo logaritmo debe calcularse."
+
+#: 04060106.xhp#par_id3152840.316.help.text
+msgid "<emph>Base</emph> (optional) is the base for the logarithm calculation. If omitted, Base 10 is assumed."
+msgstr "<emph>Base</emph> (opcional) es la base empleada para el cálculo del logaritmo. Si se omite, se asume la base 10."
+
+#: 04060106.xhp#hd_id3152860.317.help.text
+msgctxt "04060106.xhp#hd_id3152860.317.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3154429.318.help.text
+msgid "<item type=\"input\">=LOG(10;3)</item> returns the logarithm to base 3 of 10 (approximately 2.0959)."
+msgstr "<item type=\"input\">=LOG(10;3)</item> devuelve el logaritmo con base 3 de 10 (aproximadamente 2,0959)."
+
+#: 04060106.xhp#par_id5577562.help.text
+msgid "<item type=\"input\">=LOG(7^4;7)</item> returns 4."
+msgstr "<item type=\"input\">=LOG(7^4;7)</item> devuelve 4."
+
+#: 04060106.xhp#bm_id3154187.help.text
+msgid "<bookmark_value>LOG10 function</bookmark_value><bookmark_value>base-10 logarithm</bookmark_value>"
+msgstr "<bookmark_value>LOG10</bookmark_value><bookmark_value>logaritmo en base 10</bookmark_value>"
+
+#: 04060106.xhp#hd_id3154187.322.help.text
+msgid "LOG10"
+msgstr "LOG10"
+
+#: 04060106.xhp#par_id3155476.323.help.text
+msgid "<ahelp hid=\"HID_FUNC_LOG10\">Returns the base-10 logarithm of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LOG10\">Devuelve el logaritmo en base 10 de un número.</ahelp>"
+
+#: 04060106.xhp#hd_id3155494.324.help.text
+msgctxt "04060106.xhp#hd_id3155494.324.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3159294.325.help.text
+msgid "LOG10(Number)"
+msgstr "LOG10(Número)"
+
+#: 04060106.xhp#par_id3159308.326.help.text
+msgid "Returns the logarithm to base 10 of <emph>Number</emph>."
+msgstr "Devuelve el logaritmo en base 10 de un <emph>Número</emph>."
+
+#: 04060106.xhp#hd_id3159328.327.help.text
+msgctxt "04060106.xhp#hd_id3159328.327.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3157916.328.help.text
+msgid "<item type=\"input\">=LOG10(5)</item> returns the base-10 logarithm of 5 (approximately 0.69897)."
+msgstr "<item type=\"input\">=LOG10(5)</item> devuelve el logaritmo en base 10 de 5 (aproximadamente 0,69897)."
+
+#: 04060106.xhp#bm_id3152518.help.text
+msgid "<bookmark_value>CEILING function</bookmark_value><bookmark_value>rounding;up to multiples of significance</bookmark_value>"
+msgstr "<bookmark_value>MÚLTIPLO.SUPERIOR</bookmark_value><bookmark_value>redondear;hacia arriba hasta múltiplos significativos</bookmark_value>"
+
+#: 04060106.xhp#hd_id3152518.332.help.text
+msgid "CEILING"
+msgstr "MÚLTIPLO.SUPERIOR"
+
+#: 04060106.xhp#par_id3153422.558.help.text
+msgid "<ahelp hid=\"HID_FUNC_OBERGRENZE\">Rounds a number up to the nearest multiple of Significance.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_OBERGRENZE\">Redondea un número hacia arriba hasta el múltiplo de cifra_significativa más próxima.</ahelp>"
+
+#: 04060106.xhp#hd_id3153440.334.help.text
+msgctxt "04060106.xhp#hd_id3153440.334.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3153454.335.help.text
+msgid "CEILING(Number; Significance; Mode)"
+msgstr "MÚLTIPLO.SUPERIOR(Número; Cifra significativa; Modo)"
+
+#: 04060106.xhp#par_id3153467.336.help.text
+msgid "<emph>Number</emph> is the number that is to be rounded up."
+msgstr "<emph>Número</emph> es la cifra que se debe redondear."
+
+#: 04060106.xhp#par_id3155000.337.help.text
+msgid "<emph>Significance</emph> is the number to whose multiple the value is to be rounded up."
+msgstr "<emph>cifra_significativa</emph> es el número cuyo valor de múltiplo se debe redondear hacia arriba."
+
+#: 04060106.xhp#par_id3155020.559.help.text
+msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of Number. This parameter is ignored when exporting to MS Excel as Excel does not know any third parameter."
+msgstr "<emph>Modo</emph> es un valor opcional. Si se proporciona el valor Modo y no es igual a cero, y su Número y cifra significativa son negativos, el redondeo se efectúa según el valor absoluto del número. Este parámetro se omite al exportarse a MS Excel, ya que dicho programa no conoce ningún tercer parámetro."
+
+#: 04060106.xhp#par_id3163792.629.help.text
+msgid "If both parameters Number and Significance are negative and the Mode value is equal to zero or is not given, the results in $[officename] and Excel will differ after the import has been completed. If you export the spreadsheet to Excel, use Mode=1 to see the same results in Excel as in Calc."
+msgstr "Si ambos parámetros Número y Cifra significativa son negativos y el valor Modo es igual a cero o no es dado, el resultado en $[officename] y Excel será diferente luego que la importación se haya completado. Si exporta la hoja de cálculo para Excel, use Modo=1 para ver el mismo resultado en Excel como en Calc."
+
+#: 04060106.xhp#hd_id3145697.338.help.text
+msgctxt "04060106.xhp#hd_id3145697.338.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3145710.339.help.text
+msgid "<item type=\"input\">=CEILING(-11;-2)</item> returns -10"
+msgstr "<item type=\"input\">=MÚLTIPLO.SUPERIOR(-11;-2)</item> devuelve -10."
+
+#: 04060106.xhp#par_id3145725.340.help.text
+msgid "<item type=\"input\">=CEILING(-11;-2;0)</item> returns -10"
+msgstr "<item type=\"input\">=MÚLTIPLO.SUPERIOR(-11;-2;0)</item> devuelve -10."
+
+#: 04060106.xhp#par_id3145740.341.help.text
+msgid "<item type=\"input\">=CEILING(-11;-2;1)</item> returns -12"
+msgstr "<item type=\"input\">=MÚLTIPLO.SUPERIOR(-11;-2;1)</item> devuelve -12."
+
+#: 04060106.xhp#bm_id3157762.help.text
+msgid "<bookmark_value>PI function</bookmark_value>"
+msgstr "<bookmark_value>PI</bookmark_value>"
+
+#: 04060106.xhp#hd_id3157762.343.help.text
+msgid "PI"
+msgstr "PI"
+
+#: 04060106.xhp#par_id3157790.344.help.text
+msgid "<ahelp hid=\"HID_FUNC_PI\">Returns 3.14159265358979, the value of the mathematical constant PI to 14 decimal places.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_PI\">Devuelve 3,14159265358979, el valor de la constante matemática PI en 14 decimales.</ahelp>"
+
+#: 04060106.xhp#hd_id3157809.345.help.text
+msgctxt "04060106.xhp#hd_id3157809.345.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3157822.346.help.text
+msgid "PI()"
+msgstr "PI()"
+
+#: 04060106.xhp#hd_id3157836.347.help.text
+msgctxt "04060106.xhp#hd_id3157836.347.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3152370.348.help.text
+msgid "<item type=\"input\">=PI()</item> returns 3.14159265358979."
+msgstr "<item type=\"input\">=PI()</item> devuelve 3,14159265358979."
+
+#: 04060106.xhp#bm_id3152418.help.text
+msgid "<bookmark_value>MULTINOMIAL function</bookmark_value>"
+msgstr "<bookmark_value>MULTINOMIAL</bookmark_value>"
+
+#: 04060106.xhp#hd_id3152418.635.help.text
+msgid "MULTINOMIAL"
+msgstr "MULTINOMIAL"
+
+#: 04060106.xhp#par_id3152454.636.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_MULTINOMIAL\"> Returns the factorial of the sum of the arguments divided by the product of the factorials of the arguments.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_MULTINOMIAL\"> Devuelve el factorial de la suma de los argumentos dividido por el producto de los factoriales de los argumentos.</ahelp>"
+
+#: 04060106.xhp#hd_id3155646.637.help.text
+msgctxt "04060106.xhp#hd_id3155646.637.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3155660.638.help.text
+msgid "MULTINOMIAL(Number(s))"
+msgstr "MULTINOMIAL(Número(s))"
+
+#: 04060106.xhp#par_id3155673.639.help.text
+msgctxt "04060106.xhp#par_id3155673.639.help.text"
+msgid "<emph>Number(s)</emph> is a list of up to 30 numbers."
+msgstr "<emph>Número(s)</emph> es una lista de hasta 30 números."
+
+#: 04060106.xhp#hd_id3155687.640.help.text
+msgctxt "04060106.xhp#hd_id3155687.640.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3155701.641.help.text
+msgid "<item type=\"input\">=MULTINOMIAL(F11:H11)</item> returns 1260, if F11 to H11 contain the values <item type=\"input\">2</item>, <item type=\"input\">3</item> and <item type=\"input\">4</item>. This corresponds to the formula =(2+3+4)! / (2!*3!*4!)"
+msgstr "<item type=\"input\">=MULTINOMIAL(F11:H11)</item> devuelve 1260, si F11 a H11 contiene los valores <item type=\"input\">2</item>, <item type=\"input\">3</item> y <item type=\"input\">4</item>. Esto se corresponde a la fórmula =(2+3+4) / (2!*3!*4!)"
+
+#: 04060106.xhp#bm_id3155717.help.text
+msgid "<bookmark_value>POWER function</bookmark_value>"
+msgstr "<bookmark_value>POTENCIA</bookmark_value>"
+
+#: 04060106.xhp#hd_id3155717.350.help.text
+msgid "POWER"
+msgstr "POTENCIA"
+
+#: 04060106.xhp#par_id3159495.351.help.text
+msgid "<ahelp hid=\"HID_FUNC_POTENZ\">Returns a number raised to another number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_POTENZ\">Devuelve el resultado de elevar un número a una potencia.</ahelp>"
+
+#: 04060106.xhp#hd_id3159513.352.help.text
+msgctxt "04060106.xhp#hd_id3159513.352.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3159526.353.help.text
+msgid "POWER(Base; Exponent)"
+msgstr "POTENCIA(Base; Exponente)"
+
+#: 04060106.xhp#par_id3159540.354.help.text
+msgid "Returns <emph>Base</emph> raised to the power of <emph>Exponent</emph>."
+msgstr "Devuelve la <emph>Base</emph> elevada a la potencia del <emph>Exponente</emph>."
+
+#: 04060106.xhp#par_id5081637.help.text
+msgid "The same result may be achieved by using the exponentiation operator ^:"
+msgstr "The same result may be achieved by using the exponentiation operator ^:"
+
+#: 04060106.xhp#par_id9759514.help.text
+msgid "<item type=\"literal\">Base^Exponent</item>"
+msgstr "<item type=\"literal\">Base^Exponente</item>"
+
+#: 04060106.xhp#hd_id3159580.356.help.text
+msgctxt "04060106.xhp#hd_id3159580.356.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3159594.357.help.text
+msgid "<item type=\"input\">=POWER(4;3)</item> returns 64, which is 4 to the power of 3."
+msgstr "<item type=\"input\">=POTENCIA(4;3)</item> devuelve 64, que es 4 a la 3.ª potencia."
+
+#: 04060106.xhp#par_id1614429.help.text
+msgid "=4^3 also returns 4 to the power of 3."
+msgstr "=4^3 también devuelve 4 para la potencia de 3."
+
+#: 04060106.xhp#bm_id3152651.help.text
+msgid "<bookmark_value>SERIESSUM function</bookmark_value>"
+msgstr "<bookmark_value>SUMA.SERIES</bookmark_value>"
+
+#: 04060106.xhp#hd_id3152651.642.help.text
+msgid "SERIESSUM"
+msgstr "SUMA SERIES"
+
+#: 04060106.xhp#par_id3152688.643.help.text
+msgid "<ahelp hid=\".\">Sums the first terms of a power series.</ahelp>"
+msgstr "<ahelp hid=\".\">Suma el primer termino de una serie de potencias.</ahelp>"
+
+#: 04060106.xhp#par_id3152708.644.help.text
+msgid "SERIESSUM(x;n;m;coefficients) = coefficient_1*x^n + coefficient_2*x^(n+m) + coefficient_3*x^(n+2m) +...+ coefficient_i*x^(n+(i-1)m)"
+msgstr "SUMA SERIES(x;n;m;coeficientes) = coeficiente_1*x^n + coeficiente_2*x^(n+m) + coeficiente_3*x^(n+2m) +...+ coeficiente_i*x^(n+(i-1)m)"
+
+#: 04060106.xhp#hd_id3152724.645.help.text
+msgctxt "04060106.xhp#hd_id3152724.645.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_idN11BD9.help.text
+msgid "SERIESSUM(X; N; M; Coefficients)"
+msgstr "SUMA.SERIES(X; N; M; Coeficientes)"
+
+#: 04060106.xhp#par_id3152737.646.help.text
+msgid "<emph>X</emph> is the input value for the power series."
+msgstr "<emph>X</emph> es el valor de entrada para la serie de potencias."
+
+#: 04060106.xhp#par_id3144344.647.help.text
+msgid "<emph>N</emph> is the initial power"
+msgstr "<emph>N</emph> es la primera potencia."
+
+#: 04060106.xhp#par_id3144357.648.help.text
+msgid "<emph>M</emph> is the increment to increase N"
+msgstr "<emph>M</emph> es el incremento para aumentar N."
+
+#: 04060106.xhp#par_id3144370.649.help.text
+msgid "<emph>Coefficients</emph> is a series of coefficients. For each coefficient the series sum is extended by one section."
+msgstr "<emph>Coeficientes</emph> es una serie de coeficientes. Para cada coeficiente, la suma de la serie se amplía en una sección."
+
+#: 04060106.xhp#bm_id3144386.help.text
+msgid "<bookmark_value>PRODUCT function</bookmark_value><bookmark_value>numbers;multiplying</bookmark_value><bookmark_value>multiplying;numbers</bookmark_value>"
+msgstr "<bookmark_value>PRODUCTO</bookmark_value><bookmark_value>números;multiplicar</bookmark_value><bookmark_value>multiplicar;números</bookmark_value>"
+
+#: 04060106.xhp#hd_id3144386.361.help.text
+msgctxt "04060106.xhp#hd_id3144386.361.help.text"
+msgid "PRODUCT"
+msgstr "PRODUCTO"
+
+#: 04060106.xhp#par_id3144414.362.help.text
+msgid "<ahelp hid=\"HID_FUNC_PRODUKT\">Multiplies all the numbers given as arguments and returns the product.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_PRODUKT\">Multiplica todos los números indicados como argumentos y devuelve el producto.</ahelp>"
+
+#: 04060106.xhp#hd_id3144433.363.help.text
+msgctxt "04060106.xhp#hd_id3144433.363.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3144446.364.help.text
+msgid "PRODUCT(Number1; Number2; ...; Number30)"
+msgstr "PRODUCTO(Número1; Número2; ...; Número30)"
+
+#: 04060106.xhp#par_id3144460.365.help.text
+msgid "<emph>Number1 to 30</emph> are up to 30 arguments whose product is to be calculated."
+msgstr "<emph>Número1 a 30</emph> son hasta 30 argumentos cuyo producto se va a calcular."
+
+#: 04060106.xhp#par_id1589098.help.text
+msgid "PRODUCT returns number1 * number2 * number3 * ..."
+msgstr "PRODUCTO devuelve número1 * número2 * número3 * ..."
+
+#: 04060106.xhp#hd_id3144480.366.help.text
+msgctxt "04060106.xhp#hd_id3144480.366.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3144494.367.help.text
+msgid "<item type=\"input\">=PRODUCT(2;3;4)</item> returns 24."
+msgstr "<item type=\"input\">=PRODUCTO(2;3;4)</item> devuelve 24."
+
+#: 04060106.xhp#bm_id3160340.help.text
+msgid "<bookmark_value>SUMSQ function</bookmark_value><bookmark_value>square number additions</bookmark_value><bookmark_value>sums;of square numbers</bookmark_value>"
+msgstr "<bookmark_value>SUMA.CUADRADOS</bookmark_value><bookmark_value>adiciones de números cuadrados</bookmark_value><bookmark_value>sumas;de números cuadrados</bookmark_value>"
+
+#: 04060106.xhp#hd_id3160340.369.help.text
+msgid "SUMSQ"
+msgstr "SUMA.CUADRADOS"
+
+#: 04060106.xhp#par_id3160368.370.help.text
+msgid "<ahelp hid=\"HID_FUNC_QUADRATESUMME\">If you want to calculate the sum of the squares of numbers (totaling up of the squares of the arguments), enter these into the text fields.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_QUADRATESUMME\">Para obtener la suma de cuadrados de varios números (suma de los cuadrados de los argumentos), introduzca lo siguiente en los campos de texto.</ahelp>"
+
+#: 04060106.xhp#hd_id3160388.371.help.text
+msgctxt "04060106.xhp#hd_id3160388.371.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3160402.372.help.text
+msgid "SUMSQ(Number1; Number2; ...; Number30)"
+msgstr "SUMA.CUADRADOS(Número1; Número2; ...; Número30)"
+
+#: 04060106.xhp#par_id3160415.373.help.text
+msgid "<emph>Number1 to 30</emph> are up to 30 arguments the sum of whose squares is to be calculated."
+msgstr "<emph>Número1 a 30</emph> son hasta 30 argumentos cuya suma de los cuadrados se va a calcular."
+
+#: 04060106.xhp#hd_id3160436.374.help.text
+msgctxt "04060106.xhp#hd_id3160436.374.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3160449.375.help.text
+msgid "If you enter the numbers <item type=\"input\">2</item>; <item type=\"input\">3</item> and <item type=\"input\">4</item> in the Number 1; 2 and 3 text boxes, 29 is returned as the result."
+msgstr "Si ingresa los números <item type=\"input\">2</item>; <item type=\"input\">3</item> y <item type=\"input\">4</item> en el cuadro de texto 1; 2 y 3, 29 se devolverá como resulado."
+
+#: 04060106.xhp#bm_id3158247.help.text
+msgid "<bookmark_value>MOD function</bookmark_value><bookmark_value>remainders of divisions</bookmark_value>"
+msgstr "<bookmark_value>RESIDUO</bookmark_value><bookmark_value>restos de divisiones</bookmark_value>"
+
+#: 04060106.xhp#hd_id3158247.387.help.text
+msgid "MOD"
+msgstr "RESIDUO"
+
+#: 04060106.xhp#par_id3158276.388.help.text
+msgid "<ahelp hid=\"HID_FUNC_REST\">Returns the remainder when one integer is divided by another.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_REST\">Permite calcular el residuo de una división por un número.</ahelp>"
+
+#: 04060106.xhp#hd_id3158294.389.help.text
+msgctxt "04060106.xhp#hd_id3158294.389.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3158308.390.help.text
+msgid "MOD(Dividend; Divisor)"
+msgstr "RESIDUO(Dividendo; Divisor)"
+
+#: 04060106.xhp#par_id3158321.391.help.text
+msgid " For integer arguments this function returns Dividend modulo Divisor, that is the remainder when <emph>Dividend</emph> is divided by <emph>Divisor</emph>."
+msgstr " Los argumentos enteros para esta función devuelven Dividendo por Divisor, que es cuando el remanente <emph>Dividendo</emph> se divide por <emph>Divisor</emph>."
+
+#: 04060106.xhp#par_id3158341.392.help.text
+msgid "This function is implemented as <item type=\"literal\">Dividend - Divisor * INT(Dividend/Divisor)</item> , and this formula gives the result if the arguments are not integer."
+msgstr "Esta función es implementada como <item type=\"literal\">Dividendo - Divisor * ENTERO(Dividendo/Divisor)</item> , y esta fórmula da los resultados si el argumento no es un entero."
+
+#: 04060106.xhp#hd_id3158361.393.help.text
+msgctxt "04060106.xhp#hd_id3158361.393.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3158374.394.help.text
+msgid "<item type=\"input\">=MOD(22;3)</item> returns 1, the remainder when 22 is divided by 3."
+msgstr "<item type=\"input\">=RESIDUO(22;3)</item> devuelve 1, el resto cuando 22 se divide por 3."
+
+#: 04060106.xhp#par_id1278420.help.text
+msgid "<item type=\"input\">=MOD(11.25;2.5)</item> returns 1.25."
+msgstr "<item type=\"input\">=RESIDUO(11,25;2,5)</item> devuelve 1,25"
+
+#: 04060106.xhp#bm_id3144592.help.text
+msgid "<bookmark_value>QUOTIENT function</bookmark_value><bookmark_value>divisions</bookmark_value>"
+msgstr "<bookmark_value>COCIENTE</bookmark_value><bookmark_value>divisiones</bookmark_value>"
+
+#: 04060106.xhp#hd_id3144592.652.help.text
+msgid "QUOTIENT"
+msgstr "COCIENTE"
+
+#: 04060106.xhp#par_id3144627.653.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_QUOTIENT\">Returns the integer part of a division operation.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_QUOTIENT\">Devuelve la parte entera de una división.</ahelp>"
+
+#: 04060106.xhp#hd_id3144646.654.help.text
+msgctxt "04060106.xhp#hd_id3144646.654.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3144659.655.help.text
+msgid "QUOTIENT(Numerator; Denominator)"
+msgstr "COCIENTE(Numerador; Denominador)"
+
+#: 04060106.xhp#par_id9038972.help.text
+msgid "Returns the integer part of <emph>Numerator</emph> divided by <emph>Denominator</emph>."
+msgstr "Devuelve la parte entera del <emph>Numerador</emph> dividido por el <emph>Denominador</emph>."
+
+#: 04060106.xhp#par_id7985168.help.text
+msgid "QUOTIENT is equivalent to <item type=\"literal\">INT(numerator/denominator)</item>, except that it may report errors with different error codes."
+msgstr "COCIENTE es equivalente a <item type=\"literal\">ENTERO(numerador/denominador)</item>, excepto que pueda reportar errores con diferentes códigos de error."
+
+#: 04060106.xhp#hd_id3144674.656.help.text
+msgctxt "04060106.xhp#hd_id3144674.656.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3144687.657.help.text
+msgid "<item type=\"input\">=QUOTIENT(11;3)</item> returns 3. The remainder of 2 is lost."
+msgstr "<item type=\"input\">=COCIENTE(11;3)</item> devuelve 3. El resto de 2 se pierde."
+
+#: 04060106.xhp#bm_id3144702.help.text
+msgid "<bookmark_value>RADIANS function</bookmark_value><bookmark_value>converting;degrees, into radians</bookmark_value>"
+msgstr "<bookmark_value>RADIANES</bookmark_value><bookmark_value>convertir;grados, en radianes</bookmark_value>"
+
+#: 04060106.xhp#hd_id3144702.377.help.text
+msgid "RADIANS"
+msgstr "RADIANES"
+
+#: 04060106.xhp#par_id3158025.378.help.text
+msgid "<ahelp hid=\"HID_FUNC_RAD\">Converts degrees to radians.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_RAD\">Convierte grados en radianes.</ahelp>"
+
+#: 04060106.xhp#hd_id3158042.379.help.text
+msgctxt "04060106.xhp#hd_id3158042.379.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3158055.380.help.text
+msgid "RADIANS(Number)"
+msgstr "RADIANES(Número)"
+
+#: 04060106.xhp#par_id3158069.381.help.text
+msgid "<emph>Number</emph> is the angle in degrees to be converted to radians."
+msgstr "<emph>Número</emph> es el ángulo en grados que se convertirá a radianes."
+
+#: 04060106.xhp#hd_id876186.help.text
+msgctxt "04060106.xhp#hd_id876186.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3939634.help.text
+msgid "<item type=\"input\">=RADIANS(90)</item> returns 1.5707963267949, which is PI/2 to Calc's accuracy."
+msgstr "<item type=\"input\">=RADIANES(90)</item> da como resultado 1,5707963267949, que es PI/2 en la precisión de Calc."
+
+#: 04060106.xhp#bm_id3158121.help.text
+msgid "<bookmark_value>ROUND function</bookmark_value>"
+msgstr "<bookmark_value>REDONDEAR</bookmark_value>"
+
+#: 04060106.xhp#hd_id3158121.398.help.text
+msgid "ROUND"
+msgstr "REDONDEAR"
+
+#: 04060106.xhp#par_id3158150.399.help.text
+msgid "<ahelp hid=\"HID_FUNC_RUNDEN\">Rounds a number to a certain number of decimal places.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_RUNDEN\">Devuelve un número redondeado hasta una cantidad determinada de decimales.</ahelp>"
+
+#: 04060106.xhp#hd_id3158169.400.help.text
+msgctxt "04060106.xhp#hd_id3158169.400.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3158182.401.help.text
+msgid "ROUND(Number; Count)"
+msgstr "REDONDEAR(Número; Contar)"
+
+#: 04060106.xhp#par_id3158196.402.help.text
+msgid "Returns <emph>Number</emph> rounded to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds to the nearest integer. If Count is negative, the function rounds to the nearest 10, 100, 1000, etc."
+msgstr "Devuelve el <emph>Número</emph> redondeado a <emph>Contar</emph> posiciones decimales. Si Contar se omite o es cero, la función redondea al entero más cercano. Si Contar es negativo, la función redondea a 10, 100, 1000, etc., más cercano."
+
+#: 04060106.xhp#par_id599688.help.text
+msgid "This function rounds to the nearest number. See ROUNDDOWN and ROUNDUP for alternatives."
+msgstr "This function rounds to the nearest number. See ROUNDDOWN and ROUNDUP for alternatives."
+
+#: 04060106.xhp#hd_id3145863.404.help.text
+msgctxt "04060106.xhp#hd_id3145863.404.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3145876.405.help.text
+msgid "<item type=\"input\">=ROUND(2.348;2)</item> returns 2.35"
+msgstr "<item type=\"input\">=REDONDEAR(2,348;2)</item> devuelve 2,35."
+
+#: 04060106.xhp#par_id3145899.406.help.text
+msgid "<item type=\"input\">=ROUND(-32.4834;3)</item> returns -32.483. Change the cell format to see all decimals."
+msgstr "<item type=\"input\">=REDONDEAR(-32.4834;3)</item> devuelve -32.483. Cambie el formato de la celda para ver todos los decimales."
+
+#: 04060106.xhp#par_id1371501.help.text
+msgid "<item type=\"input\">=ROUND(2.348;0)</item> returns 2."
+msgstr "<item type=\"input\">=REDONDEAR(2,348;0)</item> devuelve 2."
+
+#: 04060106.xhp#par_id4661702.help.text
+msgid "<item type=\"input\">=ROUND(2.5)</item> returns 3. "
+msgstr "<item type=\"input\">=REDONDEAR(2,5)</item> devuelve 3. "
+
+#: 04060106.xhp#par_id7868892.help.text
+msgid "<item type=\"input\">=ROUND(987.65;-2)</item> returns 1000."
+msgstr "<item type=\"input\">=REDONDEAR(987,65;-2)</item> devuelve 1.000."
+
+#: 04060106.xhp#bm_id3145991.help.text
+msgid "<bookmark_value>ROUNDDOWN function</bookmark_value>"
+msgstr "<bookmark_value>REDONDEAR.MENOS</bookmark_value>"
+
+#: 04060106.xhp#hd_id3145991.24.help.text
+msgid "ROUNDDOWN"
+msgstr "REDONDEAR.MENOS"
+
+#: 04060106.xhp#par_id3146020.25.help.text
+msgid "<ahelp hid=\"HID_FUNC_ABRUNDEN\">Rounds a number down, toward zero, to a certain precision.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ABRUNDEN\">Redondea un número hacia abajo, hacia cero.</ahelp>"
+
+#: 04060106.xhp#hd_id3146037.26.help.text
+msgctxt "04060106.xhp#hd_id3146037.26.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3146051.27.help.text
+msgid "ROUNDDOWN(Number; Count)"
+msgstr "REDONDEAR.MENOS(Número; Contar)"
+
+#: 04060106.xhp#par_id3146064.28.help.text
+msgid "Returns <emph>Number</emph> rounded down (towards zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds down to an integer. If Count is negative, the function rounds down to the next 10, 100, 1000, etc."
+msgstr "Devuelve el <emph>Número</emph> redondeado hacia abajo (hacia cero) para <emph>Contar</emph>espacios decimales. Si Contar es omitido o es cero, la función redondea al entero más cercano hacia abajo. Si Contar es negativo, la función redondea hacia abajo al más cercano 10, 100, 1000, etc."
+
+#: 04060106.xhp#par_id2188787.help.text
+msgid "This function rounds towards zero. See ROUNDUP and ROUND for alternatives."
+msgstr "This function rounds towards zero. See ROUNDUP and ROUND for alternatives."
+
+#: 04060106.xhp#hd_id3163164.30.help.text
+msgctxt "04060106.xhp#hd_id3163164.30.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3163178.31.help.text
+msgid "<item type=\"input\">=ROUNDDOWN(1.234;2)</item> returns 1.23."
+msgstr "<item type=\"input\">=REDONDEAR.MENOS(1,234;2)</item> devuelve 1,23."
+
+#: 04060106.xhp#par_id5833307.help.text
+msgid "<item type=\"input\">=ROUNDDOWN(45.67;0)</item> returns 45."
+msgstr "<item type=\"input\">=REDONDEAR.MENOS(45.67;0)</item> devuelve 45."
+
+#: 04060106.xhp#par_id7726676.help.text
+msgid "<item type=\"input\">=ROUNDDOWN(-45.67)</item> returns -45."
+msgstr "<item type=\"input\">=REDONDEAR.MENOS(-45,67)</item> devuelve -45."
+
+#: 04060106.xhp#par_id3729361.help.text
+msgid "<item type=\"input\">=ROUNDDOWN(987.65;-2)</item> returns 900."
+msgstr "<item type=\"input\">=REDONDEAR.MENOS(987.65;-2)</item> devuelve 900."
+
+#: 04060106.xhp#bm_id3163268.help.text
+msgid "<bookmark_value>ROUNDUP function</bookmark_value>"
+msgstr "<bookmark_value>REDONDEAR.MAS</bookmark_value>"
+
+#: 04060106.xhp#hd_id3163268.140.help.text
+msgid "ROUNDUP"
+msgstr "REDONDEAR.MAS"
+
+#: 04060106.xhp#par_id3163297.141.help.text
+msgid "<ahelp hid=\"HID_FUNC_AUFRUNDEN\">Rounds a number up, away from zero, to a certain precision.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_AUFRUNDEN\">Devuelve un número redondeado hacia arriba hasta el número especificado de decimales.</ahelp>"
+
+#: 04060106.xhp#hd_id3163315.142.help.text
+msgctxt "04060106.xhp#hd_id3163315.142.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3163328.143.help.text
+msgid "ROUNDUP(Number; Count)"
+msgstr "REDONDEAR.MAS(Número; Contar)"
+
+#: 04060106.xhp#par_id3163342.144.help.text
+msgid "Returns <emph>Number</emph> rounded up (away from zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds up to an integer. If Count is negative, the function rounds up to the next 10, 100, 1000, etc."
+msgstr "Devuelve el <emph>Número</emph> redondeado hacia arriba (lejos desde el cero) para <emph>Contar</emph> espacios decimales. Si Contar es omitido o es cero, la función redondea hacia arriba a un entero. Si Contar es negativo, la función redondea hacia arriba, al siguiente 10, 100, 1000, etc."
+
+#: 04060106.xhp#par_id9573961.help.text
+msgid "This function rounds away from zero. See ROUNDDOWN and ROUND for alternatives."
+msgstr "This function rounds away from zero. See ROUNDDOWN and ROUND for alternatives."
+
+#: 04060106.xhp#hd_id3163381.146.help.text
+msgctxt "04060106.xhp#hd_id3163381.146.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3144786.147.help.text
+msgid "<item type=\"input\">=ROUNDUP(1.1111;2)</item> returns 1.12."
+msgstr "<item type=\"input\">=REDONDEAR.MAS(1.1111;2)</item> devuelve 1.12."
+
+#: 04060106.xhp#par_id7700430.help.text
+msgid "<item type=\"input\">=ROUNDUP(1.2345;1)</item> returns 1.3."
+msgstr "<item type=\"input\">=REDONDEAR.MAS(1,2345;1)</item> devuelve 1,3."
+
+#: 04060106.xhp#par_id1180455.help.text
+msgid "<item type=\"input\">=ROUNDUP(45.67;0)</item> returns 46."
+msgstr "<item type=\"input\">=REDONDEAR.MAS(45,67;0)</item> devuelve 46."
+
+#: 04060106.xhp#par_id3405560.help.text
+msgid "<item type=\"input\">=ROUNDUP(-45.67)</item> returns -46."
+msgstr "<item type=\"input\">=REDONDEAR.MAS(-45.67)</item> devuelve -46."
+
+#: 04060106.xhp#par_id3409527.help.text
+msgid "<item type=\"input\">=ROUNDUP(987.65;-2)</item> returns 1000."
+msgstr "<item type=\"input\">=REDONDEAR.MAS(987.65;-2)</item> devuelve 1.000."
+
+#: 04060106.xhp#bm_id5256537.help.text
+#, fuzzy
+msgid "<bookmark_value>SEC function</bookmark_value>"
+msgstr "<bookmark_value>COEFICIENTE.ASIMETRIA</bookmark_value>"
+
+#: 04060106.xhp#hd_id5187204.149.help.text
+msgid "SEC"
+msgstr ""
+
+#: 04060106.xhp#par_id9954962.150.help.text
+msgid "<ahelp hid=\"HID_FUNC_SECANT\">Returns the secant of the given angle (in radians). The secant of an angle is equivalent to 1 divided by the cosine of that angle</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id422243.151.help.text
+msgctxt "04060106.xhp#hd_id422243.151.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id2055913.152.help.text
+#, fuzzy
+msgid "SEC(Number)"
+msgstr "SENO(Número)"
+
+#: 04060106.xhp#par_id9568170.153.help.text
+msgid " Returns the (trigonometric) secant of <emph>Number</emph>, the angle in radians."
+msgstr " Devuelve la secante (trigonométrica) de <emph>Número</emph>, el ángulo en radianes."
+
+#: 04060106.xhp#par_id9047465.help.text
+#, fuzzy
+msgid "To return the secant of an angle in degrees, use the RADIANS function."
+msgstr "To return the sine of an angle in degrees, use the RADIANS function."
+
+#: 04060106.xhp#hd_id9878918.154.help.text
+msgctxt "04060106.xhp#hd_id9878918.154.help.text"
+msgid "Examples"
+msgstr "Ejemplos"
+
+#: 04060106.xhp#par_id6935513.155.help.text
+msgid "<item type=\"input\">=SEC(PI()/4)</item> returns approximately 1.4142135624, the inverse of the cosine of PI/4 radians."
+msgstr ""
+
+#: 04060106.xhp#par_id3954287.156.help.text
+msgid "<item type=\"input\">=SEC(RADIANS(60))</item> returns 2, the secant of 60 degrees."
+msgstr ""
+
+#: 04060106.xhp#bm_id840005.help.text
+#, fuzzy
+msgid "<bookmark_value>SECH function</bookmark_value>"
+msgstr "<bookmark_value>Función HALLAR</bookmark_value>"
+
+#: 04060106.xhp#hd_id8661934.159.help.text
+msgid "SECH"
+msgstr ""
+
+#: 04060106.xhp#par_id408174.160.help.text
+msgid "<ahelp hid=\"HID_FUNC_SECANTHYP\">Returns the hyperbolic secant of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SECANTHYP\">Devuelve la secante hiperbólica de un número.</ahelp>"
+
+#: 04060106.xhp#hd_id875988.161.help.text
+msgctxt "04060106.xhp#hd_id875988.161.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id4985391.162.help.text
+#, fuzzy
+msgid "SECH(Number)"
+msgstr "SENOH(Número)"
+
+#: 04060106.xhp#par_id1952124.163.help.text
+#, fuzzy
+msgid "Returns the hyperbolic secant of <emph>Number</emph>."
+msgstr "Devuelve el seno hiperbólico del <emph>Número</emph>."
+
+#: 04060106.xhp#hd_id9838764.164.help.text
+msgctxt "04060106.xhp#hd_id9838764.164.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id1187764.165.help.text
+msgid "<item type=\"input\">=SECH(0)</item> returns 1, the hyperbolic secant of 0."
+msgstr ""
+
+#: 04060106.xhp#bm_id3144877.help.text
+msgid "<bookmark_value>SIN function</bookmark_value>"
+msgstr "<bookmark_value>SENO</bookmark_value>"
+
+#: 04060106.xhp#hd_id3144877.408.help.text
+msgid "SIN"
+msgstr "SENO"
+
+#: 04060106.xhp#par_id3144906.409.help.text
+msgid "<ahelp hid=\"HID_FUNC_SIN\">Returns the sine of the given angle (in radians).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SIN\">Devuelve el seno del número (ángulo) especificado.</ahelp>"
+
+#: 04060106.xhp#hd_id3144923.410.help.text
+msgctxt "04060106.xhp#hd_id3144923.410.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3144937.411.help.text
+msgid "SIN(Number)"
+msgstr "SENO(Número)"
+
+#: 04060106.xhp#par_id3144950.412.help.text
+msgid "Returns the (trigonometric) sine of <emph>Number</emph>, the angle in radians."
+msgstr "Devuelve el seno (trigonométrico) del <emph>Número</emph>, el ángulo en radianes."
+
+#: 04060106.xhp#par_id8079470.help.text
+msgid "To return the sine of an angle in degrees, use the RADIANS function."
+msgstr "To return the sine of an angle in degrees, use the RADIANS function."
+
+#: 04060106.xhp#hd_id3144969.413.help.text
+msgctxt "04060106.xhp#hd_id3144969.413.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3144983.414.help.text
+msgid "<item type=\"input\">=SIN(PI()/2)</item> returns 1, the sine of PI/2 radians."
+msgstr "<item type=\"input\">=SENO(PI()/2)</item> devuelve 1, el seno de PI/2 radianes."
+
+#: 04060106.xhp#par_id3916440.help.text
+msgid "<item type=\"input\">=SIN(RADIANS(30))</item> returns 0.5, the sine of 30 degrees."
+msgstr "<item type=\"input\">=SENO(RADIANES(30))</item> da como resultado 0,5, el seno de 30 grados."
+
+#: 04060106.xhp#bm_id3163397.help.text
+msgid "<bookmark_value>SINH function</bookmark_value>"
+msgstr "<bookmark_value>SENOH</bookmark_value>"
+
+#: 04060106.xhp#hd_id3163397.418.help.text
+msgid "SINH"
+msgstr "SENOH"
+
+#: 04060106.xhp#par_id3163426.419.help.text
+msgid "<ahelp hid=\"HID_FUNC_SINHYP\">Returns the hyperbolic sine of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SINHYP\">Devuelve el seno hiperbólico de un número.</ahelp>"
+
+#: 04060106.xhp#hd_id3163444.420.help.text
+msgctxt "04060106.xhp#hd_id3163444.420.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3163457.421.help.text
+msgid "SINH(Number)"
+msgstr "SENOH(Número)"
+
+#: 04060106.xhp#par_id3163471.422.help.text
+msgid "Returns the hyperbolic sine of <emph>Number</emph>."
+msgstr "Devuelve el seno hiperbólico del <emph>Número</emph>."
+
+#: 04060106.xhp#hd_id3163491.423.help.text
+msgctxt "04060106.xhp#hd_id3163491.423.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3163504.424.help.text
+msgid "<item type=\"input\">=SINH(0)</item> returns 0, the hyperbolic sine of 0."
+msgstr "<item type=\"input\">=SENOH(0)</item> devuelve 0, el seno hiperbólico de 0."
+
+#: 04060106.xhp#bm_id3163596.help.text
+msgid "<bookmark_value>SUM function</bookmark_value><bookmark_value>adding;numbers in cell ranges</bookmark_value>"
+msgstr "<bookmark_value>SUMA</bookmark_value><bookmark_value>agregar;números en áreas de celdas</bookmark_value>"
+
+#: 04060106.xhp#hd_id3163596.428.help.text
+msgctxt "04060106.xhp#hd_id3163596.428.help.text"
+msgid "SUM"
+msgstr "SUMA"
+
+#: 04060106.xhp#par_id3163625.429.help.text
+msgid "<ahelp hid=\"HID_FUNC_SUMME\">Adds all the numbers in a range of cells.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SUMME\">Suma todos los números de un área de celdas.</ahelp>"
+
+#: 04060106.xhp#hd_id3163643.430.help.text
+msgctxt "04060106.xhp#hd_id3163643.430.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3163656.431.help.text
+msgid "SUM(Number1; Number2; ...; Number30)"
+msgstr "SUMA(Número1; Número2; ...; Número30)"
+
+#: 04060106.xhp#par_id3163671.432.help.text
+msgid "<emph>Number 1 to Number 30</emph> are up to 30 arguments whose sum is to be calculated."
+msgstr "<emph>Número de 1 a 30</emph> son hasta 30 argumentos cuya suma se va a calcular."
+
+#: 04060106.xhp#hd_id3163690.433.help.text
+msgctxt "04060106.xhp#hd_id3163690.433.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3163704.434.help.text
+msgid "If you enter the numbers <item type=\"input\">2</item>; <item type=\"input\">3 </item>and <item type=\"input\">4</item> in the Number 1; 2 and 3 text boxes, 9 will be returned as the result."
+msgstr "Si ingresa los números<item type=\"input\">2</item>; <item type=\"input\">3 </item> y <item type=\"input\">4</item> en la caja de texto 1; 2 y 3, 9 será devuelto como el resultado."
+
+#: 04060106.xhp#par_id3151740.556.help.text
+msgid "<item type=\"input\">=SUM(A1;A3;B5)</item> calculates the sum of the three cells. <item type=\"input\">=SUM (A1:E10)</item> calculates the sum of all cells in the A1 to E10 cell range."
+msgstr "<item type=\"input\">=SUMA(A1;A3;B5)</item> calcula la suma de las tres celdas. <item type=\"input\">=SUMA (A1:E10)</item> calcula la suma de todas las celdas en el rango de A1 a E10."
+
+#: 04060106.xhp#par_id3151756.619.help.text
+msgid "Conditions linked by AND can be used with the function SUM() in the following manner:"
+msgstr "Las condiciones unidas mediante Y se pueden utilizar junto con la función SUMA() de esta forma:"
+
+#: 04060106.xhp#par_id3151774.620.help.text
+msgid "Example assumption: You have entered invoices into a table. Column A contains the date value of the invoice, column B the amounts. You want to find a formula that you can use to return the total of all amounts only for a specific month, e.g. only the amount for the period >=2008-01-01 to <2008-02-01. The range with the date values covers A1:A40, the range containing the amounts to be totaled is B1:B40. C1 contains the start date, 2008<item type=\"input\">-01-01</item>, of the invoices to be included and C2 the date, 2008<item type=\"input\">-02-01</item>, that is no longer included."
+msgstr "Ejemplo hipotético: Ha introducido facturas en una tabla. La columna A contiene el valor de fecha de la factura, en la columna B los importes. Quiere encontrar una fórmula que puede utilizar para devolver el total de todas las sumas sólo para un determinado mes, por ejemplo, sólo la cantidad para el período >= 2008-01-01 a <2008-02-01. El rango de valores a la fecha abarca A1:A40, el rango que contiene los importes que se totalizaron es B1:B40. C1 contiene la fecha de inicio, 2008<item type=\"input\">-01-01</item>, de las facturas que se han de incluir y C2 la fecha, 2008 <item type=\"input\">-02-01</item>, que ya no está incluido."
+
+#: 04060106.xhp#par_id3151799.621.help.text
+msgid "Enter the following formula as an array formula:"
+msgstr "Escriba la fórmula siguiente como fórmula de matriz:"
+
+#: 04060106.xhp#par_id3151813.622.help.text
+msgid "<item type=\"input\">=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)</item>"
+msgstr "<item type=\"input\">=SUMA((A1:A40>=C1)*(A1:A40<C2)*B1:B40)</item>"
+
+#: 04060106.xhp#par_id3151828.623.help.text
+msgid "In order to enter this as an array formula, you must press the Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+Command </caseinline><defaultinline>+ Ctrl</defaultinline></switchinline>+ Enter keys instead of simply pressing the Enter key to close the formula. The formula will then be shown in the <emph>Formula</emph> bar enclosed in braces."
+msgstr "Para escribirla como fórmula de matriz, debe pulsar las teclas Mayús <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>+ Control</defaultinline></switchinline> + Intro para cerrar la fórmula, en lugar de pulsar solamente Intro. La fórmula aparece entre llaves en la barra de <emph>fórmulas</emph>."
+
+#: 04060106.xhp#par_id3151869.624.help.text
+msgid "{=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)}"
+msgstr "{=SUMA((A1:A40>=C1)*(A1:A40<C2)*B1:B40)}"
+
+#: 04060106.xhp#par_id3151884.625.help.text
+msgid "The formula is based on the fact that the result of a comparison is 1 if the criterion is met and 0 if it is not met. The individual comparison results will be treated as an array and used in matrix multiplication, and at the end the individual values will be totaled to give the result matrix."
+msgstr "La formula es basada en el hecho de que el resultado de una comparación es 1 si el criterio es conocido y 0 si el criterio no es conocido. La comparación de resultados individuales será tratada como un arreglo y utilizados en la matriz de multiplicación, y al final los valores individuales se sumaron para dar el resultado matriz."
+
+#: 04060106.xhp#bm_id3151957.help.text
+msgid "<bookmark_value>SUMIF function</bookmark_value><bookmark_value>adding;specified numbers</bookmark_value>"
+msgstr "<bookmark_value>SUMAR.SI</bookmark_value><bookmark_value>agregar;números especificados</bookmark_value>"
+
+#: 04060106.xhp#hd_id3151957.436.help.text
+msgid "SUMIF"
+msgstr "SUMAR.SI"
+
+#: 04060106.xhp#par_id3151986.437.help.text
+msgid "<ahelp hid=\"HID_FUNC_SUMMEWENN\">Adds the cells specified by a given criteria.</ahelp> This function is used to browse a range when you search for a certain value."
+msgstr "<ahelp hid=\"HID_FUNC_SUMMEWENN\">Agrega las celdas especificadas por un criterio determinado.</ahelp> Esta función se usa para buscar en un área un determinado valor."
+
+#: 04060106.xhp#hd_id3152015.438.help.text
+msgctxt "04060106.xhp#hd_id3152015.438.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3152028.439.help.text
+msgid "SUMIF(Range; Criteria; SumRange)"
+msgstr "SUMAR.SI(Rango; Criterio; Suma de Rango)"
+
+#: 04060106.xhp#par_id3152043.440.help.text
+msgctxt "04060106.xhp#par_id3152043.440.help.text"
+msgid "<emph>Range</emph> is the range to which the criteria are to be applied."
+msgstr "<emph>Rango</emph> es el área en la que se aplicarán los criterios."
+
+#: 04060106.xhp#par_id3152062.441.help.text
+msgid "<emph>Criteria</emph> is the cell in which the search criterion is shown, or the search criterion itself. If the criteria is written into the formula, it has to be surrounded by double quotes."
+msgstr "<emph>Criterios</emph> es la celda en que se muestra el criterio de búsqueda, o es el criterio de búsqueda en sí. Si un criterio se escribe en la fórmula, debe quedar limitado por comillas dobles."
+
+#: 04060106.xhp#par_id3152083.442.help.text
+msgid "<emph>SumRange</emph> is the range from which values are summed. If this parameter has not been indicated, the values found in the Range are summed."
+msgstr "<emph>Rango de suma</emph> es el área desde el que se suman los valores. Si este parámetro no se ha indicado, se suman los valores encontrados en el rango."
+
+#: 04060106.xhp#par_id8347422.help.text
+msgid "SUMIF supports the reference concatenation operator (~) only in the Criteria parameter, and only if the optional SumRange parameter is not given."
+msgstr "SUMAR.SI soporta el operador de concatenación (~) solamente en el parámetro de Criterio, y si el Rango de suma no esta definido."
+
+#: 04060106.xhp#hd_id3152110.443.help.text
+msgctxt "04060106.xhp#hd_id3152110.443.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3152148.626.help.text
+msgid "To sum up only negative numbers: <item type=\"input\">=SUMIF(A1:A10;\"<0\")</item>"
+msgstr "Para sumar únicamente números negativos: <item type=\"input\">=SUMAR.SI(A1:A10;\"<0\")</item>"
+
+#: 04060106.xhp#par_id6670125.help.text
+msgid "<item type=\"input\">=SUMIF(A1:A10;\">0\";B1:10)</item> - sums values from the range B1:B10 only if the corresponding values in the range A1:A10 are >0."
+msgstr "<item type=\"input\">=SUMAR.SI(A1:A10;\">0\";B1:10)</item> suma los valores del área B1:B10 sólo si los valores correspondientes en el área A1:A10 son >0."
+
+#: 04060106.xhp#par_id6062196.help.text
+msgid "See COUNTIF() for some more syntax examples that can be used with SUMIF()."
+msgstr "Consulte CONTAR.SI() para obtener más ejemplos de sintaxis que puedan utilizarse con SUMAR.SI()."
+
+#: 04060106.xhp#bm_id3152195.help.text
+msgid "<bookmark_value>TAN function</bookmark_value>"
+msgstr "<bookmark_value>TAN</bookmark_value>"
+
+#: 04060106.xhp#hd_id3152195.446.help.text
+msgid "TAN"
+msgstr "TAN"
+
+#: 04060106.xhp#par_id3152224.447.help.text
+msgid "<ahelp hid=\"HID_FUNC_TAN\">Returns the tangent of the given angle (in radians).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TAN\">Devuelve la tangente del ángulo especificado.</ahelp>"
+
+#: 04060106.xhp#hd_id3152242.448.help.text
+msgctxt "04060106.xhp#hd_id3152242.448.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3152255.449.help.text
+msgid "TAN(Number)"
+msgstr "TAN(Número)"
+
+#: 04060106.xhp#par_id3152269.450.help.text
+msgid "Returns the (trigonometric) tangent of <emph>Number</emph>, the angle in radians."
+msgstr "Devuelve la tangente (trigonemétrica) del <emph>Número</emph>, el ángulo en radianes"
+
+#: 04060106.xhp#par_id5752128.help.text
+msgid "To return the tangent of an angle in degrees, use the RADIANS function."
+msgstr "To return the tangent of an angle in degrees, use the RADIANS function."
+
+#: 04060106.xhp#hd_id3152287.451.help.text
+msgctxt "04060106.xhp#hd_id3152287.451.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3152301.452.help.text
+msgid "<item type=\"input\">=TAN(PI()/4) </item>returns 1, the tangent of PI/4 radians."
+msgstr "<item type=\"input\">=TAN(PI()/4)</item> devuelve 1, la tangente de PI/4 radianes."
+
+#: 04060106.xhp#par_id1804864.help.text
+msgid "<item type=\"input\">=TAN(RADIANS(45))</item> returns 1, the tangent of 45 degrees."
+msgstr "<item type=\"input\">=TAN(RADIANES(45))</item> devuelve 1, la tangente de 45 grados."
+
+#: 04060106.xhp#bm_id3165434.help.text
+msgid "<bookmark_value>TANH function</bookmark_value>"
+msgstr "<bookmark_value>TANH</bookmark_value>"
+
+#: 04060106.xhp#hd_id3165434.456.help.text
+msgid "TANH"
+msgstr "TANH"
+
+#: 04060106.xhp#par_id3165462.457.help.text
+msgid "<ahelp hid=\"HID_FUNC_TANHYP\">Returns the hyperbolic tangent of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TANHYP\">Devuelve la tangente hiperbólica de un número.</ahelp>"
+
+#: 04060106.xhp#hd_id3165480.458.help.text
+msgctxt "04060106.xhp#hd_id3165480.458.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3165494.459.help.text
+msgid "TANH(Number)"
+msgstr "TANH(Número)"
+
+#: 04060106.xhp#par_id3165508.460.help.text
+msgid "Returns the hyperbolic tangent of <emph>Number</emph>."
+msgstr "Devuelve la tangente hiperbólica del <emph>Número</emph>."
+
+#: 04060106.xhp#hd_id3165527.461.help.text
+msgctxt "04060106.xhp#hd_id3165527.461.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3165541.462.help.text
+msgid "<item type=\"input\">=TANH(0)</item> returns 0, the hyperbolic tangent of 0."
+msgstr "<item type=\"input\">=TANH(0)</item> devuelve 0, la tangente hiperbólica de 0."
+
+#: 04060106.xhp#bm_id3165633.help.text
+msgid "<bookmark_value>AutoFilter function; subtotals</bookmark_value><bookmark_value>sums;of filtered data</bookmark_value><bookmark_value>filtered data; sums</bookmark_value><bookmark_value>SUBTOTAL function</bookmark_value>"
+msgstr "<bookmark_value>Autofiltro;subtotales</bookmark_value><bookmark_value>sumas;de datos filtrados</bookmark_value><bookmark_value>datos filtrados;sumas</bookmark_value><bookmark_value>SUBTOTALES</bookmark_value>"
+
+#: 04060106.xhp#hd_id3165633.466.help.text
+msgid "SUBTOTAL"
+msgstr "SUBTOTAL"
+
+#: 04060106.xhp#par_id3165682.467.help.text
+msgid "<ahelp hid=\"HID_FUNC_TEILERGEBNIS\">Calculates subtotals.</ahelp> If a range already contains subtotals, these are not used for further calculations. Use this function with the AutoFilters to take only the filtered records into account."
+msgstr "<ahelp hid=\"HID_FUNC_TEILERGEBNIS\">Calcula subtotales.</ahelp> Si un área ya contiene subtotales, éstos no se utilizan en otros cálculos. Utilice esta función en combinación con los filtros automáticos para tener en cuenta únicamente los registros filtrados."
+
+#: 04060106.xhp#hd_id3165704.495.help.text
+msgctxt "04060106.xhp#hd_id3165704.495.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3165717.496.help.text
+msgid "SUBTOTAL(Function; Range)"
+msgstr "SUBTOTAL(Función; Rango)"
+
+#: 04060106.xhp#par_id3165731.497.help.text
+msgid "<emph>Function</emph> is a number that stands for one of the following functions:"
+msgstr "<emph>Función</emph> es un número que representa una de las siguientes funciones:"
+
+#: 04060106.xhp#par_id3165782.469.help.text
+msgid "Function index"
+msgstr "<emph>Índice de funciones</emph>"
+
+#: 04060106.xhp#par_id3165806.470.help.text
+msgctxt "04060106.xhp#par_id3165806.470.help.text"
+msgid "Function"
+msgstr "<emph>Función</emph>"
+
+#: 04060106.xhp#par_id3165833.471.help.text
+msgctxt "04060106.xhp#par_id3165833.471.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060106.xhp#par_id3165856.472.help.text
+msgctxt "04060106.xhp#par_id3165856.472.help.text"
+msgid "AVERAGE"
+msgstr "PROMEDIO"
+
+#: 04060106.xhp#par_id3165883.473.help.text
+msgctxt "04060106.xhp#par_id3165883.473.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060106.xhp#par_id3165906.474.help.text
+msgctxt "04060106.xhp#par_id3165906.474.help.text"
+msgid "COUNT"
+msgstr "CONTAR"
+
+#: 04060106.xhp#par_id3165933.475.help.text
+msgctxt "04060106.xhp#par_id3165933.475.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060106.xhp#par_id3165956.476.help.text
+msgctxt "04060106.xhp#par_id3165956.476.help.text"
+msgid "COUNTA"
+msgstr "CONTARA"
+
+#: 04060106.xhp#par_id3165983.477.help.text
+msgctxt "04060106.xhp#par_id3165983.477.help.text"
+msgid "4"
+msgstr "4"
+
+#: 04060106.xhp#par_id3166006.478.help.text
+msgctxt "04060106.xhp#par_id3166006.478.help.text"
+msgid "MAX"
+msgstr "MÁX"
+
+#: 04060106.xhp#par_id3166033.479.help.text
+msgctxt "04060106.xhp#par_id3166033.479.help.text"
+msgid "5"
+msgstr "5"
+
+#: 04060106.xhp#par_id3166056.480.help.text
+msgctxt "04060106.xhp#par_id3166056.480.help.text"
+msgid "MIN"
+msgstr "MÍN"
+
+#: 04060106.xhp#par_id3143316.481.help.text
+msgctxt "04060106.xhp#par_id3143316.481.help.text"
+msgid "6"
+msgstr "6"
+
+#: 04060106.xhp#par_id3143339.482.help.text
+msgctxt "04060106.xhp#par_id3143339.482.help.text"
+msgid "PRODUCT"
+msgstr "PRODUCTO"
+
+#: 04060106.xhp#par_id3143366.483.help.text
+msgctxt "04060106.xhp#par_id3143366.483.help.text"
+msgid "7"
+msgstr "7"
+
+#: 04060106.xhp#par_id3143389.484.help.text
+msgctxt "04060106.xhp#par_id3143389.484.help.text"
+msgid "STDEV"
+msgstr "DESVPROM"
+
+#: 04060106.xhp#par_id3143416.485.help.text
+msgctxt "04060106.xhp#par_id3143416.485.help.text"
+msgid "8"
+msgstr "8"
+
+#: 04060106.xhp#par_id3143439.486.help.text
+msgctxt "04060106.xhp#par_id3143439.486.help.text"
+msgid "STDEVP"
+msgstr "DESVESTP"
+
+#: 04060106.xhp#par_id3143466.487.help.text
+msgctxt "04060106.xhp#par_id3143466.487.help.text"
+msgid "9"
+msgstr "9"
+
+#: 04060106.xhp#par_id3143489.488.help.text
+msgctxt "04060106.xhp#par_id3143489.488.help.text"
+msgid "SUM"
+msgstr "SUMA"
+
+#: 04060106.xhp#par_id3143516.489.help.text
+msgctxt "04060106.xhp#par_id3143516.489.help.text"
+msgid "10"
+msgstr "10"
+
+#: 04060106.xhp#par_id3143539.490.help.text
+msgctxt "04060106.xhp#par_id3143539.490.help.text"
+msgid "VAR"
+msgstr "VAR"
+
+#: 04060106.xhp#par_id3143566.491.help.text
+msgctxt "04060106.xhp#par_id3143566.491.help.text"
+msgid "11"
+msgstr "11"
+
+#: 04060106.xhp#par_id3143589.492.help.text
+msgctxt "04060106.xhp#par_id3143589.492.help.text"
+msgid "VARP"
+msgstr "VARP"
+
+#: 04060106.xhp#par_id3143606.498.help.text
+msgid "<emph>Range</emph> is the range whose cells are included."
+msgstr "<emph>Área</emph> es el área cuyas celdas están incluidas."
+
+#: 04060106.xhp#hd_id3143625.499.help.text
+msgctxt "04060106.xhp#hd_id3143625.499.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3143638.562.help.text
+msgid "You have a table in the cell range A1:B5 containing cities in column A and accompanying figures in column B. You have used an AutoFilter so that you only see rows containing the city Hamburg. You want to see the sum of the figures that are displayed; that is, just the subtotal for the filtered rows. In this case the correct formula would be:"
+msgstr "El área de celdas A1:B5 contiene una tabla con ciudades en la columna A y cifras relacionadas en la columna B. Ha utilizado un Filtro automático para ver únicamente las filas que contienen la ciudad de Hamburgo. Desea ver la suma de las cifras mostradas; es decir, el subtotal de las filas filtradas. En tal caso, la fórmula correcta será:"
+
+#: 04060106.xhp#par_id3143658.563.help.text
+msgid "<item type=\"input\">=SUBTOTAL(9;B2:B5)</item>"
+msgstr "<item type=\"input\">=SUBTOTAL(9;B2:B5)</item>"
+
+#: 04060106.xhp#bm_id3143672.help.text
+msgid "<bookmark_value>Euro; converting</bookmark_value><bookmark_value>EUROCONVERT function</bookmark_value>"
+msgstr "<bookmark_value>Euro;convertir</bookmark_value><bookmark_value>EUROCONVERT</bookmark_value>"
+
+#: 04060106.xhp#hd_id3143672.564.help.text
+msgid "EUROCONVERT"
+msgstr "EUROCONVERT"
+
+#: 04060106.xhp#par_id3143708.565.help.text
+msgid "<ahelp hid=\"HID_FUNC_UMRECHNEN\">Converts between old European national currency and to and from Euros.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_UMRECHNEN\">Convierte entre las monedas nacionales europeas antiguas y los euros.</ahelp>"
+
+#: 04060106.xhp#par_id3143731.566.help.text
+msgctxt "04060106.xhp#par_id3143731.566.help.text"
+msgid "<emph>Syntax</emph>"
+msgstr "<emph>Sintaxis</emph>"
+
+#: 04060106.xhp#par_id3143748.567.help.text
+msgid "EUROCONVERT(Value; \"From_currency\"; \"To_currency\", full_precision, triangulation_precision)"
+msgstr "EUROCONVERT(Valor; \"De_moneda\"; \"A_moneda\", precisión_completa, precisión_triangulación)"
+
+#: 04060106.xhp#par_id3143763.568.help.text
+msgid "<emph>Value</emph> is the amount of the currency to be converted."
+msgstr "<emph>Valor</emph> es la cantidad de moneda que se va a convertir."
+
+#: 04060106.xhp#par_id3143782.569.help.text
+msgid "<emph>From_currency</emph> and <emph>To_currency</emph> are the currency units to convert from and to respectively. These must be text, the official abbreviation for the currency (for example, \"EUR\"). The rates (shown per Euro) were set by the European Commission."
+msgstr "<emph>De_moneda</emph> y <emph>A_moneda</emph> son las unidades monetarias que se convertirán respectivamente. Deben ser texto, la abreviatura oficial de la moneda (por ejemplo, \"EUR\"). La Comisión Europea estableció los tipos de cambio (mostrados por Euro)."
+
+#: 04060106.xhp#par_id0119200904301810.help.text
+msgid "<emph>Full_precision</emph> is optional. If omitted or False, the result is rounded according to the decimals of the To currency. If Full_precision is True, the result is not rounded."
+msgstr "<emph>Precisión_completa</emph> es opcional. Si se omite o es Falso, el resultado se redondea según los decimales de la moneda de destino. Si Precisión_completa es Verdadero, el resultado no se redondea."
+
+#: 04060106.xhp#par_id0119200904301815.help.text
+msgid "<emph>Triangulation_precision</emph> is optional. If Triangulation_precision is given and >=3, the intermediate result of a triangular conversion (currency1,EUR,currency2) is rounded to that precision. If Triangulation_precision is omitted, the intermediate result is not rounded. Also if To currency is \"EUR\", Triangulation_precision is used as if triangulation was needed and conversion from EUR to EUR was applied."
+msgstr "<emph>Precisión_triangulación</emph> es opcional. Si se proporciona Precisión_triangulación y >=3, el resultado intermedio de una conversión triangular (moneda1,EUR,moneda2) se redondea a dicha precisión. Si se omite Precisión_triangulación, el resultado intermedio no se redondea. Además si A moneda es \"EUR\", Precisión_triangulación se utiliza como si se necesitase la triangulación y se aplicase la conversión de EUR a EUR."
+
+#: 04060106.xhp#par_id3143819.570.help.text
+msgid "<emph>Examples</emph>"
+msgstr "<emph>Ejemplos</emph>"
+
+#: 04060106.xhp#par_id3143837.571.help.text
+msgid "<item type=\"input\">=EUROCONVERT(100;\"ATS\";\"EUR\")</item> converts 100 Austrian Schillings into Euros."
+msgstr "<item type=\"input\">=EUROCONVERT(100;\"ATS\";\"EUR\")</item> convierte 100 chelines austríacos a euros."
+
+#: 04060106.xhp#par_id3143853.572.help.text
+msgid "<item type=\"input\">=EUROCONVERT(100;\"EUR\";\"DEM\")</item> converts 100 Euros into German Marks."
+msgstr "<item type=\"input\">=EUROCONVERT(100;\"EUR\";\"DEM\")</item> convierte 100 euros a marcos alemanes."
+
+#: 04060106.xhp#bm_id0908200902090676.help.text
+msgid "<bookmark_value>CONVERT function</bookmark_value>"
+msgstr "<bookmark_value>CONVERTIR</bookmark_value>"
+
+#: 04060106.xhp#hd_id0908200902074836.help.text
+msgid "CONVERT"
+msgstr "CONVERTIR"
+
+#: 04060106.xhp#par_id0908200902131122.help.text
+msgid "<ahelp hid=\".\">Converts a value from one unit of measurement to another unit of measurement. The conversion factors are given in a list in the configuration.</ahelp>"
+msgstr "<ahelp hid=\".\">Convierte un valor de una unidad de medida a otra. Los factores de conversión se proporcionan en una lista en la configuración.</ahelp>"
+
+#: 04060106.xhp#par_id0908200902475420.help.text
+msgid "At one time the list of conversion factors included the legacy European currencies and the Euro (see examples below). We suggest using the new function EUROCONVERT for converting these currencies."
+msgstr "En su momento, la lista de factores de conversión incluía las monedas europeas heredadas y el euro (ver los ejemplos a continuación). Se recomienda utilizar la nueva función EUROCONVERT para convertir estas monedas."
+
+#: 04060106.xhp#hd_id0908200902131071.help.text
+msgctxt "04060106.xhp#hd_id0908200902131071.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id0908200902131191.help.text
+msgid "CONVERT(value;\"text\";\"text\")"
+msgstr "CONVERTIR(valor;\"texto\";\"texto\")"
+
+#: 04060106.xhp#hd_id0908200902131152.help.text
+msgctxt "04060106.xhp#hd_id0908200902131152.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id090820090213112.help.text
+msgid "<item type=\"input\">=CONVERT(100;\"ATS\";\"EUR\")</item> returns the Euro value of 100 Austrian Schillings."
+msgstr "<item type=\"input\">=CONVERTIR(100;\"ATS\";\"EUR\")</item> devuelve el valor en euros de 100 chelines austríacos."
+
+#: 04060106.xhp#par_id0908200902475431.help.text
+msgid "=CONVERT(100;\"EUR\";\"DEM\") converts 100 Euros into German Marks. "
+msgstr "=CONVERTIR(100;\"EUR\";\"DEM\") convierte 100 euros en marcos alemanes. "
+
+#: 04060106.xhp#bm_id3157177.help.text
+msgid "<bookmark_value>ODD function</bookmark_value><bookmark_value>rounding;up/down to nearest odd integer</bookmark_value>"
+msgstr "<bookmark_value>REDONDEA.IMPAR</bookmark_value><bookmark_value>redondear;arriba/abajo hasta el impar entero más cercano</bookmark_value>"
+
+#: 04060106.xhp#hd_id3157177.502.help.text
+msgid "ODD"
+msgstr "REDONDEA.IMPAR"
+
+#: 04060106.xhp#par_id3157205.503.help.text
+msgid "<ahelp hid=\"HID_FUNC_UNGERADE\">Rounds a positive number up to the nearest odd integer and a negative number down to the nearest odd integer.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_UNGERADE\">Redondea un número positivo hacia arriba hasta el entero impar más próximo siguiente y un número negativo hacia abajo hasta el entero impar más próximo.</ahelp>"
+
+#: 04060106.xhp#hd_id3157223.504.help.text
+msgctxt "04060106.xhp#hd_id3157223.504.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3157237.505.help.text
+msgid "ODD(Number)"
+msgstr "REDONDEA.IMPAR(Número)"
+
+#: 04060106.xhp#par_id3157250.506.help.text
+msgid " Returns <emph>Number</emph> rounded to the next odd integer up, away from zero."
+msgstr " Devuelve el <emph>Número</emph> redondeado para el próximo entero impar, lejos del cero."
+
+#: 04060106.xhp#hd_id3157270.507.help.text
+msgctxt "04060106.xhp#hd_id3157270.507.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3157283.508.help.text
+msgid "<item type=\"input\">=ODD(1.2)</item> returns 3."
+msgstr "<item type=\"input\">=REDONDEA.IMPAR(1.2)</item> devuelve 3."
+
+#: 04060106.xhp#par_id8746910.help.text
+msgid "<item type=\"input\">=ODD(1)</item> returns 1."
+msgstr "<item type=\"input\">=REDONDEA.IMPAR(1)</item> devuelve 1."
+
+#: 04060106.xhp#par_id9636524.help.text
+msgid "<item type=\"input\">=ODD(0)</item> returns 1."
+msgstr "<item type=\"input\">=REDONDEA.IMPAR(0)</item> devuelve 1."
+
+#: 04060106.xhp#par_id5675527.help.text
+msgid "<item type=\"input\">=ODD(-3.1)</item> returns -5."
+msgstr "<item type=\"input\">=REDONDEA.IMPAR(-3.1)</item> devuelve -5."
+
+#: 04060106.xhp#bm_id3157404.help.text
+msgid "<bookmark_value>FLOOR function</bookmark_value><bookmark_value>rounding;down to nearest multiple of significance</bookmark_value>"
+msgstr "<bookmark_value>MÚLTIPLO.INFERIOR</bookmark_value><bookmark_value>redondear;abajo hasta el múltiplo de cifra significativa más cercano</bookmark_value>"
+
+#: 04060106.xhp#hd_id3157404.512.help.text
+msgid "FLOOR"
+msgstr "MÚLTIPLO.INFERIOR"
+
+#: 04060106.xhp#par_id3157432.513.help.text
+msgid "<ahelp hid=\"HID_FUNC_UNTERGRENZE\">Rounds a number down to the nearest multiple of Significance.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_UNTERGRENZE\">Redondea un número hacia abajo hasta el múltiplo de cifra_significativa más próximo.</ahelp>"
+
+#: 04060106.xhp#hd_id3157451.514.help.text
+msgctxt "04060106.xhp#hd_id3157451.514.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3157464.515.help.text
+msgid "FLOOR(Number; Significance; Mode)"
+msgstr "MÚLTIPLO.INFERIOR(número; cifra_significativa; modo)"
+
+#: 04060106.xhp#par_id3157478.516.help.text
+msgid "<emph>Number</emph> is the number that is to be rounded down."
+msgstr "<emph>Número</emph> es la cifra que se debe redondear hacia abajo."
+
+#: 04060106.xhp#par_id3157497.517.help.text
+msgid "<emph>Significance</emph> is the value to whose multiple the number is to be rounded down."
+msgstr "<emph>cifra_significativa</emph> es el número cuyo valor de múltiplo se debe redondear hacia abajo."
+
+#: 04060106.xhp#par_id3157517.561.help.text
+msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of the number. This parameter is ignored when exporting to MS Excel as Excel does not know any third parameter."
+msgstr "<emph>Modo</emph> es un valor opcional. Si se proporciona el valor Modo y no es igual a cero, y si su Número y cifra significativa son negativos, el redondeo se efectúa según el valor absoluto del número. Este parámetro se omite al exportarse a MS Excel, ya que dicho programa no conoce ningún tercer parámetro."
+
+#: 04060106.xhp#par_id3163894.630.help.text
+msgid "If both parameters Number and Significance are negative, and if the Mode value is equal to zero or is not specified, then the results in $[officename] Calc and Excel will differ after exporting. If you export the spreadsheet to Excel, use Mode=1 to see the same results in Excel as in Calc."
+msgstr "Si ambos parámetros Número y Cifra significatica son negativos, y si el valor Modo es igual a cero o no esta especificado, los resultados en $[officename] Calc y Excel serán diferentes luego de exportar. Si exporta la hoja de cálculo a Excel, use Modo=1 para ver los mismos resultados en Excel como en Calc."
+
+#: 04060106.xhp#hd_id3163932.518.help.text
+msgctxt "04060106.xhp#hd_id3163932.518.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3163945.519.help.text
+msgid "<item type=\"input\">=FLOOR( -11;-2)</item> returns -12"
+msgstr "<item type=\"input\">=MÚLTIPLO.INFERIOR( -11;-2)</item> devuelve -12."
+
+#: 04060106.xhp#par_id3163966.520.help.text
+msgid "<item type=\"input\">=FLOOR( -11;-2;0)</item> returns -12"
+msgstr "<item type=\"input\">=MÚLTIPLO.INFERIOR( -11;-2;0)</item> devuelve -12."
+
+#: 04060106.xhp#par_id3163988.521.help.text
+msgid "<item type=\"input\">=FLOOR( -11;-2;1)</item> returns -10"
+msgstr "<item type=\"input\">=MÚLTIPLO.INFERIOR( -11;-2;1)</item> devuelve -10."
+
+#: 04060106.xhp#bm_id3164086.help.text
+msgid "<bookmark_value>SIGN function</bookmark_value><bookmark_value>algebraic signs</bookmark_value>"
+msgstr "<bookmark_value>SIGNO</bookmark_value><bookmark_value>signos algebraicos</bookmark_value>"
+
+#: 04060106.xhp#hd_id3164086.523.help.text
+msgid "SIGN"
+msgstr "SIGNO"
+
+#: 04060106.xhp#par_id3164115.524.help.text
+msgid "<ahelp hid=\"HID_FUNC_VORZEICHEN\">Returns the sign of a number. Returns 1 if the number is positive, -1 if negative and 0 if zero.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VORZEICHEN\">Devuelve el signo de un número. </ahelp> La función devuelve como resultado 1 si el signo es positivo y -1 si es negativo. Si el número es cero, la función devuelve también un cero."
+
+#: 04060106.xhp#hd_id3164136.525.help.text
+msgctxt "04060106.xhp#hd_id3164136.525.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3164150.526.help.text
+msgid "SIGN(Number)"
+msgstr "SIGNO(Número)"
+
+#: 04060106.xhp#par_id3164164.527.help.text
+msgid "<emph>Number</emph> is the number whose sign is to be determined."
+msgstr "<emph>Número</emph> es el número cuyo signo debe determinarse."
+
+#: 04060106.xhp#hd_id3164183.528.help.text
+msgctxt "04060106.xhp#hd_id3164183.528.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3164197.529.help.text
+msgid "<item type=\"input\">=SIGN(3.4)</item> returns 1."
+msgstr "<item type=\"input\">=SIGNO(3.4)</item> devuelve 1."
+
+#: 04060106.xhp#par_id3164212.530.help.text
+msgid "<item type=\"input\">=SIGN(-4.5)</item> returns -1."
+msgstr "<item type=\"input\">=SIGNO(-4.5)</item> devuelve -1."
+
+#: 04060106.xhp#bm_id3164252.help.text
+msgid "<bookmark_value>MROUND function</bookmark_value><bookmark_value>nearest multiple</bookmark_value>"
+msgstr "<bookmark_value>REDOND.MULT</bookmark_value><bookmark_value>múltiplo más cercano</bookmark_value>"
+
+#: 04060106.xhp#hd_id3164252.658.help.text
+msgid "MROUND"
+msgstr "REDOND.MULT"
+
+#: 04060106.xhp#par_id3164288.659.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_MROUND\">Returns a number rounded to the nearest multiple of another number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_MROUND\">El resultado es el múltiplo entero más próximo del número.</ahelp>"
+
+#: 04060106.xhp#hd_id3164306.660.help.text
+msgctxt "04060106.xhp#hd_id3164306.660.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3164320.661.help.text
+msgid "MROUND(Number; Multiple)"
+msgstr "REDOND.MULT(Número; Múltiplo)"
+
+#: 04060106.xhp#par_id3486434.help.text
+msgid "Returns <emph>Number</emph> rounded to the nearest multiple of <emph>Multiple</emph>. "
+msgstr "Devuelve <emph>Número</emph> redondeado al multiplo mas cercano a <emph>Múltiplo</emph>. "
+
+#: 04060106.xhp#par_id3068636.help.text
+msgid "An alternative implementation would be <item type=\"literal\">Multiple * ROUND(Number/Multiple)</item>."
+msgstr "Una implementación alternativa será <item type=\"literal\">Múltiplo * REDOND(Número/Multiplo)</item>."
+
+#: 04060106.xhp#hd_id3164333.662.help.text
+msgctxt "04060106.xhp#hd_id3164333.662.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3164347.663.help.text
+msgid "<item type=\"input\">=MROUND(15.5;3)</item> returns 15, as 15.5 is closer to 15 (= 3*5) than to 18 (= 3*6)."
+msgstr "<item type=\"input\">=REDOND.MULT(15,5;3)</item> devuelve 15, ya que 15,5 está más cercano a 15 (= 3*5) que a 18 (= 3*6)."
+
+#: 04060106.xhp#par_idN14DD6.help.text
+msgid "<item type=\"input\">=MROUND(1.4;0.5)</item> returns 1.5 (= 0.5*3)."
+msgstr "<item type=\"input\">=REDOND.MULT(1.4;0.5)</item> da como resultado 1,5 (= 0,5*3)."
+
+#: 04060106.xhp#bm_id3164375.help.text
+msgid "<bookmark_value>SQRT function</bookmark_value><bookmark_value>square roots;positive numbers</bookmark_value>"
+msgstr "<bookmark_value>RAÍZ</bookmark_value><bookmark_value>raíces cuadradas;números positivos</bookmark_value>"
+
+#: 04060106.xhp#hd_id3164375.532.help.text
+msgid "SQRT"
+msgstr "RAÍZ"
+
+#: 04060106.xhp#par_id3164404.533.help.text
+msgid "<ahelp hid=\"HID_FUNC_WURZEL\">Returns the positive square root of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_WURZEL\">Devuelve la raíz cuadrada positiva de un número.</ahelp> El número debe ser positivo."
+
+#: 04060106.xhp#hd_id3164424.534.help.text
+msgctxt "04060106.xhp#hd_id3164424.534.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3164437.535.help.text
+msgid "SQRT(Number)"
+msgstr "RAÍZ(Número)"
+
+#: 04060106.xhp#par_id3164451.536.help.text
+msgid "Returns the positive square root of <emph>Number</emph>."
+msgstr "Devuelve la raíz cuadrada positiva de <emph>Número</emph>."
+
+#: 04060106.xhp#par_id6870021.help.text
+msgid " Number must be positive."
+msgstr " El número debe ser positivo."
+
+#: 04060106.xhp#hd_id3164471.537.help.text
+msgctxt "04060106.xhp#hd_id3164471.537.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3164484.538.help.text
+msgid "<item type=\"input\">=SQRT(16)</item> returns 4."
+msgstr "<item type=\"input\">=RAÍZ(16)</item> devuelve 4."
+
+#: 04060106.xhp#par_id3591723.help.text
+msgid "<item type=\"input\">=SQRT(-16)</item> returns an <item type=\"literal\">invalid argument</item> error."
+msgstr "<item type=\"input\">=RAIZ(-16)</item> devuelve un error de <item type=\"literal\">argumento no válido</item>."
+
+#: 04060106.xhp#bm_id3164560.help.text
+msgid "<bookmark_value>SQRTPI function</bookmark_value><bookmark_value>square roots;products of Pi</bookmark_value>"
+msgstr "<bookmark_value>RAIZ2PI</bookmark_value><bookmark_value>raíces cuadradas;productos de Pi</bookmark_value>"
+
+#: 04060106.xhp#hd_id3164560.665.help.text
+msgid "SQRTPI"
+msgstr "RAIZ2PI"
+
+#: 04060106.xhp#par_id3164596.666.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_SQRTPI\">Returns the square root of (PI times a number).</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_SQRTPI\">Devuelve la raíz cuadrada de un número multiplicado por pi.</ahelp>"
+
+#: 04060106.xhp#hd_id3164614.667.help.text
+msgctxt "04060106.xhp#hd_id3164614.667.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3164627.668.help.text
+msgid "SQRTPI(Number)"
+msgstr "RAIZ2PI(Número)"
+
+#: 04060106.xhp#par_id1501510.help.text
+msgid "Returns the positive square root of (PI multiplied by <emph>Number</emph>)."
+msgstr "Devuelve la raíz cuadrada positiva de (PI multiplicado por el <emph>Número</emph>)."
+
+#: 04060106.xhp#par_id9929197.help.text
+msgid "This is equivalent to <item type=\"literal\">SQRT(PI()*Number)</item>."
+msgstr "Esto es equivalente a<item type=\"literal\">RAÍZ(PI()*Número)</item>."
+
+#: 04060106.xhp#hd_id3164641.669.help.text
+msgctxt "04060106.xhp#hd_id3164641.669.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3164654.670.help.text
+msgid "<item type=\"input\">=SQRTPI(2)</item> returns the squareroot of (2PI), approximately 2.506628."
+msgstr "<item type=\"input\">=RAIZ2PI(2)</item> devuelve la raíz cuadrada de (2PI), aproximadamente 2,506628."
+
+#: 04060106.xhp#bm_id3164669.help.text
+msgid "<bookmark_value>random numbers; between limits</bookmark_value><bookmark_value>RANDBETWEEN function</bookmark_value>"
+msgstr "<bookmark_value>números aleatorios;entre límites</bookmark_value><bookmark_value>ALEATORIO.ENTRE</bookmark_value>"
+
+#: 04060106.xhp#hd_id3164669.671.help.text
+msgid "RANDBETWEEN"
+msgstr "ALEATORIO.ENTRE"
+
+#: 04060106.xhp#par_id3164711.672.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_RANDBETWEEN\">Returns an integer random number in a specified range.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_RANDBETWEEN\">Devuelve un número entero aleatorio entre <emph>menor</emph> y <emph>mayor</emph> (ambos incluidos).</ahelp> Para recalcular, pulse Mayús + Control + F9."
+
+#: 04060106.xhp#hd_id3164745.673.help.text
+msgctxt "04060106.xhp#hd_id3164745.673.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3164758.674.help.text
+msgid "RANDBETWEEN(Bottom; Top)"
+msgstr "ALEATORIO.ENTRE (menor; mayor)"
+
+#: 04060106.xhp#par_id7112338.help.text
+msgid "Returns an integer random number between integers <emph>Bottom</emph> and <emph>Top</emph> (both inclusive)."
+msgstr "Devuelve un entero de números aleatorios entre enteros<emph>Inferior</emph> y <emph>Superior</emph> (ambos inclusive)."
+
+#: 04060106.xhp#par_id2855616.help.text
+msgctxt "04060106.xhp#par_id2855616.help.text"
+msgid "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
+msgstr "Esta función genera un nuevo número aleatorio cada vez que Calc vuelve a calcular. Para forzar a Calc a que vuelva a calcular manualmente, pulse Mayús+<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
+
+#: 04060106.xhp#par_id2091433.help.text
+msgid "To generate random numbers which never recalculate, copy cells containing this function, and use <item type=\"menuitem\">Edit - Paste Special</item> (with <item type=\"menuitem\">Paste All</item> and <item type=\"menuitem\">Formulas</item> not marked and <item type=\"menuitem\">Numbers</item> marked)."
+msgstr "Para generar números aleatorios que nunca recalcular, copie el contenido de las celdas de esta funció, y use <item type=\"menuitem\">Editar - Pegado especial</item> (with <item type=\"menuitem\">Pegar todo</item> y <item type=\"menuitem\">Fórmulas</item> no marcadas y <item type=\"menuitem\">Números</item> marcados)."
+
+#: 04060106.xhp#hd_id3164772.675.help.text
+msgctxt "04060106.xhp#hd_id3164772.675.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3164785.676.help.text
+msgid "<item type=\"input\">=RANDBETWEEN(20;30)</item> returns an integer of between 20 and 30."
+msgstr "<item type=\"input\">=ALEATORIO.ENTRE(20;30)</item> devuelve un entero entre 20 y 30."
+
+#: 04060106.xhp#bm_id3164800.help.text
+msgid "<bookmark_value>RAND function</bookmark_value><bookmark_value>random numbers;between 0 and 1</bookmark_value>"
+msgstr "<bookmark_value>ALEATORIO</bookmark_value><bookmark_value>números aleatorios;entre 0 y 1</bookmark_value>"
+
+#: 04060106.xhp#hd_id3164800.542.help.text
+msgid "RAND"
+msgstr "ALEATORIO"
+
+#: 04060106.xhp#par_id3164829.543.help.text
+msgid "<ahelp hid=\"HID_FUNC_ZUFALLSZAHL\">Returns a random number between 0 and 1.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZUFALLSZAHL\">Devuelve un número aleatorio entre 0 y 1.</ahelp>"
+
+#: 04060106.xhp#hd_id3164870.545.help.text
+msgctxt "04060106.xhp#hd_id3164870.545.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3164884.546.help.text
+msgid "RAND()"
+msgstr "ALEATORIO( )"
+
+#: 04060106.xhp#par_id5092318.help.text
+msgctxt "04060106.xhp#par_id5092318.help.text"
+msgid "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
+msgstr "Esta función genera un nuevo número aleatorio cada vez que Calc vuelve a calcular. Para forzar a Calc a que vuelva a calcular manualmente, pulse Mayús+<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
+
+#: 04060106.xhp#par_id9312417.help.text
+msgid "To generate random numbers which never recalculate, copy cells each containing =RAND(), and use <item type=\"menuitem\">Edit - Paste Special</item> (with <item type=\"menuitem\">Paste All</item> and <item type=\"menuitem\">Formulas</item> not marked and <item type=\"menuitem\">Numbers</item> marked)."
+msgstr "Para generar números aleatorios que nunca recalcular, copie el contenido de cada celda =ALEATORIO(), y use <item type=\"menuitem\">Editar - Pegado especial</item> (with <item type=\"menuitem\">Pegar todo</item> y <item type=\"menuitem\">Fórmulas</item> no marcadas y <item type=\"menuitem\">Números</item> marcados)."
+
+#: 04060106.xhp#hd_id9089022.help.text
+msgctxt "04060106.xhp#hd_id9089022.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id9569078.help.text
+msgid "<item type=\"input\">=RAND()</item> returns a random number between 0 and 1."
+msgstr "<item type=\"input\">=ALEATORIO()</item> da como resultado un número aleatorio entre 0 y 1."
+
+#: 04060106.xhp#bm_id3164897.help.text
+msgid "<bookmark_value>COUNTIF function</bookmark_value><bookmark_value>counting;specified cells</bookmark_value>"
+msgstr "<bookmark_value>CONTAR.SI</bookmark_value><bookmark_value>contar;celdas específicas</bookmark_value>"
+
+#: 04060106.xhp#hd_id3164897.547.help.text
+msgid "COUNTIF"
+msgstr "CONTAR.SI"
+
+#: 04060106.xhp#par_id3164926.548.help.text
+msgid "<ahelp hid=\"HID_FUNC_ZAEHLENWENN\">Returns the number of cells that meet with certain criteria within a cell range.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZAEHLENWENN\">Devuelve el número de celdas que cumplen determinados criterios.</ahelp>"
+
+#: 04060106.xhp#hd_id3164953.549.help.text
+msgctxt "04060106.xhp#hd_id3164953.549.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060106.xhp#par_id3164967.550.help.text
+msgid "COUNTIF(Range; Criteria)"
+msgstr "CONTAR.SI(Rango; Criterio)"
+
+#: 04060106.xhp#par_id3164980.551.help.text
+msgctxt "04060106.xhp#par_id3164980.551.help.text"
+msgid "<emph>Range</emph> is the range to which the criteria are to be applied."
+msgstr "<emph>Rango</emph> es el área en la que se aplicarán los criterios."
+
+#: 04060106.xhp#par_id3165000.552.help.text
+msgid "<emph>Criteria</emph> indicates the criteria in the form of a number, an expression or a character string. These criteria determine which cells are counted. You may also enter a search text in the form of a regular expression, e.g. b.* for all words that begin with b. You may also indicate a cell range that contains the search criterion. If you search for literal text, enclose the text in double quotes."
+msgstr "<emph>Criterios</emph> indica los criterios en forma de número, expresión o cadena de caracteres. Estos criterios determinan las celdas que se cuentan. Un criterio de búsqueda puede formularse como una expresión regular, por ejemplo \"b.*\" para todas las palabras que empiecen por \"b\". También es posible indicar un rango de celdas que contenga un criterio de búsqueda. Si busca texto literal, delimite el texto con comillas dobles."
+
+#: 04060106.xhp#hd_id3165037.553.help.text
+msgctxt "04060106.xhp#hd_id3165037.553.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060106.xhp#par_id3166505.627.help.text
+msgid "A1:A10 is a cell range containing the numbers <item type=\"input\">2000</item> to <item type=\"input\">2009</item>. Cell B1 contains the number <item type=\"input\">2006</item>. In cell B2, you enter a formula:"
+msgstr "A1:A10 es un rango de celda que contienen los números <item type=\"input\">2000</item> a <item type=\"input\">2009</item>. Celda B1 contiene el número <item type=\"input\">2006</item>. En la celda B2, ingresa una fórmula:"
+
+#: 04060106.xhp#par_id3581652.help.text
+msgid "<item type=\"input\">=COUNTIF(A1:A10;2006)</item> - this returns 1"
+msgstr "<item type=\"input\">=CONTAR.SI(A1:A10;2006)</item> da como resultado 1."
+
+#: 04060106.xhp#par_id708639.help.text
+msgid "<item type=\"input\">=COUNTIF(A1:A10;B1)</item> - this returns 1"
+msgstr "<item type=\"input\">=CONTAR.SI(A1:A10;B1)</item> da como resultado 1."
+
+#: 04060106.xhp#par_id5169225.help.text
+msgid "<item type=\"input\">=COUNTIF(A1:A10;\">=2006\") </item>- this returns 4"
+msgstr "<item type=\"input\">=CONTAR.SI(A1:A10;\">=2006\") </item> da como resultado 4."
+
+#: 04060106.xhp#par_id2118594.help.text
+msgid "<item type=\"input\">=COUNTIF(A1:A10;\"<\"&B1)</item> - when B1 contains <item type=\"input\">2006</item>, this returns 6"
+msgstr "<item type=\"input\">=CONTAR.SI(A1:A10;\"<\"&B1)</item>; cuando B1 contiene <item type=\"input\">2006</item>, devuelve 6."
+
+#: 04060106.xhp#par_id166020.help.text
+msgid "<item type=\"input\">=COUNTIF(A1:A10;C2)</item> where cell C2 contains the text <item type=\"input\">>2006</item> counts the number of cells in the range A1:A10 which are >2006 "
+msgstr "<item type=\"input\">=CONTAR.SI(A1:A10;C2)</item> donde la celda C2 contiene el texto <item type=\"input\">>2006</item> cuenta el número de celdas en el área A1:A10, que son >2006. "
+
+#: 04060106.xhp#par_id6386913.help.text
+msgid "To count only negative numbers: <item type=\"input\">=COUNTIF(A1:A10;\"<0\")</item>"
+msgstr "Para contar únicamente números negativos: <item type=\"input\">=CONTAR.SI(A1:A10;\"<0\")</item>"
+
+#: 02180000.xhp#tit.help.text
+msgctxt "02180000.xhp#tit.help.text"
+msgid "Move or Copy a Sheet"
+msgstr "Mover o copiar una hoja"
+
+#: 02180000.xhp#bm_id3153360.help.text
+msgid "<bookmark_value>spreadsheets; moving</bookmark_value><bookmark_value>spreadsheets; copying</bookmark_value><bookmark_value>moving; spreadsheets</bookmark_value><bookmark_value>copying; spreadsheets</bookmark_value>"
+msgstr "<bookmark_value>hojas de cálculo;mover</bookmark_value><bookmark_value>hojas de cálculo;copiar</bookmark_value><bookmark_value>mover;hojas de cálculo</bookmark_value><bookmark_value>copiar;hojas de cálculo</bookmark_value>"
+
+#: 02180000.xhp#hd_id3153360.1.help.text
+msgctxt "02180000.xhp#hd_id3153360.1.help.text"
+msgid "Move or Copy a Sheet"
+msgstr "Mover o copiar una hoja"
+
+#: 02180000.xhp#par_id3154686.2.help.text
+msgid "<variable id=\"tabelleverschiebenkopierentext\"><ahelp hid=\".uno:Move\">Moves or copies a sheet to a new location in the document or to a different document.</ahelp></variable>"
+msgstr "<variable id=\"tabelleverschiebenkopierentext\"><ahelp hid=\".uno:Move\">Mueve o copia una hoja a una ubicación nueva del documento o a un documento distinto.</ahelp></variable>"
+
+#: 02180000.xhp#par_id2282479.help.text
+msgid "When you copy and paste cells containing <link href=\"text/scalc/01/04060102.xhp\">date values</link> between different spreadsheets, both spreadsheet documents must be set to the same date base. If date bases differ, the displayed date values will change!"
+msgstr "Cuando copia y pega celdas que contienen <link href=\"text/scalc/01/04060102.xhp\">valores de fecha</link> entre diferentes hojas de cálculo, ambos documentos de hoja de cálculo deben tener la misma configuración para las fechas. Si la configuración de fecha es diferente, cambiarán los valores de fecha."
+
+#: 02180000.xhp#hd_id3163710.3.help.text
+msgid "To Document"
+msgstr "Al documento"
+
+#: 02180000.xhp#par_id3148645.4.help.text
+#, fuzzy
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_DEST\">Indicates where the current sheet is to be moved or copied to.</ahelp> Select <emph>- new document -</emph> if you want to create a new location for the sheet to be moved or copied."
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_DEST\">Indica dónde debe moverse o copiarse la hoja actual.</ahelp> Seleccione <emph>nuevo documento</emph> si desea crear una ubicación para mover o copiar la hoja."
+
+#: 02180000.xhp#hd_id3154012.5.help.text
+msgid "Insert Before"
+msgstr "Insertar delante de"
+
+#: 02180000.xhp#par_id3145366.6.help.text
+#, fuzzy
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_INSERT\">The current sheet is moved or copied in front of the selected sheet.</ahelp> The <emph>- move to end position -</emph> option places the current sheet at the end."
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_INSERT\">La hoja actual se mueve o se copia delante de la hoja seleccionada.</ahelp> La opción <emph>desplazar a la última posición</emph> coloca la página actual al final."
+
+#: 02180000.xhp#hd_id3153726.7.help.text
+msgid "Copy"
+msgstr "Copiar"
+
+#: 02180000.xhp#par_id3144764.8.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_MOVETAB:BTN_COPY\">Specifies that the sheet is to be copied. If the option is unmarked, the sheet is moved.</ahelp> Moving sheets is the default."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_MOVETAB:BTN_COPY\">Especifica que la hoja se debe copiar. Si la opción no está marcada, la hoja se elimina.</ahelp> Mover hojas es la opción predeterminada."
+
+#: 02140500.xhp#tit.help.text
+msgctxt "02140500.xhp#tit.help.text"
+msgid "Fill Sheet"
+msgstr "Rellenar hojas"
+
+#: 02140500.xhp#hd_id3153897.1.help.text
+msgctxt "02140500.xhp#hd_id3153897.1.help.text"
+msgid "Fill Sheet"
+msgstr "Rellenar hojas"
+
+#: 02140500.xhp#par_id3150791.2.help.text
+msgid "<variable id=\"tabellenfuellentext\"><ahelp hid=\".uno:FillTable\" visibility=\"visible\">Specifies the options for transferring sheets or ranges of a certain sheet.</ahelp></variable>"
+msgstr "<variable id=\"tabellenfuellentext\"><ahelp hid=\".uno:FillTable\" visibility=\"visible\">Especifica las opciones para la transferencia de hojas o áreas de una hoja determinada.</ahelp></variable>"
+
+#: 02140500.xhp#par_id3150767.3.help.text
+msgid "In contrast to copying an area to the clipboard, you can filter certain information and calculate values. This command is only visible if you have selected two sheets in the document. To select multiple sheets, click each sheet tab while pressing <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> or Shift."
+msgstr "A diferencia de las copias de área que se realizan con el portapapeles, esta opción permite filtrar ciertas informaciones y aplicar operaciones de cálculo a los valores. Este comando sólo está activo si el documento contiene al menos dos hojas seleccionadas. Para ello es preciso pulsar con la tecla <switchinline select=\"sys\"> <caseinline select=\"MAC\">Orden</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> o Shift en las pestañas de la hoja de modo que se muestren resaltadas."
+
+#: 02140500.xhp#hd_id3155131.4.help.text
+msgid "Filling a Sheet"
+msgstr "Rellenar una hoja."
+
+#: 02140500.xhp#par_id3146119.5.help.text
+msgid "Select the entire sheet by clicking the empty gray box in the upper left of the sheet. You can also select an area of the sheet to be copied."
+msgstr "Para seleccionar toda la hoja hay que pulsar en el cuadro vacío gris situado en la esquina superior izquierda de la hoja de cálculo. También se puede seleccionar un área para copiarla."
+
+#: 02140500.xhp#par_id3153726.6.help.text
+msgid "Press <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and click the tab of the sheet where you want to insert the contents."
+msgstr "Hay que presionar <switchinline select=\"sys\"> <caseinline select=\"MAC\">Comando</caseinline> <defaultinline>Ctrl </defaultinline> </switchinline> y hacer clic en la pestaña de la hoja de cálculo donde se desea insertar el contenido."
+
+#: 02140500.xhp#par_id3147436.7.help.text
+msgid "Select the command <emph>Edit - Fill - Sheet</emph>. In the dialog which appears, the check box <emph>Numbers</emph> must be selected (or <emph>Paste All</emph>) if you want to combine operations with the values. You can also choose the desired operation here."
+msgstr "Se activa el comando <emph>Editar - Rellenar - Hoja de cálculo...</emph> Para definir una relación entre los valores y las operaciones de cálculo, deberá seleccionar previamente en el área <emph>Selección</emph> los <emph>Números</emph> (o <emph>Pegar todo</emph>). Si es necesario, elija la <emph>operación de cálculo</emph>."
+
+#: 02140500.xhp#par_id3154942.8.help.text
+msgctxt "02140500.xhp#par_id3154942.8.help.text"
+msgid "Click <emph>OK</emph>."
+msgstr "Pulse <emph>Aceptar</emph>."
+
+#: 02140500.xhp#par_id3156283.9.help.text
+msgid "This dialog is similar to the <link href=\"text/shared/01/02070000.xhp\" name=\"Paste Contents\">Paste Contents</link> dialog, where you can find additional tips."
+msgstr "Este diálogo es idéntico a la parte de la hoja de cálculo del diálogo <link href=\"text/shared/01/02070000.xhp\" name=\"Paste Contents\">Pegar contenidos</link>, en el que encontrará otras indicaciones."
+
+#: 05080200.xhp#tit.help.text
+msgctxt "05080200.xhp#tit.help.text"
+msgid "Remove"
+msgstr "Quitar"
+
+#: 05080200.xhp#hd_id3153562.1.help.text
+msgid "<link href=\"text/scalc/01/05080200.xhp\" name=\"Remove\">Remove</link>"
+msgstr "<link href=\"text/scalc/01/05080200.xhp\" name=\"Suprimir\">Suprimir</link>"
+
+#: 05080200.xhp#par_id3148550.2.help.text
+msgid "<ahelp hid=\".uno:DeletePrintArea\">Removes the defined print area.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeletePrintArea\">Borra el intervalo de impresión definida.</ahelp>"
+
+#: 12100000.xhp#tit.help.text
+msgid "Refresh Range"
+msgstr "Actualizar área"
+
+#: 12100000.xhp#bm_id3153662.help.text
+msgid "<bookmark_value>database ranges; refreshing</bookmark_value>"
+msgstr "<bookmark_value>áreas de base de datos;actualizar</bookmark_value>"
+
+#: 12100000.xhp#hd_id3153662.1.help.text
+msgid "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
+msgstr "<link href=\"text/scalc/01/12100000.xhp\" name=\"Actualizar área\">Actualizar área</link>"
+
+#: 12100000.xhp#par_id3153088.2.help.text
+msgid "<variable id=\"aktualisieren\"><ahelp hid=\".uno:DataAreaRefresh\" visibility=\"visible\">Updates a data range that was inserted from an external database. The data in the sheet is updated to match the data in the external database.</ahelp></variable>"
+msgstr "<variable id=\"aktualisieren\"><ahelp hid=\".uno:DataAreaRefresh\" visibility=\"visible\">Actualiza un área de datos insertada desde una base de datos externa. Los datos de la hoja se actualizan de forma que coincidan con los de la base de datos externa.</ahelp></variable>"
+
+#: 05060000.xhp#tit.help.text
+msgid "Merge and Center Cells"
+msgstr "Combinar y centrar celdas"
+
+#: 05060000.xhp#hd_id3149785.1.help.text
+msgid "<link href=\"text/scalc/01/05060000.xhp\" name=\"Merge and Center Cells\">Merge and Center Cells</link>"
+msgstr "<link href=\"text/scalc/01/05060000.xhp\" name=\"Merge and Center Cells\">Combinar y centrar celdas</link>"
+
+#: 05060000.xhp#par_id3151246.2.help.text
+msgid "<ahelp hid=\".\">Combines the selected cells into a single cell or splits merged cells. Aligns cell content centered.</ahelp>"
+msgstr "<ahelp hid=\".\">Combina las celdas seleccionadas en una sola celda o divide celdas combinadas. Alinea el contenido de la celda al centro.</ahelp>"
+
+#: 05060000.xhp#par_id3154020.18.help.text
+msgid "Choose <emph>Format - Merge Cells - Merge and Center Cells</emph>"
+msgstr "Elija <emph>Formato - Combinar celdas - Combinar y centrar celdas</emph>"
+
+#: 05060000.xhp#par_id3148552.4.help.text
+msgid "The merged cell receives the name of the first cell of the original cell range. Merged cells cannot be merged a second time with other cells. The range must form a rectangle, multiple selection is not supported."
+msgstr "La celda fusionada obtiene la dirección correspondiente a la primera celda del área original. Las celdas ya fusionadas no pueden volver a comprimirse con otras celdas. El área debe tener forma rectangular; no se admiten selecciones múltiples."
+
+#: 05060000.xhp#par_id3149665.3.help.text
+msgid "If the cells to be merged have any contents, a security dialog is shown."
+msgstr "Si las celdas combinadas tienen contenido se muestra un diálogo de seguridad."
+
+#: 05060000.xhp#par_id3153718.help.text
+msgid "Merging cells can lead to calculation errors in formulas in the table."
+msgstr "Se pueden producir errores de cálculo al combinar celdas con fórmulas."
+
+#: 12080600.xhp#tit.help.text
+msgctxt "12080600.xhp#tit.help.text"
+msgid "Remove"
+msgstr "Quitar"
+
+#: 12080600.xhp#hd_id3148947.1.help.text
+msgid "<link href=\"text/scalc/01/12080600.xhp\" name=\"Remove\">Remove</link>"
+msgstr "<link href=\"text/scalc/01/12080600.xhp\" name=\"Remove\">Quitar</link>"
+
+#: 12080600.xhp#par_id3149656.2.help.text
+msgid "<ahelp hid=\".uno:ClearOutline\" visibility=\"visible\">Removes the outline from the selected cell range.</ahelp>"
+msgstr "<ahelp hid=\".uno:ClearOutline\" visibility=\"visible\">Quita el esquema del área seleccionada de celdas.</ahelp>"
+
+#: func_datevalue.xhp#tit.help.text
+msgid "DATEVALUE "
+msgstr "FECHANÚMERO"
+
+#: func_datevalue.xhp#bm_id3145621.help.text
+msgid "<bookmark_value>DATEVALUE function</bookmark_value>"
+msgstr "<bookmark_value>FECHANÚMERO</bookmark_value>"
+
+#: func_datevalue.xhp#hd_id3145621.18.help.text
+msgid "<variable id=\"datevalue\"><link href=\"text/scalc/01/func_datevalue.xhp\">DATEVALUE</link></variable>"
+msgstr "<variable id=\"datevalue\"><link href=\"text/scalc/01/func_datevalue.xhp\">FECHANÚMERO</link></variable>"
+
+#: func_datevalue.xhp#par_id3145087.19.help.text
+msgid "<ahelp hid=\"HID_FUNC_DATWERT\">Returns the internal date number for text in quotes.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DATWERT\">Devuelve el número de fecha interno para el texto entre comillas.</ahelp>"
+
+#: func_datevalue.xhp#par_id3149281.20.help.text
+msgid "The internal date number is returned as a number. The number is determined by the date system that is used by $[officename] to calculate dates."
+msgstr "El número de fecha interno se devuelve como número. El número lo determina el sistema de fechas que utilice $[officename] para calcular las fechas."
+
+#: func_datevalue.xhp#par_id0119200903491982.help.text
+msgid "If the text string also includes a time value, DATEVALUE only returns the integer part of the conversion."
+msgstr "Si la cadena de texto también incluye un valor de tiempo, FECHANÚMERO sólo devuelve la parte de número entero de la conversión."
+
+#: func_datevalue.xhp#hd_id3156294.21.help.text
+msgctxt "func_datevalue.xhp#hd_id3156294.21.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: func_datevalue.xhp#par_id3149268.22.help.text
+msgid "DATEVALUE(\"Text\")"
+msgstr "FECHANÚMERO(\"texto\")"
+
+#: func_datevalue.xhp#par_id3154819.23.help.text
+msgid " <emph>Text</emph> is a valid date expression and must be entered with quotation marks."
+msgstr " <emph>Texto</emph> es una expresión de fecha válida y debe ir entre comillas."
+
+#: func_datevalue.xhp#hd_id3156309.24.help.text
+msgctxt "func_datevalue.xhp#hd_id3156309.24.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: func_datevalue.xhp#par_id3155841.25.help.text
+msgid " <emph>=DATEVALUE(\"1954-07-20\")</emph> yields 19925."
+msgstr " <emph>=FECHANÚMERO(\"1954-07-20\")</emph> da como resultado 19925."
+
+#: 04060183.xhp#tit.help.text
+msgid "Statistical Functions Part Three"
+msgstr "Funciones estadísticas, tercera parte"
+
+#: 04060183.xhp#hd_id3166425.1.help.text
+msgid "<variable id=\"kl\"><link href=\"text/scalc/01/04060183.xhp\" name=\"Statistical Functions Part Three\">Statistical Functions Part Three</link></variable>"
+msgstr "<variable id=\"kl\"><link href=\"text/scalc/01/04060183.xhp\" name=\"Funciones estadísticas, tercera parte\">Funciones estadísticas, tercera parte</link></variable>"
+
+#: 04060183.xhp#bm_id3149530.help.text
+msgid "<bookmark_value>LARGE function</bookmark_value>"
+msgstr "<bookmark_value>K.ESIMO.MAYOR</bookmark_value>"
+
+#: 04060183.xhp#hd_id3149530.2.help.text
+msgid "LARGE"
+msgstr "K.ESIMO.MAYOR"
+
+#: 04060183.xhp#par_id3150518.3.help.text
+msgid "<ahelp hid=\"HID_FUNC_KGROESSTE\">Returns the Rank_c-th largest value in a data set.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KGROESSTE\">Calcula el valor c de rango más grande de un grupo de datos.</ahelp>"
+
+#: 04060183.xhp#hd_id3152990.4.help.text
+msgctxt "04060183.xhp#hd_id3152990.4.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060183.xhp#par_id3154372.5.help.text
+msgid "LARGE(Data; RankC)"
+msgstr "K.ESIMO.MAYOR(Datos; Rango_C)"
+
+#: 04060183.xhp#par_id3152986.6.help.text
+msgctxt "04060183.xhp#par_id3152986.6.help.text"
+msgid "<emph>Data</emph> is the cell range of data."
+msgstr "<emph>Datos</emph> es la matriz de los datos de la muestra."
+
+#: 04060183.xhp#par_id3156448.7.help.text
+msgid "<emph>RankC</emph> is the ranking of the value."
+msgstr "<emph>Rango_C</emph> es el rango del valor."
+
+#: 04060183.xhp#hd_id3152889.8.help.text
+msgctxt "04060183.xhp#hd_id3152889.8.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060183.xhp#par_id3148702.9.help.text
+msgid "<item type=\"input\">=LARGE(A1:C50;2)</item> gives the second largest value in A1:C50."
+msgstr "<item type=\"input\">=K.ESIMO.MAYOR(A1:C50;2)</item> da el segundo mayor valor en A1:C50."
+
+#: 04060183.xhp#bm_id3154532.help.text
+msgid "<bookmark_value>SMALL function</bookmark_value>"
+msgstr "<bookmark_value>K.ESIMO.MENOR</bookmark_value>"
+
+#: 04060183.xhp#hd_id3154532.11.help.text
+msgid "SMALL"
+msgstr "K.ESIMO.MENOR"
+
+#: 04060183.xhp#par_id3157981.12.help.text
+msgid "<ahelp hid=\"HID_FUNC_KKLEINSTE\">Returns the Rank_c-th smallest value in a data set.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KKLEINSTE\">Calcula el valor c de rango más pequeño de un grupo de datos.</ahelp>"
+
+#: 04060183.xhp#hd_id3154957.13.help.text
+msgctxt "04060183.xhp#hd_id3154957.13.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060183.xhp#par_id3153974.14.help.text
+msgid "SMALL(Data; RankC)"
+msgstr "K.ESIMO.MENOR(Datos; Rango_C)"
+
+#: 04060183.xhp#par_id3154540.15.help.text
+msgctxt "04060183.xhp#par_id3154540.15.help.text"
+msgid "<emph>Data</emph> is the cell range of data."
+msgstr "<emph>Datos</emph> es la matriz de los datos en la muestra."
+
+#: 04060183.xhp#par_id3155094.16.help.text
+msgid "<emph>RankC</emph> is the rank of the value."
+msgstr "<emph>Rango_C</emph> es el rango del valor."
+
+#: 04060183.xhp#hd_id3153247.17.help.text
+msgctxt "04060183.xhp#hd_id3153247.17.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060183.xhp#par_id3149897.18.help.text
+msgid "<item type=\"input\">=SMALL(A1:C50;2)</item> gives the second smallest value in A1:C50."
+msgstr "<item type=\"input\">=K.ESIMO.MENOR(A1:C50;2)</item> da el segundo mínimo valor en el rango A1:C50."
+
+#: 04060183.xhp#bm_id3153559.help.text
+msgid "<bookmark_value>CONFIDENCE function</bookmark_value>"
+msgstr "<bookmark_value>INTERVALO.CONFIANZA</bookmark_value>"
+
+#: 04060183.xhp#hd_id3153559.20.help.text
+msgid "CONFIDENCE"
+msgstr "INTERVALO.CONFIANZA"
+
+#: 04060183.xhp#par_id3153814.21.help.text
+msgid "<ahelp hid=\"HID_FUNC_KONFIDENZ\">Returns the (1-alpha) confidence interval for a normal distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KONFIDENZ\">Calcula un intervalo de confianza (1 alfa) para distribución normal.</ahelp>"
+
+#: 04060183.xhp#hd_id3149315.22.help.text
+msgctxt "04060183.xhp#hd_id3149315.22.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060183.xhp#par_id3147501.23.help.text
+msgid "CONFIDENCE(Alpha; StDev; Size)"
+msgstr "CONFIANZA(Alpha; Desv_estándar; Tamaño)"
+
+#: 04060183.xhp#par_id3149872.24.help.text
+msgid "<emph>Alpha</emph> is the level of the confidence interval."
+msgstr "<emph>Alfa</emph> es el nivel del intervalo de confianza."
+
+#: 04060183.xhp#par_id3145324.25.help.text
+msgid "<emph>StDev</emph> is the standard deviation for the total population."
+msgstr "<emph>Desv_estándar</emph> es la desviación estándar de la población total."
+
+#: 04060183.xhp#par_id3153075.26.help.text
+msgid "<emph>Size</emph> is the size of the total population."
+msgstr "<emph>tamaño</emph> es el tamaño de la totalidad base."
+
+#: 04060183.xhp#hd_id3150435.27.help.text
+msgctxt "04060183.xhp#hd_id3150435.27.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060183.xhp#par_id3153335.28.help.text
+msgid "<item type=\"input\">=CONFIDENCE(0.05;1.5;100)</item> gives 0.29."
+msgstr "<item type=\"input\">=INTERVALO.CONFIANZA(0.05;1.5;100)</item> da 0.29."
+
+#: 04060183.xhp#bm_id3148746.help.text
+msgid "<bookmark_value>CORREL function</bookmark_value><bookmark_value>coefficient of correlation</bookmark_value>"
+msgstr "<bookmark_value>COEF.DE.CORREL</bookmark_value><bookmark_value>coeficiente de correlación</bookmark_value>"
+
+#: 04060183.xhp#hd_id3148746.30.help.text
+msgid "CORREL"
+msgstr "COEF.DE.CORREL"
+
+#: 04060183.xhp#par_id3147299.31.help.text
+msgid "<ahelp hid=\"HID_FUNC_KORREL\">Returns the correlation coefficient between two data sets.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KORREL\">Calcula el coeficiente de correlación entre dos grupos de datos.</ahelp>"
+
+#: 04060183.xhp#hd_id3156397.32.help.text
+msgctxt "04060183.xhp#hd_id3156397.32.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060183.xhp#par_id3153023.33.help.text
+msgid "CORREL(Data1; Data2)"
+msgstr "COEF.DE.CORREL(Datos1; Datos2)"
+
+#: 04060183.xhp#par_id3150036.34.help.text
+msgctxt "04060183.xhp#par_id3150036.34.help.text"
+msgid "<emph>Data1</emph> is the first data set."
+msgstr "<emph>Datos1</emph> es el primer grupo de datos."
+
+#: 04060183.xhp#par_id3153021.35.help.text
+msgctxt "04060183.xhp#par_id3153021.35.help.text"
+msgid "<emph>Data2</emph> is the second data set."
+msgstr "<emph>Datos2</emph> es el segundo conjunto de datos."
+
+#: 04060183.xhp#hd_id3149720.36.help.text
+msgctxt "04060183.xhp#hd_id3149720.36.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060183.xhp#par_id3149941.37.help.text
+msgid "<item type=\"input\">=CORREL(A1:A50;B1:B50)</item> calculates the correlation coefficient as a measure of the linear correlation of the two data sets."
+msgstr "<item type=\"input\">=COEF.DE.CORREL(A1:A50;B1:B50)</item> calcula el coeficiente de correlación como medida de la correlación lineal de dos conjuntos de datos."
+
+#: 04060183.xhp#bm_id3150652.help.text
+msgid "<bookmark_value>COVAR function</bookmark_value>"
+msgstr "<bookmark_value>COVAR</bookmark_value>"
+
+#: 04060183.xhp#hd_id3150652.39.help.text
+msgid "COVAR"
+msgstr "COVAR"
+
+#: 04060183.xhp#par_id3146875.40.help.text
+msgid "<ahelp hid=\"HID_FUNC_KOVAR\">Returns the covariance of the product of paired deviations.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KOVAR\">Calcula la covarianza del producto de las desviaciones de pares.</ahelp>"
+
+#: 04060183.xhp#hd_id3149013.41.help.text
+msgctxt "04060183.xhp#hd_id3149013.41.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060183.xhp#par_id3150740.42.help.text
+msgid "COVAR(Data1; Data2)"
+msgstr "COVAR(Datos1; Datos2)"
+
+#: 04060183.xhp#par_id3145827.43.help.text
+msgctxt "04060183.xhp#par_id3145827.43.help.text"
+msgid "<emph>Data1</emph> is the first data set."
+msgstr "<emph>Datos1</emph> es el primer conjunto de datos."
+
+#: 04060183.xhp#par_id3150465.44.help.text
+msgctxt "04060183.xhp#par_id3150465.44.help.text"
+msgid "<emph>Data2</emph> is the second data set."
+msgstr "<emph>Datos2</emph> es el segundo conjunto de datos."
+
+#: 04060183.xhp#hd_id3154677.45.help.text
+msgctxt "04060183.xhp#hd_id3154677.45.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060183.xhp#par_id3144748.46.help.text
+msgid "<item type=\"input\">=COVAR(A1:A30;B1:B30)</item>"
+msgstr "<item type=\"input\">=COVAR(A1:A30;B1:B30)</item>"
+
+#: 04060183.xhp#bm_id3147472.help.text
+msgid "<bookmark_value>CRITBINOM function</bookmark_value>"
+msgstr "<bookmark_value>BINOM.CRIT</bookmark_value>"
+
+#: 04060183.xhp#hd_id3147472.48.help.text
+msgid "CRITBINOM"
+msgstr "BINOM.CRIT"
+
+#: 04060183.xhp#par_id3149254.49.help.text
+msgid "<ahelp hid=\"HID_FUNC_KRITBINOM\">Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KRITBINOM\">Calcula el valor menor para el que la distribución binominal acumulativa es igual o inferior a uno de los valores buscados.</ahelp>"
+
+#: 04060183.xhp#hd_id3153930.50.help.text
+msgctxt "04060183.xhp#hd_id3153930.50.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060183.xhp#par_id3148586.51.help.text
+msgid "CRITBINOM(Trials; SP; Alpha)"
+msgstr "BINOM.CRIT(ensayos; prob_éxito; alfa)"
+
+#: 04060183.xhp#par_id3145593.52.help.text
+msgid "<emph>Trials</emph> is the total number of trials."
+msgstr "<emph>ensayos</emph> es el total de intentos."
+
+#: 04060183.xhp#par_id3153084.53.help.text
+msgid "<emph>SP</emph> is the probability of success for one trial."
+msgstr "<emph>prob_éxito</emph> es el intervalo de probabilidad de éxito de un intento."
+
+#: 04060183.xhp#par_id3149726.54.help.text
+msgid "<emph>Alpha</emph> is the threshold probability to be reached or exceeded."
+msgstr "<emph>Alfa</emph> es el intervalo de probabilidad límite que se debe alcanzar o superar."
+
+#: 04060183.xhp#hd_id3148752.55.help.text
+msgctxt "04060183.xhp#hd_id3148752.55.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060183.xhp#par_id3148740.56.help.text
+msgid "<item type=\"input\">=CRITBINOM(100;0.5;0.1)</item> yields 44."
+msgstr "<item type=\"input\">=BINOM.CRIT(100;0.5;0.1)</item> rendimientos 44."
+
+#: 04060183.xhp#bm_id3155956.help.text
+msgid "<bookmark_value>KURT function</bookmark_value>"
+msgstr "<bookmark_value>CURTOSIS</bookmark_value>"
+
+#: 04060183.xhp#hd_id3155956.58.help.text
+msgid "KURT"
+msgstr "CURTOSIS"
+
+#: 04060183.xhp#par_id3153108.59.help.text
+msgid "<ahelp hid=\"HID_FUNC_KURT\">Returns the kurtosis of a data set (at least 4 values required).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KURT\">Calcula la curtosis (medición del grado de agudeza de la curva de frecuencia) de un grupo de datos (se deben introducir un mínimo de cuatro valores).</ahelp>"
+
+#: 04060183.xhp#hd_id3150334.60.help.text
+msgctxt "04060183.xhp#hd_id3150334.60.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060183.xhp#par_id3154508.61.help.text
+msgid "KURT(Number1; Number2; ...Number30)"
+msgstr "CURTOSIS(Número1; Número2; ...; Número30)"
+
+#: 04060183.xhp#par_id3145167.62.help.text
+msgid "<emph>Number1,Number2,...Number30</emph> are numeric arguments or ranges representing a random sample of distribution."
+msgstr "<emph>Número1,Número2,...Número30</emph> son argumentos o rangos numéricos que representan una muestra aleatoria de la distribución."
+
+#: 04060183.xhp#hd_id3158000.63.help.text
+msgctxt "04060183.xhp#hd_id3158000.63.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060183.xhp#par_id3150016.64.help.text
+msgid "<item type=\"input\">=KURT(A1;A2;A3;A4;A5;A6)</item>"
+msgstr "<item type=\"input\">=CURTOSIS(A1;A2;A3;A4;A5;A6)</item>"
+
+#: 04060183.xhp#bm_id3150928.help.text
+msgid "<bookmark_value>LOGINV function</bookmark_value><bookmark_value>inverse of lognormal distribution</bookmark_value>"
+msgstr "<bookmark_value>INV.LOG</bookmark_value><bookmark_value>inverso de la distribución normal logarítmica</bookmark_value>"
+
+#: 04060183.xhp#hd_id3150928.66.help.text
+msgid "LOGINV"
+msgstr "INV.LOG"
+
+#: 04060183.xhp#par_id3145297.67.help.text
+msgid "<ahelp hid=\"HID_FUNC_LOGINV\">Returns the inverse of the lognormal distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LOGINV\">Calcula el inverso de la distribución normal logarítmica.</ahelp>"
+
+#: 04060183.xhp#hd_id3151016.68.help.text
+msgctxt "04060183.xhp#hd_id3151016.68.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060183.xhp#par_id3153049.69.help.text
+msgid "LOGINV(Number; Mean; StDev)"
+msgstr "INV.LOG(Número; Media; Desviación Estandar)"
+
+#: 04060183.xhp#par_id3148390.70.help.text
+msgid "<emph>Number</emph> is the probability value for which the inverse standard logarithmic distribution is to be calculated."
+msgstr "<emph>Probabilidad</emph> es el valor del intervalo de probabilidad para el cual se debe calcular la distribución normal logarítmica inversa."
+
+#: 04060183.xhp#par_id3149538.71.help.text
+msgid "<emph>Mean</emph> is the arithmetic mean of the standard logarithmic distribution."
+msgstr "<emph>Media</emph> es el promedio de la distribución normal logarítmica."
+
+#: 04060183.xhp#par_id3145355.72.help.text
+msgid "<emph>StDev</emph> is the standard deviation of the standard logarithmic distribution."
+msgstr "<emph>Desv_estándar</emph> es la desviación estándar de la distribución logarítmica estándar."
+
+#: 04060183.xhp#hd_id3148768.73.help.text
+msgctxt "04060183.xhp#hd_id3148768.73.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060183.xhp#par_id3155623.74.help.text
+msgid "<item type=\"input\">=LOGINV(0.05;0;1)</item> returns 0.19."
+msgstr "<item type=\"input\">=INV.LOG(0.05;0;1)</item> devuelve 0.19."
+
+#: 04060183.xhp#bm_id3158417.help.text
+msgid "<bookmark_value>LOGNORMDIST function</bookmark_value><bookmark_value>cumulative lognormal distribution</bookmark_value>"
+msgstr "<bookmark_value>DISTR.LOG.NORM</bookmark_value><bookmark_value>distribución normal logarítmica acumulativa</bookmark_value>"
+
+#: 04060183.xhp#hd_id3158417.76.help.text
+msgid "LOGNORMDIST"
+msgstr "DISTR.LOG.NORM"
+
+#: 04060183.xhp#par_id3154953.77.help.text
+msgid "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">Returns the cumulative lognormal distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">Devuelve la distribución normal logarítmica acumulativa.</ahelp>"
+
+#: 04060183.xhp#hd_id3150474.78.help.text
+msgctxt "04060183.xhp#hd_id3150474.78.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060183.xhp#par_id3150686.79.help.text
+msgid "LOGNORMDIST(Number; Mean; StDev; Cumulative)"
+msgstr "DISTR.LOG.NORM(Número; Media; Desv_estándar; Acumulativa)"
+
+#: 04060183.xhp#par_id3154871.80.help.text
+msgid "<emph>Number</emph> is the probability value for which the standard logarithmic distribution is to be calculated."
+msgstr "<emph>x</emph> es el valor del intervalo de probabilidad para el cual se debe calcular la distribución normal logarítmica."
+
+#: 04060183.xhp#par_id3155820.81.help.text
+msgid "<emph>Mean</emph> (optional) is the mean value of the standard logarithmic distribution."
+msgstr "<emph>Media</emph> (opcional) es el valor medio de la distribución logarítmica estándar."
+
+#: 04060183.xhp#par_id3155991.82.help.text
+msgid "<emph>StDev</emph> (optional) is the standard deviation of the standard logarithmic distribution."
+msgstr "<emph>Desv_estándar</emph> (opcional) es la desviación estándar de la distribución logarítmica estándar."
+
+#: 04060183.xhp#par_id3155992.help.text
+msgid "<emph>Cumulative</emph> (optional) = 0 calculates the density function, Cumulative = 1 calculates the distribution."
+msgstr "<emph>Acumulativa</emph> (opcional) = 0 calcula la función de densidad, Acumulativa = 1 calcula la distribución."
+
+#: 04060183.xhp#hd_id3153178.83.help.text
+msgctxt "04060183.xhp#hd_id3153178.83.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060183.xhp#par_id3149778.84.help.text
+msgid "<item type=\"input\">=LOGNORMDIST(0.1;0;1)</item> returns 0.01."
+msgstr "<item type=\"input\">=DISTR.LOG.NORM(0.1;0;1)</item> retorna 0.01."
+
+#: 02140200.xhp#tit.help.text
+msgctxt "02140200.xhp#tit.help.text"
+msgid "Right"
+msgstr "Derecha"
+
+#: 02140200.xhp#hd_id3153896.1.help.text
+msgid "<link href=\"text/scalc/01/02140200.xhp\" name=\"Right\">Right</link>"
+msgstr "<link href=\"text/scalc/01/02140200.xhp\" name=\"Right\">Derecha</link>"
+
+#: 02140200.xhp#par_id3153361.2.help.text
+msgid "<ahelp hid=\".uno:FillRight\" visibility=\"visible\">Fills a selected range of at least two columns with the contents of the left most cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:FillRight\" visibility=\"visible\">Rellena un área seleccionada con un mínimo de dos columnas con el contenido de la celda situada más a la izquierda.</ahelp>"
+
+#: 02140200.xhp#par_id3154684.3.help.text
+msgid "If a range of only one row is selected, the contents of the far left cell are copied to all the other selected cells. If you have selected several rows, each of the far left cells is copied into those cells to the right."
+msgstr "Si se selecciona un área de una sola fila, el contenido de la celda del extremo izquierdo se copia en el resto de celdas seleccionadas. Si se selecciona varias filas, cada una de las celdas del extremo izquierdo se copia en las celdas situadas a su derecha."
+
+#: 06060100.xhp#tit.help.text
+msgctxt "06060100.xhp#tit.help.text"
+msgid "Protecting Sheet"
+msgstr "Proteger hoja"
+
+#: 06060100.xhp#hd_id3153087.1.help.text
+msgctxt "06060100.xhp#hd_id3153087.1.help.text"
+msgid "Protecting Sheet"
+msgstr "Proteger tabla"
+
+#: 06060100.xhp#par_id3148664.2.help.text
+msgid "<variable id=\"tabelletext\"><ahelp hid=\".uno:Protect\">Protects the cells in the current sheet from being modified.</ahelp></variable> Choose <emph>Tools - Protect Document - Sheet</emph> to open the <emph>Protect Sheet</emph> dialog in which you then specify sheet protection with or without a password."
+msgstr "<variable id=\"tabelletext\"><ahelp hid=\".uno:Protect\">Protege las celdas de la hoja actual contra posibles modificaciones.</ahelp></variable> Elija <emph>Herramientas - Proteger documento - Hoja de cálculo</emph> para abrir el diálogo <emph>Proteger hoja</emph>, que permite especificar la protección de la hoja con o sin contraseña."
+
+#: 06060100.xhp#par_id3149664.5.help.text
+msgid "To protect cells from further editing, the <emph>Protected</emph> check box must be checked on the <link href=\"text/scalc/01/05020600.xhp\" name=\"Format - Cells - Cell Protection\"><emph>Format - Cells - Cell Protection</emph></link> tab page or on the <emph>Format Cells</emph> context menu."
+msgstr "Para proteger celdas contra modificaciones deberá seleccionar la opción <emph>Protegido</emph> en la pestaña <link href=\"text/scalc/01/05020600.xhp\" name=\"Formato - Celda - Protección de celda\"><emph>Formato - Celda - Protección de celda</emph></link> o en el menú contextual <emph>Formatear celdas</emph>."
+
+#: 06060100.xhp#par_id3154490.8.help.text
+msgid "Unprotected cells or cell ranges can be set up on a protected sheet by using the <emph>Tools - Protect Document - Sheet</emph> and <emph>Format - Cells - Cell Protection</emph> menus: "
+msgstr "Se pueden definir celdas o áreas de celdas no protegidas en una hoja protegida mediante los menús <emph>Herramientas - Proteger documento - Hoja</emph> y <emph>Formato - Celdas - Protección de celda</emph>:"
+
+#: 06060100.xhp#par_id3149123.16.help.text
+msgid "Select the cells that will be unprotected"
+msgstr "Seleccione las celdas que deban desprotegerse"
+
+#: 06060100.xhp#par_id3150329.17.help.text
+msgid "Select <emph>Format - Cells - Cell Protection</emph>. Unmark the <emph>Protected</emph> box and click <emph>OK</emph>."
+msgstr "Seleccione <emph>Formato - Celda - Protección de celda</emph>. Deseleccione la casilla de verificación <emph>Protegido</emph> y pulse <emph>Aceptar</emph>."
+
+#: 06060100.xhp#par_id3156384.18.help.text
+msgid "On the <emph>Tools - Protect Document - Sheet</emph> menu, activate protection for the sheet. Effective immediately, only the cell range you selected in step 1 can be edited."
+msgstr "Active la protección de la hoja en el menú <emph>Herramientas - Proteger documento - Hoja de cálculo</emph>. De forma inmediata, únicamente podrá editar el área seleccionada en el paso 1."
+
+#: 06060100.xhp#par_id3149566.9.help.text
+msgid "To later change an unprotected area to a protected area, select the range. Next, on the <emph>Format - Cells - Cell Protection</emph> tab page, check the <emph>Protected</emph> box. Finally, choose the <emph>Tools - Protect Document - Sheet </emph>menu. The previously editable range is now protected."
+msgstr "Para convertir un área de celdas no protegida en un área protegida, selecciónela. A continuación seleccione la casilla de verificación <emph>Protegido</emph> de la pestaña <emph>Formato - Celda - Protección de celda</emph>. Para terminar, abra el menú <emph>Herramientas - Proteger documento - Hoja de cálculo</emph>. El área que anteriormente podía editarse está ahora protegida."
+
+#: 06060100.xhp#par_id3153964.10.help.text
+msgid "Sheet protection also affects the context menu of the sheet tabs at the bottom of the screen. The <emph>Delete</emph> and <emph>Rename</emph> commands cannot be selected."
+msgstr "La protección de la hoja afecta también al menú contextual de las pestañas de hoja situadas en la parte inferior de la pantalla. No es posible seleccionar los comandos <emph>Borrar</emph> y <emph>Renombrar</emph>."
+
+#: 06060100.xhp#par_id3150301.19.help.text
+msgid "If a sheet is protected, you will not be able to modify or delete any Cell Styles."
+msgstr "Si una hoja está protegida, no es posible modificar ni borrar los estilos de celda."
+
+#: 06060100.xhp#par_id3154656.3.help.text
+msgid "A protected sheet or cell range can no longer be modified until this protection is disabled. To disable the protection, choose the <emph>Tools - Protect Document - Sheet</emph> command. If no password was set, the sheet protection is immediately disabled. If the sheet was password protected, the <emph>Remove Protection</emph> dialog opens, where you must enter the password."
+msgstr "Una hoja o un área protegidas no pueden modificarse mientras no se desactive la protección. Para desactivar la protección, elija la orden <emph>Herramientas - Proteger documento - Hoja de cálculo</emph>. Si no se ha definido una contraseña, la protección de la hoja de cálculo se desactiva de forma inmediata. Si la hoja está protegida con una contraseña se abre el diálogo <emph>Desproteger hoja</emph>, en el que se debe escribir la contraseña."
+
+#: 06060100.xhp#par_id3149815.11.help.text
+msgid "Once saved, protected sheets can only be saved again by using the <emph>File - Save As</emph> command."
+msgstr "Una vez guardada una hoja protegida, se debe utilizar la orden <emph>Archivo - Guardar como</emph> para volverla a guardar."
+
+#: 06060100.xhp#hd_id3150206.4.help.text
+msgctxt "06060100.xhp#hd_id3150206.4.help.text"
+msgid "Password (optional)"
+msgstr "Contraseña (opcional)"
+
+#: 06060100.xhp#par_id3152990.7.help.text
+msgid "<ahelp hid=\".uno:Protect\">Allows you to enter a password to protect the sheet from unauthorized changes.</ahelp>"
+msgstr "<ahelp hid=\".uno:Protect\">Permite escribir una contraseña para proteger la hoja contra cambios no autorizados.</ahelp>"
+
+#: 06060100.xhp#par_id3148700.12.help.text
+msgid "Complete protection of your work can be achieved by combining both options on the <emph>Tools - Protect Document</emph> menu, including password protection. To prohibit opening the document altogether, in the <emph>Save</emph> dialog mark the <emph>Save with password</emph> box before you click the <emph>Save</emph> button."
+msgstr "Se puede proteger totalmente el trabajo mediante la combinación de ambas opciones en el menú <emph>Herramientas - Proteger documento</emph>, incluida la protección mediante contraseña. Para impedir totalmente que se abra el documento, seleccione la casilla de verificación <emph>Guardar con contraseña</emph> en el diálogo <emph>Guardar como</emph> antes de pulsar el botón <emph>Guardar</emph>."
+
+#: func_edate.xhp#tit.help.text
+msgid "EDATE"
+msgstr "FECHA.MES"
+
+#: func_edate.xhp#bm_id3151184.help.text
+msgid "<bookmark_value>EDATE function</bookmark_value>"
+msgstr "<bookmark_value>FECHA.MES</bookmark_value>"
+
+#: func_edate.xhp#hd_id3151184.213.help.text
+msgid "<variable id=\"edate\"><link href=\"text/scalc/01/func_edate.xhp\">EDATE</link></variable>"
+msgstr "<variable id=\"edate\"><link href=\"text/scalc/01/func_edate.xhp\">FECHA.MES</link></variable>"
+
+#: func_edate.xhp#par_id3150880.214.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_EDATE\">The result is a date which is a number of m<emph>onths</emph> away from the <emph>start date</emph>. Only months are considered; days are not used for calculation.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_EDATE\">El resultado es una fecha que es un número de <emph>meses</emph> lejos de la <emph>fecha de inicio</emph>. Solamente los menses son considerados; los días no son usados para calcular.</ahelp>"
+
+#: func_edate.xhp#hd_id3154647.215.help.text
+msgctxt "func_edate.xhp#hd_id3154647.215.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: func_edate.xhp#par_id3153212.216.help.text
+msgid "EDATE(StartDate; Months)"
+msgstr "FECHA.MES(FechaInicio; Meses)"
+
+#: func_edate.xhp#par_id3146860.217.help.text
+msgid "<emph>StartDate</emph> is a date."
+msgstr "<emph>FechadeInicio</emph> es una fecha."
+
+#: func_edate.xhp#par_id3152929.218.help.text
+msgctxt "func_edate.xhp#par_id3152929.218.help.text"
+msgid "<emph>Months</emph> is the number of months before (negative) or after (positive) the start date."
+msgstr "<emph>Meses</emph> es el número de meses antes (negativo) o después (positivo) de la fecha de inicio."
+
+#: func_edate.xhp#hd_id3151289.219.help.text
+msgctxt "func_edate.xhp#hd_id3151289.219.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: func_edate.xhp#par_id3155845.220.help.text
+msgid "What date is one month prior to 3.31.2001?"
+msgstr "¿Cuál es la fecha un mes antes del 31/3/2001?"
+
+#: func_edate.xhp#par_id3155999.221.help.text
+msgid "<item type=\"input\">=EDATE(3.31.2001;-1)</item> returns 2.28.2001."
+msgstr "<item type=\"input\">=FECHA.MES(3.31.2001;-1)</item> devuelve 2.28.2001."
+
+#: 04060110.xhp#tit.help.text
+msgctxt "04060110.xhp#tit.help.text"
+msgid "Text Functions"
+msgstr "Funciones de texto"
+
+#: 04060110.xhp#bm_id3145389.help.text
+msgid "<bookmark_value>text in cells; functions</bookmark_value> <bookmark_value>functions; text functions</bookmark_value> <bookmark_value>Function Wizard;text</bookmark_value>"
+msgstr "<bookmark_value>texto en celdas;funciones</bookmark_value> <bookmark_value>funciones;funciones de texto</bookmark_value> <bookmark_value>Asistente para funciones;texto</bookmark_value>"
+
+#: 04060110.xhp#hd_id3145389.1.help.text
+msgctxt "04060110.xhp#hd_id3145389.1.help.text"
+msgid "Text Functions"
+msgstr "Funciones de texto"
+
+#: 04060110.xhp#par_id3152986.2.help.text
+msgid "<variable id=\"texttext\">This section contains descriptions of the <emph>Text</emph> functions.</variable>"
+msgstr "<variable id=\"texttext\">Esta sección contiene descripciones de las funciones de <emph>Texto</emph>.</variable>"
+
+#: 04060110.xhp#bm_id3149384.help.text
+msgid "<bookmark_value>ARABIC function</bookmark_value>"
+msgstr "<bookmark_value>Función ÁRABE</bookmark_value>"
+
+#: 04060110.xhp#hd_id3149384.239.help.text
+msgid "ARABIC"
+msgstr "ÁRABE"
+
+#: 04060110.xhp#par_id3153558.240.help.text
+msgid "<ahelp hid=\"HID_FUNC_ARABISCH\">Calculates the value of a Roman number. The value range must be between 0 and 3999.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARABISCH\">Calcula el valor de un número romano. El rango de valores debe estar comprendido entre 0 y 3999.</ahelp>"
+
+#: 04060110.xhp#hd_id3153011.241.help.text
+msgctxt "04060110.xhp#hd_id3153011.241.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id3155523.242.help.text
+msgid "ARABIC(\"Text\")"
+msgstr "ÁRABE(\"Texto\")"
+
+#: 04060110.xhp#par_id3151193.243.help.text
+msgid " <emph>Text</emph> is the text that represents a Roman number."
+msgstr " <emph>Texto</emph> es el texto que representa un número romano."
+
+#: 04060110.xhp#hd_id3155758.244.help.text
+msgctxt "04060110.xhp#hd_id3155758.244.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#par_id3154621.245.help.text
+msgid " <item type=\"input\">=ARABIC(\"MXIV\")</item> returns 1014"
+msgstr " <item type=\"input\">=ÁRABE(\"MXIV\")</item> devuelve 1014."
+
+#: 04060110.xhp#par_id3147553.246.help.text
+msgid " <item type=\"input\">=ARABIC(\"MMII\")</item> returns 2002"
+msgstr " <item type=\"input\">=ÁRABE(\"MMII\")</item> devuelve 2002."
+
+#: 04060110.xhp#bm_id8796349.help.text
+msgid "<bookmark_value>ASC function</bookmark_value>"
+msgstr "<bookmark_value>función ASC</bookmark_value>"
+
+#: 04060110.xhp#hd_id7723929.help.text
+msgid "ASC"
+msgstr "ASC"
+
+#: 04060110.xhp#par_id8455153.help.text
+msgid "<ahelp hid=\".\">The ASC function converts full-width to half-width ASCII and katakana characters. Returns a text string.</ahelp>"
+msgstr "<ahelp hid=\".\">La función ASC convierte ASCII y caracteres katakana a la mitad del ancho normal.</ahelp>"
+
+#: 04060110.xhp#par_id9912411.help.text
+msgctxt "04060110.xhp#par_id9912411.help.text"
+msgid "See <link href=\"http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\">http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link> for a conversion table."
+msgstr "Ver <link href=\"http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\">http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link> para una tabla de conversión."
+
+#: 04060110.xhp#hd_id9204992.help.text
+msgctxt "04060110.xhp#hd_id9204992.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id1993774.help.text
+msgid "ASC(\"Text\")"
+msgstr "ASC(\"Texto\")"
+
+#: 04060110.xhp#par_id2949919.help.text
+msgctxt "04060110.xhp#par_id2949919.help.text"
+msgid " <emph>Text</emph> is the text that contains characters to be converted."
+msgstr " <emph>Texto</emph> es el texto que contiene los caracteres que se van a convertir."
+
+#: 04060110.xhp#par_id2355113.help.text
+msgid "See also JIS function."
+msgstr "Ver tambien la función JIS."
+
+#: 04060110.xhp#bm_id9323709.help.text
+msgid "<bookmark_value>BAHTTEXT function</bookmark_value>"
+msgstr "<bookmark_value>Función BAHTTEXT</bookmark_value>"
+
+#: 04060110.xhp#hd_id6695455.help.text
+msgid "BAHTTEXT"
+msgstr "BAHTTEXT"
+
+#: 04060110.xhp#par_id354014.help.text
+msgid "Converts a number to Thai text, including the Thai currency names."
+msgstr "Convierte un número en texto tailandés, incluso los nombres de monedas tailandeses."
+
+#: 04060110.xhp#hd_id9942014.help.text
+msgctxt "04060110.xhp#hd_id9942014.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id8780785.help.text
+msgid "BAHTTEXT(Number)"
+msgstr "BAHTTEXT(Número)"
+
+#: 04060110.xhp#par_id1539353.help.text
+msgid " <emph>Number</emph> is any number. \"Baht\" is appended to the integral part of the number, and \"Satang\" is appended to the decimal part of the number."
+msgstr " <emph>Número</emph> es cualquier número. \"Baht\" se agrega a la parte entera del número y \"Satang\" se agrega a la parte decimal del número."
+
+#: 04060110.xhp#hd_id9694814.help.text
+msgctxt "04060110.xhp#hd_id9694814.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#par_id3289284.help.text
+msgid " <item type=\"input\">=BAHTTEXT(12.65)</item> returns a string in Thai characters with the meaning of \"Twelve Baht and sixty five Satang\"."
+msgstr " <item type=\"input\">=BAHTTEXT(12.65)</item> devuelve una cadena de caracteres tailandeses que representan \"Doce Baht y sesenta y cinco Satang\"."
+
+#: 04060110.xhp#bm_id3153072.help.text
+msgid "<bookmark_value>BASE function</bookmark_value>"
+msgstr "<bookmark_value>Función BASE</bookmark_value>"
+
+#: 04060110.xhp#hd_id3153072.213.help.text
+msgid "BASE"
+msgstr "BASE"
+
+#: 04060110.xhp#par_id3153289.214.help.text
+msgid "<ahelp hid=\"HID_FUNC_BASIS\">Converts a positive integer to a specified base into a text from the <link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"numbering system\">numbering system</link>.</ahelp> The digits 0-9 and the letters A-Z are used."
+msgstr "<ahelp hid=\"HID_FUNC_BASIS\">Convierte un entero positivo de una base especificada en texto del <link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"numbering system\">sistema numérico</link>.</ahelp> Se utilizan los dígitos 0-9 y las letras A-Z."
+
+#: 04060110.xhp#hd_id3146097.215.help.text
+msgctxt "04060110.xhp#hd_id3146097.215.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id3155743.216.help.text
+msgid "BASE(Number; Radix; [MinimumLength])"
+msgstr "BASE(Número; Raíz; [LongitudMínima])"
+
+#: 04060110.xhp#par_id3151339.217.help.text
+msgid " <emph>Number</emph> is the positive integer to be converted."
+msgstr " <emph>Número</emph> es el número entero positivo se debe convertir."
+
+#: 04060110.xhp#par_id3159262.218.help.text
+msgctxt "04060110.xhp#par_id3159262.218.help.text"
+msgid " <emph>Radix</emph> indicates the base of the number system. It may be any positive integer between 2 and 36."
+msgstr " <emph>Radix</emph> indica la base del sistema numérico. Puede ser cualquier número entero positivo entre 2 y 36."
+
+#: 04060110.xhp#par_id3148746.219.help.text
+msgid " <emph>MinimumLength</emph> (optional) determines the minimum length of the character sequence that has been created. If the text is shorter than the indicated minimum length, zeros are added to the left of the string."
+msgstr " <emph>LongitudMínima</emph> (opcional) determina la longitud mínima de la secuencia de caracteres que se ha creado. Si el texto es más corto que la longitud mínima indicada, se agregan ceros a la izquierda de la cadena."
+
+#: 04060110.xhp#hd_id3146323.220.help.text
+msgctxt "04060110.xhp#hd_id3146323.220.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#bm_id3156399.help.text
+msgid "<bookmark_value>decimal system; converting to</bookmark_value>"
+msgstr "<bookmark_value>sistema hexadecimal;convertir a</bookmark_value>"
+
+#: 04060110.xhp#par_id3156399.221.help.text
+msgid " <item type=\"input\">=BASE(17;10;4)</item> returns 0017 in the decimal system."
+msgstr " <item type=\"input\">=BASE(17;10;4)</item> devuelve 0017 en el sistema decimal."
+
+#: 04060110.xhp#bm_id3157871.help.text
+msgid "<bookmark_value>binary system; converting to</bookmark_value>"
+msgstr "<bookmark_value>sistema binario;convertir a</bookmark_value>"
+
+#: 04060110.xhp#par_id3157871.222.help.text
+msgid " <item type=\"input\">=BASE(17;2)</item> returns 10001 in the binary system."
+msgstr " <item type=\"input\">=BASE(17;2)</item> devuelve 10001 en el sistema binario."
+
+#: 04060110.xhp#bm_id3145226.help.text
+msgid "<bookmark_value>hexadecimal system; converting to</bookmark_value>"
+msgstr "<bookmark_value>sistema hexadecimal;convertir a</bookmark_value>"
+
+#: 04060110.xhp#par_id3145226.223.help.text
+msgid " <item type=\"input\">=BASE(255;16;4)</item> returns 00FF in the hexadecimal system."
+msgstr " <item type=\"input\">=BASE(255;16;4)</item> devuelve 00FF en el sistema hexadecimal."
+
+#: 04060110.xhp#bm_id3149321.help.text
+msgid "<bookmark_value>CHAR function</bookmark_value>"
+msgstr "<bookmark_value>Función CARÁCTER</bookmark_value>"
+
+#: 04060110.xhp#hd_id3149321.201.help.text
+msgid "CHAR"
+msgstr "CARÁCTER"
+
+#: 04060110.xhp#par_id3149150.202.help.text
+msgid "<ahelp hid=\"HID_FUNC_ZEICHEN\">Converts a number into a character according to the current code table.</ahelp> The number can be a two-digit or three-digit integer number."
+msgstr "<ahelp hid=\"HID_FUNC_ZEICHEN\">Convierte un número en un carácter según la tabla de códigos actual.</ahelp> El número puede ser un entero de dos o de tres dígitos."
+
+#: 04060110.xhp#hd_id3149945.203.help.text
+msgctxt "04060110.xhp#hd_id3149945.203.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id3145634.204.help.text
+msgid "CHAR(Number)"
+msgstr "CARÁCTER(Número)"
+
+#: 04060110.xhp#par_id3155906.205.help.text
+msgid " <emph>Number</emph> is a number between 1 and 255 representing the code value for the character."
+msgstr " <emph>Número</emph> es un número entre 1 y 255 que representa el valor de código del carácter."
+
+#: 04060110.xhp#hd_id3152982.207.help.text
+msgctxt "04060110.xhp#hd_id3152982.207.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#par_id3149890.208.help.text
+msgid " <item type=\"input\">=CHAR(100)</item> returns the character d."
+msgstr " <item type=\"input\">=CARÁCTER(100)</item> devuelve el carácter d."
+
+#: 04060110.xhp#par_id0907200910283297.help.text
+msgid "=\"abc\" & CHAR(10) & \"def\" inserts a newline character into the string."
+msgstr "=\"abc\" & CARÁCTER(10) & \"def\" inserta un carácter de línea nueva en la cadena."
+
+#: 04060110.xhp#bm_id3149009.help.text
+msgid "<bookmark_value>CLEAN function</bookmark_value>"
+msgstr "<bookmark_value>Función LIMPIAR</bookmark_value>"
+
+#: 04060110.xhp#hd_id3149009.132.help.text
+msgid "CLEAN"
+msgstr "LIMPIAR"
+
+#: 04060110.xhp#par_id3150482.133.help.text
+msgid "<ahelp hid=\"HID_FUNC_SAEUBERN\">All non-printing characters are removed from the string.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SAEUBERN\">Elimina de la cadena todos los caracteres que no se pueden imprimir.</ahelp>"
+
+#: 04060110.xhp#hd_id3146880.134.help.text
+msgctxt "04060110.xhp#hd_id3146880.134.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id3147472.135.help.text
+msgid "CLEAN(\"Text\")"
+msgstr "LIMPIAR(\"Texto\")"
+
+#: 04060110.xhp#par_id3150695.136.help.text
+msgid " <emph>Text</emph> refers to the text from which to remove all non-printable characters."
+msgstr " <emph>Texto</emph> hace referencia al texto del que se eliminarán todos los caracteres no imprimibles."
+
+#: 04060110.xhp#bm_id3155498.help.text
+msgid "<bookmark_value>CODE function</bookmark_value>"
+msgstr "<bookmark_value>CÓDIGO</bookmark_value>"
+
+#: 04060110.xhp#hd_id3155498.3.help.text
+msgid "CODE"
+msgstr "CÓDIGO"
+
+#: 04060110.xhp#par_id3152770.4.help.text
+msgid "<ahelp hid=\"HID_FUNC_CODE\">Returns a numeric code for the first character in a text string.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_CODE\">Devuelve un código numérico para el primer carácter de una cadena de texto.</ahelp>"
+
+#: 04060110.xhp#hd_id3155830.5.help.text
+msgctxt "04060110.xhp#hd_id3155830.5.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id3149188.6.help.text
+msgid "CODE(\"Text\")"
+msgstr "CÓDIGO(\"Texto\")"
+
+#: 04060110.xhp#par_id3154383.7.help.text
+msgid " <emph>Text</emph> is the text for which the code of the first character is to be found."
+msgstr " <emph>Texto</emph> es el texto para el que se buscará el código del primer carácter."
+
+#: 04060110.xhp#hd_id3154394.8.help.text
+msgctxt "04060110.xhp#hd_id3154394.8.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#par_id3159209.9.help.text
+msgid " <item type=\"input\">=CODE(\"Hieronymus\")</item> returns 72, <item type=\"input\">=CODE(\"hieroglyphic\")</item> returns 104."
+msgstr " <item type=\"input\">=CÓDIGO(\"Jerónimo\")</item> DEVUELVE 72, <item type=\"input\">=CÓDIGO(\"jeroglífico\")</item> devuelve 104."
+
+#: 04060110.xhp#par_id3150280.211.help.text
+msgid "The code used here does not refer to ASCII, but to the code table currently loaded."
+msgstr "El código utilizado en este caso no es el código ASCII, sino el código de la tabla de códigos actual."
+
+#: 04060110.xhp#bm_id3149688.help.text
+msgid "<bookmark_value>CONCATENATE function</bookmark_value>"
+msgstr "<bookmark_value>Función CONCATENAR</bookmark_value>"
+
+#: 04060110.xhp#hd_id3149688.167.help.text
+msgid "CONCATENATE"
+msgstr "CONCATENAR"
+
+#: 04060110.xhp#par_id3154524.168.help.text
+msgid "<ahelp hid=\"HID_FUNC_VERKETTEN\">Combines several text strings into one string.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VERKETTEN\">Combina varias cadenas de caracteres en una sola.</ahelp>"
+
+#: 04060110.xhp#hd_id3149542.169.help.text
+msgctxt "04060110.xhp#hd_id3149542.169.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id3155954.170.help.text
+msgid "CONCATENATE(\"Text1\"; ...; \"Text30\")"
+msgstr "CONCATENAR(\"Texto1\"; ...; \"Texto30\")"
+
+#: 04060110.xhp#par_id3146847.171.help.text
+msgid " <emph>Text 1; Text 2; ...</emph> represent up to 30 text passages which are to be combined into one string."
+msgstr " <emph>Texto 1; Texto 2; ...</emph> representa hasta 30 fragmentos de texto que se van a combinar en una cadena."
+
+#: 04060110.xhp#hd_id3153110.172.help.text
+msgctxt "04060110.xhp#hd_id3153110.172.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#par_id3150008.173.help.text
+msgid " <item type=\"input\">=CONCATENATE(\"Good \";\"Morning \";\"Mrs. \";\"Doe\")</item> returns: Good Morning Mrs. Doe."
+msgstr " <item type=\"input\">=CONCATENAR(\"Buenos \";\"Días \";\"Sra. \";\"López\")</item> devuelve: Buenos días Sra. López."
+
+#: 04060110.xhp#bm_id3145166.help.text
+msgid "<bookmark_value>DECIMAL function</bookmark_value>"
+msgstr "<bookmark_value>DECIMAL</bookmark_value>"
+
+#: 04060110.xhp#hd_id3145166.225.help.text
+msgid "DECIMAL"
+msgstr "DECIMAL"
+
+#: 04060110.xhp#par_id3156361.226.help.text
+msgid "<ahelp hid=\"HID_FUNC_DEZIMAL\">Converts text with characters from a <link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"number system\">number system</link> to a positive integer in the base radix given.</ahelp> The radix must be in the range 2 to 36. Spaces and tabs are ignored. The <emph>Text</emph> field is not case-sensitive."
+msgstr "<ahelp hid=\"HID_FUNC_DEZIMAL\">Convierte texto con caracteres de un <link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"number system\">sistema numérico</link> a un entero positivo en la base dada.</ahelp> La base debe estar en el rango de 2 a 36. Los espacios y las tabulaciones se ignoran. El campo de<emph>Texto</emph> no distingue mayúsculas y minúsculas."
+
+#: 04060110.xhp#par_id3157994.227.help.text
+msgid "If the radix is 16, a leading x or X or 0x or 0X, and an appended h or H, is disregarded. If the radix is 2, an appended b or B is disregarded. Other characters that do not belong to the number system generate an error."
+msgstr "Si la raíz es 16 se despreciarán los caracteres x, X, 0x o 0X que precedan al texto, así como los caracteres h o H agregados al final. Si la raíz es 2 se despreciarán los caracteres b o B agregados al final. Otros caracteres que no pertenezcan al sistema numérico provocarán un error."
+
+#: 04060110.xhp#hd_id3150014.228.help.text
+msgctxt "04060110.xhp#hd_id3150014.228.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id3154328.229.help.text
+msgid "DECIMAL(\"Text\"; Radix)"
+msgstr "DECIMAL(\"Texto\"; Raíz)"
+
+#: 04060110.xhp#par_id3150128.230.help.text
+msgid " <emph>Text</emph> is the text to be converted. To differentiate between a hexadecimal number, such as A1 and the reference to cell A1, you must place the number in quotation marks, for example, \"A1\" or \"FACE\"."
+msgstr " <emph>Texto</emph> es el texto que se debe convertir. Para diferenciar entre un número hexadecimal, por ejemplo A1 y la referencia a la celda A1, debe escribir el número entre comillas; por ejemplo, \"A1\" o \"FACE\"."
+
+#: 04060110.xhp#par_id3145241.231.help.text
+msgctxt "04060110.xhp#par_id3145241.231.help.text"
+msgid " <emph>Radix</emph> indicates the base of the number system. It may be any positive integer between 2 and 36."
+msgstr " <emph>Radix</emph> indica la base del sistema numérico. Puede ser cualquier número entero positivo entre 2 y 36."
+
+#: 04060110.xhp#hd_id3156062.232.help.text
+msgctxt "04060110.xhp#hd_id3156062.232.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#par_id3145355.233.help.text
+msgid " <item type=\"input\">=DECIMAL(\"17\";10)</item> returns 17."
+msgstr " <item type=\"input\">=DECIMAL(\"17\";10)</item> devuelve 17."
+
+#: 04060110.xhp#par_id3155622.234.help.text
+msgid " <item type=\"input\">=DECIMAL(\"FACE\";16)</item> returns 64206."
+msgstr " <item type=\"input\">=DECIMAL(\"FACE\";16)</item> devuelve 64206."
+
+#: 04060110.xhp#par_id3151015.235.help.text
+msgid " <item type=\"input\">=DECIMAL(\"0101\";2)</item> returns 5."
+msgstr " <item type=\"input\">=DECIMAL(\"0101\";2)</item> devuelve 5."
+
+#: 04060110.xhp#bm_id3148402.help.text
+msgid "<bookmark_value>DOLLAR function</bookmark_value>"
+msgstr "<bookmark_value>Función MONEDA</bookmark_value>"
+
+#: 04060110.xhp#hd_id3148402.11.help.text
+msgid "DOLLAR"
+msgstr "MONEDA"
+
+#: 04060110.xhp#par_id3153049.12.help.text
+msgid "<ahelp hid=\"HID_FUNC_DM\">Converts a number to an amount in the currency format, rounded to a specified decimal place.</ahelp> In the <item type=\"literal\">Value</item> field enter the number to be converted to currency. Optionally, you may enter the number of decimal places in the <item type=\"literal\">Decimals</item> field. If no value is specified, all numbers in currency format will be displayed with two decimal places. "
+msgstr "<ahelp hid=\"HID_FUNC_DM\">Convierte un número para una cantidad en el formato de moneda, redondeado a un lugar decimal específico.</ahelp> En el campo<item type=\"literal\">Valor</item> introduzca el número que desea convertir a moneda. Opcionalmente, puedes introducir el número de posiciones decimales en el campo <item type=\"literal\">Decimales</item>. Si ningún valor es especificado, todos los números en el formato de moneda se mostrarán con dos posiciones decimales. "
+
+#: 04060110.xhp#par_id3151280.263.help.text
+msgid "You set the currency format in your system settings."
+msgstr "Debe establecer el formato de la divisa en la configuración del sistema."
+
+#: 04060110.xhp#hd_id3150569.13.help.text
+msgctxt "04060110.xhp#hd_id3150569.13.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id3154188.14.help.text
+msgid "DOLLAR(Value; Decimals)"
+msgstr "DOLAR(Valor; Decimales)"
+
+#: 04060110.xhp#par_id3145299.15.help.text
+msgid " <emph>Value</emph> is a number, a reference to a cell containing a number, or a formula which returns a number."
+msgstr " <emph>Valor</emph> es un número, una referencia a una celda que contiene un número o una fórmula que da como resultado un número."
+
+#: 04060110.xhp#par_id3145629.16.help.text
+msgid " <emph>Decimals</emph> is the optional number of decimal places."
+msgstr " <emph>Decimales</emph> es el número opcional de posiciones decimales."
+
+#: 04060110.xhp#hd_id3149030.17.help.text
+msgctxt "04060110.xhp#hd_id3149030.17.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#par_id3153546.18.help.text
+msgid " <item type=\"input\">=DOLLAR(255)</item> returns $255.00."
+msgstr " <item type=\"input\">=MONEDA(255)</item> devuelve $255,00."
+
+#: 04060110.xhp#par_id3154635.19.help.text
+msgid " <item type=\"input\">=DOLLAR(367.456;2)</item> returns $367.46. Use the decimal separator that corresponds to the <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link>."
+msgstr " <item type=\"input\">=MONEDA(367,456;2)</item> devuelve $367,46. Use el separador decimal que se corresponda a la <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">configuración regional actual</link>."
+
+#: 04060110.xhp#bm_id3150685.help.text
+msgid "<bookmark_value>EXACT function</bookmark_value>"
+msgstr "<bookmark_value>Función IGUAL</bookmark_value>"
+
+#: 04060110.xhp#hd_id3150685.78.help.text
+msgid "EXACT"
+msgstr "IGUAL"
+
+#: 04060110.xhp#par_id3158413.79.help.text
+msgid "<ahelp hid=\"HID_FUNC_IDENTISCH\">Compares two text strings and returns TRUE if they are identical.</ahelp> This function is case-sensitive."
+msgstr "<ahelp hid=\"HID_FUNC_IDENTISCH\">Compara dos cadenas de texto y devuelve VERDADERO si son iguales.</ahelp> Esta función distingue entre mayúsculas y minúsculas."
+
+#: 04060110.xhp#hd_id3152817.80.help.text
+msgctxt "04060110.xhp#hd_id3152817.80.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id3148594.81.help.text
+msgid "EXACT(\"Text1\"; \"Text2\")"
+msgstr "IGUAL(\"Texto1\"; \"Texto2\")"
+
+#: 04060110.xhp#par_id3153224.82.help.text
+msgid " <emph>Text1</emph> refers to the first text to compare."
+msgstr " <emph>Texto1</emph> hace referencia al primer texto que se comparará."
+
+#: 04060110.xhp#par_id3148637.83.help.text
+msgid " <emph>Text2</emph> is the second text to compare."
+msgstr " <emph>Texto2</emph> es el segundo texto que se va comparar."
+
+#: 04060110.xhp#hd_id3149777.84.help.text
+msgctxt "04060110.xhp#hd_id3149777.84.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#par_id3156263.85.help.text
+msgid " <item type=\"input\">=EXACT(\"microsystems\";\"Microsystems\")</item> returns FALSE."
+msgstr " <item type=\"input\">=IGUAL(\"microsystems\";\"Microsystems\")</item> devuelve FALSO."
+
+#: 04060110.xhp#bm_id3152589.help.text
+msgid "<bookmark_value>FIND function</bookmark_value>"
+msgstr "<bookmark_value>Función ENCONTRAR</bookmark_value>"
+
+#: 04060110.xhp#hd_id3152589.44.help.text
+msgid "FIND"
+msgstr "ENCONTRAR"
+
+#: 04060110.xhp#par_id3146149.45.help.text
+msgid "<ahelp hid=\"HID_FUNC_FINDEN\">Looks for a string of text within another string.</ahelp> You can also define where to begin the search. The search term can be a number or any string of characters. The search is case-sensitive."
+msgstr "<ahelp hid=\"HID_FUNC_FINDEN\">Busca una cadena de texto dentro de otra cadena.</ahelp> También puede definirse el punto de inicio de la búsqueda. El término buscado puede ser un número o una cadena de caracteres. La búsqueda distingue entre mayúsculas y minúsculas."
+
+#: 04060110.xhp#hd_id3083284.46.help.text
+msgctxt "04060110.xhp#hd_id3083284.46.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id3083452.47.help.text
+msgid "FIND(\"FindText\"; \"Text\"; Position)"
+msgstr "ENCONTRAR(\"Encontrar_Texto\"; \"Texto\"; Posición) "
+
+#: 04060110.xhp#par_id3150608.48.help.text
+msgid " <emph>FindText</emph> refers to the text to be found."
+msgstr " <emph>Encontrar_Texto</emph> hace referencia al texto que se debe buscar."
+
+#: 04060110.xhp#par_id3152374.49.help.text
+msgid " <emph>Text</emph> is the text where the search takes place."
+msgstr " <emph>Texto</emph> es el texto donde se realiza la búsqueda."
+
+#: 04060110.xhp#par_id3152475.50.help.text
+msgid " <emph>Position</emph> (optional) is the position in the text from which the search starts."
+msgstr " <emph>Posición</emph> (opcional) es la posición en el texto donde se iniciará la búsqueda."
+
+#: 04060110.xhp#hd_id3154812.51.help.text
+msgctxt "04060110.xhp#hd_id3154812.51.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#par_id3156375.52.help.text
+msgid " <item type=\"input\">=FIND(76;998877665544)</item> returns 6."
+msgstr " <item type=\"input\">=BUSCAR(76;998877665544)</item> devuelve 6."
+
+#: 04060110.xhp#bm_id3149268.help.text
+msgid "<bookmark_value>FIXED function</bookmark_value>"
+msgstr "<bookmark_value>Función FIJO</bookmark_value>"
+
+#: 04060110.xhp#hd_id3149268.34.help.text
+msgid "FIXED"
+msgstr "FIJO"
+
+#: 04060110.xhp#par_id3155833.35.help.text
+msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_FEST\">Devuelve un número como texto con un número especificado de decimales y separadores de miles opcionales.</ahelp>"
+
+#: 04060110.xhp#hd_id3152470.36.help.text
+msgctxt "04060110.xhp#hd_id3152470.36.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id3147567.37.help.text
+msgid "FIXED(Number; Decimals; NoThousandsSeparators)"
+msgstr "FIJO(número; Decimales; No_separar_millares)"
+
+#: 04060110.xhp#par_id3151272.38.help.text
+msgid " <emph>Number</emph> refers to the number to be formatted."
+msgstr " <emph>Número</emph> hace referencia al número al que se va a dar formato."
+
+#: 04060110.xhp#par_id3156322.39.help.text
+msgid " <emph>Decimals</emph> refers to the number of decimal places to be displayed."
+msgstr " <emph>Decimales</emph> hace referencia al número de posiciones decimales que se mostrarán."
+
+#: 04060110.xhp#par_id3150877.40.help.text
+msgid " <emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgstr " <emph>No_separar_millares</emph> (opcional) determina si se utiliza el separador de millares. Si el parámetro es un número no igual a 0, se elimina el separador de millares. Si el parámetro es igual a 0 o si no aparece en absoluto, se muestran los separadores de millares de la <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">configuración regional actual</link>."
+
+#: 04060110.xhp#hd_id3149040.41.help.text
+msgctxt "04060110.xhp#hd_id3149040.41.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#par_id3145208.42.help.text
+msgid " <item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string. "
+msgstr " <item type=\"input\">=FIJO(1234567,89;3)</item> devuelve 1.234.567,890 como cadena de texto. "
+
+#: 04060110.xhp#par_id5282143.help.text
+msgid " <item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
+msgstr " <item type=\"input\">=FIJO(1234567,89;3)</item> devuelve 1234567,890 como una cadena de texto."
+
+#: 04060110.xhp#bm_id7319864.help.text
+msgid "<bookmark_value>JIS function</bookmark_value>"
+msgstr "<bookmark_value>función JIS</bookmark_value>"
+
+#: 04060110.xhp#hd_id3666188.help.text
+msgid "JIS"
+msgstr "JIS"
+
+#: 04060110.xhp#par_id964384.help.text
+msgid "<ahelp hid=\".\">The JIS function converts half-width to full-width ASCII and katakana characters. Returns a text string.</ahelp>"
+msgstr "<ahelp hid=\".\">La función JIS convierte ASCII y caracteres de katakana de media anchura a ancho completo.</ahelp>"
+
+#: 04060110.xhp#par_id1551561.help.text
+msgctxt "04060110.xhp#par_id1551561.help.text"
+msgid "See <link href=\"http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\">http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link> for a conversion table."
+msgstr "Ver <link href=\"http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\">http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link> para una tabla de conversión."
+
+#: 04060110.xhp#hd_id2212897.help.text
+msgctxt "04060110.xhp#hd_id2212897.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id2504654.help.text
+msgid "JIS(\"Text\")"
+msgstr "JIS(\"Texto\")"
+
+#: 04060110.xhp#par_id5292519.help.text
+msgctxt "04060110.xhp#par_id5292519.help.text"
+msgid " <emph>Text</emph> is the text that contains characters to be converted."
+msgstr " <emph>Texto</emph> es el texto que contiene los caracteres que se van a convertir."
+
+#: 04060110.xhp#par_id3984496.help.text
+msgid "See also ASC function."
+msgstr "Ver tambien la función ASC."
+
+#: 04060110.xhp#bm_id3147083.help.text
+msgid "<bookmark_value>LEFT function</bookmark_value>"
+msgstr "<bookmark_value>IZQUIERDA</bookmark_value>"
+
+#: 04060110.xhp#hd_id3147083.95.help.text
+msgid "LEFT"
+msgstr "IZQUIERDA"
+
+#: 04060110.xhp#par_id3153622.96.help.text
+msgid "<ahelp hid=\"HID_FUNC_LINKS\">Returns the first character or characters of a text.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LINKS\">Devuelve el primer carácter o los primeros caracteres de un texto.</ahelp>"
+
+#: 04060110.xhp#hd_id3156116.97.help.text
+msgctxt "04060110.xhp#hd_id3156116.97.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id3146786.98.help.text
+msgid "LEFT(\"Text\"; Number)"
+msgstr "IZQUIERDA(\"Texto\"; Número)"
+
+#: 04060110.xhp#par_id3147274.99.help.text
+msgid " <emph>Text</emph> is the text where the initial partial words are to be determined."
+msgstr " <emph>Texto</emph> es el texto donde las palabras parciales iniciales deben determinarse."
+
+#: 04060110.xhp#par_id3153152.100.help.text
+msgid " <emph>Number</emph> (optional) specifies the number of characters for the start text. If this parameter is not defined, one character is returned."
+msgstr " <emph>Número</emph> (opcional) especifica el número de caracteres para el texto inicial. Si no se ha definido este parámetro, se devuelve un carácter."
+
+#: 04060110.xhp#hd_id3150260.101.help.text
+msgctxt "04060110.xhp#hd_id3150260.101.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#par_id3149141.102.help.text
+msgid " <item type=\"input\">=LEFT(\"output\";3)</item> returns “out”."
+msgstr " <item type=\"input\">=IZQUIERDA(\"salida\";3)</item> devuelve “sal”."
+
+#: 04060110.xhp#bm_id3156110.help.text
+msgid "<bookmark_value>LEN function</bookmark_value>"
+msgstr "<bookmark_value>Función LARGO</bookmark_value>"
+
+#: 04060110.xhp#hd_id3156110.104.help.text
+msgid "LEN"
+msgstr "LARGO"
+
+#: 04060110.xhp#par_id3150147.105.help.text
+msgid "<ahelp hid=\"HID_FUNC_LAENGE\">Returns the length of a string including spaces.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LAENGE\">Calcula la longitud de una cadena, incluidos los espacios.</ahelp>"
+
+#: 04060110.xhp#hd_id3155108.106.help.text
+msgctxt "04060110.xhp#hd_id3155108.106.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id3154063.107.help.text
+msgid "LEN(\"Text\")"
+msgstr "LARGO(\"Texto\")"
+
+#: 04060110.xhp#par_id3146894.108.help.text
+msgid " <emph>Text</emph> is the text whose length is to be determined."
+msgstr " <emph>Texto</emph> es el texto cuya longitud debe determinarse."
+
+#: 04060110.xhp#hd_id3153884.109.help.text
+msgctxt "04060110.xhp#hd_id3153884.109.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#par_id3156008.110.help.text
+msgid " <item type=\"input\">=LEN(\"Good Afternoon\")</item> returns 14."
+msgstr " <item type=\"input\">=LARGO(\"Buenas tardes\")</item> devuelve 13."
+
+#: 04060110.xhp#par_id3154300.111.help.text
+msgid " <item type=\"input\">=LEN(12345.67)</item> returns 8."
+msgstr " <item type=\"input\">=LARGO(12345.67)</item> devuelve 8."
+
+#: 04060110.xhp#bm_id3153983.help.text
+msgid "<bookmark_value>LOWER function</bookmark_value>"
+msgstr "<bookmark_value>Función MINUSC</bookmark_value>"
+
+#: 04060110.xhp#hd_id3153983.87.help.text
+msgid "LOWER"
+msgstr "MINUSC"
+
+#: 04060110.xhp#par_id3152791.88.help.text
+msgid "<ahelp hid=\"HID_FUNC_KLEIN\">Converts all uppercase letters in a text string to lowercase.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KLEIN\">Convierte todas las letras mayúsculas de una cadena de texto en minúsculas.</ahelp>"
+
+#: 04060110.xhp#hd_id3155902.89.help.text
+msgctxt "04060110.xhp#hd_id3155902.89.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id3150121.90.help.text
+msgid "LOWER(\"Text\")"
+msgstr "MINUSC(\"Texto\")"
+
+#: 04060110.xhp#par_id3153910.91.help.text
+msgctxt "04060110.xhp#par_id3153910.91.help.text"
+msgid " <emph>Text</emph> refers to the text to be converted."
+msgstr " <emph>Texto</emph> hace referencia al texto que se debe convertir."
+
+#: 04060110.xhp#hd_id3159343.92.help.text
+msgctxt "04060110.xhp#hd_id3159343.92.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#par_id3155329.93.help.text
+msgid " <item type=\"input\">=LOWER(\"Sun\")</item> returns sun."
+msgstr " <item type=\"input\">=MINUSC(\"Sun\";2)</item> devuelve sun."
+
+#: 04060110.xhp#bm_id3154589.help.text
+msgid "<bookmark_value>MID function</bookmark_value>"
+msgstr "<bookmark_value>EXTRAE</bookmark_value>"
+
+#: 04060110.xhp#hd_id3154589.148.help.text
+msgid "MID"
+msgstr "COMPACTAR"
+
+#: 04060110.xhp#par_id3154938.149.help.text
+msgid "<ahelp hid=\"HID_FUNC_TEIL\">Returns a text string of a text. The parameters specify the starting position and the number of characters.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TEIL\">Devuelve una cadena de texto de un texto. Los parámetros especifican la posición inicial y el número de caracteres.</ahelp>"
+
+#: 04060110.xhp#hd_id3148829.150.help.text
+msgctxt "04060110.xhp#hd_id3148829.150.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id3150526.151.help.text
+msgid "MID(\"Text\"; Start; Number)"
+msgstr "EXTRAE(\"Texto\"; Comienzo; Número)"
+
+#: 04060110.xhp#par_id3148820.152.help.text
+msgid " <emph>Text</emph> is the text containing the characters to extract."
+msgstr " <emph>Texto</emph> es el texto que contiene los caracteres que se van a extraer."
+
+#: 04060110.xhp#par_id3150774.153.help.text
+msgid " <emph>Start</emph> is the position of the first character in the text to extract."
+msgstr " <emph>Inicio</emph> es la posición del primer carácter del texto que se va a extraer."
+
+#: 04060110.xhp#par_id3153063.154.help.text
+msgid " <emph>Number</emph> specifies the number of characters in the part of the text."
+msgstr " <emph>Número</emph> especifica el número de caracteres en la parte del texto."
+
+#: 04060110.xhp#hd_id3150509.155.help.text
+msgctxt "04060110.xhp#hd_id3150509.155.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#par_id3158407.156.help.text
+msgid " <item type=\"input\">=MID(\"office\";2;2)</item> returns ff."
+msgstr " <item type=\"input\">=MID(\"office\";2;2)</item> devuelve ff."
+
+#: 04060110.xhp#bm_id3159143.help.text
+msgid "<bookmark_value>PROPER function</bookmark_value>"
+msgstr "<bookmark_value>Función NOMPROPIO</bookmark_value>"
+
+#: 04060110.xhp#hd_id3159143.70.help.text
+msgid "PROPER"
+msgstr "NOMPROPIO"
+
+#: 04060110.xhp#par_id3149768.71.help.text
+msgid "<ahelp hid=\"HID_FUNC_GROSS2\">Capitalizes the first letter in all words of a text string.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GROSS2\">En el caso de una cadena de texto, convierte en mayúscula la inicial de todas las palabras de la cadena.</ahelp>"
+
+#: 04060110.xhp#hd_id3153573.72.help.text
+msgctxt "04060110.xhp#hd_id3153573.72.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id3154260.73.help.text
+msgid "PROPER(\"Text\")"
+msgstr "NOMPROPIO(\"Texto\")"
+
+#: 04060110.xhp#par_id3147509.74.help.text
+msgctxt "04060110.xhp#par_id3147509.74.help.text"
+msgid " <emph>Text</emph> refers to the text to be converted."
+msgstr " <emph>Texto</emph> hace referencia al texto que se debe convertir."
+
+#: 04060110.xhp#hd_id3147529.75.help.text
+msgctxt "04060110.xhp#hd_id3147529.75.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#par_id3155364.76.help.text
+msgid " <item type=\"input\">=PROPER(\"open office\")</item> returns Open Office."
+msgstr " <item type=\"input\">=NOMPROPIO(\"open office\")</item> devuelve Open Office."
+
+#: 04060110.xhp#bm_id3149171.help.text
+msgid "<bookmark_value>REPLACE function</bookmark_value>"
+msgstr "<bookmark_value>REEMPLAZAR</bookmark_value>"
+
+#: 04060110.xhp#hd_id3149171.22.help.text
+msgid "REPLACE"
+msgstr "REEMPLAZAR"
+
+#: 04060110.xhp#par_id3148925.23.help.text
+msgid "<ahelp hid=\"HID_FUNC_ERSETZEN\">Replaces part of a text string with a different text string.</ahelp> This function can be used to replace both characters and numbers (which are automatically converted to text). The result of the function is always displayed as text. If you intend to perform further calculations with a number which has been replaced by text, you will need to convert it back to a number using the <link href=\"text/scalc/01/04060110.xhp\" name=\"VALUE\">VALUE</link> function."
+msgstr "<ahelp hid=\"HID_FUNC_ERSETZEN\">Sustituye parte de una cadena de texto con una cadena de texto distinta.</ahelp> Esta función se puede utilizar para sustituir caracteres y números (que se convierten automáticamente en texto). El resultado de la función siempre es un texto. Para proseguir con la operación de cálculo con un número reemplazado por texto, es preciso transformar el resultado de nuevo en número; para ello, se utiliza la función <link href=\"text/scalc/01/04060110.xhp\" name=\"VALUE\">VALOR</link>."
+
+#: 04060110.xhp#par_id3158426.24.help.text
+msgid "Any text containing numbers must be enclosed in quotation marks if you do not want it to be interpreted as a number and automatically converted to text."
+msgstr "Si no desea que un texto que contenga números se interprete como número y se convierta en texto automáticamente deberá escribirlo entre comillas."
+
+#: 04060110.xhp#hd_id3149159.25.help.text
+msgctxt "04060110.xhp#hd_id3149159.25.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id3147286.26.help.text
+msgid "REPLACE(\"Text\"; Position; Length; \"NewText\")"
+msgstr "REEMPLAZAR(\"Texto\"; Posición; Longitud; \"texto_nuevo\")"
+
+#: 04060110.xhp#par_id3149797.27.help.text
+msgid " <emph>Text</emph> refers to text of which a part will be replaced."
+msgstr " <emph>Texto</emph> hace referencia al texto del que se sustituirá una parte."
+
+#: 04060110.xhp#par_id3166451.28.help.text
+msgid " <emph>Position</emph> refers to the position within the text where the replacement will begin."
+msgstr " <emph>Posición</emph> hace referencia a la posición del texto en la que comenzará la sustitución."
+
+#: 04060110.xhp#par_id3156040.29.help.text
+msgid " <emph>Length</emph> is the number of characters in <emph>Text</emph> to be replaced."
+msgstr " <emph>Longitud</emph> es el número de caracteres en <emph>Texto</emph> que se va a sustituir."
+
+#: 04060110.xhp#par_id3159188.30.help.text
+msgid " <emph>NewText</emph> refers to the text which replaces <emph>Text</emph>."
+msgstr " <emph>texto_nuevo</emph> hace referencia al texto que sustituye a <emph>Texto</emph>."
+
+#: 04060110.xhp#hd_id3146958.31.help.text
+msgctxt "04060110.xhp#hd_id3146958.31.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#par_id3154096.32.help.text
+msgid " <item type=\"input\">=REPLACE(\"1234567\";1;1;\"444\")</item> returns \"444234567\". One character at position 1 is replaced by the complete <item type=\"literal\">NewText</item>."
+msgstr " <item type=\"input\">=REEMPLAZAR(\"1234567\";1;1;\"444\")</item> devuelve \"444234567\". Un carácter en la posición 1 se sustituye por el <item type=\"literal\">texto_nuevo</item> completo."
+
+#: 04060110.xhp#bm_id3149741.help.text
+msgid "<bookmark_value>REPT function</bookmark_value>"
+msgstr "<bookmark_value>Función REPETIR</bookmark_value>"
+
+#: 04060110.xhp#hd_id3149741.193.help.text
+msgid "REPT"
+msgstr "REPETIR"
+
+#: 04060110.xhp#par_id3153748.194.help.text
+msgid "<ahelp hid=\"HID_FUNC_WIEDERHOLEN\">Repeats a character string by the given <emph>number</emph> of copies.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_WIEDERHOLEN\">Repite una cadena de caracteres el <emph>número de veces</emph> especificado.</ahelp>"
+
+#: 04060110.xhp#hd_id3152884.195.help.text
+msgctxt "04060110.xhp#hd_id3152884.195.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id3150494.196.help.text
+msgid "REPT(\"Text\"; Number)"
+msgstr "REPETIR(\"Texto\"; Número)"
+
+#: 04060110.xhp#par_id3154859.197.help.text
+msgid " <emph>Text</emph> is the text to be repeated."
+msgstr " <emph>Texto</emph> es el texto que se debe repetir."
+
+#: 04060110.xhp#par_id3150638.198.help.text
+msgid " <emph>Number</emph> is the number of repetitions."
+msgstr " <emph>Número</emph> es el número de repeticiones."
+
+#: 04060110.xhp#par_id3149922.212.help.text
+msgid "The result can be a maximum of 255 characters."
+msgstr "El resultado puede ser un máximo de 255 caracteres. "
+
+#: 04060110.xhp#hd_id3156213.199.help.text
+msgctxt "04060110.xhp#hd_id3156213.199.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#par_id3148626.200.help.text
+msgid " <item type=\"input\">=REPT(\"Good morning\";2)</item> returns Good morningGood morning."
+msgstr " <item type=\"input\">=REPETIR(\"Buenos días\")</item> devuelve Buenos díasBuenos días."
+
+#: 04060110.xhp#bm_id3149805.help.text
+msgid "<bookmark_value>RIGHT function</bookmark_value>"
+msgstr "<bookmark_value>DERECHA</bookmark_value>"
+
+#: 04060110.xhp#hd_id3149805.113.help.text
+msgid "RIGHT"
+msgstr "DERECHA"
+
+#: 04060110.xhp#par_id3145375.114.help.text
+msgid "<ahelp hid=\"HID_FUNC_RECHTS\">Returns the last character or characters of a text.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_RECHTS\">Devuelve el último carácter o los últimos caracteres de un texto.</ahelp>"
+
+#: 04060110.xhp#hd_id3150837.115.help.text
+msgctxt "04060110.xhp#hd_id3150837.115.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id3154344.116.help.text
+msgid "RIGHT(\"Text\"; Number)"
+msgstr "DERECHA(\"Texto\"; Número)"
+
+#: 04060110.xhp#par_id3149426.117.help.text
+msgid " <emph>Text</emph> is the text of which the right part is to be determined."
+msgstr " <emph>Texto</emph> es el texto para el que se va a determinar la parte derecha."
+
+#: 04060110.xhp#par_id3153350.118.help.text
+msgid " <emph>Number</emph> (optional) is the number of characters from the right part of the text."
+msgstr " <emph>Número</emph> (opcional) es el número de caracteres desde la parte derecha del texto."
+
+#: 04060110.xhp#hd_id3148661.119.help.text
+msgctxt "04060110.xhp#hd_id3148661.119.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#par_id3151132.120.help.text
+msgid " <item type=\"input\">=RIGHT(\"Sun\";2)</item> returns un."
+msgstr " <item type=\"input\">=DERECHA(\"Sin\";2)</item> devuelve un."
+
+#: 04060110.xhp#bm_id3153534.help.text
+msgid "<bookmark_value>ROMAN function</bookmark_value>"
+msgstr "<bookmark_value>Función ROMANO</bookmark_value>"
+
+#: 04060110.xhp#hd_id3153534.248.help.text
+msgid "ROMAN"
+msgstr "ROMANO"
+
+#: 04060110.xhp#par_id3151256.249.help.text
+msgid "<ahelp hid=\"HID_FUNC_ROEMISCH\">Converts a number into a Roman numeral. The value range must be between 0 and 3999, the modes can be integers from 0 to 4.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ROEMISCH\">Convierte un número en números romanos. El valor debe estar entre 0 y 3999, los modos pueden ser números enteros de 0 a 4.</ahelp>"
+
+#: 04060110.xhp#hd_id3149299.250.help.text
+msgctxt "04060110.xhp#hd_id3149299.250.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id3150593.251.help.text
+msgid "ROMAN(Number; Mode)"
+msgstr "ROMANO(número; modo)"
+
+#: 04060110.xhp#par_id3156139.252.help.text
+msgid " <emph>Number</emph> is the number that is to be converted into a Roman numeral."
+msgstr " <emph>Número</emph> es el número que se va a convertir a números romanos."
+
+#: 04060110.xhp#par_id3153318.253.help.text
+msgid " <emph>Mode</emph> (optional) indicates the degree of simplification. The higher the value, the greater is the simplification of the Roman number."
+msgstr " <emph>Modo</emph> (opcional) indica el grado de simplificación. Cuanto mayor sea el valor, mayor es la simplificación del número romano."
+
+#: 04060110.xhp#hd_id3145306.254.help.text
+msgctxt "04060110.xhp#hd_id3145306.254.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#par_id3151371.255.help.text
+msgid " <item type=\"input\">=ROMAN(999)</item> returns CMXCIX"
+msgstr " <item type=\"input\">=ROMANO(999)</item> devuelve CMXCIX."
+
+#: 04060110.xhp#par_id3153938.256.help.text
+msgid " <item type=\"input\">=ROMAN(999;0)</item> returns CMXCIX"
+msgstr " <item type=\"input\">=ROMANO(999;0)</item> devuelve CMXCIX."
+
+#: 04060110.xhp#par_id3148412.257.help.text
+msgid " <item type=\"input\">=ROMAN (999;1)</item> returns LMVLIV"
+msgstr " <item type=\"input\">=ROMANO(999;1)</item> devuelve LMVLIV."
+
+#: 04060110.xhp#par_id3155421.258.help.text
+msgid " <item type=\"input\">=ROMAN(999;2)</item> returns XMIX"
+msgstr " <item type=\"input\">=ROMANO(999;2)</item> devuelve XMIX."
+
+#: 04060110.xhp#par_id3149235.259.help.text
+msgid " <item type=\"input\">=ROMAN(999;3)</item> returns VMIV"
+msgstr " <item type=\"input\">=ROMANO(999;3)</item> devuelve VMIV."
+
+#: 04060110.xhp#par_id3150624.260.help.text
+msgid " <item type=\"input\">=ROMAN(999;4)</item> returns IM"
+msgstr " <item type=\"input\">=ROMANO(999;4)</item> devuelve IM."
+
+#: 04060110.xhp#bm_id3151005.help.text
+msgid "<bookmark_value>SEARCH function</bookmark_value>"
+msgstr "<bookmark_value>Función HALLAR</bookmark_value>"
+
+#: 04060110.xhp#hd_id3151005.122.help.text
+msgid "SEARCH"
+msgstr "BUSCAR"
+
+#: 04060110.xhp#par_id3148692.123.help.text
+msgid "<ahelp hid=\"HID_FUNC_SUCHEN\">Returns the position of a text segment within a character string.</ahelp> You can set the start of the search as an option. The search text can be a number or any sequence of characters. The search is not case-sensitive."
+msgstr "<ahelp hid=\"HID_FUNC_SUCHEN\">Devuelve la posición de un segmento de texto dentro de una cadena de caracteres.</ahelp> Opcionalmente puede fijar el inicio de la búsqueda. El texto buscado puede ser un número o una cadena de caracteres. La búsqueda no distingue mayúsculas de minúsculas."
+
+#: 04060110.xhp#hd_id3152964.124.help.text
+msgctxt "04060110.xhp#hd_id3152964.124.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id3154671.125.help.text
+msgid "SEARCH(\"FindText\"; \"Text\"; Position)"
+msgstr "BUSQUEDA(\"FindText\"; \"Texto\"; Posición)"
+
+#: 04060110.xhp#par_id3146080.126.help.text
+msgid " <emph>FindText</emph> is the text to be searched for."
+msgstr " <emph>Encontrar_Texto</emph> es el texto que se debe buscar."
+
+#: 04060110.xhp#par_id3154111.127.help.text
+msgid " <emph>Text</emph> is the text where the search will take place."
+msgstr " <emph>Texto</emph> es el texto donde se realiza la búsqueda."
+
+#: 04060110.xhp#par_id3149559.128.help.text
+msgid " <emph>Position</emph> (optional) is the position in the text where the search is to start."
+msgstr " <emph>Posición</emph> (opcional) es la posición en el texto donde se iniciará la búsqueda."
+
+#: 04060110.xhp#hd_id3147322.129.help.text
+msgctxt "04060110.xhp#hd_id3147322.129.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#par_id3154564.130.help.text
+msgid " <item type=\"input\">=SEARCH(54;998877665544)</item> returns 10."
+msgstr " <item type=\"input\">=BUSCAR(54;998877665544)</item> devuelve 10."
+
+#: 04060110.xhp#bm_id3154830.help.text
+msgid "<bookmark_value>SUBSTITUTE function</bookmark_value>"
+msgstr "<bookmark_value>SUSTITUIR</bookmark_value>"
+
+#: 04060110.xhp#hd_id3154830.174.help.text
+msgid "SUBSTITUTE"
+msgstr "SUSTITUIR"
+
+#: 04060110.xhp#par_id3153698.175.help.text
+msgid "<ahelp hid=\"HID_FUNC_WECHSELN\">Substitutes new text for old text in a string.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_WECHSELN\">Reemplaza un fragmento de texto por otro nuevo dentro de una cadena de caracteres.</ahelp>"
+
+#: 04060110.xhp#hd_id3150994.176.help.text
+msgctxt "04060110.xhp#hd_id3150994.176.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id3147582.177.help.text
+msgid "SUBSTITUTE(\"Text\"; \"SearchText\"; \"NewText\"; Occurrence)"
+msgstr "SUSTITUIR(\"Texto\"; \"Buscar_texto\"; \"texto_nuevo\"; Ocurrencia)"
+
+#: 04060110.xhp#par_id3153675.178.help.text
+msgid " <emph>Text</emph> is the text in which text segments are to be exchanged."
+msgstr " <emph>Texto</emph> es el texto en el que se van a intercambiar los segmentos de texto."
+
+#: 04060110.xhp#par_id3156155.179.help.text
+msgid " <emph>SearchText </emph>is the text segment that is to be replaced (a number of times)."
+msgstr " <emph>Buscar_texto</emph> es el segmento de texto que se va a sustituir (un número de veces)."
+
+#: 04060110.xhp#par_id3145779.180.help.text
+msgid " <emph>NewText</emph> is the text that is to replace the text segment."
+msgstr " <emph>texto_nuevo</emph> es el texto que va a sustituir al segmento de texto."
+
+#: 04060110.xhp#par_id3150348.181.help.text
+msgid " <emph>Occurrence</emph> (optional) indicates which occurrence of the search text is to be replaced. If this parameter is missing the search text is replaced throughout."
+msgstr " <emph>Aparición</emph> (opcional) indica la aparición del texto buscado que se reemplazará. Si no se especifica este parámetro, el texto de la búsqueda se reemplazará en todas partes."
+
+#: 04060110.xhp#hd_id3150946.182.help.text
+msgctxt "04060110.xhp#hd_id3150946.182.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#par_id3150412.183.help.text
+msgid " <item type=\"input\">=SUBSTITUTE(\"123123123\";\"3\";\"abc\")</item> returns 12abc12abc12abc."
+msgstr " <item type=\"input\">=SUSTITUIR(\"123123123\";\"3\";\"abc\")</item> devuelve 12abc12abc12abc."
+
+#: 04060110.xhp#par_id3154915.238.help.text
+msgid " <item type=\"input\">=SUBSTITUTE(\"123123123\";\"3\";\"abc\";2)</item> returns 12312abc123."
+msgstr " <item type=\"input\">=SUSTITUIR(\"123123123\";\"3\";\"abc\";2)</item> devuelve 12312abc123."
+
+#: 04060110.xhp#bm_id3148977.help.text
+msgid "<bookmark_value>T function</bookmark_value>"
+msgstr "<bookmark_value>Función T</bookmark_value>"
+
+#: 04060110.xhp#hd_id3148977.140.help.text
+msgid "T"
+msgstr "T"
+
+#: 04060110.xhp#par_id3154359.141.help.text
+msgid "<ahelp hid=\"HID_FUNC_T\">This function returns the target text, or a blank text string if the target is not text.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_T\">Esta función devuelve el texto de destino, o una cadena de texto vacía si el destino no es texto.</ahelp>"
+
+#: 04060110.xhp#hd_id3155858.142.help.text
+msgctxt "04060110.xhp#hd_id3155858.142.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id3155871.143.help.text
+msgid "T(Value)"
+msgstr "T(Valor)"
+
+#: 04060110.xhp#par_id3154726.144.help.text
+msgid "If <emph>Value</emph> is a text string or refers to a text string, T returns that text string; otherwise it returns a blank text string."
+msgstr "Si <emph>Valuor</emph> es una cadena de texto o se refiere a una cadena de texto. T devolverá esa cadena; de lo contrario devolvera una cadena en vacia."
+
+#: 04060110.xhp#hd_id3155544.145.help.text
+msgctxt "04060110.xhp#hd_id3155544.145.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#par_id3151062.146.help.text
+msgid " <item type=\"input\">=T(12345)</item> returns an empty string. "
+msgstr " <item type=\"input\">=T(12345)</item> devuelve una cadena vacía. "
+
+#: 04060110.xhp#par_id4650105.help.text
+msgid " <item type=\"input\">=T(\"12345\")</item> returns the string 12345."
+msgstr " <item type=\"input\">=T(\"12345\")</item> devuelve la cadena 12345."
+
+#: 04060110.xhp#bm_id3147132.help.text
+msgid "<bookmark_value>TEXT function</bookmark_value>"
+msgstr "<bookmark_value>Función TEXTO</bookmark_value>"
+
+#: 04060110.xhp#hd_id3147132.158.help.text
+msgid "TEXT"
+msgstr "TEXTO"
+
+#: 04060110.xhp#par_id3147213.159.help.text
+msgid "<ahelp hid=\"HID_FUNC_TEXT\">Converts a number into text according to a given format.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TEXT\">Convierte un número en texto según un formato determinado.</ahelp>"
+
+#: 04060110.xhp#hd_id3153129.160.help.text
+msgctxt "04060110.xhp#hd_id3153129.160.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id3147377.161.help.text
+msgid "TEXT(Number; Format)"
+msgstr "TEXTO(Número; formato)"
+
+#: 04060110.xhp#par_id3147389.162.help.text
+msgid " <emph>Number</emph> is the numerical value to be converted."
+msgstr " <emph>Número</emph> es el valor numérico que se debe convertir."
+
+#: 04060110.xhp#par_id3156167.163.help.text
+msgid " <emph>Format</emph> is the text which defines the format. Use decimal and thousands separators according to the language set in the cell format."
+msgstr " <emph>Formato</emph> es el texto que define el formato. Use separadores de decimales y millares de acuerdo con el idioma definido en el formato de celda."
+
+#: 04060110.xhp#hd_id1243629.help.text
+msgctxt "04060110.xhp#hd_id1243629.help.text"
+msgid "Example"
+msgstr "Ejemplo:"
+
+#: 04060110.xhp#par_id9044770.help.text
+msgid " <item type=\"input\">=TEXT(12.34567;\"###.##\")</item> returns the text 12.35"
+msgstr " <item type=\"input\">=TEXTO(12,34567;\"###,##\")</item> devuelve el texto 12,35."
+
+#: 04060110.xhp#par_id3674123.help.text
+msgid " <item type=\"input\">=TEXT(12.34567;\"000.00\")</item> returns the text 012.35"
+msgstr " <item type=\"input\">=TEXTO(12,34567;\"000,00\")</item> devuelve el texto 012,35."
+
+#: 04060110.xhp#bm_id3151039.help.text
+msgid "<bookmark_value>TRIM function</bookmark_value>"
+msgstr "<bookmark_value>Función COMPACTAR</bookmark_value>"
+
+#: 04060110.xhp#hd_id3151039.54.help.text
+msgid "TRIM"
+msgstr "COMPACTAR"
+
+#: 04060110.xhp#par_id3157888.55.help.text
+msgid "<ahelp hid=\"HID_FUNC_GLAETTEN\">Removes spaces from a string, leaving only a single space character between words.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GLAETTEN\">Elimina los espacios de una cadena de caracteres y deja un solo espacio entre palabras.</ahelp>"
+
+#: 04060110.xhp#hd_id3152913.56.help.text
+msgctxt "04060110.xhp#hd_id3152913.56.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id3151349.57.help.text
+msgid "TRIM(\"Text\")"
+msgstr "COMPACTAR(\"Texto\")"
+
+#: 04060110.xhp#par_id3151362.58.help.text
+msgid " <emph>Text</emph> refers to text in which spaces are removed."
+msgstr " <emph>Texto</emph> hace referencia al texto en el que se suprimen espacios."
+
+#: 04060110.xhp#hd_id3146838.59.help.text
+msgctxt "04060110.xhp#hd_id3146838.59.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#par_id3156074.60.help.text
+msgid " <item type=\"input\">=TRIM(\"hello\")</item> returns hello."
+msgstr " <item type=\"input\">=COMPACTAR(\"hola\")</item> devuelve hola."
+
+#: 04060110.xhp#bm_id0907200904030935.help.text
+msgid "<bookmark_value>UNICHAR function</bookmark_value>"
+msgstr "<bookmark_value>UNICHAR</bookmark_value>"
+
+#: 04060110.xhp#hd_id0907200904022525.help.text
+msgid "UNICHAR"
+msgstr "UNICHAR"
+
+#: 04060110.xhp#par_id0907200904022538.help.text
+msgid "<ahelp hid=\".\">Converts a code number into a Unicode character or letter.</ahelp>"
+msgstr "<ahelp hid=\".\">Convierte un número de código en un carácter o letra Unicode.</ahelp>"
+
+#: 04060110.xhp#hd_id0907200904123753.help.text
+msgctxt "04060110.xhp#hd_id0907200904123753.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id0907200904123753.help.text
+msgid "UNICHAR(number)"
+msgstr "UNICHAR(número)"
+
+#: 04060110.xhp#hd_id0907200904123720.help.text
+msgctxt "04060110.xhp#hd_id0907200904123720.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#par_id090720090412378.help.text
+msgid "=UNICHAR(169) returns the Copyright character <emph>©</emph>."
+msgstr "=UNICHAR(169) da como resultado el carácter de Copyright <emph>©</emph>."
+
+#: 04060110.xhp#bm_id0907200904033543.help.text
+msgid "<bookmark_value>UNICODE function</bookmark_value>"
+msgstr "<bookmark_value>UNICODE</bookmark_value>"
+
+#: 04060110.xhp#hd_id0907200904022588.help.text
+msgid "UNICODE"
+msgstr "UNICODE"
+
+#: 04060110.xhp#par_id0907200904022594.help.text
+msgid "<ahelp hid=\".\">Returns the numeric code for the first Unicode character in a text string.</ahelp>"
+msgstr "<ahelp hid=\".\">Devuelve el código numérico del primer carácter Unicode de una cadena de texto.</ahelp>"
+
+#: 04060110.xhp#hd_id0907200904123874.help.text
+msgctxt "04060110.xhp#hd_id0907200904123874.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id0907200904123846.help.text
+msgid "UNICODE(\"Text\")"
+msgstr "UNICODE(\"Texto\")"
+
+#: 04060110.xhp#hd_id0907200904123899.help.text
+msgctxt "04060110.xhp#hd_id0907200904123899.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#par_id0907200904123919.help.text
+msgid "=UNICODE(\"©\") returns the Unicode number 169 for the Copyright character."
+msgstr "=UNICODE(\"©\") devuelve el número Unicode 169 para el carácter de Copyright."
+
+#: 04060110.xhp#bm_id3145178.help.text
+msgid "<bookmark_value>UPPER function</bookmark_value>"
+msgstr "<bookmark_value>Función MAYÚSC</bookmark_value>"
+
+#: 04060110.xhp#hd_id3145178.62.help.text
+msgid "UPPER"
+msgstr "MAYÚSC"
+
+#: 04060110.xhp#par_id3162905.63.help.text
+msgid "<ahelp hid=\"HID_FUNC_GROSS\">Converts the string specified in the <emph>text</emph> field to uppercase.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GROSS\">Pasa la cadena especificada en el campo de <emph>texto</emph> a mayúsculas.</ahelp>"
+
+#: 04060110.xhp#hd_id3148526.64.help.text
+msgctxt "04060110.xhp#hd_id3148526.64.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id3148539.65.help.text
+msgid "UPPER(\"Text\")"
+msgstr "MAYÚSC(\"Texto\")"
+
+#: 04060110.xhp#par_id3148496.66.help.text
+msgid " <emph>Text</emph> refers to the lower case letters you want to convert to upper case."
+msgstr " <emph>Texto</emph> hace referencia a las letras en minúsculas que desea convertir a mayúsculas."
+
+#: 04060110.xhp#hd_id3148516.67.help.text
+msgctxt "04060110.xhp#hd_id3148516.67.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#par_id3146757.68.help.text
+msgid " <item type=\"input\">=UPPER(\"Good Morning\")</item> returns GOOD MORNING."
+msgstr " <item type=\"input\">=MAYÚS(\"Buenos días\")</item> devuelve BUENOS DÍAS."
+
+#: 04060110.xhp#bm_id3150802.help.text
+msgid "<bookmark_value>VALUE function</bookmark_value>"
+msgstr "<bookmark_value>Función VALOR</bookmark_value>"
+
+#: 04060110.xhp#hd_id3150802.185.help.text
+msgid "VALUE"
+msgstr "VALOR"
+
+#: 04060110.xhp#par_id3152551.186.help.text
+msgid "<ahelp hid=\"HID_FUNC_WERT\">Converts a text string into a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_WERT\">Convierte una cadena de texto en un número.</ahelp>"
+
+#: 04060110.xhp#hd_id3152568.187.help.text
+msgctxt "04060110.xhp#hd_id3152568.187.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060110.xhp#par_id3153638.188.help.text
+msgid "VALUE(\"Text\")"
+msgstr "VALOR(\"Texto\")"
+
+#: 04060110.xhp#par_id3153651.189.help.text
+msgid " <emph>Text</emph> is the text to be converted to a number."
+msgstr " <emph>Texto</emph> es el texto que se debe convertir en un número."
+
+#: 04060110.xhp#hd_id3144719.190.help.text
+msgctxt "04060110.xhp#hd_id3144719.190.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060110.xhp#par_id3144733.191.help.text
+msgid " <item type=\"input\">=VALUE(\"4321\")</item> returns 4321."
+msgstr " <item type=\"input\">=VALOR(\"4321\")</item> devuelve 4321."
+
+#: 12080300.xhp#tit.help.text
+msgid "Group"
+msgstr "Agrupar"
+
+#: 12080300.xhp#hd_id3153088.1.help.text
+msgctxt "12080300.xhp#hd_id3153088.1.help.text"
+msgid "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
+msgstr "<link href=\"text/scalc/01/12080300.xhp\" name=\"Agrupar\">Agrupar</link>"
+
+#: 12080300.xhp#par_id3153821.2.help.text
+msgid "<variable id=\"gruppierung\"><ahelp hid=\".uno:Group\" visibility=\"visible\">Defines the selected cell range as a group of rows or columns.</ahelp></variable>"
+msgstr "<variable id=\"gruppierung\"><ahelp hid=\".uno:Group\" visibility=\"visible\">Define el área de celdas seleccionada como grupo de filas o de columnas.</ahelp></variable>"
+
+#: 12080300.xhp#par_id3145069.3.help.text
+msgid "When you group a cell range, and outline icon appears in the margins next to the group. To hide or show the group, click the icon. To ungroup the selection, choose <emph>Data – Outline -</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\"><emph>Ungroup</emph></link>."
+msgstr "Al agrupar un área de celdas, en los márgenes junto al grupo se muestra un símbolo de esquema. Para ocultar o mostrar el grupo, pulse en el símbolo. Para desagrupar la selección elija <emph>Datos - Esquema -</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Desagrupar\"><emph>Desagrupar</emph></link>."
+
+#: 12080300.xhp#hd_id3125863.4.help.text
+msgid "Include"
+msgstr "Activar para"
+
+#: 12080300.xhp#hd_id3150448.6.help.text
+msgctxt "12080300.xhp#hd_id3150448.6.help.text"
+msgid "Rows"
+msgstr "Filas"
+
+#: 12080300.xhp#par_id3153194.7.help.text
+msgid "<ahelp hid=\"HID_SC_GROUP_ROWS\" visibility=\"visible\">Groups the selected rows.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_GROUP_ROWS\" visibility=\"visible\">Agrupa las filas seleccionadas.</ahelp>"
+
+#: 12080300.xhp#hd_id3145786.8.help.text
+msgctxt "12080300.xhp#hd_id3145786.8.help.text"
+msgid "Columns"
+msgstr "Columnas"
+
+#: 12080300.xhp#par_id3146984.9.help.text
+msgid "<ahelp hid=\"HID_SC_GROUP_COLS\" visibility=\"visible\">Groups the selected columns.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_GROUP_COLS\" visibility=\"visible\">Agrupa las columnas seleccionadas.</ahelp>"
+
+#: 06130000.xhp#tit.help.text
+msgid "AutoInput"
+msgstr "Entrada automática"
+
+#: 06130000.xhp#bm_id2486037.help.text
+msgid "<bookmark_value>entering entries with AutoInput function</bookmark_value><bookmark_value>capital letters;AutoInput function</bookmark_value>"
+msgstr "<bookmark_value>introducir entradas con la función Entrada automática</bookmark_value><bookmark_value>letras mayúsculas;función Entrada automática</bookmark_value>"
+
+#: 06130000.xhp#hd_id3148492.1.help.text
+msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"AutoInput\">AutoInput</link>"
+msgstr "<link href=\"text/scalc/01/06130000.xhp\" name=\"Entrada automática\">Entrada automática</link>"
+
+#: 06130000.xhp#par_id3150793.2.help.text
+msgid "<ahelp hid=\".uno:AutoComplete\">Switches the AutoInput function on and off, which automatically completes entries, based on other entries in the same column.</ahelp> The column is scanned up to a maximum of 2000 cells or 200 different strings."
+msgstr "<ahelp hid=\".uno:AutoComplete\">Conmuta la función Entrada automática, que completa automáticamente las entradas, basándose en otras entradas de la misma columna.</ahelp> Se explora la columna hacia arriba hasta un máximo de 2.000 celdas o 200 cadenas diferentes."
+
+#: 06130000.xhp#par_id3156422.8.help.text
+msgid "The completion text is highlighted."
+msgstr "Se marca el texto completado. Si desea ver más \"completados\", pulse la tecla Tab para desplazarse hacia delante y Mayús+Tab para desplazarse hacia atrás. Pulse Intro para aceptar la palabra completada. Si hay más de una palabra completada se crea una lista. Si desea ver la lista pulse <emph>Control+D</emph>."
+
+#: 06130000.xhp#par_idN1065D.help.text
+msgid "To accept the completion, press <item type=\"keycode\">Enter</item> or a cursor key."
+msgstr "Para aceptar el fragmento completado, pulse <item type=\"keycode\">Entrar</item> o una tecla de cursor."
+
+#: 06130000.xhp#par_idN10665.help.text
+msgid "To append text or to edit the completion, press <item type=\"keycode\">F2</item>."
+msgstr "Para anexar texto o editar el fragmento completado, pulse <item type=\"keycode\">F2</item>."
+
+#: 06130000.xhp#par_idN1066D.help.text
+msgid "To view more completions, press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab</item> to scroll forward, or <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Tab</item> to scroll backward."
+msgstr ""
+
+#: 06130000.xhp#par_idN10679.help.text
+msgid "To see a list of all available AutoInput text items for the current column, press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Down Arrow</item>."
+msgstr ""
+
+#: 06130000.xhp#par_id3150439.3.help.text
+msgid "When typing formulas using characters that match previous entries, a Help tip will appear listing the last ten functions used from <emph>Function Wizard</emph>, from all defined range names, from all database range names, and from the content of all label ranges."
+msgstr "Al escribir fórmulas con caracteres que coincidan con anteriores entradas se mostrará un cuadro de Ayuda con las últimas 10 funciones utilizadas en el <emph>Asistente para funciones</emph>, todos los nombres de área definidos, los nombres de área de base de datos y el contenido de todas las áreas de etiqueta."
+
+#: 06130000.xhp#par_id3153363.5.help.text
+msgid "AutoInput is case-sensitive. If, for example, you have written \"Total\" in a cell, you cannot enter \"total\" in another cell of the same column without first deactivating AutoInput."
+msgstr "La Entrada automática distingue entre mayúsculas y minúsculas. Por ejemplo, si una celda contiene \"Total\", no es posible escribir \"total\" en otra celda de la misma columna sin desactivar en primer lugar la Entrada automática."
+
+#: 12040100.xhp#tit.help.text
+msgid "AutoFilter"
+msgstr "Filtro automático"
+
+#: 12040100.xhp#hd_id3153541.1.help.text
+msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link>"
+msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFiltro\">AutoFiltro</link>"
+
+#: 12040100.xhp#par_id3148550.2.help.text
+msgid "<ahelp hid=\".uno:DataFilterAutoFilter\">Automatically filters the selected cell range, and creates one-row list boxes where you can choose the items that you want to display.</ahelp>"
+msgstr "<ahelp hid=\".uno:DataFilterAutoFilter\">Filtra automáticamente el área de celdas seleccionada, y crea cuadros de lista de una fila en los que puede elegir los elementos que desea mostrar.</ahelp>"
+
+#: 12040100.xhp#par_id3145171.3.help.text
+msgid "<link href=\"text/shared/02/12090000.xhp\" name=\"Default filter\">Default filter</link>"
+msgstr "<link href=\"text/shared/02/12090000.xhp\" name=\"Filtro predeterminado\">Filtro predeterminado</link>"
+
+#: 06020000.xhp#tit.help.text
+msgctxt "06020000.xhp#tit.help.text"
+msgid "Hyphenation"
+msgstr "Separación silábica"
+
+#: 06020000.xhp#bm_id3159399.help.text
+msgid "<bookmark_value>automatic hyphenation in spreadsheets</bookmark_value><bookmark_value>hyphenation; in spreadsheets</bookmark_value><bookmark_value>syllables in spreadsheets</bookmark_value>"
+msgstr "<bookmark_value>separación silábica automática en hojas de cálculo</bookmark_value><bookmark_value>separación silábica; en hojas de cálculo</bookmark_value><bookmark_value>sílabas en hojas de cálculo</bookmark_value>"
+
+#: 06020000.xhp#hd_id3159399.1.help.text
+msgctxt "06020000.xhp#hd_id3159399.1.help.text"
+msgid "Hyphenation"
+msgstr "Separación silábica"
+
+#: 06020000.xhp#par_id3145068.2.help.text
+msgid "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\">The <emph>Hyphenation </emph>command calls the dialog for setting the hyphenation in $[officename] Calc.</ahelp></variable>"
+msgstr "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\">El comando <emph>Separación silábica</emph> abre el diálogo para configurar la separación de sílabas en $[officename] Calc.</ahelp></variable>"
+
+#: 06020000.xhp#par_id3154366.3.help.text
+msgid "You can only turn on the automatic hyphenation in $[officename] Calc when the <link href=\"text/shared/01/05340300.xhp\" name=\"row break\">row break</link> feature is active."
+msgstr "Sólo es posible habilitar la separación silábica automática en $[officename] Calc si está activada la función de <link href=\"text/shared/01/05340300.xhp\" name=\"salto de fila\">salto de fila</link>."
+
+#: 06020000.xhp#hd_id3153192.4.help.text
+msgid "Hyphenation for selected cells."
+msgstr "Separación silábica para celdas seleccionadas"
+
+#: 06020000.xhp#par_id3150868.5.help.text
+msgid "Select the cells for which you want to change the hyphenation."
+msgstr "Seleccione las celdas para las que desee modificar la separación silábica."
+
+#: 06020000.xhp#par_id3150440.6.help.text
+msgctxt "06020000.xhp#par_id3150440.6.help.text"
+msgid "Choose <emph>Tools - Language - Hyphenation</emph>."
+msgstr "Elija <emph>Herramientas - Idioma - Separación silábica</emph>."
+
+#: 06020000.xhp#par_id3156441.7.help.text
+msgid "The <emph>Format Cells</emph> dialog appears with the <emph>Alignment</emph> tab page open."
+msgstr "Se abre el diálogo <emph>Formatear celdas</emph> en la pestaña <emph>Alineación</emph>."
+
+#: 06020000.xhp#par_id3149260.12.help.text
+msgid "Mark the <emph>Wrap text automatically</emph> and <emph>Hyphenation active</emph> check boxes."
+msgstr "Marque las casillas de verificación <emph>Ajustar texto automáticamente</emph> y <emph>División de palabras activa</emph>."
+
+#: 06020000.xhp#hd_id3153094.8.help.text
+msgid "Hyphenation for Drawing Objects"
+msgstr "Separación silábica para objetos de dibujo."
+
+#: 06020000.xhp#par_id3148577.9.help.text
+msgid "Select a drawing object."
+msgstr "Seleccione un objeto de dibujo."
+
+#: 06020000.xhp#par_id3156285.10.help.text
+msgctxt "06020000.xhp#par_id3156285.10.help.text"
+msgid "Choose <emph>Tools - Language - Hyphenation</emph>."
+msgstr "Elija <emph>Herramientas - Idioma - Separación silábica</emph>."
+
+#: 06020000.xhp#par_id3147394.11.help.text
+msgid "Each time you call the command you turn the hyphenation for the drawing object on or off. A check mark shows the current status."
+msgstr "Con cada ejecución del comando activará o desactivará la separación silábica para el objeto de dibujo. Una marca muestra el estado actual."
+
+#: 02190100.xhp#tit.help.text
+msgctxt "02190100.xhp#tit.help.text"
+msgid "Row Break"
+msgstr "Salto de fila"
+
+#: 02190100.xhp#bm_id3156326.help.text
+msgid "<bookmark_value>spreadsheets; deleting row breaks</bookmark_value><bookmark_value>deleting;manual row breaks</bookmark_value><bookmark_value>row breaks; deleting</bookmark_value>"
+msgstr "<bookmark_value>hojas de cálculo;eliminar saltos de fila</bookmark_value><bookmark_value>eliminar;salto manual de fila</bookmark_value><bookmark_value>saltos de fila;eliminando</bookmark_value>"
+
+#: 02190100.xhp#hd_id3156326.1.help.text
+msgid "<link href=\"text/scalc/01/02190100.xhp\" name=\"Row Break\">Row Break</link>"
+msgstr "<link href=\"text/scalc/01/02190100.xhp\" name=\"Row Break\">Salto de fila</link>"
+
+#: 02190100.xhp#par_id3154366.2.help.text
+msgid "<ahelp hid=\".uno:DeleteRowbreak\">Removes the manual row break above the active cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteRowbreak\">Elimina el salto de fila manual encima de la celda activa.</ahelp>"
+
+#: 02190100.xhp#par_id3151041.3.help.text
+msgid "Position the cursor in a cell directly below the row break indicated by a horizontal line and choose <emph>Edit - Delete Manual Break - Row Break</emph>. The manual row break is removed."
+msgstr "Ponga el cursor en una celda situada justo debajo del salto de fila indicado mediante una línea horizontal y seleccione <emph>Editar - Borrar salto manual - Salto de filas</emph>. Se borra el salto de fila manual."
+
+#: 06030800.xhp#tit.help.text
+msgid "Mark Invalid Data"
+msgstr "Marcar los datos incorrectos"
+
+#: 06030800.xhp#bm_id3153821.help.text
+msgid "<bookmark_value>cells; invalid data</bookmark_value><bookmark_value>data; showing invalid data</bookmark_value><bookmark_value>invalid data;marking</bookmark_value>"
+msgstr "<bookmark_value>celdas;datos no válidos</bookmark_value><bookmark_value>datos;mostrar datos no válidos</bookmark_value><bookmark_value>datos no válidos;marcar</bookmark_value>"
+
+#: 06030800.xhp#hd_id3153821.1.help.text
+msgid "<link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\">Mark Invalid Data</link>"
+msgstr "<link href=\"text/scalc/01/06030800.xhp\" name=\"Marcar datos incorrectos\">Marcar datos incorrectos</link>"
+
+#: 06030800.xhp#par_id3147264.2.help.text
+msgid "<ahelp hid=\".uno:ShowInvalid\" visibility=\"visible\">Marks all cells in the sheet that contain values outside the validation rules.</ahelp>"
+msgstr "<ahelp hid=\".uno:ShowInvalid\" visibility=\"visible\">Marca todas las celdas de la hoja que contienen valores que no cumplen las reglas de validez.</ahelp>"
+
+#: 06030800.xhp#par_id3151211.3.help.text
+msgid "The <link href=\"text/scalc/01/12120000.xhp\" name=\"validity rules\">validity rules</link> restrict the input of numbers, dates, time values and text to certain values. However, it is possible to enter invalid values or copy invalid values into the cells if the <emph>Stop</emph> option is not selected. When you assign a validity rule, existing values in a cell will not be modified."
+msgstr "Las <link href=\"text/scalc/01/12120000.xhp\" name=\"reglas de validez\">reglas de validez</link> restringen la entrada de números, fechas, horas y texto a valores específicos. No obstante, es posible introducir o copiar en las celdas valores incorrectos si no está seleccionada la opción <emph>Detener</emph>. Al asignar una regla de validez, las reglas ya existentes en la celda no se modificarán."
+
+#: 12090105.xhp#tit.help.text
+msgctxt "12090105.xhp#tit.help.text"
+msgid "Data field"
+msgstr "Campo de datos"
+
+#: 12090105.xhp#bm_id7292397.help.text
+#, fuzzy
+msgid "<bookmark_value>calculating;pivot table</bookmark_value>"
+msgstr "<bookmark_value>calcular;piloto de datos</bookmark_value>"
+
+#: 12090105.xhp#hd_id3150871.1.help.text
+msgctxt "12090105.xhp#hd_id3150871.1.help.text"
+msgid "Data field"
+msgstr "Campo de datos"
+
+#: 12090105.xhp#par_id3154124.16.help.text
+#, fuzzy
+msgid "The contents of this dialog is different for data fields in the <emph>Data</emph> area, and data fields in the <emph>Row</emph> or <emph>Column</emph> area of the <link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table\">Pivot Table</link> dialog."
+msgstr "El contenido de este diálogo es distinto para los campos de datos del área <emph>Datos</emph> y para los de las áreas <emph>Fila</emph> o <emph>Columna</emph> del diálogo <link href=\"text/scalc/01/12090102.xhp\" name=\"Piloto de datos\">Piloto de datos</link>."
+
+#: 12090105.xhp#hd_id3152596.2.help.text
+msgctxt "12090105.xhp#hd_id3152596.2.help.text"
+msgid "Subtotals"
+msgstr "Subtotales"
+
+#: 12090105.xhp#par_id3151113.3.help.text
+msgid "<ahelp hid=\"HID_SC_PIVOTSUBT\">Specify the subtotals that you want to calculate.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_PIVOTSUBT\" visibility=\"visible\">Especifique los subtotales que desea calcular.</ahelp>"
+
+#: 12090105.xhp#hd_id3145366.4.help.text
+msgid "None"
+msgstr "Ninguno"
+
+#: 12090105.xhp#par_id3152576.5.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_NONE\">Does not calculate subtotals.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_NONE\" visibility=\"visible\">No calcula subtotales.</ahelp>"
+
+#: 12090105.xhp#hd_id3154012.6.help.text
+msgid "Automatic"
+msgstr "Automático"
+
+#: 12090105.xhp#par_id3155856.7.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_AUTO\">Automatically calculates subtotals.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_AUTO\" visibility=\"visible\">Calcula subtotales automáticamente.</ahelp>"
+
+#: 12090105.xhp#hd_id3155411.8.help.text
+msgid "User-defined"
+msgstr "Definido por el usuario"
+
+#: 12090105.xhp#par_id3149581.9.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_USER\">Select this option, and then click the type of subtotal that you want to calculate in the list.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_USER\" visibility=\"visible\">Seleccione esta opción y pulse en la lista en el tipo de subtotal que desee calcular.</ahelp>"
+
+#: 12090105.xhp#hd_id3147124.10.help.text
+msgctxt "12090105.xhp#hd_id3147124.10.help.text"
+msgid "Function"
+msgstr "Función"
+
+#: 12090105.xhp#par_id3154490.11.help.text
+msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_PIVOTSUBT:LB_FUNC\">Click the type of subtotal that you want to calculate. This option is only available if the <emph>User-defined</emph> option is selected.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\"SC:MULTILISTBOX:RID_SCDLG_PIVOTSUBT:LB_FUNC\">Pulse en el tipo de subtotal que desea calcular. Esta opción sólo está disponible si se ha seleccionado la opción <emph>Definido por el usuario</emph>.</ahelp>"
+
+#: 12090105.xhp#hd_id3154944.14.help.text
+msgid "Show elements without data"
+msgstr "Mostrar elementos sin datos"
+
+#: 12090105.xhp#par_id3149403.15.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOTSUBT:CB_SHOWALL\">Includes empty columns and rows in the results table.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOTSUBT:CB_SHOWALL\" visibility=\"visible\">Incluye columnas y filas vacías en la tabla de resultados.</ahelp>"
+
+#: 12090105.xhp#hd_id3149122.12.help.text
+msgid "Name:"
+msgstr "Nombre:"
+
+#: 12090105.xhp#par_id3150749.13.help.text
+msgid "Lists the name of the selected data field."
+msgstr "Muestra el nombre del campo de datos seleccionado."
+
+#: 12090105.xhp#par_idN106EC.help.text
+msgctxt "12090105.xhp#par_idN106EC.help.text"
+msgid "More"
+msgstr "Más"
+
+#: 12090105.xhp#par_idN106F0.help.text
+msgid "<ahelp hid=\".\">Expands or reduces the dialog. The <emph>More</emph> button is visible for data fields only.</ahelp>"
+msgstr "<ahelp hid=\".\">Amplía o reduce el diálogo. El botón <emph>Más</emph> sólo se muestra para los campos de datos.</ahelp>"
+
+#: 12090105.xhp#par_idN106F3.help.text
+msgctxt "12090105.xhp#par_idN106F3.help.text"
+msgid "Options"
+msgstr "Opciones"
+
+#: 12090105.xhp#par_idN106F7.help.text
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/scalc/01/12090106.xhp\">Data Field Options</link> dialog. The <emph>Options</emph> button is visible for column, row, or page fields only.</ahelp>"
+msgstr "<ahelp hid=\".\">Abre el diálogo <link href=\"text/scalc/01/12090106.xhp\">Opciones de campo de datos</link>. El botón <emph>Opciones</emph> sólo se ve para los campos de columna, fila o página.</ahelp>"
+
+#: 12090105.xhp#par_idN10708.help.text
+msgid "If the dialog is expanded by the <emph>More</emph> button, the following items are added to the dialog:"
+msgstr "Si se amplía el diálogo mediante el botón <emph>Más</emph>, se agregarán los siguientes elementos al diálogo:"
+
+#: 12090105.xhp#par_idN1070B.help.text
+msgctxt "12090105.xhp#par_idN1070B.help.text"
+msgid "Displayed value"
+msgstr "Valor mostrado"
+
+#: 12090105.xhp#par_idN1070F.help.text
+msgid "<ahelp hid=\".\">For each data field, you can select the type of display.</ahelp> For some types you can select additional information for a base field and a base item."
+msgstr "<ahelp hid=\".\">Para cada campo de datos, puede seleccionar el tipo de visualización.</ahelp> Para algunos tipos puede seleccionar información adicional para un campo de base y un elemento base."
+
+#: 12090105.xhp#par_idN10712.help.text
+msgctxt "12090105.xhp#par_idN10712.help.text"
+msgid "Type"
+msgstr "Tipo"
+
+#: 12090105.xhp#par_idN10716.help.text
+msgid "<ahelp hid=\"1495371266\">Select the type of calculating of the displayed value for the data field.</ahelp>"
+msgstr "<ahelp hid=\"1495371266\">Seleccione el tipo de cálculo del valor mostrado para el campo de datos.</ahelp>"
+
+#: 12090105.xhp#par_idN10724.help.text
+msgctxt "12090105.xhp#par_idN10724.help.text"
+msgid "Type"
+msgstr "Tipo"
+
+#: 12090105.xhp#par_idN1072A.help.text
+msgctxt "12090105.xhp#par_idN1072A.help.text"
+msgid "Displayed value"
+msgstr "Valor mostrado"
+
+#: 12090105.xhp#par_idN10731.help.text
+msgid "Normal"
+msgstr "Normal"
+
+#: 12090105.xhp#par_idN10737.help.text
+msgid "Results are shown unchanged"
+msgstr "Los resultados se muestran sin cambios"
+
+#: 12090105.xhp#par_idN1073E.help.text
+msgid "Difference from"
+msgstr "Diferencia con respecto a"
+
+#: 12090105.xhp#par_idN10744.help.text
+msgid "From each result, its reference value (see below) is subtracted, and the difference is shown. Totals outside of the base field are shown as empty results."
+msgstr "Se substrae de cada resultado su valor de referencia (véase más abajo), y se muestra la diferencia. Los totales que estén fuera del campo de base se muestran como resultados vacíos."
+
+#: 12090105.xhp#par_idN10747.help.text
+msgid "<emph>Named item</emph>"
+msgstr "<emph>Elemento con nombre</emph>"
+
+#: 12090105.xhp#par_idN1074C.help.text
+msgid "If a base item name is specified, the reference value for a combination of field items is the result where the item in the base field is replaced by the specified base item."
+msgstr "Si se especifica un nombre de elemento base, el valor de referencia de una combinación de elementos de campo es el resultado donde se sustituye el elemento del campo de base por el elemento base especificado."
+
+#: 12090105.xhp#par_idN1074F.help.text
+msgid "<emph>Previous item or Next item</emph>"
+msgstr "<emph>Elemento anterior o elemento siguiente</emph>"
+
+#: 12090105.xhp#par_idN10754.help.text
+msgid "If \"previous item\" or \"next item\" is specified as the base item, the reference value is the result for the next visible member of the base field, in the base field's sort order."
+msgstr "Si se especifica \"elemento anterior\" o \"elemento siguiente\" como elemento base, el valor de referencia es el resultado para el siguiente miembro visible del campo de base, en el orden de clasificación del campo de base."
+
+#: 12090105.xhp#par_idN1075B.help.text
+msgid "% Of"
+msgstr "% de"
+
+#: 12090105.xhp#par_idN10761.help.text
+msgid "Each result is divided by its reference value. The reference value is determined in the same way as for \"Difference from\". Totals outside of the base field are shown as empty results. "
+msgstr "Cada resultado se divide por su valor de referencia. El valor de referencia se determina del mismo modo que \"Diferencia con respecto a\". Los totales que estén fuera del campo de base se muestran como resultados vacíos. "
+
+#: 12090105.xhp#par_idN1076A.help.text
+msgid "% Difference from"
+msgstr "% de diferencia con respecto a"
+
+#: 12090105.xhp#par_idN10770.help.text
+msgid "From each result, its reference value is subtracted, and the difference is divided by the reference value. The reference value is determined in the same way as for \"Difference from\". Totals outside of the base field are shown as empty results."
+msgstr "Se substrae de cada resultado su valor de referencia, y la diferencia se divide por el valor de referencia. El valor de referencia se determina del mismo modo que \"Diferencia con respecto a\". Los totales que estén fuera del campo de base se muestran como resultados vacíos."
+
+#: 12090105.xhp#par_idN10777.help.text
+msgid "Running total in"
+msgstr "Total en ejecución en"
+
+#: 12090105.xhp#par_idN1077D.help.text
+msgid "Each result is added to the sum of the results for preceding items in the base field, in the base field's sort order, and the total sum is shown."
+msgstr "Cada resultado se agrega a la suma de resultados de los elementos anteriores del campo de base, en el orden de clasificación del campo de base, y se muestra la suma total."
+
+#: 12090105.xhp#par_idN10780.help.text
+msgid "Results are always summed, even if a different summary function was used to get each result."
+msgstr "Los resultados siempre se suman, aunque para obtenerlos se haya utilizado una función de resumen distinta."
+
+#: 12090105.xhp#par_idN10787.help.text
+msgid "% of row"
+msgstr "% de fila"
+
+#: 12090105.xhp#par_idN1078D.help.text
+#, fuzzy
+msgid "Each result is divided by the total result for its row in the pivot table. If there are several data fields, the total for the result's data field is used. If there are subtotals with manually selected summary functions, the total with the data field's summary function is still used. "
+msgstr "Cada resultado se divide por el resultado total para su fila en la tabla del Piloto de datos. Si hay varios campos de datos, se utiliza el total del campo de datos del resultado. Si hay subtotales con funciones de resumen seleccionadas manualmente, se sigue utilizando el total con la función de resumen del campo de datos. "
+
+#: 12090105.xhp#par_idN10794.help.text
+msgid "% of column"
+msgstr "% de columna"
+
+#: 12090105.xhp#par_idN1079A.help.text
+msgid "Same as \"% of row\", but the total for the result's column is used."
+msgstr "Igual que \"% de fila\", pero utiliza el total de la columna del resultado."
+
+#: 12090105.xhp#par_idN107A1.help.text
+msgid "% of total"
+msgstr "% de total"
+
+#: 12090105.xhp#par_idN107A7.help.text
+msgid "Same as \"% of row\", but the grand total for the result's data field is used."
+msgstr "Igual que \"% de fila\", pero utiliza el total del campo de datos del resultado."
+
+#: 12090105.xhp#par_idN107AE.help.text
+msgid "Index"
+msgstr "Índice"
+
+#: 12090105.xhp#par_idN107B4.help.text
+msgid "The row and column totals and the grand total, following the same rules as above, are used to calculate the following expression:"
+msgstr "Según las reglas anteriores, los totales de fila y columna y el total del cálculo se utilizan para calcular la siguiente expresión:"
+
+#: 12090105.xhp#par_idN107B7.help.text
+msgid "( original result * grand total ) / ( row total * column total )"
+msgstr "( resultado original * total del cálculo ) / ( total de fila * total de columna )"
+
+#: 12090105.xhp#par_idN107BA.help.text
+msgid "Base field"
+msgstr "Campo Base"
+
+#: 12090105.xhp#par_idN107BE.help.text
+msgid "<ahelp hid=\"1495371267\">Select the field from which the respective value is taken as base for the calculation.</ahelp>"
+msgstr "<ahelp hid=\"1495371267\">Seleccione el campo del que se toma el valor respectivo como base para el cálculo.</ahelp>"
+
+#: 12090105.xhp#par_idN107C1.help.text
+msgid "Base item"
+msgstr "Elemento base"
+
+#: 12090105.xhp#par_idN107C5.help.text
+msgid "<ahelp hid=\"1495371268\">Select the item of the base field from which the respective value is taken as base for the calculation.</ahelp>"
+msgstr "<ahelp hid=\"1495371268\">Seleccione el elemento del campo de base del que se toma el valor respectivo como base para el cálculo.</ahelp>"
+
+#: 04060119.xhp#tit.help.text
+msgctxt "04060119.xhp#tit.help.text"
+msgid "Financial Functions Part Two"
+msgstr "Funciones financieras, segunda parte"
+
+#: 04060119.xhp#hd_id3149052.1.help.text
+msgctxt "04060119.xhp#hd_id3149052.1.help.text"
+msgid "Financial Functions Part Two"
+msgstr "Funciones financieras, segunda parte"
+
+#: 04060119.xhp#par_id3148742.343.help.text
+msgctxt "04060119.xhp#par_id3148742.343.help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Back to Financial Functions Part One</link>"
+msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Regresar a las funciones financieras, parte 1</link>"
+
+#: 04060119.xhp#par_id3151341.344.help.text
+msgctxt "04060119.xhp#par_id3151341.344.help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Forward to Financial Functions Part Three</link>"
+msgstr "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Regresar a las funciones financieras, parte 3</link>"
+
+#: 04060119.xhp#bm_id3150026.help.text
+msgid "<bookmark_value>PPMT function</bookmark_value>"
+msgstr "<bookmark_value>AMORTIZACION</bookmark_value>"
+
+#: 04060119.xhp#hd_id3150026.238.help.text
+msgid "PPMT"
+msgstr "AMORTIZACIÓN"
+
+#: 04060119.xhp#par_id3146942.239.help.text
+msgid "<ahelp hid=\"HID_FUNC_KAPZ\">Returns for a given period the payment on the principal for an investment that is based on periodic and constant payments and a constant interest rate.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KAPZ\">Devuelve para un período dado el pago sobre la cantidad principal de una inversión basada en pagos constantes y periódicos y en un interés constante.</ahelp>"
+
+#: 04060119.xhp#hd_id3150459.240.help.text
+msgctxt "04060119.xhp#hd_id3150459.240.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060119.xhp#par_id3146878.241.help.text
+msgid "PPMT(Rate; Period; NPer; PV; FV; Type)"
+msgstr "PAGOPRIN(Tasa; Período; NPer; VA; VF; Tipo)"
+
+#: 04060119.xhp#par_id3151228.242.help.text
+msgctxt "04060119.xhp#par_id3151228.242.help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "<emph>Tasa</emph> define el tipo de interés periódico."
+
+#: 04060119.xhp#par_id3148887.243.help.text
+msgid "<emph>Period</emph> is the amortizement period. P = 1 for the first and P = NPer for the last period."
+msgstr "El <emph>Período</emph> es el período de amortización. P = 1 para el primero y P = NPer para el último período."
+
+#: 04060119.xhp#par_id3148436.244.help.text
+msgid "<emph>NPer</emph> is the total number of periods during which annuity is paid."
+msgstr "<emph>NPer</emph> es el número total de períodos durante los cuales la anualidad es pagada."
+
+#: 04060119.xhp#par_id3153035.245.help.text
+msgid "<emph>PV</emph> is the present value in the sequence of payments."
+msgstr "<emph>VA</emph> define el valor actual en la secuencia de pagos."
+
+#: 04060119.xhp#par_id3147474.246.help.text
+msgid "<emph>FV</emph> (optional) is the desired (future) value."
+msgstr "<emph>VF</emph> (opcional) es el valor (futuro) deseado."
+
+#: 04060119.xhp#par_id3144744.247.help.text
+msgid "<emph>Type</emph> (optional) defines the due date. F = 1 for payment at the beginning of a period and F = 0 for payment at the end of a period."
+msgstr "<emph>Tipo</emph> (opcional) define la fecha de vencimiento. F = 1 para el pago en el comienzo de un período y F = 0 para el pago al final de un período."
+
+#: 04060119.xhp#par_idN1067C.help.text
+msgctxt "04060119.xhp#par_idN1067C.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060119.xhp#hd_id3148582.248.help.text
+msgctxt "04060119.xhp#hd_id3148582.248.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060119.xhp#par_id3154811.249.help.text
+msgid "How high is the periodic monthly payment at an annual interest rate of 8.75% over a period of 3 years? The cash value is 5,000 currency units and is always paid at the beginning of a period. The future value is 8,000 currency units."
+msgstr "¿Cuál es el pago mensual periódico con un interés anual del 8,75% durante un período de 3 años? El valor efectivo es de 5.000 unidades monetarias y siempre se paga al comienzo de un período. El valor futuro es de 8.000 unidades monetarias."
+
+#: 04060119.xhp#par_id3149246.250.help.text
+msgid "<item type=\"input\">=PPMT(8.75%/12;1;36;5000;8000;1)</item> = -350.99 currency units."
+msgstr "<item type=\"input\">=AMORTIZACION(8,75%/12;1;36;5000;8000;1)</item> = -350,99 unidades monetarias."
+
+#: 04060119.xhp#bm_id3146139.help.text
+msgid "<bookmark_value>calculating; total amortizement rates</bookmark_value><bookmark_value>total amortizement rates</bookmark_value><bookmark_value>amortization installment</bookmark_value><bookmark_value>repayment installment</bookmark_value><bookmark_value>CUMPRINC function</bookmark_value>"
+msgstr "<bookmark_value>calcular; cantidad acumulada del capital pagado</bookmark_value><bookmark_value>cantidad acumulada del capital pagado</bookmark_value><bookmark_value>cuota de amortización</bookmark_value><bookmark_value>cuota de pago</bookmark_value><bookmark_value>PAGO.PRINC.ENTRE</bookmark_value>"
+
+#: 04060119.xhp#hd_id3146139.252.help.text
+msgid "CUMPRINC"
+msgstr "PAGO.PRINC.ENTRE"
+
+#: 04060119.xhp#par_id3150140.253.help.text
+msgid "<ahelp hid=\"HID_FUNC_KUMKAPITAL\">Returns the cumulative interest paid for an investment period with a constant interest rate.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KUMKAPITAL\">Calcula el interés acumulativo pagado para un período de inversión con una tasa de interés constante.</ahelp>"
+
+#: 04060119.xhp#hd_id3149188.254.help.text
+msgctxt "04060119.xhp#hd_id3149188.254.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060119.xhp#par_id3148733.255.help.text
+msgid "CUMPRINC(Rate; NPer; PV; S; E; Type)"
+msgstr "PAGO.PRINC.ENTRE(Tasa; NPer; Va; I; F; Tipo)"
+
+#: 04060119.xhp#par_id3150864.256.help.text
+msgctxt "04060119.xhp#par_id3150864.256.help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "<emph>Tasa</emph> define el tipo de interés periódico."
+
+#: 04060119.xhp#par_id3166052.257.help.text
+msgctxt "04060119.xhp#par_id3166052.257.help.text"
+msgid "<emph>NPer</emph> is the payment period with the total number of periods. NPER can also be a non-integer value."
+msgstr "<emph>NPer</emph> es el período de pago con el número total de períodos. NPER también puede ser un valor no entero."
+
+#: 04060119.xhp#par_id3150007.258.help.text
+msgctxt "04060119.xhp#par_id3150007.258.help.text"
+msgid "<emph>PV</emph> is the current value in the sequence of payments."
+msgstr "<emph>VA</emph> define el valor actual en la secuencia de pagos."
+
+#: 04060119.xhp#par_id3153112.259.help.text
+msgctxt "04060119.xhp#par_id3153112.259.help.text"
+msgid "<emph>S</emph> is the first period."
+msgstr "<emph>I</emph> es el período inicial."
+
+#: 04060119.xhp#par_id3146847.260.help.text
+msgctxt "04060119.xhp#par_id3146847.260.help.text"
+msgid "<emph>E</emph> is the last period."
+msgstr "<emph>E</emph> es el último período."
+
+#: 04060119.xhp#par_id3145167.261.help.text
+msgctxt "04060119.xhp#par_id3145167.261.help.text"
+msgid "<emph>Type</emph> is the due date of the payment at the beginning or end of each period."
+msgstr "<emph>Tipo</emph> es la fecha de vencimiento del pago al comienzo o al final de cada período."
+
+#: 04060119.xhp#hd_id3154502.262.help.text
+msgctxt "04060119.xhp#hd_id3154502.262.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060119.xhp#par_id3153570.263.help.text
+msgid "What are the payoff amounts if the yearly interest rate is 5.5% for 36 months? The cash value is 15,000 currency units. The payoff amount is calculated between the 10th and 18th period. The due date is at the end of the period."
+msgstr "¿Cuáles son los importes liquidados si la tasa de interés anual es del 5,5% durante 36 meses? El valor efectivo es de 15.000 unidades monetarias. El importe liquidado se calcula entre el período 10 y el 18. La fecha de vencimiento es al final del período."
+
+#: 04060119.xhp#par_id3149884.264.help.text
+msgid "<item type=\"input\">=CUMPRINC(5.5%/12;36;15000;10;18;0)</item> = -3669.74 currency units. The payoff amount between the 10th and 18th period is 3669.74 currency units."
+msgstr "<item type=\"input\">=PAGO.PRINC.ENTRE(5,5%/12;36;15000;10;18;0)</item> = -3669,74 unidades monetarias. El monto total pagado entre los períodos 10 y 18 es de 3669.74 unidades monetarias."
+
+#: 04060119.xhp#bm_id3150019.help.text
+msgid "<bookmark_value>CUMPRINC_ADD function</bookmark_value>"
+msgstr "<bookmark_value>PAGO.PRINC.ENTRE_ADD</bookmark_value>"
+
+#: 04060119.xhp#hd_id3150019.182.help.text
+msgid "CUMPRINC_ADD"
+msgstr "PAGO.PRINC.ENTRE_ADD"
+
+#: 04060119.xhp#par_id3145246.183.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_CUMPRINC\"> Calculates the cumulative redemption of a loan in a period.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_CUMPRINC\"> Calcula la amortización acumulada de un préstamo en un período.</ahelp>"
+
+#: 04060119.xhp#hd_id3153047.184.help.text
+msgctxt "04060119.xhp#hd_id3153047.184.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060119.xhp#par_id3157970.185.help.text
+msgid "CUMPRINC_ADD(Rate; NPer; PV; StartPeriod; EndPeriod; Type)"
+msgstr "PAGO.PRINC.ENTRE_AGR(Tasa; NPer; NA; InicioPeríodo; FinPeríodo; Tipo)"
+
+#: 04060119.xhp#par_id3145302.186.help.text
+msgctxt "04060119.xhp#par_id3145302.186.help.text"
+msgid "<emph>Rate</emph> is the interest rate for each period."
+msgstr "<emph>Tasa</emph> es el tasa de interés por cada período."
+
+#: 04060119.xhp#par_id3151017.187.help.text
+msgctxt "04060119.xhp#par_id3151017.187.help.text"
+msgid "<emph>NPer</emph> is the total number of payment periods. The rate and NPER must refer to the same unit, and thus both be calculated annually or monthly."
+msgstr "El parámetro <emph>NPer</emph> indica el número total de períodos de pago. La tasa y «NPer» deben expresarse en la misma unidad, y calcularse ambas anualmente o mensualmente."
+
+#: 04060119.xhp#par_id3155620.188.help.text
+msgctxt "04060119.xhp#par_id3155620.188.help.text"
+msgid "<emph>PV</emph> is the current value."
+msgstr "<emph>VP</emph> es el valor actual."
+
+#: 04060119.xhp#par_id3145352.189.help.text
+msgctxt "04060119.xhp#par_id3145352.189.help.text"
+msgid "<emph>StartPeriod</emph> is the first payment period for the calculation."
+msgstr "<emph>InicioPeríodo</emph> es el primer período de pago para el cálculo."
+
+#: 04060119.xhp#par_id3157986.190.help.text
+msgctxt "04060119.xhp#par_id3157986.190.help.text"
+msgid "<emph>EndPeriod</emph> is the last payment period for the calculation."
+msgstr "<emph>FinPeríodo</emph> es el último período de pago para el cálculo."
+
+#: 04060119.xhp#par_id3150570.191.help.text
+msgctxt "04060119.xhp#par_id3150570.191.help.text"
+msgid "<emph>Type</emph> is the maturity of a payment at the end of each period (Type = 0) or at the start of the period (Type = 1)."
+msgstr "<emph>Tipo</emph> es la madurez de un pago al final del periodo (Tipo = 0) o al comienzo del periodo (Tipo = 1)."
+
+#: 04060119.xhp#hd_id3150269.192.help.text
+msgctxt "04060119.xhp#hd_id3150269.192.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060119.xhp#par_id3148774.193.help.text
+msgctxt "04060119.xhp#par_id3148774.193.help.text"
+msgid "The following mortgage loan is taken out on a house:"
+msgstr "Se toma el siguiente préstamo hipotecario para una casa:"
+
+#: 04060119.xhp#par_id3150661.194.help.text
+msgid "Rate: 9.00 per cent per annum (9% / 12 = 0.0075), Duration: 30 years (payment periods = 30 * 12 = 360), NPV: 125000 currency units."
+msgstr "Interés: 9,00 por ciento por año (9% / 12 = 0,0075), plazo: 30 años (periodos de pago = 30 * 12 = 360), VA: 125000 unidades monetarias."
+
+#: 04060119.xhp#par_id3155512.195.help.text
+msgid "How much will you repay in the second year of the mortgage (thus from periods 13 to 24)?"
+msgstr "¿Cuál es la amortización a devolver el segundo año del préstamo hipotecario (durante los periodos 13 a 24)?"
+
+#: 04060119.xhp#par_id3149394.196.help.text
+msgid "<item type=\"input\">=CUMPRINC_ADD(0.0075;360;125000;13;24;0)</item> returns -934.1071"
+msgstr "<item type=\"input\">=PAGO.INT.ENTRE_ADD(0,0075;360;125000;13;24;0)</item> devuelve -934.1071"
+
+#: 04060119.xhp#par_id3149026.197.help.text
+msgid "In the first month you will be repaying the following amount:"
+msgstr "El primer mes devolverá como amortización la siguiente cantidad:"
+
+#: 04060119.xhp#par_id3154636.198.help.text
+msgid "<item type=\"input\">=CUMPRINC_ADD(0.0075;360;125000;1;1;0)</item> returns -68.27827"
+msgstr "<item type=\"input\">=PAGO.PRINC.ENTRE_ADD(0,0075;360;125000;1;1;0)</item> da como resultado -68,27827"
+
+#: 04060119.xhp#bm_id3155370.help.text
+msgid "<bookmark_value>calculating; accumulated interests</bookmark_value><bookmark_value>accumulated interests</bookmark_value><bookmark_value>CUMIPMT function</bookmark_value>"
+msgstr "<bookmark_value>calcular;interés acumulado</bookmark_value><bookmark_value>interés acumulado</bookmark_value><bookmark_value>PAGO.INT.ENTRE</bookmark_value>"
+
+#: 04060119.xhp#hd_id3155370.266.help.text
+msgid "CUMIPMT"
+msgstr "PAGO.INT.ENTRE"
+
+#: 04060119.xhp#par_id3158411.267.help.text
+msgid "<ahelp hid=\"HID_FUNC_KUMZINSZ\">Calculates the cumulative interest payments, that is, the total interest, for an investment based on a constant interest rate.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KUMZINSZ\">Calcula los pagos de intereses acumulados, es decir, el interés total, de una inversión, basándose en un tipo de interés constante.</ahelp>"
+
+#: 04060119.xhp#hd_id3155814.268.help.text
+msgctxt "04060119.xhp#hd_id3155814.268.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060119.xhp#par_id3147536.269.help.text
+msgid "CUMIPMT(Rate; NPer; PV; S; E; Type)"
+msgstr "PAGO.INT.ENTRE(Tasa; NPer; VA; S; E; Tipo)"
+
+#: 04060119.xhp#par_id3150475.270.help.text
+msgctxt "04060119.xhp#par_id3150475.270.help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "<emph>Tasa</emph> define el tipo de interés periódico."
+
+#: 04060119.xhp#par_id3153921.271.help.text
+msgctxt "04060119.xhp#par_id3153921.271.help.text"
+msgid "<emph>NPer</emph> is the payment period with the total number of periods. NPER can also be a non-integer value."
+msgstr "El parámetro <emph>NPer</emph> es el período de pago, e indica el número total de períodos. También, «NPer» puede ser un valor no-entero."
+
+#: 04060119.xhp#par_id3153186.272.help.text
+msgctxt "04060119.xhp#par_id3153186.272.help.text"
+msgid "<emph>PV</emph> is the current value in the sequence of payments."
+msgstr "<emph>VA</emph> define el valor actual en la secuencia de pagos."
+
+#: 04060119.xhp#par_id3156259.273.help.text
+msgctxt "04060119.xhp#par_id3156259.273.help.text"
+msgid "<emph>S</emph> is the first period."
+msgstr "<emph>I</emph> es el período inicial."
+
+#: 04060119.xhp#par_id3155990.274.help.text
+msgctxt "04060119.xhp#par_id3155990.274.help.text"
+msgid "<emph>E</emph> is the last period."
+msgstr "<emph>F</emph> es el último período."
+
+#: 04060119.xhp#par_id3149777.275.help.text
+msgctxt "04060119.xhp#par_id3149777.275.help.text"
+msgid "<emph>Type</emph> is the due date of the payment at the beginning or end of each period."
+msgstr "El <emph>Tipo</emph> indica si la fecha de pago vence al principio o al final de cada período."
+
+#: 04060119.xhp#hd_id3153723.276.help.text
+msgctxt "04060119.xhp#hd_id3153723.276.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060119.xhp#par_id3147478.277.help.text
+msgid "What are the interest payments at a yearly interest rate of 5.5 %, a payment period of monthly payments for 2 years and a current cash value of 5,000 currency units? The start period is the 4th and the end period is the 6th period. The payment is due at the beginning of each period."
+msgstr "¿Cuáles son los pagos de intereses con un interés anual de un 5,5%, un período de pago de pagos mensuales durante 2 años y un valor efectivo de 5.000 unidades monetarias? El período de inicio es el 4.º y el período final es el 6.º. La fecha de pago es al comienzo de cada período."
+
+#: 04060119.xhp#par_id3149819.278.help.text
+msgid "<item type=\"input\">=CUMIPMT(5.5%/12;24;5000;4;6;1)</item> = -57.54 currency units. The interest payments for between the 4th and 6th period are 57.54 currency units."
+msgstr "<item type=\"input\">=PAGO.INT.ENTRE(5,5%/12;24;5000;4;6;1)</item> = -57,54 unidades monetarias. Los pagos de intereses entre el 4to y el 6to período son de 57,54 unidades monetarias."
+
+#: 04060119.xhp#bm_id3083280.help.text
+msgid "<bookmark_value>CUMIPMT_ADD function</bookmark_value>"
+msgstr "<bookmark_value>PAGO.INT.ENTRE_ADD</bookmark_value>"
+
+#: 04060119.xhp#hd_id3083280.165.help.text
+msgid "CUMIPMT_ADD"
+msgstr "PAGO.INT.ENTRE_ADD"
+
+#: 04060119.xhp#par_id3152482.166.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_CUMIPMT\">Calculates the accumulated interest for a period.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_CUMIPMT\">Calcula el interés acumulado para un período.</ahelp>"
+
+#: 04060119.xhp#hd_id3149713.167.help.text
+msgctxt "04060119.xhp#hd_id3149713.167.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060119.xhp#par_id3145087.168.help.text
+msgid "CUMIPMT_ADD(Rate; NPer; PV; StartPeriod; EndPeriod; Type)"
+msgstr "PAGO.INT.ENTRE_AGR(Tasa; NPer; VA; IniciodelPeríodo; FindelPeríodo; Tipo)"
+
+#: 04060119.xhp#par_id3149277.169.help.text
+msgctxt "04060119.xhp#par_id3149277.169.help.text"
+msgid "<emph>Rate</emph> is the interest rate for each period."
+msgstr "<emph>Tasa</emph> es el tasa de interés para cada período."
+
+#: 04060119.xhp#par_id3149270.170.help.text
+msgctxt "04060119.xhp#par_id3149270.170.help.text"
+msgid "<emph>NPer</emph> is the total number of payment periods. The rate and NPER must refer to the same unit, and thus both be calculated annually or monthly."
+msgstr "El parámetro <emph>NPer</emph> es el número total de períodos de pago. La tasa y el número de períodos deben referirse a la misma unidad, y calcularse ambas anualmente o mensualmente."
+
+#: 04060119.xhp#par_id3152967.171.help.text
+msgctxt "04060119.xhp#par_id3152967.171.help.text"
+msgid "<emph>PV</emph> is the current value."
+msgstr "<emph>VA</emph> es el valor actual."
+
+#: 04060119.xhp#par_id3156308.172.help.text
+msgctxt "04060119.xhp#par_id3156308.172.help.text"
+msgid "<emph>StartPeriod</emph> is the first payment period for the calculation."
+msgstr "El <emph>PeríodoInicial</emph> indica el primer período de pago para los cálculos."
+
+#: 04060119.xhp#par_id3149453.173.help.text
+msgctxt "04060119.xhp#par_id3149453.173.help.text"
+msgid "<emph>EndPeriod</emph> is the last payment period for the calculation."
+msgstr "El <emph>PeríodoFinal</emph> es el último período de pago para el cálculo."
+
+#: 04060119.xhp#par_id3150962.174.help.text
+msgctxt "04060119.xhp#par_id3150962.174.help.text"
+msgid "<emph>Type</emph> is the maturity of a payment at the end of each period (Type = 0) or at the start of the period (Type = 1)."
+msgstr "El <emph>Tipo</emph> indica el vencimiento del pago: al final de cada período (Tipo = 0) o al principio del período (Tipo = 1)."
+
+#: 04060119.xhp#hd_id3152933.175.help.text
+msgctxt "04060119.xhp#hd_id3152933.175.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060119.xhp#par_id3156324.176.help.text
+msgctxt "04060119.xhp#par_id3156324.176.help.text"
+msgid "The following mortgage loan is taken out on a house:"
+msgstr "Se toma el siguiente préstamo hipotecario para una casa:"
+
+#: 04060119.xhp#par_id3147566.177.help.text
+msgid "Rate: 9.00 per cent per annum (9% / 12 = 0.0075), Duration: 30 years (NPER = 30 * 12 = 360), Pv: 125000 currency units."
+msgstr "Tasa: 9,00 por ciento anual (9% / 12 = 0,0075), Duración: 30 años (NPER = 30 * 12 = 360), Va: 125000 unidades monetarias."
+
+#: 04060119.xhp#par_id3151272.178.help.text
+msgid "How much interest must you pay in the second year of the mortgage (thus from periods 13 to 24)?"
+msgstr "¿Qué cantidad en intereses debe pagar en el segundo año del préstamo hipotecario (o sea, en el periodo 12 a 24?"
+
+#: 04060119.xhp#par_id3156130.179.help.text
+msgid "<item type=\"input\">=CUMIPMT_ADD(0.0075;360;125000;13;24;0)</item> returns -11135.23."
+msgstr "<item type=\"input\">=PAGO.INT.ENTRE_ADD(0,0075;360;125000;13;24;0)</item> da como resultado -11135,23."
+
+#: 04060119.xhp#par_id3150764.180.help.text
+msgid "How much interest must you pay in the first month?"
+msgstr "¿Cuántos intereses deberá pagar en el primer mes?"
+
+#: 04060119.xhp#par_id3146857.181.help.text
+msgid "<item type=\"input\">=CUMIPMT_ADD(0.0075;360;125000;1;1;0)</item> returns -937.50."
+msgstr "<item type=\"input\">=PAGO.INT.ENTRE_AGR(0.0075;360;125000;1;1;0)</item> devuelve -937.50."
+
+#: 04060119.xhp#bm_id3150878.help.text
+msgid "<bookmark_value>PRICE function</bookmark_value><bookmark_value>prices; fixed interest securities</bookmark_value><bookmark_value>sales values;fixed interest securities</bookmark_value>"
+msgstr "<bookmark_value>PRECIO</bookmark_value><bookmark_value>precios; título de interés fijo</bookmark_value><bookmark_value>valores de ventas;títulos de interés fijo</bookmark_value>"
+
+#: 04060119.xhp#hd_id3150878.9.help.text
+msgid "PRICE"
+msgstr "PRECIO"
+
+#: 04060119.xhp#par_id3153210.10.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_PRICE\">Calculates the market value of a fixed interest security with a par value of 100 currency units as a function of the forecast yield.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_PRICE\">Calcula el valor de mercado de un título de interés fijo con un valor nominal de 100 unidades monetarias como función del rendimiento previsto.</ahelp>"
+
+#: 04060119.xhp#hd_id3154646.11.help.text
+msgctxt "04060119.xhp#hd_id3154646.11.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060119.xhp#par_id3152804.12.help.text
+msgid "PRICE(Settlement; Maturity; Rate; Yield; Redemption; Frequency; Basis)"
+msgstr "PRECIO(Constitución; Vencimiento; Tasa; Rédito; Rendimiento; Frecuencia; Base)"
+
+#: 04060119.xhp#par_id3156121.13.help.text
+msgctxt "04060119.xhp#par_id3156121.13.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Liquidación</emph> es la fecha de compra de la seguridad."
+
+#: 04060119.xhp#par_id3149983.14.help.text
+msgctxt "04060119.xhp#par_id3149983.14.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Vencimiento</emph> es la fecha en cuando la seguridad ha cumplido el periodo especificado (vences)."
+
+#: 04060119.xhp#par_id3153755.15.help.text
+msgid "<emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)"
+msgstr "<emph>Tasa</emph> es la tasa nominal anual de interés (tasa de interés del vale)"
+
+#: 04060119.xhp#par_id3155999.16.help.text
+msgctxt "04060119.xhp#par_id3155999.16.help.text"
+msgid "<emph>Yield</emph> is the annual yield of the security."
+msgstr "<emph>Rédito</emph> es la ganancia anual del título."
+
+#: 04060119.xhp#par_id3156114.17.help.text
+msgctxt "04060119.xhp#par_id3156114.17.help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr "<emph>Rendimiento</emph> es el valor de rendimiento por cada 100 unidades monetarias de valor nominal."
+
+#: 04060119.xhp#par_id3155846.18.help.text
+msgctxt "04060119.xhp#par_id3155846.18.help.text"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frecuencia</emph> es el número de pagos de interés al año (1, 2 o 4)."
+
+#: 04060119.xhp#hd_id3153148.19.help.text
+msgctxt "04060119.xhp#hd_id3153148.19.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060119.xhp#par_id3150260.20.help.text
+msgid "A security is purchased on 1999-02-15; the maturity date is 2007-11-15. The nominal rate of interest is 5.75%. The yield is 6.5%. The redemption value is 100 currency units. Interest is paid half-yearly (frequency is 2). With calculation on basis 0, the price is as follows:"
+msgstr "Un seguro es comprado el 15.2.1999; la fecha de vencimiento es el 15.11.2007. El tasa nominal de interés es del 5,75%. El rendimiento es del 6,5%. El valor de rendimiento es de 100 unidades monetarias. El interés se paga semestralmente (la frecuencia es 2). Efectuando el cálculo con base 0, el precio es el siguiente:"
+
+#: 04060119.xhp#par_id3147273.21.help.text
+msgid "=PRICE(\"1999-02-15\"; \"2007-11-15\"; 0.0575; 0.065; 100; 2; 0) returns 95.04287."
+msgstr "=PRECIO(\"1999-02-15\"; \"2007-11-15\"; 0,0575; 0,065; 100; 2; 0) devulve 95,04287."
+
+#: 04060119.xhp#bm_id3151297.help.text
+msgid "<bookmark_value>PRICEDISC function</bookmark_value><bookmark_value>prices;non-interest-bearing securities</bookmark_value><bookmark_value>sales values;non-interest-bearing securities</bookmark_value>"
+msgstr "<bookmark_value>PRECIO.DESCUENTO</bookmark_value><bookmark_value>precios;títulos sin interés asociado</bookmark_value><bookmark_value>valores de ventas;títulos sin interés asociado</bookmark_value>"
+
+#: 04060119.xhp#hd_id3151297.22.help.text
+msgid "PRICEDISC"
+msgstr "PRECIO.DESCUENTO"
+
+#: 04060119.xhp#par_id3155100.23.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_PRICEDISC\">Calculates the price per 100 currency units of par value of a non-interest- bearing security.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_PRICEDISC\">Calcula el precio por 100 unidades monetarias de valor nominal de un título sin interés asociado.</ahelp>"
+
+#: 04060119.xhp#hd_id3149294.24.help.text
+msgctxt "04060119.xhp#hd_id3149294.24.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060119.xhp#par_id3146084.25.help.text
+msgid "PRICEDISC(Settlement; Maturity; Discount; Redemption; Basis)"
+msgstr "PRECIO.DESCUENTO(Liquidación; Vencimiento; Descuento; Redención; Base)"
+
+#: 04060119.xhp#par_id3159179.26.help.text
+msgctxt "04060119.xhp#par_id3159179.26.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Liquidación</emph> es la fecha de compra de la seguridad."
+
+#: 04060119.xhp#par_id3154304.27.help.text
+msgctxt "04060119.xhp#par_id3154304.27.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Vencimiento</emph> es la fecha en cuando la seguridad ha cumplido el periodo especificado (vences)."
+
+#: 04060119.xhp#par_id3156014.28.help.text
+msgid "<emph>Discount</emph> is the discount of a security as a percentage."
+msgstr "<emph>Descuento</emph> es el descuento de un título expresado en porcentaje."
+
+#: 04060119.xhp#par_id3147489.29.help.text
+msgctxt "04060119.xhp#par_id3147489.29.help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr "<emph>Redención</emph> es el valor de redención del seguro por cada 100 unidades monetarias de valor nominal."
+
+#: 04060119.xhp#hd_id3152794.30.help.text
+msgctxt "04060119.xhp#hd_id3152794.30.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060119.xhp#par_id3149198.31.help.text
+msgid "A security is purchased on 1999-02-15; the maturity date is 1999-03-01. Discount in per cent is 5.25%. The redemption value is 100. When calculating on basis 2 the price discount is as follows:"
+msgstr "Un seguro es comprado el 15/02/1999; la fecha de vencimiento es el 01/03/1999 El descuento en porcentaje es de 5,25%. El valor de devolución es 100. Realizando el cálculo en base 2, el precio descuento será:"
+
+#: 04060119.xhp#par_id3151178.32.help.text
+msgid "=PRICEDISC(\"1999-02-15\"; \"1999-03-01\"; 0.0525; 100; 2) returns 99.79583."
+msgstr "=PRECIO.DESCUENTO(\"15/02/1999\"; \"01/03/1999\"; 0,0525; 100; 2) da como resultado 99,79583."
+
+#: 04060119.xhp#bm_id3154693.help.text
+msgid "<bookmark_value>PRICEMAT function</bookmark_value><bookmark_value>prices;interest-bearing securities</bookmark_value>"
+msgstr "<bookmark_value>PRECIO.VENCIMIENTO</bookmark_value><bookmark_value>precios;título con interés asociado</bookmark_value>"
+
+#: 04060119.xhp#hd_id3154693.33.help.text
+msgid "PRICEMAT"
+msgstr "PRECIO.VENCIMIENTO"
+
+#: 04060119.xhp#par_id3153906.34.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_PRICEMAT\">Calculates the price per 100 currency units of par value of a security, that pays interest on the maturity date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_PRICEMAT\">Calcula el precio de 100 unidades monetarias por valor de un título, la fecha de pago de interés es la fecha de vencimiento.</ahelp>"
+
+#: 04060119.xhp#hd_id3154933.35.help.text
+msgctxt "04060119.xhp#hd_id3154933.35.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060119.xhp#par_id3155393.36.help.text
+msgid "PRICEMAT(Settlement; Maturity; Issue; Rate; Yield; Basis)"
+msgstr "PRECIO.VENCIMIENTO(Constitución; Vencimiento; Emisión; Tasa; Rédito; Base)"
+
+#: 04060119.xhp#par_id3153102.37.help.text
+msgctxt "04060119.xhp#par_id3153102.37.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Liquidación</emph> es la fecha de compra de la seguridad."
+
+#: 04060119.xhp#par_id3150530.38.help.text
+msgctxt "04060119.xhp#par_id3150530.38.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Vencimiento</emph> es la fecha en cuando la seguridad ha cumplido el periodo especificado (vences)."
+
+#: 04060119.xhp#par_id3149903.39.help.text
+msgctxt "04060119.xhp#par_id3149903.39.help.text"
+msgid "<emph>Issue</emph> is the date of issue of the security."
+msgstr "<emph>Emisión</emph> es la fecha de emisión del seguro. "
+
+#: 04060119.xhp#par_id3148828.40.help.text
+msgctxt "04060119.xhp#par_id3148828.40.help.text"
+msgid "<emph>Rate</emph> is the interest rate of the security on the issue date."
+msgstr "La <emph>Tasa</emph> indica la tasa de interés del depósito en la fecha de emisión."
+
+#: 04060119.xhp#par_id3146993.41.help.text
+msgctxt "04060119.xhp#par_id3146993.41.help.text"
+msgid "<emph>Yield</emph> is the annual yield of the security."
+msgstr "<emph>Rendimeinto</emph> es la ganancia anual de la seguridad."
+
+#: 04060119.xhp#hd_id3150507.42.help.text
+msgctxt "04060119.xhp#hd_id3150507.42.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060119.xhp#par_id3154289.43.help.text
+msgid "Settlement date: February 15 1999, maturity date: April 13 1999, issue date: November 11 1998. Interest rate: 6.1 per cent, yield: 6.1 per cent, basis: 30/360 = 0."
+msgstr "Fecha de liquidación: 15.02.1999, fecha de vencimiento: 13.04.1999, fecha de emisión: 11.11.1998. Tipo de interés: 6,1 por ciento, rédito: 6,1 por ciento, base: 30/360 = 0."
+
+#: 04060119.xhp#par_id3154905.44.help.text
+msgid "The price is calculated as follows:"
+msgstr "El precio se calcula de esta forma:"
+
+#: 04060119.xhp#par_id3158409.45.help.text
+msgid "=PRICEMAT(\"1999-02-15\";\"1999-04-13\";\"1998-11-11\"; 0.061; 0.061;0) returns 99.98449888."
+msgstr "=PRECIO.VENCIMIENTO(\"1999-02-15\";\"1999-04-13\";\"1998-11-11\"; 0.061; 0.061;0) devuelve 99.98449888."
+
+#: 04060119.xhp#bm_id3148448.help.text
+msgid "<bookmark_value>calculating; durations</bookmark_value><bookmark_value>durations;calculating</bookmark_value><bookmark_value>DURATION function</bookmark_value>"
+msgstr "<bookmark_value>calcular; duración</bookmark_value><bookmark_value>duración;calcular</bookmark_value><bookmark_value>DURACIÓN</bookmark_value>"
+
+#: 04060119.xhp#hd_id3148448.280.help.text
+msgid "DURATION"
+msgstr "PLAZO"
+
+#: 04060119.xhp#par_id3153056.281.help.text
+msgid "<ahelp hid=\"HID_FUNC_LAUFZEIT\">Calculates the number of periods required by an investment to attain the desired value.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LAUFZEIT\">Calcula la cantidad de períodos que requiere una inversión para alcanzar el valor deseado.</ahelp>"
+
+#: 04060119.xhp#hd_id3145421.282.help.text
+msgctxt "04060119.xhp#hd_id3145421.282.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060119.xhp#par_id3148933.283.help.text
+msgid "DURATION(Rate; PV; FV)"
+msgstr "PLAZO(Tasa; Va; Vf)"
+
+#: 04060119.xhp#par_id3148801.284.help.text
+msgid "<emph>Rate</emph> is a constant. The interest rate is to be calculated for the entire duration (duration period). The interest rate per period is calculated by dividing the interest rate by the calculated duration. The internal rate for an annuity is to be entered as Rate/12."
+msgstr "La <emph>Tasa</emph> es una constante. La tasa de interés se calcula para todo el período de duración. La tasa de interés por período se calcula dividiendo la tasa de interés por la duración calculada. La tasa interna para una anualidad se escribe como Tasa/12."
+
+#: 04060119.xhp#par_id3147239.285.help.text
+msgctxt "04060119.xhp#par_id3147239.285.help.text"
+msgid "<emph>PV</emph> is the present (current) value. The cash value is the deposit of cash or the current cash value of an allowance in kind. As a deposit value a positive value must be entered; the deposit must not be 0 or <0."
+msgstr "<emph>VA</emph> es el valor actual. El valor en efectivo es el depósito de efectivo o el valor en efectivo actual de un subsidio en beneficio. Como un valor de depósito un valor positivo debe ser introducido; el depósito no debe ser 0 o <0. "
+
+#: 04060119.xhp#par_id3147515.286.help.text
+msgid "<emph>FV</emph> is the expected value. The future value determines the desired (future) value of the deposit."
+msgstr "<emph>VF</emph> es el valor esperado. El valor futuro determina el valor deseado (futuro) del depósito."
+
+#: 04060119.xhp#hd_id3153579.287.help.text
+msgctxt "04060119.xhp#hd_id3153579.287.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060119.xhp#par_id3148480.288.help.text
+msgid "At an interest rate of 4.75%, a cash value of 25,000 currency units and a future value of 1,000,000 currency units, a duration of 79.49 payment periods is returned. The periodic payment is the resulting quotient from the future value and the duration, in this case 1,000,000/79.49=12,850.20."
+msgstr "Con una tasa de interés del 4,75 %, un valor actual de 25.000 unidades monetarias y un valor esperado de 1.000.000 unidades monetarias, resulta un plazo de 79,49 períodos de pago. El pago periódico resulta de dividir el valor futuro por el plazo, es decir: 1.000.000/79,49=12.580,20."
+
+#: 04060119.xhp#bm_id3148912.help.text
+msgid "<bookmark_value>calculating;linear depreciations</bookmark_value><bookmark_value>depreciations;linear</bookmark_value><bookmark_value>linear depreciations</bookmark_value><bookmark_value>straight-line depreciations</bookmark_value><bookmark_value>SLN function</bookmark_value>"
+msgstr "<bookmark_value>calcular;depreciación lineal</bookmark_value><bookmark_value>depreciaciones;lineales</bookmark_value><bookmark_value>depreciaciones lineales</bookmark_value><bookmark_value>depreciaciones lineales directas</bookmark_value><bookmark_value>SLN</bookmark_value>"
+
+#: 04060119.xhp#hd_id3148912.290.help.text
+msgid "SLN"
+msgstr "SLN"
+
+#: 04060119.xhp#par_id3149154.291.help.text
+msgid "<ahelp hid=\"HID_FUNC_LIA\">Returns the straight-line depreciation of an asset for one period.</ahelp>The amount of the depreciation is constant during the depreciation period."
+msgstr "<ahelp hid=\"HID_FUNC_LIA\">Calcula la depreciación lineal de un activo en un determinado período.</ahelp>El importe de la depreciación es el mismo durante todo el período de depreciación."
+
+#: 04060119.xhp#hd_id3153240.292.help.text
+msgctxt "04060119.xhp#hd_id3153240.292.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060119.xhp#par_id3166456.293.help.text
+msgid "SLN(Cost; Salvage; Life)"
+msgstr "SLN(Costo; Valor de salvamento; Vida)"
+
+#: 04060119.xhp#par_id3146955.294.help.text
+msgid "<emph>Cost</emph> is the initial cost of an asset."
+msgstr "<emph>Costo</emph> es el costo inicial del activo."
+
+#: 04060119.xhp#par_id3149796.295.help.text
+msgctxt "04060119.xhp#par_id3149796.295.help.text"
+msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
+msgstr "<emph>Valor de salvamento</emph> es el valor residual del bien tras la amortización."
+
+#: 04060119.xhp#par_id3166444.296.help.text
+msgid "<emph>Life</emph> is the depreciation period determining the number of periods in the depreciation of the asset."
+msgstr "<emph>Vida</emph> el período de depreciación determinando el número de períodos en la depreciación del activo."
+
+#: 04060119.xhp#hd_id3155579.297.help.text
+msgctxt "04060119.xhp#hd_id3155579.297.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060119.xhp#par_id3154098.298.help.text
+msgid "Office equipment with an initial cost of 50,000 currency units is to be depreciated over 7 years. The value at the end of the depreciation is to be 3,500 currency units."
+msgstr "Se quiere amortizar un equipo de oficina con un precio de compra de 50.000 unidades monetarias en 7 años. El valor residual al final de la amortización se estima en 3.500 unidades monetarias."
+
+#: 04060119.xhp#par_id3153390.299.help.text
+msgid "<item type=\"input\">=SLN(50000;3,500;84)</item> = 553.57 currency units. The periodic monthly depreciation of the office equipment is 553.57 currency units."
+msgstr "<item type=\"input\">=SLN(50000;3.500;84)</item> = 553,57 unidades monetarias. La depreciación mensual periódica del equipamiento de oficina es de 553,57 unidades monetarias."
+
+#: 04060119.xhp#bm_id3153739.help.text
+msgid "<bookmark_value>MDURATION function</bookmark_value><bookmark_value>Macauley duration</bookmark_value>"
+msgstr "<bookmark_value>DURACION.MODIF</bookmark_value><bookmark_value>duración Macauley</bookmark_value>"
+
+#: 04060119.xhp#hd_id3153739.217.help.text
+msgid "MDURATION"
+msgstr "DURACION.MODIF"
+
+#: 04060119.xhp#par_id3149923.218.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_MDURATION\">Calculates the modified Macauley duration of a fixed interest security in years.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_MDURATION\">Calcula la duración Macauley modificada, en años, de un título de interés fijo.</ahelp>"
+
+#: 04060119.xhp#hd_id3149964.219.help.text
+msgctxt "04060119.xhp#hd_id3149964.219.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060119.xhp#par_id3148987.220.help.text
+msgid "MDURATION(Settlement; Maturity; Coupon; Yield; Frequency; Basis)"
+msgstr "DURACION.MODIF(\"Liquidación\"; \"Vencimiento\"; Cupón; Rendimiento; Frecuencia; Bases)"
+
+#: 04060119.xhp#par_id3148619.221.help.text
+msgctxt "04060119.xhp#par_id3148619.221.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Liquidación</emph> es la fecha de compra de la seguridad."
+
+#: 04060119.xhp#par_id3149805.222.help.text
+msgctxt "04060119.xhp#par_id3149805.222.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Vencimiento</emph> es la fecha en cuando la seguridad ha cumplido el periodo especificado (vences)."
+
+#: 04060119.xhp#par_id3154338.223.help.text
+msgid "<emph>Coupon</emph> is the annual nominal rate of interest (coupon interest rate)"
+msgstr "<emph>Cupón</emph> es la tasa anual de interés de cupón (tasa nominal de interés)"
+
+#: 04060119.xhp#par_id3148466.224.help.text
+msgctxt "04060119.xhp#par_id3148466.224.help.text"
+msgid "<emph>Yield</emph> is the annual yield of the security."
+msgstr "<emph>Rendimeinto</emph> es la ganancia anual de la seguridad."
+
+#: 04060119.xhp#par_id3149423.225.help.text
+msgctxt "04060119.xhp#par_id3149423.225.help.text"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frecuencia</emph> es el número de pagos de interés al año (1, 2 o 4)."
+
+#: 04060119.xhp#hd_id3154602.226.help.text
+msgctxt "04060119.xhp#hd_id3154602.226.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060119.xhp#par_id3148652.227.help.text
+msgid "A security is purchased on 2001-01-01; the maturity date is 2006-01-01. The nominal rate of interest is 8%. The yield is 9.0%. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how long is the modified duration?"
+msgstr "Un seguro es comprado el 1.1.2001; la fecha de vencimiento es el 1.1.2006. La tasa de interés nominal es 8%. El crédito asciende a 9,0%. Los intereses se pagan cada medio año (Frecuencia es 2). Usando el cálculo diario de interés (base 3) ¿Cuál es la duración modificada?"
+
+#: 04060119.xhp#par_id3145378.228.help.text
+msgid "=MDURATION(\"2001-01-01\"; \"2006-01-01\"; 0.08; 0.09; 2; 3) returns 4.02 years."
+msgstr "=DURACION.MODIF(\"2001-01-01\"; \"2006-01-01\"; 0.08; 0.09; 2; 3) devuelve 4,02 años."
+
+#: 04060119.xhp#bm_id3149242.help.text
+msgid "<bookmark_value>calculating;net present values</bookmark_value><bookmark_value>net present values</bookmark_value><bookmark_value>NPV function</bookmark_value>"
+msgstr "<bookmark_value>calcular;valor de capital</bookmark_value><bookmark_value>valor de capital</bookmark_value><bookmark_value>VNA</bookmark_value>"
+
+#: 04060119.xhp#hd_id3149242.301.help.text
+msgid "NPV"
+msgstr "VNA"
+
+#: 04060119.xhp#par_id3145308.302.help.text
+msgid "<ahelp hid=\"HID_FUNC_NBW\">Returns the present value of an investment based on a series of periodic cash flows and a discount rate. To get the net present value, subtract the cost of the project (the initial cash flow at time zero) from the returned value.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NBW\">Calcula el valor del capital de una inversión; para ello, tiene en cuenta el factor de descuento con pagos periódicos (valor neto efectivo). Para obtener el valor neto presente, reste el costo del proyecto (el efectivo inicial al comienzo) del valor de retorno.</ahelp>"
+
+#: 04060119.xhp#hd_id3149937.303.help.text
+msgctxt "04060119.xhp#hd_id3149937.303.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060119.xhp#par_id3153321.304.help.text
+msgid "NPV(Rate; Value1; Value2; ...)"
+msgstr "VNA(Rate; Value1; Value2; ...)"
+
+#: 04060119.xhp#par_id3150630.305.help.text
+msgid "<emph>Rate</emph> is the discount rate for a period."
+msgstr "<emph>Tasa</emph> es el tipo de interés por período."
+
+#: 04060119.xhp#par_id3150427.306.help.text
+msgid "<emph>Value1;...</emph> are up to 30 values, which represent deposits or withdrawals."
+msgstr "<emph>Valor1;...</emph> hasta 30 valores, los cuales representan depósitos o retiros."
+
+#: 04060119.xhp#hd_id3153538.307.help.text
+msgctxt "04060119.xhp#hd_id3153538.307.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060119.xhp#par_id3154800.308.help.text
+msgid "What is the net present value of periodic payments of 10, 20 and 30 currency units with a discount rate of 8.75%. At time zero the costs were payed as -40 currency units."
+msgstr "¿Cuál es el valor neto presente de pagos periódicos de 10, 20 y 30 unidades monetarias con un factor de descuento del 8,75%? En el momento inicial, los costos se pagaban como -40 unidades monetarias."
+
+#: 04060119.xhp#par_id3143270.309.help.text
+msgid "<item type=\"input\">=NPV(8.75%;10;20;30)</item> = 49.43 currency units. The net present value is the returned value minus the initial costs of 40 currency units, therefore 9.43 currency units."
+msgstr "<item type=\"input\">=VNA(8.75%;10;20;30)</item> = 49.43 unidades de moneda. El valor neto es el valor devuelto, menos los costos iniciales de 40 unidades de moneda, por tanto, 9,43 unidades de moneda."
+
+#: 04060119.xhp#bm_id3149484.help.text
+msgid "<bookmark_value>calculating;nominal interest rates</bookmark_value><bookmark_value>nominal interest rates</bookmark_value><bookmark_value>NOMINAL function</bookmark_value>"
+msgstr "<bookmark_value>calcular;interés nominal</bookmark_value><bookmark_value>interés nominal</bookmark_value><bookmark_value>TASA.NOMINAL</bookmark_value>"
+
+#: 04060119.xhp#hd_id3149484.311.help.text
+msgid "NOMINAL"
+msgstr "TASA.NOMINAL"
+
+#: 04060119.xhp#par_id3149596.312.help.text
+msgid "<ahelp hid=\"HID_FUNC_NOMINAL\">Calculates the yearly nominal interest rate, given the effective rate and the number of compounding periods per year.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NOMINAL\">Calcula la tasa de interés nominal anual respecto a un interés efectivo y el número de períodos al año.</ahelp>"
+
+#: 04060119.xhp#hd_id3151252.313.help.text
+msgctxt "04060119.xhp#hd_id3151252.313.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060119.xhp#par_id3152769.314.help.text
+msgid "NOMINAL(EffectiveRate; NPerY)"
+msgstr "TASA.NOMINAL(Tasa_Efectiva;NPerA)"
+
+#: 04060119.xhp#par_id3147521.315.help.text
+msgid "<emph>EffectiveRate</emph> is the effective interest rate"
+msgstr "<emph>Tasa efectiva</emph> es la tase de interés efectiva."
+
+#: 04060119.xhp#par_id3156334.316.help.text
+msgid "<emph>NPerY</emph> is the number of periodic interest payments per year."
+msgstr "<emph>Período</emph> es el número de pagos de intereses por período por año."
+
+#: 04060119.xhp#hd_id3154473.317.help.text
+msgctxt "04060119.xhp#hd_id3154473.317.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060119.xhp#par_id3147091.318.help.text
+msgid "What is the nominal interest per year for an effective interest rate of 13.5% if twelve payments are made per year."
+msgstr "¿A cuánto asciende el interés nominal anual respecto a un interés efectivo del 13,5 % si han de realizarse doce pagos de intereses por año?"
+
+#: 04060119.xhp#par_id3154831.319.help.text
+msgid "<item type=\"input\">=NOMINAL(13.5%;12)</item> = 12.73%. The nominal interest rate per year is 12.73%."
+msgstr "<item type=\"input\">=TASA.NOMINAL(13,5%;12)</item> = 12,73%. La tasa nominal anual de interés es de 12,73%."
+
+#: 04060119.xhp#bm_id3155123.help.text
+msgid "<bookmark_value>NOMINAL_ADD function</bookmark_value>"
+msgstr "<bookmark_value>TASA.NOMINAL_ADD</bookmark_value>"
+
+#: 04060119.xhp#hd_id3155123.229.help.text
+msgid "NOMINAL_ADD"
+msgstr "TASA.NOMINAL_ADD"
+
+#: 04060119.xhp#par_id3148671.230.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_NOMINAL\">Calculates the annual nominal rate of interest on the basis of the effective rate and the number of interest payments per annum.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_NOMINAL\">Calcula el tipo de interés nominal anual a partir de la tasa efectiva y el número de pagos de intereses por año.</ahelp>"
+
+#: 04060119.xhp#hd_id3155611.231.help.text
+msgctxt "04060119.xhp#hd_id3155611.231.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060119.xhp#par_id3156157.232.help.text
+msgid "NOMINAL_ADD(EffectiveRate; NPerY)"
+msgstr "TASA.NOMINAL_ADD(Tasa_Efectiva; NPerA)"
+
+#: 04060119.xhp#par_id3153777.233.help.text
+msgid "<emph>EffectiveRate</emph> is the effective annual rate of interest."
+msgstr "<emph>Tasa_Efectiva</emph> es la tasa de interés efectiva anual."
+
+#: 04060119.xhp#par_id3150409.234.help.text
+msgid "<emph>NPerY</emph> the number of interest payments per year."
+msgstr "<emph>Período</emph> es el número de pagos de intereses por año."
+
+#: 04060119.xhp#hd_id3146789.235.help.text
+msgctxt "04060119.xhp#hd_id3146789.235.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060119.xhp#par_id3145777.236.help.text
+msgid "What is the nominal rate of interest for a 5.3543% effective rate of interest and quarterly payment."
+msgstr "¿Qué interés nominal resulta de un interés efectivo del 5,3543% y pago trimestral?"
+
+#: 04060119.xhp#par_id3156146.237.help.text
+msgid "<item type=\"input\">=NOMINAL_ADD(5.3543%;4)</item> returns 0.0525 or 5.25%."
+msgstr "<item type=\"input\">=TASA.NOMINAL_ADD(5.3543%;4)</item> devuelve 0.0525 or 5.25%."
+
+#: 04060119.xhp#bm_id3159087.help.text
+msgid "<bookmark_value>DOLLARFR function</bookmark_value><bookmark_value>converting;decimal fractions, into mixed decimal fractions</bookmark_value>"
+msgstr "<bookmark_value>MONEDA.FRAC</bookmark_value><bookmark_value>convertir;fracciones decimales, en fracciones decimales mixtas</bookmark_value>"
+
+#: 04060119.xhp#hd_id3159087.208.help.text
+msgid "DOLLARFR"
+msgstr "MONEDA.FRAC"
+
+#: 04060119.xhp#par_id3150593.209.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_DOLLARFR\">Converts a quotation that has been given as a decimal number into a mixed decimal fraction.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DOLLARFR\">Convierte una cotización con decimales en una fracción decimal mixta.</ahelp>"
+
+#: 04060119.xhp#hd_id3151106.210.help.text
+msgctxt "04060119.xhp#hd_id3151106.210.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060119.xhp#par_id3152959.211.help.text
+msgid "DOLLARFR(DecimalDollar; Fraction)"
+msgstr "MONEDA.FRAC(MonedaDecimal; Fracción)"
+
+#: 04060119.xhp#par_id3149558.212.help.text
+msgid "<emph>DecimalDollar</emph> is a decimal number."
+msgstr "El parámetro <emph>MonedaDecimal</emph> es un número decimal."
+
+#: 04060119.xhp#par_id3153672.213.help.text
+msgctxt "04060119.xhp#par_id3153672.213.help.text"
+msgid "<emph>Fraction</emph> is a whole number that is used as the denominator of the decimal fraction."
+msgstr "La <emph>Fracción</emph> es un número entero que se usa como denominador de la fracción decimal."
+
+#: 04060119.xhp#hd_id3156274.214.help.text
+msgctxt "04060119.xhp#hd_id3156274.214.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060119.xhp#par_id3153795.215.help.text
+msgid "<item type=\"input\">=DOLLARFR(1.125;16)</item> converts into sixteenths. The result is 1.02 for 1 plus 2/16."
+msgstr "<item type=\"input\">=MONEDA.FRAC(1,125;16)</item> convierte a dieciseisavos. El resultado es 1,02 que significa 1 y 2/16."
+
+#: 04060119.xhp#par_id3150995.216.help.text
+msgid "<item type=\"input\">=DOLLARFR(1.125;8)</item> converts into eighths. The result is 1.1 for 1 plus 1/8."
+msgstr "<item type=\"input\">=MONEDA.FRAC(1,125;8)</item> convierte a octavos. El resultado es 1,1 para indicar 1 y 1/8."
+
+#: 04060119.xhp#bm_id3154671.help.text
+msgid "<bookmark_value>fractions; converting</bookmark_value><bookmark_value>converting;decimal fractions, into decimal numbers</bookmark_value><bookmark_value>DOLLARDE function</bookmark_value>"
+msgstr "<bookmark_value>fracciones; convertir</bookmark_value><bookmark_value>convertir;fracciones decimales, en números decimales</bookmark_value><bookmark_value>MONEDA.DEC</bookmark_value>"
+
+#: 04060119.xhp#hd_id3154671.199.help.text
+msgid "DOLLARDE"
+msgstr "MONEDA.DEC"
+
+#: 04060119.xhp#par_id3154418.200.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_DOLLARDE\">Converts a quotation that has been given as a decimal fraction into a decimal number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DOLLARDE\">Convierte una cotización especificada como fracción decimal en número con decimales.</ahelp>"
+
+#: 04060119.xhp#hd_id3146124.201.help.text
+msgctxt "04060119.xhp#hd_id3146124.201.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060119.xhp#par_id3150348.202.help.text
+msgid "DOLLARDE(FractionalDollar; Fraction)"
+msgstr "MONEDA.DEC(FracciónMonetaria; Fracción)"
+
+#: 04060119.xhp#par_id3154111.203.help.text
+msgid "<emph>FractionalDollar</emph> is a number given as a decimal fraction."
+msgstr "<emph>FracciónMonetaria</emph> es un número dado como fracción decimal."
+
+#: 04060119.xhp#par_id3153695.204.help.text
+msgctxt "04060119.xhp#par_id3153695.204.help.text"
+msgid "<emph>Fraction</emph> is a whole number that is used as the denominator of the decimal fraction."
+msgstr "La <emph>Fracción</emph> es un número entero que se usa como denominador de la fracción decimal."
+
+#: 04060119.xhp#hd_id3153884.205.help.text
+msgctxt "04060119.xhp#hd_id3153884.205.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060119.xhp#par_id3150941.206.help.text
+msgid "<item type=\"input\">=DOLLARDE(1.02;16)</item> stands for 1 and 2/16. This returns 1.125."
+msgstr "<item type=\"input\">=MONEDA.DEC(1,02;16)</item> representa a 1 y 2/16. Da como resultado 1,125."
+
+#: 04060119.xhp#par_id3150830.207.help.text
+msgid "<item type=\"input\">=DOLLARDE(1.1;8)</item> stands for 1 and 1/8. This returns 1.125."
+msgstr "<item type=\"input\">=MONEDA.DEC(1,1;8)</item> representa a 1 y 1/8. Da como resultado 1,125."
+
+#: 04060119.xhp#bm_id3148974.help.text
+msgid "<bookmark_value>calculating;modified internal rates of return</bookmark_value><bookmark_value>modified internal rates of return</bookmark_value><bookmark_value>MIRR function</bookmark_value><bookmark_value>internal rates of return;modified</bookmark_value>"
+msgstr "<bookmark_value>calcular;interés interno modificado</bookmark_value><bookmark_value>interés interno modificado</bookmark_value><bookmark_value>MIRR</bookmark_value><bookmark_value>interés interno;modificado</bookmark_value>"
+
+#: 04060119.xhp#hd_id3148974.321.help.text
+msgid "MIRR"
+msgstr "MIRR"
+
+#: 04060119.xhp#par_id3155497.322.help.text
+msgid "<ahelp hid=\"HID_FUNC_QIKV\">Calculates the modified internal rate of return of a series of investments.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_QIKV\">Calcula el interés interno modificado de una serie de inversiones.</ahelp>"
+
+#: 04060119.xhp#hd_id3154354.323.help.text
+msgctxt "04060119.xhp#hd_id3154354.323.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060119.xhp#par_id3148399.324.help.text
+msgid "MIRR(Values; Investment; ReinvestRate)"
+msgstr "MIRR(Valores; Inversiones; Tasa_reinversión)"
+
+#: 04060119.xhp#par_id3155896.325.help.text
+msgid "<emph>Values</emph> corresponds to the array or the cell reference for cells whose content corresponds to the payments."
+msgstr "Los <emph>Valores</emph> corresponden a la matriz o referencia de celda de aquellas celdas cuyo contenido corresponde a los pagos."
+
+#: 04060119.xhp#par_id3149998.326.help.text
+msgid "<emph>Investment</emph> is the rate of interest of the investments (the negative values of the array)"
+msgstr "La <emph>Inversión</emph> es la tasa de interés de las inversiones (los valores negativos de la matriz)."
+
+#: 04060119.xhp#par_id3159408.327.help.text
+msgid "<emph>ReinvestRate</emph>:the rate of interest of the reinvestment (the positive values of the array)"
+msgstr "<emph>TasaReinversión</emph>: la tasa de intereses de la reinversión (los valores positivos de la matríz"
+
+#: 04060119.xhp#hd_id3154714.328.help.text
+msgctxt "04060119.xhp#hd_id3154714.328.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060119.xhp#par_id3147352.329.help.text
+msgid "Assuming a cell content of A1 = <item type=\"input\">-5</item>, A2 = <item type=\"input\">10</item>, A3 = <item type=\"input\">15</item>, and A4 = <item type=\"input\">8</item>, and an investment value of 0.5 and a reinvestment value of 0.1, the result is 94.16%."
+msgstr "Assuming a cell content of A1 = <item type=\"input\">-5</item>, A2 = <item type=\"input\">10</item>, A3 = <item type=\"input\">15</item>, y A4 = <item type=\"input\">8</item>, y un valor de inversión de 0,5 y un valor de 0,1 reinversión, el resultado es 94,16%."
+
+#: 04060119.xhp#bm_id3149323.help.text
+msgid "<bookmark_value>YIELD function</bookmark_value><bookmark_value>rates of return;securities</bookmark_value><bookmark_value>yields, see also rates of return</bookmark_value>"
+msgstr "<bookmark_value>RENDTO</bookmark_value><bookmark_value>interés;títulos</bookmark_value><bookmark_value>rendimiento, consulte también intereses</bookmark_value>"
+
+#: 04060119.xhp#hd_id3149323.129.help.text
+msgid "YIELD"
+msgstr "RENDTO"
+
+#: 04060119.xhp#par_id3150643.130.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_YIELD\">Calculates the yield of a security.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_YIELD\">Calcula el rendimiento de un título.</ahelp>"
+
+#: 04060119.xhp#hd_id3149344.131.help.text
+msgctxt "04060119.xhp#hd_id3149344.131.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060119.xhp#par_id3149744.132.help.text
+msgid "YIELD(Settlement; Maturity; Rate; Price; Redemption; Frequency; Basis)"
+msgstr "RENDTO(Liquidación; Vencimiento; Tasa; Cotización; Rendimiento; Frecuencia; Base)"
+
+#: 04060119.xhp#par_id3154526.133.help.text
+msgctxt "04060119.xhp#par_id3154526.133.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Liquidación</emph> es la fecha de compra de la seguridad."
+
+#: 04060119.xhp#par_id3153266.134.help.text
+msgctxt "04060119.xhp#par_id3153266.134.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Vencimiento</emph> es la fecha en cuando la seguridad ha cumplido el periodo especificado (vences)."
+
+#: 04060119.xhp#par_id3151284.135.help.text
+msgctxt "04060119.xhp#par_id3151284.135.help.text"
+msgid "<emph>Rate</emph> is the annual rate of interest."
+msgstr "<emph>Tasa</emph> es la tasa anual de interés."
+
+#: 04060119.xhp#par_id3147314.136.help.text
+#, fuzzy
+msgctxt "04060119.xhp#par_id3147314.136.help.text"
+msgid "<emph>Price</emph> is the price (purchase price) of the security per 100 currency units of par value."
+msgstr "<emph>Precio</emph> es el precio de la seguridad (precio adquirido) por cada 100 unidades monetarias de valor nominal."
+
+#: 04060119.xhp#par_id3145156.137.help.text
+msgctxt "04060119.xhp#par_id3145156.137.help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr "<emph>Redención</emph> es el valor de redención del seguro por cada 100 unidades monetarias de valor nominal."
+
+#: 04060119.xhp#par_id3159218.138.help.text
+msgctxt "04060119.xhp#par_id3159218.138.help.text"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frecuencia</emph> es el número de pagos de interés al año (1, 2 o 4)."
+
+#: 04060119.xhp#hd_id3147547.139.help.text
+msgctxt "04060119.xhp#hd_id3147547.139.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060119.xhp#par_id3151214.140.help.text
+msgid "A security is purchased on 1999-02-15. It matures on 2007-11-15. The rate of interest is 5.75%. The price is 95.04287 currency units per 100 units of par value, the redemption value is 100 units. Interest is paid half-yearly (frequency = 2) and the basis is 0. How high is the yield?"
+msgstr "Un seguro es comprado el 15.2.1999. El vencimiento es el 15.11.2007. La tasa de interés es 5,75%. La precio es 95,04287 unidades monetarias por 100 unidades de valor nominal, el valor de devolución es de 100 unidades. Los intereses se pagarán cada medio año (Frecuencia = 2) y la base es 0. ¿A cuánto asciende el rendimiento?"
+
+#: 04060119.xhp#par_id3154194.141.help.text
+msgid "=YIELD(\"1999-02-15\"; \"2007-11-15\"; 0.0575 ;95.04287; 100; 2; 0) returns 0.065 or 6.50 per cent."
+msgstr "=RENDTO(\"15/02/1999\"; \"15/11/2007\"; 0,0575; 95,04287; 100; 2; 0) da como resultado 0,065 o 6,50 por ciento."
+
+#: 04060119.xhp#bm_id3150100.help.text
+msgid "<bookmark_value>YIELDDISC function</bookmark_value><bookmark_value>rates of return;non-interest-bearing securities</bookmark_value>"
+msgstr "<bookmark_value>RENDTO.DESC</bookmark_value><bookmark_value>intereses;títulos sin interés asociado</bookmark_value>"
+
+#: 04060119.xhp#hd_id3150100.142.help.text
+msgid "YIELDDISC"
+msgstr "RENDTO.DESC"
+
+#: 04060119.xhp#par_id3150486.143.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_YIELDDISC\">Calculates the annual yield of a non-interest-bearing security.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_YIELDDISC\">Calcula el rendimiento anual de un título sin interés asociado.</ahelp>"
+
+#: 04060119.xhp#hd_id3149171.144.help.text
+msgctxt "04060119.xhp#hd_id3149171.144.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060119.xhp#par_id3159191.145.help.text
+msgid "YIELDDISC(Settlement; Maturity; Price; Redemption; Basis)"
+msgstr "RENDTO.DESC(\"Liquidación\"; \"Vencimiento\"; Precio; Redención; Bases)"
+
+#: 04060119.xhp#par_id3150237.146.help.text
+msgctxt "04060119.xhp#par_id3150237.146.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Liquidación</emph> es la fecha de compra de la seguridad."
+
+#: 04060119.xhp#par_id3146924.147.help.text
+msgctxt "04060119.xhp#par_id3146924.147.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Vencimiento</emph> es la fecha en cuando la seguridad ha cumplido el periodo especificado (vences)."
+
+#: 04060119.xhp#par_id3151201.148.help.text
+msgctxt "04060119.xhp#par_id3151201.148.help.text"
+msgid "<emph>Price</emph> is the price (purchase price) of the security per 100 currency units of par value."
+msgstr "<emph>Precio</emph> es el precio (precio de compra) de la seguridad por cada 100 unidades monetarias de valor nominal."
+
+#: 04060119.xhp#par_id3156049.149.help.text
+msgctxt "04060119.xhp#par_id3156049.149.help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr "<emph>Rendimiento</emph> es el valor de rendimiento por cada 100 unidades monetarias de valor nominal."
+
+#: 04060119.xhp#hd_id3154139.150.help.text
+msgctxt "04060119.xhp#hd_id3154139.150.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060119.xhp#par_id3163815.151.help.text
+msgid "A non-interest-bearing security is purchased on 1999-02-15. It matures on 1999-03-01. The price is 99.795 currency units per 100 units of par value, the redemption value is 100 units. The basis is 2. How high is the yield?"
+msgstr "Un seguro que no devenga intereses es comprado el 15.2.1999. El vencimiento será el 1.3.1999. El precio es de 99,795 unidades monetarias por 100 unidades de valor nominal, el valor de devolución es de 100 unidades. La base es 2. ¿A cuánto asciende el rendimiento?"
+
+#: 04060119.xhp#par_id3155187.152.help.text
+msgid "=YIELDDISC(\"1999-02-15\"; \"1999-03-01\"; 99.795; 100; 2) returns 0.052823 or 5.2823 per cent."
+msgstr "=RENDTO.DESC(\"15/02/1999\"; \"01/03/1999\"; 99,795; 100; 2) da como resultado 0,052823 o 5,2823 por ciento."
+
+#: 04060119.xhp#bm_id3155140.help.text
+msgid "<bookmark_value>YIELDMAT function</bookmark_value><bookmark_value>rates of return;securities with interest paid on maturity</bookmark_value>"
+msgstr "<bookmark_value>RENDTO.VENCTO</bookmark_value><bookmark_value>intereses;títulos con intereses que se pagan en la fecha de vencimiento</bookmark_value>"
+
+#: 04060119.xhp#hd_id3155140.153.help.text
+msgid "YIELDMAT"
+msgstr "RENDTO.VENCTO"
+
+#: 04060119.xhp#par_id3151332.154.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_YIELDMAT\">Calculates the annual yield of a security, the interest of which is paid on the date of maturity.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_YIELDMAT\">Calcula el rendimiento anual de un título cuyo interés se paga en la fecha de vencimiento.</ahelp>"
+
+#: 04060119.xhp#hd_id3159100.155.help.text
+msgctxt "04060119.xhp#hd_id3159100.155.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060119.xhp#par_id3159113.156.help.text
+msgid "YIELDMAT(Settlement; Maturity; Issue; Rate; Price; Basis)"
+msgstr "RENDTO.VENCTO(Liquidación; Vencimiento; Emisión; Tasa; Precio; Base)"
+
+#: 04060119.xhp#par_id3149309.157.help.text
+msgctxt "04060119.xhp#par_id3149309.157.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Liquidación</emph> es la fecha de compra de la seguridad."
+
+#: 04060119.xhp#par_id3151381.158.help.text
+msgctxt "04060119.xhp#par_id3151381.158.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Vencimiento</emph> es la fecha en cuando la seguridad ha cumplido el periodo especificado (vences)."
+
+#: 04060119.xhp#par_id3153302.159.help.text
+msgctxt "04060119.xhp#par_id3153302.159.help.text"
+msgid "<emph>Issue</emph> is the date of issue of the security."
+msgstr "<emph>Emisión</emph> es la fecha de emisión del seguro. "
+
+#: 04060119.xhp#par_id3147140.160.help.text
+msgctxt "04060119.xhp#par_id3147140.160.help.text"
+msgid "<emph>Rate</emph> is the interest rate of the security on the issue date."
+msgstr "<emph>Tasa</emph> es el rango de interés del seguro en la fecha de emisión."
+
+#: 04060119.xhp#par_id3151067.161.help.text
+msgctxt "04060119.xhp#par_id3151067.161.help.text"
+msgid "<emph>Price</emph> is the price (purchase price) of the security per 100 currency units of par value."
+msgstr "El <emph>Precio</emph> es el precio (precio de compra) de la seguridad por cada 100 unidades monetarias de valor nominal."
+
+#: 04060119.xhp#hd_id3155342.162.help.text
+msgctxt "04060119.xhp#hd_id3155342.162.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060119.xhp#par_id3163717.163.help.text
+msgid "A security is purchased on 1999-03-15. It matures on 1999-11-03. The issue date was 1998-11-08. The rate of interest is 6.25%, the price is 100.0123 units. The basis is 0. How high is the yield?"
+msgstr "Un seguro es comprado el 15.3.1999. El vencimiento es el 3.11.1999. La fecha de emisión fue el 8.11.1998. La tasa de interés es del 6,25%, el precio son 100,0123 unidades. La base es 0. ¿A cuánto asciende el rendimiento?"
+
+#: 04060119.xhp#par_id3155311.164.help.text
+msgid "=YIELDMAT(\"1999-03-15\"; \"1999-11-03\"; \"1998-11-08\"; 0.0625; 100.0123; 0) returns 0.060954 or 6.0954 per cent."
+msgstr "=RENDTO.VENCTO(\"15/03/1999\"; \"03/11/1999\"; \"08/11/1998\"; 0,0625; 100,0123; 0) da como resultado 0,060954 o 6,0954 por ciento."
+
+#: 04060119.xhp#bm_id3149577.help.text
+msgid "<bookmark_value>calculating;annuities</bookmark_value><bookmark_value>annuities</bookmark_value><bookmark_value>PMT function</bookmark_value>"
+msgstr "<bookmark_value>calcular;anualidades</bookmark_value><bookmark_value>anualidades</bookmark_value><bookmark_value>PAGO</bookmark_value>"
+
+#: 04060119.xhp#hd_id3149577.330.help.text
+msgid "PMT"
+msgstr "PAGO"
+
+#: 04060119.xhp#par_id3148563.331.help.text
+msgid "<ahelp hid=\"HID_FUNC_RMZ\">Returns the periodic payment for an annuity with constant interest rates.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_RMZ\">Calcula los pagos regulares (anualidades) de una inversión con un tipo de interés constante.</ahelp>"
+
+#: 04060119.xhp#hd_id3145257.332.help.text
+msgctxt "04060119.xhp#hd_id3145257.332.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060119.xhp#par_id3147278.333.help.text
+msgid "PMT(Rate; NPer; PV; FV; Type)"
+msgstr "PAGO(Tasa; NPer; Pago; VF; Tipo)"
+
+#: 04060119.xhp#par_id3147291.334.help.text
+msgctxt "04060119.xhp#par_id3147291.334.help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "<emph>Tasa</emph> define el tipo de interés periódico."
+
+#: 04060119.xhp#par_id3148641.335.help.text
+msgid "<emph>NPer</emph> is the number of periods in which annuity is paid."
+msgstr "<emph>NPer</emph> es el número de períodos en los cuales la anualidad es pagada."
+
+#: 04060119.xhp#par_id3156360.336.help.text
+msgctxt "04060119.xhp#par_id3156360.336.help.text"
+msgid "<emph>PV</emph> is the present value (cash value) in a sequence of payments."
+msgstr "<emph>VA</emph> define el valor actual (efectivo) en una secuencia de pagos."
+
+#: 04060119.xhp#par_id3154920.337.help.text
+msgid "<emph>FV</emph> (optional) is the desired value (future value) to be reached at the end of the periodic payments."
+msgstr "<emph>VF</emph> (opcional) define el valor futuro, una vez finalizados los períodos de pago."
+
+#: 04060119.xhp#par_id3156434.338.help.text
+msgid "<emph>Type</emph> (optional) is the due date for the periodic payments. Type=1 is payment at the beginning and Type=0 is payment at the end of each period."
+msgstr "El <emph>Tipo</emph> es la fecha de vencimiento de los pagos periódicos. Cuando el Tipo es 1 indica que el pago es al principio del período, y cuando Tipo es 0 indica que el pago vence al final de cada período."
+
+#: 04060119.xhp#par_idN11645.help.text
+msgctxt "04060119.xhp#par_idN11645.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060119.xhp#hd_id3152358.339.help.text
+msgctxt "04060119.xhp#hd_id3152358.339.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060119.xhp#par_id3154222.340.help.text
+msgid "What are the periodic payments at a yearly interest rate of 1.99% if the payment time is 3 years and the cash value is 25,000 currency units. There are 36 months as 36 payment periods, and the interest rate per payment period is 1.99%/12."
+msgstr "¿Cuáles son los pagos periódicos con un interés anual de 1,99% si el tiempo de pago es de 3 años y el valor efectivo es de 25.000 unidades monetarias? Hay 36 meses como 36 períodos de pago, y el interés por período de pago es de 1,99%/12."
+
+#: 04060119.xhp#par_id3155943.341.help.text
+msgid "<item type=\"input\">=PMT(1.99%/12;36;25000)</item> = -715.96 currency units. The periodic monthly payment is therefore 715.96 currency units."
+msgstr "<item type=\"input\">=PAGO(1,99%/12;36;25000)</item> = -715,96 unidades monetarias. Por lo tanto, el pago mensual periódico es de 715,96 unidades monetarias."
+
+#: 04060119.xhp#bm_id3155799.help.text
+msgid "<bookmark_value>TBILLEQ function</bookmark_value><bookmark_value>treasury bills;annual return</bookmark_value><bookmark_value>annual return on treasury bills</bookmark_value>"
+msgstr "<bookmark_value>LETRA.DE.TES.EQV.A.BONO</bookmark_value><bookmark_value>letras del tesoro;rendimiento anual</bookmark_value><bookmark_value>rendimiento anual de letras del tesoro</bookmark_value>"
+
+#: 04060119.xhp#hd_id3155799.58.help.text
+msgid "TBILLEQ"
+msgstr "LETRA.DE.TES.EQV.A.BONO"
+
+#: 04060119.xhp#par_id3154403.59.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_TBILLEQ\">Calculates the annual return on a treasury bill ().</ahelp> A treasury bill is purchased on the settlement date and sold at the full par value on the maturity date, that must fall within the same year. A discount is deducted from the purchase price."
+msgstr "<ahelp hid=\"HID_AAI_FUNC_TBILLEQ\">Calcula el rendimiento anual de una letra del tesoro ().</ahelp> Una letra del tesoro se adquiere en la fecha de liquidación y se vende, al valor nominal completo, en la fecha de vencimiento, que debe ser del mismo año. Se deduce un descuento del precio de compra."
+
+#: 04060119.xhp#hd_id3155080.60.help.text
+msgctxt "04060119.xhp#hd_id3155080.60.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060119.xhp#par_id3150224.61.help.text
+msgid "TBILLEQ(Settlement; Maturity; Discount)"
+msgstr "LETRA.DE.TES.EQV.A.BONO(Liquidación; Vencimiento; Descuento)"
+
+#: 04060119.xhp#par_id3156190.62.help.text
+msgctxt "04060119.xhp#par_id3156190.62.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Liquidación</emph> es la fecha de compra de la seguridad."
+
+#: 04060119.xhp#par_id3153827.63.help.text
+msgctxt "04060119.xhp#par_id3153827.63.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Vencimiento</emph> es la fecha en cuando la seguridad ha cumplido el periodo especificado (vences)."
+
+#: 04060119.xhp#par_id3150310.64.help.text
+msgid "<emph>Discount</emph> is the percentage discount on acquisition of the security."
+msgstr "<emph>Descuento</emph> es el porcentaje de descuento en la adquisición del seguro."
+
+#: 04060119.xhp#hd_id3150324.65.help.text
+msgctxt "04060119.xhp#hd_id3150324.65.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060119.xhp#par_id3153173.66.help.text
+msgid "Settlement date: March 31 1999, maturity date: June 1 1999, discount: 9.14 per cent."
+msgstr "Fecha de constitución: 31 de marzo de 1999, fecha de vencimiento: 1 de junio de 1999, descuento: 9,14 por ciento."
+
+#: 04060119.xhp#par_id3153520.67.help.text
+msgid "The return on the treasury bill corresponding to a security is worked out as follows:"
+msgstr "El interés de la letra del tesoro correspondiente a un valor se obtiene de esta forma:"
+
+#: 04060119.xhp#par_id3154382.68.help.text
+msgid "=TBILLEQ(\"1999-03-31\";\"1999-06-01\"; 0.0914) returns 0.094151 or 9.4151 per cent."
+msgstr "=LETRA.DE.TES.EQV.A.BONO(\"31/03/1999\"; \"01/06/1999\"; 0,0914) da como resultado 0,094151 o 9,4151 por ciento."
+
+#: 04060119.xhp#bm_id3151032.help.text
+msgid "<bookmark_value>TBILLPRICE function</bookmark_value><bookmark_value>treasury bills;prices</bookmark_value><bookmark_value>prices;treasury bills</bookmark_value>"
+msgstr "<bookmark_value>LETRA.DE.TES.PRECIO</bookmark_value><bookmark_value>letra del tesoro;precios</bookmark_value><bookmark_value>precios;letras del tesoro</bookmark_value>"
+
+#: 04060119.xhp#hd_id3151032.69.help.text
+msgid "TBILLPRICE"
+msgstr "LETRA.DE.TES.PRECIO"
+
+#: 04060119.xhp#par_id3157887.70.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_TBILLPRICE\">Calculates the price of a treasury bill per 100 currency units.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_TBILLPRICE\">Calcula el precio de una letra del tesoro por 100 unidades monetarias.</ahelp>"
+
+#: 04060119.xhp#hd_id3156374.71.help.text
+msgctxt "04060119.xhp#hd_id3156374.71.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060119.xhp#par_id3150284.72.help.text
+msgid "TBILLPRICE(Settlement; Maturity; Discount)"
+msgstr "LETRA.DE.TES.PRECIO(Liquidación; Madurez; Descuento)"
+
+#: 04060119.xhp#par_id3154059.73.help.text
+msgctxt "04060119.xhp#par_id3154059.73.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Liquidación</emph> es la fecha de compra de la seguridad."
+
+#: 04060119.xhp#par_id3154073.74.help.text
+msgctxt "04060119.xhp#par_id3154073.74.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Vencimiento</emph> es la fecha en cuando la seguridad ha cumplido el periodo especificado (vences)."
+
+#: 04060119.xhp#par_id3145765.75.help.text
+msgid "<emph>Discount</emph> is the percentage discount upon acquisition of the security."
+msgstr "<emph>Descuento</emph> es el porcentaje de descuento en la adquisición del seguro."
+
+#: 04060119.xhp#hd_id3153373.76.help.text
+msgctxt "04060119.xhp#hd_id3153373.76.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060119.xhp#par_id3155542.77.help.text
+msgid "Settlement date: March 31 1999, maturity date: June 1 1999, discount: 9 per cent."
+msgstr "Fecha de liquidación: 31 de marzo de 1999, fecha de vencimiento: 1 de junio de 1999, descuento: 9 por ciento."
+
+#: 04060119.xhp#par_id3154578.78.help.text
+msgid "The price of the treasury bill is worked out as follows:"
+msgstr "El precio de la letra del tesoro se obtiene de esta forma:"
+
+#: 04060119.xhp#par_id3154592.79.help.text
+msgid "=TBILLPRICE(\"1999-03-31\";\"1999-06-01\"; 0.09) returns 98.45."
+msgstr "=LETRA.DE.TES.PRECIO(\"31/03/1999\"; \"01/06/1999\"; 0,09) da como resultado 98,45."
+
+#: 04060119.xhp#bm_id3152912.help.text
+msgid "<bookmark_value>TBILLYIELD function</bookmark_value><bookmark_value>treasury bills;rates of return</bookmark_value><bookmark_value>rates of return of treasury bills</bookmark_value>"
+msgstr "<bookmark_value>LETRA.DE.TES.RENDTO</bookmark_value><bookmark_value>letras del tesoro;intereses</bookmark_value><bookmark_value>intereses de letras del tesoro</bookmark_value>"
+
+#: 04060119.xhp#hd_id3152912.80.help.text
+msgid "TBILLYIELD"
+msgstr "LETRA.DE.TES.RENDTO"
+
+#: 04060119.xhp#par_id3145560.81.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_TBILLYIELD\">Calculates the yield of a treasury bill.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_TBILLYIELD\">Calcula el rendimiento de una letra del tesoro.</ahelp>"
+
+#: 04060119.xhp#hd_id3145578.82.help.text
+msgctxt "04060119.xhp#hd_id3145578.82.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060119.xhp#par_id3156077.83.help.text
+msgid "TBILLYIELD(Settlement; Maturity; Price)"
+msgstr "LETRA.DE.TES.RENDTO(Constitución; Vencimiento; Precio)"
+
+#: 04060119.xhp#par_id3156091.84.help.text
+msgctxt "04060119.xhp#par_id3156091.84.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Liquidación</emph> es la fecha de compra de la seguridad."
+
+#: 04060119.xhp#par_id3157856.85.help.text
+msgctxt "04060119.xhp#par_id3157856.85.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Vencimiento</emph> es la fecha en cuando la seguridad ha cumplido el periodo especificado (vences)."
+
+#: 04060119.xhp#par_id3149627.86.help.text
+msgid "<emph>Price</emph> is the price (purchase price) of the treasury bill per 100 currency units of par value."
+msgstr "<emph>Precio</emph> es el precio de la seguridad (precio adquirido) por cada 100 unidades monetarias de valor nominal."
+
+#: 04060119.xhp#hd_id3149642.87.help.text
+msgctxt "04060119.xhp#hd_id3149642.87.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060119.xhp#par_id3145178.88.help.text
+msgid "Settlement date: March 31 1999, maturity date: June 1 1999, price: 98.45 currency units."
+msgstr "Fecha de liquidación: 31 de marzo de 1999, fecha de vencimiento: 1 de junio de 1999, precio: 98,45 unidades de moneda."
+
+#: 04060119.xhp#par_id3145193.89.help.text
+msgid "The yield of the treasury bill is worked out as follows:"
+msgstr "El rédito de la letra se deduce de esta forma:"
+
+#: 04060119.xhp#par_id3148528.90.help.text
+msgid "=TBILLYIELD(\"1999-03-31\";\"1999-06-01\"; 98.45) returns 0.091417 or 9.1417 per cent."
+msgstr "=LETRA.DE.TES.RENDTO(\"1999-03-31\";\"1999-06-01\"; 98,45) devuelve 0,091417 o 9,1417 por ciento."
+
+#: 04060119.xhp#par_id3148546.345.help.text
+msgctxt "04060119.xhp#par_id3148546.345.help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Back to Financial Functions Part One</link>"
+msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Regresar a las funciones financieras, parte 1</link>"
+
+#: 04060119.xhp#par_id3146762.346.help.text
+msgctxt "04060119.xhp#par_id3146762.346.help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Forward to Financial Functions Part Three</link>"
+msgstr "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Pasar a las funciones financieras, parte 3</link>"
+
+#: func_weeknumadd.xhp#tit.help.text
+msgid "WEEKNUM_ADD "
+msgstr "NÚM.SEMANA_ADD"
+
+#: func_weeknumadd.xhp#bm_id3166443.help.text
+msgid "<bookmark_value>WEEKNUM_ADD function</bookmark_value>"
+msgstr "<bookmark_value>NÚM.SEMANA_ADD</bookmark_value>"
+
+#: func_weeknumadd.xhp#hd_id3166443.222.help.text
+msgid "<variable id=\"weeknumadd\"><link href=\"text/scalc/01/func_weeknumadd.xhp\">WEEKNUM_ADD</link></variable>"
+msgstr "<variable id=\"weeknumadd\"><link href=\"text/scalc/01/func_weeknumadd.xhp\">NÚM.SEMANA_ADD</link></variable>"
+
+#: func_weeknumadd.xhp#par_id3152945.223.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_WEEKNUM\">The result indicates the number of the calendar week for a date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_WEEKNUM\">El resultado indica el número de semanas del calendario para una fecha.</ahelp>"
+
+#: func_weeknumadd.xhp#par_idN105DD.help.text
+msgid "The WEEKNUM_ADD function is designed to calculate week numbers exactly as Microsoft Excel does. Use the <link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link> function, or format your date cells using the WW formatting code, when you need ISO 8601 week numbers."
+msgstr "La función NÚM.SEMANA_ADD está diseñada para calcular los números de semana del mismo modo que Microsoft Excel. Utilice la función <link href=\"text/scalc/01/func_weeknum.xhp\">NÚM.SEMANA</link>, o dé formato a las celdas de fecha utilizando el código de formato WW, cuando necesite los números de la semana ISO 8601."
+
+#: func_weeknumadd.xhp#hd_id3153745.224.help.text
+msgctxt "func_weeknumadd.xhp#hd_id3153745.224.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: func_weeknumadd.xhp#par_id3153685.225.help.text
+msgid "WEEKNUM_ADD(Date; ReturnType)"
+msgstr "SEM.DEL.AÑO_AGR(Datos; TipoRegreso)"
+
+#: func_weeknumadd.xhp#par_id3159277.226.help.text
+msgid "<emph>Date</emph> is the date within the calendar week."
+msgstr "<emph>Fecha</emph> es la fecha en el calendario de la semana."
+
+#: func_weeknumadd.xhp#par_id3154098.227.help.text
+msgid "<emph>ReturnType</emph> is 1 for week beginning on a Sunday, 2 for week beginning on a Monday."
+msgstr "<emph>TipoRetorno</emph> es 1 para la semana que comienza el domingo, 2 para la semana que comienza el lunes."
+
+#: func_weeknumadd.xhp#hd_id3152886.228.help.text
+msgctxt "func_weeknumadd.xhp#hd_id3152886.228.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: func_weeknumadd.xhp#par_id3149973.229.help.text
+msgid "In which week number does 12.24.2001 fall?"
+msgstr "¿En qué semana del calendario cae el 24/12/2001?"
+
+#: func_weeknumadd.xhp#par_id3149914.230.help.text
+msgid "<item type=\"input\">=WEEKNUM_ADD(24.12.2001;1)</item> returns 52."
+msgstr "<item type=\"input\">=SEM.DEL.AÑO_AGR(24.12.2001;1)</item> devuelve 52."
+
+#: 06031000.xhp#tit.help.text
+msgid "AutoRefresh"
+msgstr "Actualizar automáticamente"
+
+#: 06031000.xhp#bm_id3154515.help.text
+msgid "<bookmark_value>cells; autorefreshing traces</bookmark_value><bookmark_value>traces; autorefreshing</bookmark_value>"
+msgstr "<bookmark_value>celdas;actualizar rastros automáticamente</bookmark_value><bookmark_value>rastros;actualizar automáticamente</bookmark_value>"
+
+#: 06031000.xhp#hd_id3154515.1.help.text
+msgid "<link href=\"text/scalc/01/06031000.xhp\" name=\"AutoRefresh\">AutoRefresh</link>"
+msgstr "<link href=\"text/scalc/01/06031000.xhp\" name=\"Actualizar automáticamente\">Actualizar automáticamente</link>"
+
+#: 06031000.xhp#par_id3147264.2.help.text
+msgid "<ahelp hid=\".uno:AutoRefreshArrows\" visibility=\"visible\">Automatically refreshes all the traces in the sheet whenever you modify a formula.</ahelp>"
+msgstr "<ahelp hid=\".uno:AutoRefreshArrows\" visibility=\"visible\">Actualiza automáticamente todos los rastros de la hoja al modificar una fórmula.</ahelp>"
+
+#: 12090103.xhp#tit.help.text
+msgctxt "12090103.xhp#tit.help.text"
+msgid "Filter"
+msgstr "Filtrar"
+
+#: 12090103.xhp#hd_id3153970.1.help.text
+msgctxt "12090103.xhp#hd_id3153970.1.help.text"
+msgid "Filter"
+msgstr "Filtro"
+
+#: 12090103.xhp#par_id3150448.2.help.text
+msgid "Set the filtering options for the data."
+msgstr "Establezca las opciones de filtro de los datos."
+
+#: 12090103.xhp#hd_id3151043.3.help.text
+msgid "Filter Criteria"
+msgstr "Criterios de filtro"
+
+#: 12090103.xhp#par_id3150440.4.help.text
+msgid "You can define a default filter for the data by filtering, for example, field names, using a combination of logical expressions arguments."
+msgstr "Se puede definir un filtro predeterminado para los datos que filtre, por ejemplo, los nombres de los campos mediante una combinación de argumentos y expresiones lógicas."
+
+#: 12090103.xhp#hd_id3159153.5.help.text
+#, fuzzy
+msgctxt "12090103.xhp#hd_id3159153.5.help.text"
+msgid "Operator"
+msgstr ""
+"#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Vínculo\n"
+"#-#-#-#-# database.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<emph>Operador</emph>\n"
+"#-#-#-#-# guide.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<emph>Operador</emph>"
+
+#: 12090103.xhp#par_id3153093.6.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_OP2\" visibility=\"visible\">Select a logical operator for the filter.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_OP2\" visibility=\"visible\">Seleccione un operador lógico para el filtro.</ahelp>"
+
+#: 12090103.xhp#hd_id3152462.7.help.text
+msgid "Field name"
+msgstr "Nombre del campo"
+
+#: 12090103.xhp#par_id3155306.8.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_FIELD3\" visibility=\"visible\">Select the field that you want to use in the filter. If field names are not available, the column labels are listed.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_FIELD3\" visibility=\"visible\">Seleccione el campo que desea utilizar en el filtro. Si no hay nombres de campos disponibles se mostrarán las etiquetas de columna.</ahelp>"
+
+#: 12090103.xhp#hd_id3148575.9.help.text
+msgctxt "12090103.xhp#hd_id3148575.9.help.text"
+msgid "Condition"
+msgstr "Condición"
+
+#: 12090103.xhp#par_id3147394.10.help.text
+msgid "<ahelp visibility=\"visible\" hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_COND3\">Select an operator to compare the <emph>Field name</emph> and <emph>Value</emph> entries.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_COND3\">Seleccione un operador para comparar las entradas <emph>Nombre del campo</emph> y <emph>Valor</emph>.</ahelp>"
+
+#: 12090103.xhp#par_id3144764.11.help.text
+msgid "The following operators are available:"
+msgstr "Existen los siguientes operadores comparativos:"
+
+#: 12090103.xhp#par_id3153415.12.help.text
+msgid "<emph>Conditions:</emph>"
+msgstr "<emph>Condiciones:</emph>"
+
+#: 12090103.xhp#par_id3150324.13.help.text
+msgid "="
+msgstr "="
+
+#: 12090103.xhp#par_id3153714.14.help.text
+msgid "equal"
+msgstr "igual"
+
+#: 12090103.xhp#par_id3154254.15.help.text
+msgid "<"
+msgstr "<"
+
+#: 12090103.xhp#par_id3154703.16.help.text
+msgid "less than"
+msgstr "menor que"
+
+#: 12090103.xhp#par_id3155335.17.help.text
+msgid ">"
+msgstr ">"
+
+#: 12090103.xhp#par_id3147003.18.help.text
+msgid "greater than"
+msgstr "mayor que"
+
+#: 12090103.xhp#par_id3153270.19.help.text
+msgid "<="
+msgstr "<="
+
+#: 12090103.xhp#par_id3145257.20.help.text
+msgid "less than or equal to"
+msgstr "menor que o igual a"
+
+#: 12090103.xhp#par_id3145134.21.help.text
+msgid ">="
+msgstr ">="
+
+#: 12090103.xhp#par_id3151214.22.help.text
+msgid "greater than or equal to"
+msgstr "mayor que o igual a"
+
+#: 12090103.xhp#par_id3150345.23.help.text
+msgid "<>"
+msgstr "<>"
+
+#: 12090103.xhp#par_id3159101.24.help.text
+msgid "not equal to"
+msgstr "diferente"
+
+#: 12090103.xhp#hd_id3150886.25.help.text
+msgctxt "12090103.xhp#hd_id3150886.25.help.text"
+msgid "Value"
+msgstr "Valor"
+
+#: 12090103.xhp#par_id3155506.26.help.text
+msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_PIVOTFILTER:ED_VAL3\" visibility=\"visible\">Select the value that you want to compare to the selected field.</ahelp>"
+msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_PIVOTFILTER:ED_VAL3\" visibility=\"visible\">Seleccione el valor que desee comparar con el campo seleccionado.</ahelp>"
+
+#: 12090103.xhp#hd_id3146980.27.help.text
+msgid "<link href=\"text/scalc/01/12090104.xhp\" name=\"More>>\">More>></link>"
+msgstr "<link href=\"text/scalc/01/12090104.xhp\" name=\"Opciones>>\">Opciones>></link>"
+
+#: 05020600.xhp#tit.help.text
+msgid "Cell Protection"
+msgstr "Protección de celdas"
+
+#: 05020600.xhp#hd_id3145119.1.help.text
+msgid "<link href=\"text/scalc/01/05020600.xhp\" name=\"Cell Protection\">Cell Protection</link>"
+msgstr "<link href=\"text/scalc/01/05020600.xhp\" name=\"Protección de celdas\">Protección de celdas</link>"
+
+#: 05020600.xhp#par_id3150398.2.help.text
+msgid "<ahelp hid=\"HID_SCPAGE_PROTECTION\">Defines protection options for selected cells.</ahelp>"
+msgstr "<ahelp hid=\"HID_SCPAGE_PROTECTION\">Define las opciones de protección para las celdas seleccionadas.</ahelp>"
+
+#: 05020600.xhp#hd_id3150447.3.help.text
+msgid "Protection"
+msgstr "Protección"
+
+#: 05020600.xhp#hd_id3125864.9.help.text
+msgid "Hide all"
+msgstr "Ocultar todo"
+
+#: 05020600.xhp#par_id3153768.10.help.text
+msgid "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_ALL\">Hides formulas and contents of the selected cells.</ahelp>"
+msgstr "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_ALL\">Oculta las fórmulas y el contenido de las celdas seleccionadas.</ahelp>"
+
+#: 05020600.xhp#hd_id3153190.5.help.text
+msgid "Protected"
+msgstr "Protegido"
+
+#: 05020600.xhp#par_id3151119.6.help.text
+msgid "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_PROTECTED\">Prevents the selected cells from being modified.</ahelp>"
+msgstr "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_PROTECTED\">Impide que se modifiquen las celdas seleccionadas.</ahelp>"
+
+#: 05020600.xhp#par_id3156283.15.help.text
+msgid "This cell protection only takes effect if you also protect the sheet (<emph>Tools - Protect Document - Sheet</emph>)."
+msgstr "Esta protección de celda solo tiene efecto si se ha protegido también la hoja (<emph>Herramientas - Proteger documento - Hoja</emph>)."
+
+#: 05020600.xhp#hd_id3149377.7.help.text
+msgid "Hide formula"
+msgstr "Ocultar fórmulas"
+
+#: 05020600.xhp#par_id3154510.8.help.text
+msgid "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_FORMULAR\">Hides formulas in the selected cells.</ahelp>"
+msgstr "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_FORMULAR\">Oculta las fórmulas de las celdas seleccionadas.</ahelp>"
+
+#: 05020600.xhp#hd_id3155602.11.help.text
+msgctxt "05020600.xhp#hd_id3155602.11.help.text"
+msgid "Print"
+msgstr "Impresión"
+
+#: 05020600.xhp#par_id3153836.12.help.text
+msgid "Defines print options for the sheet."
+msgstr "Define las opciones de impresión de la hoja."
+
+#: 05020600.xhp#hd_id3155065.13.help.text
+msgid "Hide when printing"
+msgstr "Ocultar para la impresión"
+
+#: 05020600.xhp#par_id3155443.14.help.text
+msgid "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_PRINT\">Keeps the selected cells from being printed.</ahelp>"
+msgstr "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_PRINT\">Impide que se impriman las celdas seleccionadas.</ahelp>"
+
+#: 12090102.xhp#tit.help.text
+#, fuzzy
+msgctxt "12090102.xhp#tit.help.text"
+msgid "Pivot Table"
+msgstr "Tabla dinámica"
+
+#: 12090102.xhp#bm_id2306894.help.text
+#, fuzzy
+msgid "<bookmark_value>pivot table function;show details</bookmark_value><bookmark_value>pivot table function;drill down</bookmark_value>"
+msgstr "<bookmark_value>Piloto de datos;mostrar detalles</bookmark_value> <bookmark_value>Piloto de datos;detallada</bookmark_value>"
+
+#: 12090102.xhp#hd_id3149165.1.help.text
+#, fuzzy
+msgctxt "12090102.xhp#hd_id3149165.1.help.text"
+msgid "Pivot Table"
+msgstr "Tabla dinámica"
+
+#: 12090102.xhp#par_id3155922.13.help.text
+#, fuzzy
+msgid "<ahelp hid=\".uno:DataPilotExec\">Specify the layout of the table that is generated by the pivot table.</ahelp>"
+msgstr "<ahelp hid=\".uno:DataPilotExec\">Especifique el diseño de la tabla generada por el Piloto de datos.</ahelp>"
+
+#: 12090102.xhp#par_id3148798.34.help.text
+#, fuzzy
+msgid "The pivot table displays data fields as buttons which you can drag and drop to define the pivot table."
+msgstr "El Piloto de datos muestra los campos de datos en forma de botones que puede arrastrar y colocar para definir la tabla del Piloto de datos."
+
+#: 12090102.xhp#hd_id3154908.18.help.text
+msgctxt "12090102.xhp#hd_id3154908.18.help.text"
+msgid "Layout"
+msgstr "Diseño"
+
+#: 12090102.xhp#par_id3150768.19.help.text
+#, fuzzy
+msgid "<ahelp hid=\"HID_SC_DPLAY_SELECT\">To define the layout of a pivot table, drag and drop data field buttons onto the <emph>Page Fields, Row Fields, Column Fields, </emph>and<emph> Data Fields </emph>areas.</ahelp> You can also use drag and drop to rearrange the data fields on a pivot table."
+msgstr "<ahelp hid=\"HID_SC_DPLAY_SELECT\">Para definir el diseño de una tabla del Piloto de datos, arrastre y coloque los botones del campo de datos en las áreas <emph>Campos de página, Fila, Columna </emph>y<emph> Campos de datos</emph>.</ahelp> También se puede utilizar la función de arrastrar y colocar para cambiar la disposición de los campos de datos en una tabla del Piloto de datos."
+
+#: 12090102.xhp#par_id3147229.20.help.text
+msgid "$[officename] automatically adds a caption to buttons that are dragged into the <emph>Data Fields </emph>area. The caption contains the name of the data field as well as the formula that created the data."
+msgstr "$[officename] incorpora automáticamente una etiqueta a los botones que se arrastran al área <emph>Campos de datos</emph>. La etiqueta contiene el nombre del campo de datos y la fórmula que crea los datos."
+
+#: 12090102.xhp#par_id3145749.21.help.text
+msgid "To change the function that is used by a data field, double-click a button in the <emph>Data Fields</emph> area to open the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\">Data Field</link> dialog. You can also double-click buttons in the <emph>Row Fields</emph> or <emph>Column Fields</emph> areas."
+msgstr "Para cambiar la función utilizada en un campo de datos, haga doble clic en un botón del área <emph>Campos de datos</emph> para abrir el diálogo <link href=\"text/scalc/01/12090105.xhp\" name=\"Campo de datos\">Campo de datos</link>. También puede hacer doble clic en los botones de las áreas <emph>Fila</emph> o <emph>Columna</emph>."
+
+#: 12090102.xhp#hd_id3149260.28.help.text
+msgctxt "12090102.xhp#hd_id3149260.28.help.text"
+msgid "Remove"
+msgstr "Borrar"
+
+#: 12090102.xhp#par_id3150010.27.help.text
+msgid "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_REMOVE\">Removes the selected data field from the table layout.</ahelp>"
+msgstr "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_REMOVE\">Borra el campo de datos seleccionado del diseño de la tabla.</ahelp>"
+
+#: 12090102.xhp#hd_id3145273.26.help.text
+msgctxt "12090102.xhp#hd_id3145273.26.help.text"
+msgid "Options"
+msgstr "Opciones"
+
+#: 12090102.xhp#par_id3146120.25.help.text
+msgid "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_OPTIONS\">Opens the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog where you can change the function that is associated with the selected field.</ahelp>"
+msgstr "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_OPTIONS\">Abre el diálogo <link href=\"text/scalc/01/12090105.xhp\" name=\"Campo de datos\"><emph>Campo de datos</emph></link>, en el que puede cambiar la función asociada con el campo seleccionado.</ahelp>"
+
+#: 12090102.xhp#hd_id3154944.22.help.text
+msgctxt "12090102.xhp#hd_id3154944.22.help.text"
+msgid "More"
+msgstr "Opciones"
+
+#: 12090102.xhp#par_id3145647.23.help.text
+#, fuzzy
+msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_PIVOT_LAYOUT:BTN_MORE\">Displays or hides additional options for defining the pivot table.</ahelp>"
+msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_PIVOT_LAYOUT:BTN_MORE\">Muestra u oculta opciones adicionales para definir la tabla del Piloto de datos.</ahelp>"
+
+#: 12090102.xhp#hd_id3151073.2.help.text
+msgctxt "12090102.xhp#hd_id3151073.2.help.text"
+msgid "Result"
+msgstr "Resultado"
+
+#: 12090102.xhp#par_id3155417.3.help.text
+#, fuzzy
+msgid "Specify the settings for displaying the results of the pivot table."
+msgstr "Especifica la configuración de presentación de los resultados de la tabla del Piloto de datos."
+
+#: 12090102.xhp#hd_id0509200913025625.help.text
+msgid "Selection from"
+msgstr "Selección de"
+
+#: 12090102.xhp#par_id0509200913025615.help.text
+#, fuzzy
+msgid "<ahelp hid=\".\">Select the area that contains the data for the current pivot table.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccione el área que contiene los datos para la tabla de piloto de datos actual.</ahelp>"
+
+#: 12090102.xhp#hd_id3155603.4.help.text
+msgid "Results to"
+msgstr "Resultado en"
+
+#: 12090102.xhp#par_id3153838.5.help.text
+#, fuzzy
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_PIVOT_LAYOUT:ED_OUTAREA\">Select the area where you want to display the results of the pivot table.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_PIVOT_LAYOUT:ED_OUTAREA\">Seleccione el área en la que desea mostrar los resultados de la tabla del Piloto de datos.</ahelp>"
+
+#: 12090102.xhp#par_id3155961.6.help.text
+#, fuzzy
+msgid "If the selected area contains data, the pivot table overwrites the data. To prevent the loss of existing data, let the pivot table automatically select the area to display the results."
+msgstr "Si el área seleccionada contiene datos, el Piloto de datos los sobrescribe. Para evitar la pérdida de datos, deje que el Piloto de datos seleccione automáticamente el área para mostrar los resultados."
+
+#: 12090102.xhp#hd_id3147364.7.help.text
+msgid "Ignore empty rows"
+msgstr "Ignorar filas vacías"
+
+#: 12090102.xhp#par_id3154022.8.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_IGNEMPTYROWS\">Ignores empty fields in the data source.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_IGNEMPTYROWS\">Hace caso omiso de los campos vacíos del origen de datos.</ahelp>"
+
+#: 12090102.xhp#hd_id3155114.9.help.text
+msgid "Identify categories"
+msgstr "Identificar categorías"
+
+#: 12090102.xhp#par_id3145257.10.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_DETECTCAT\">Automatically assigns rows without labels to the category of the row above.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_DETECTCAT\">Asignaautomáticamente filas sin etiqueta a la categoría de filas superiores.</ahelp>"
+
+#: 12090102.xhp#hd_id3149207.14.help.text
+msgid "Total columns"
+msgstr "Columnas de totales"
+
+#: 12090102.xhp#par_id3166426.15.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALCOL\">Calculates and displays the grand total of the column calculation.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALCOL\">Calcula y muestra el total del cálculo de columna.</ahelp>"
+
+#: 12090102.xhp#hd_id3150364.16.help.text
+msgid "Total rows"
+msgstr "Filas de totales"
+
+#: 12090102.xhp#par_id3152583.17.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALROW\">Calculates and displays the grand total of the row calculation.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALROW\">Calcula y muestra el total del cálculo de fila.</ahelp>"
+
+#: 12090102.xhp#par_idN10897.help.text
+msgid "Add filter"
+msgstr "Agregar filtro"
+
+#: 12090102.xhp#par_idN1089B.help.text
+#, fuzzy
+msgid "<ahelp hid=\".\">Adds a Filter button to pivot tables that are based on spreadsheet data.</ahelp>"
+msgstr "<ahelp hid=\".\">Agrega un botón Filtro a las tablas del Piloto de datos que se basan en datos de hoja de cálculo.</ahelp>"
+
+#: 12090102.xhp#par_idN108B2.help.text
+msgid "<ahelp hid=\".\">Opens the Filter dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Abre el diálogo Filtro.</ahelp>"
+
+#: 12090102.xhp#par_idN108C9.help.text
+msgid "Enable drill to details"
+msgstr "Habilitar la función de profundización en detalles"
+
+#: 12090102.xhp#par_idN108CD.help.text
+msgid "<ahelp hid=\".\">Select this check box and double-click an item label in the table to show or hide details for the item. Clear this check box and double-click a cell in the table to edit the contents of the cell.</ahelp>"
+msgstr "<ahelp hid=\".\">Marque esta casilla de verificación y haga doble clic en una etiqueta de elemento de la tabla para mostrar u ocultar los detalles del elemento. Desmarque la casilla de verificación y haga doble clic en una celda de la tabla para editar su contenido.</ahelp>"
+
+#: 12090102.xhp#par_idN108DC.help.text
+#, fuzzy
+msgid "To examine details inside a pivot table"
+msgstr "Para ver los detalles dentro de una tabla del Piloto de datos"
+
+#: 12090102.xhp#par_idN108E0.help.text
+msgid "Do one of the following:"
+msgstr "Siga uno de estos procedimientos:"
+
+#: 12090102.xhp#par_idN108E6.help.text
+msgid "Select a range of cells and choose <emph>Data - Group and Outline - Show Details</emph>."
+msgstr "Seleccione un rango de celdas y elija <emph>Datos - Esquema - Mostrar detalles</emph>."
+
+#: 12090102.xhp#par_idN108EE.help.text
+msgid "Double-click a field in the table."
+msgstr "Haga doble clic en un campo de la tabla."
+
+#: 12090102.xhp#par_idN108F1.help.text
+msgid "If you double-click a field which has adjacent fields at the same level, the <emph>Show Detail</emph> dialog opens:"
+msgstr "Si hace doble clic en un campo con campos adyacentes en el mismo nivel, se abrirá el diálogo <emph>Mostrar detalle</emph>:"
+
+#: 12090102.xhp#par_idN10900.help.text
+msgid "Show Detail"
+msgstr "Mostrar detalle"
+
+#: 12090102.xhp#par_idN10904.help.text
+msgid "<ahelp hid=\".\">Choose the field that you want to view the details for.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccione el campo del que desee ver los detalles.</ahelp>"
+
+#: 12090102.xhp#par_id3149817.35.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/04/01020000.xhp\" name=\"Pivot table shortcut keys\">Pivot table shortcut keys</link>"
+msgstr "<link href=\"text/scalc/04/01020000.xhp\" name=\"Combinaciones de teclas del Piloto de datos\">Combinaciones de teclas del Piloto de datos</link>"
+
+#: func_eomonth.xhp#tit.help.text
+msgid "EOMONTH"
+msgstr "FIN.MES"
+
+#: func_eomonth.xhp#bm_id3150991.help.text
+msgid "<bookmark_value>EOMONTH function</bookmark_value>"
+msgstr "<bookmark_value>FIN.MES</bookmark_value>"
+
+#: func_eomonth.xhp#hd_id3150991.231.help.text
+msgid "<variable id=\"eomonth\"><link href=\"text/scalc/01/func_eomonth.xhp\">EOMONTH</link></variable>"
+msgstr "<variable id=\"eomonth\"><link href=\"text/scalc/01/func_eomonth.xhp\">FIN.MES</link></variable>"
+
+#: func_eomonth.xhp#par_id3152766.232.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_EOMONTH\">Returns the date of the last day of a month which falls m<emph>onths</emph> away from the s<emph>tart date</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_EOMONTH\">Devuelve la fecha del último día de un mes que cae lejos de los<emph>meses</emph> desde la <emph>fecha de inicio</emph>.</ahelp>"
+
+#: func_eomonth.xhp#hd_id3150597.233.help.text
+msgctxt "func_eomonth.xhp#hd_id3150597.233.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: func_eomonth.xhp#par_id3150351.234.help.text
+msgid "EOMONTH(StartDate; Months)"
+msgstr "FIN.MES(FechaInicio; Meses)"
+
+#: func_eomonth.xhp#par_id3146787.235.help.text
+msgid "<emph>StartDate</emph> is a date (the starting point of the calculation)."
+msgstr "<emph>FechaInicio</emph> es una fecha (el punto de inicio del calculo)."
+
+#: func_eomonth.xhp#par_id3155615.236.help.text
+msgctxt "func_eomonth.xhp#par_id3155615.236.help.text"
+msgid "<emph>Months</emph> is the number of months before (negative) or after (positive) the start date."
+msgstr "<emph>Meses</emph> es el número de meses antes (negativo) o después (positivo) de la fecha de inicio."
+
+#: func_eomonth.xhp#hd_id3156335.237.help.text
+msgctxt "func_eomonth.xhp#hd_id3156335.237.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: func_eomonth.xhp#par_id3154829.238.help.text
+msgid "What is the last day of the month that falls 6 months after September 14 2001?"
+msgstr "¿Cuál es el último día del mes situado 6 meses después del 14 de septiembre de 2001?"
+
+#: func_eomonth.xhp#par_id3156143.239.help.text
+msgid "<item type=\"input\">=EOMONTH(DATE(2001;9;14);6)</item> returns the serial number 37346. Formatted as a date, this is 2002-03-31."
+msgstr "<item type=\"input\">=FIN.MES(FECHA(2001;9;14);6)</item> devuelve el número de serie 37346. Formateado como fecha, queda 2002-03-31."
+
+#: func_eomonth.xhp#par_id3156144.239.help.text
+msgid "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> works as well. If the date is given as string, it has to be in ISO format."
+msgstr "También funciona <item type=\"input\">=FIN.MES(\"2001-09-14\";6)</item>. Si la fecha se escribe como cadena, tiene que estar en el formato ISO.."
+
+#: 02120100.xhp#tit.help.text
+msgctxt "02120100.xhp#tit.help.text"
+msgid "Header/Footer"
+msgstr "Encabezado/pie de página"
+
+#: 02120100.xhp#bm_id3153360.help.text
+msgid "<bookmark_value>page styles; headers</bookmark_value> <bookmark_value>page styles; footers</bookmark_value> <bookmark_value>headers; defining</bookmark_value> <bookmark_value>footers; defining</bookmark_value> <bookmark_value>file names in headers/footers</bookmark_value> <bookmark_value>changing;dates, automatically</bookmark_value> <bookmark_value>dates;updating automatically</bookmark_value> <bookmark_value>automatic date updates</bookmark_value>"
+msgstr "<bookmark_value>estilos de página;encabezados</bookmark_value><bookmark_value>estilos de página;pies de página</bookmark_value><bookmark_value>encabezados;definir</bookmark_value><bookmark_value>pies de página;definir</bookmark_value><bookmark_value>nombres de archivo en encabezado/pies de página</bookmark_value>"
+
+#: 02120100.xhp#hd_id3153360.1.help.text
+msgid "<link href=\"text/scalc/01/02120100.xhp\" name=\"Header/Footer\">Header/Footer</link>"
+msgstr "<link href=\"text/scalc/01/02120100.xhp\" name=\"Header/Footer\">Encabezado/Pie de página</link>"
+
+#: 02120100.xhp#par_id3150768.2.help.text
+msgid "<ahelp hid=\"HID_SCPAGE_HFED_FL\">Defines or formats a header or footer for a Page Style.</ahelp>"
+msgstr "<ahelp hid=\"HID_SCPAGE_HFED_FL\">Define o da formato a un encabezado o pie de página de un Estilo de página.</ahelp>"
+
+#: 02120100.xhp#hd_id3145748.3.help.text
+msgid "Left Area"
+msgstr "Área izquierda"
+
+#: 02120100.xhp#par_id3147434.4.help.text
+msgid "<ahelp hid=\"HID_SC_HF_FLL\">Enter the text to be displayed at the left side of the header or footer.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_HF_FLL\">Escriba el texto que desea mostrar a la izquierda del encabezado o pie de página.</ahelp>"
+
+#: 02120100.xhp#hd_id3148648.5.help.text
+msgid "Center Area"
+msgstr "Área central"
+
+#: 02120100.xhp#par_id3163710.6.help.text
+msgid "<ahelp hid=\".\">Enter the text to be displayed at the center of the header or footer.</ahelp>"
+msgstr "<ahelp hid=\".\">Escriba el texto que desea mostrar en el centro del encabezado o el pie de página</ahelp>"
+
+#: 02120100.xhp#hd_id3154942.7.help.text
+msgid "Right Area"
+msgstr "Área derecha"
+
+#: 02120100.xhp#par_id3147126.8.help.text
+msgid "<ahelp hid=\"HID_SC_HF_FLR\">Enter the text to be displayed at the right side of the header or footer.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_HF_FLR\">Escriba el texto que desea mostrar a la derecha del encabezado o pie de página.</ahelp>"
+
+#: 02120100.xhp#par_idN10811.help.text
+msgctxt "02120100.xhp#par_idN10811.help.text"
+msgid "Header/Footer"
+msgstr "Encabezado/pie de página"
+
+#: 02120100.xhp#par_idN10815.help.text
+msgid "<ahelp hid=\".\">Select a predefined header or footer from the list.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccione un encabezado o pie de página predefinido en la lista.</ahelp>"
+
+#: 02120100.xhp#hd_id3154729.9.help.text
+msgid "Text attributes"
+msgstr "Atributos de texto"
+
+#: 02120100.xhp#par_id3150717.10.help.text
+msgid "<ahelp hid=\"HID_SC_HF_TEXT\">Opens a dialog to assign formats to new or selected text.</ahelp> The <emph>Text Attributes </emph>dialog contains the tab pages <link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>, <link href=\"text/shared/01/05020200.xhp\" name=\"Font Effects\">Font Effects</link> and <link href=\"text/shared/01/05020500.xhp\" name=\"Font Position\">Font Position</link>."
+msgstr "<ahelp hid=\"HID_SC_HF_TEXT\">Abre un diálogo para asignar atributos de formato a un texto nuevo o al texto seleccionado.</ahelp> El diálogo <emph>Atributos de texto </emph>contiene las pestañas <link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Tipo de letra</link>, <link href=\"text/shared/01/05020200.xhp\" name=\"Font Effects\">Efectos de tipo de letra</link> y <link href=\"text/shared/01/05020500.xhp\" name=\"Font Position\">Posición de tipo de letra</link>."
+
+#: 02120100.xhp#par_id3159266.help.text
+msgid "<image id=\"img_id3156386\" src=\"sc/res/text.png\" width=\"0.1874in\" height=\"0.1665in\"><alt id=\"alt_id3156386\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156386\" src=\"sc/res/text.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3156386\">Ícono</alt></image>"
+
+#: 02120100.xhp#par_id3155336.25.help.text
+msgid "Text Attributes"
+msgstr "Atributos de texto"
+
+#: 02120100.xhp#hd_id3145792.11.help.text
+msgid "File Name "
+msgstr "Nombre de archivo "
+
+#: 02120100.xhp#par_id3150206.12.help.text
+msgid "<ahelp hid=\"HID_SC_HF_FILE\">Inserts a file name placeholder in the selected area.</ahelp> Click to insert the title. Long-click to select either title, file name or path/file name from the submenu. If a title has not be assigned (see <emph>File - Properties</emph>), the file name will be inserted instead."
+msgstr "<ahelp hid=\"HID_SC_HF_FILE\">Inserta un marcado de posición de nombre de archivo en el área seleccionada.</ahelp> Haga clic para insertar el título. Mantenga pulsado el botón del ratón para seleccionar el título, el nombre de archivo o la ruta/nombre de archivo en el submenú. Si no se ha asignado un título (véase <emph>Archivo - Propiedades</emph>), se inserta en su lugar el nombre de archivo."
+
+#: 02120100.xhp#par_id3150369.help.text
+msgid "<image id=\"img_id3150518\" src=\"res/folderop.png\" width=\"0.1665in\" height=\"0.1252in\"><alt id=\"alt_id3150518\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150518\" src=\"res/folderop.png\" width=\"0.222inch\" height=\"0.1665inch\"><alt id=\"alt_id3150518\">Ícono</alt></image>"
+
+#: 02120100.xhp#par_id3154487.26.help.text
+msgid "File Name"
+msgstr "Nombre de archivo"
+
+#: 02120100.xhp#hd_id3155812.13.help.text
+msgctxt "02120100.xhp#hd_id3155812.13.help.text"
+msgid "Sheet Name"
+msgstr "Nombre de la hoja"
+
+#: 02120100.xhp#par_id3148842.14.help.text
+msgid "<ahelp hid=\"HID_SC_HF_TABLE\">Inserts a placeholder in the selected header/footer area, which is replaced by the sheet name in the header/footer of the actual document.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_HF_TABLE\">Inserta un marcador de posición en el área de encabezado/pie de página seleccionada, que se sustituye por el nombre de la hoja en el encabezado/pie de página del documento.</ahelp>"
+
+#: 02120100.xhp#par_id3146870.help.text
+msgid "<image id=\"img_id3148870\" src=\"sc/res/table.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148870\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148870\" src=\"sc/res/table.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3148870\">Ícono</alt></image>"
+
+#: 02120100.xhp#par_id3147071.27.help.text
+msgctxt "02120100.xhp#par_id3147071.27.help.text"
+msgid "Sheet Name"
+msgstr "Nombre de la hoja"
+
+#: 02120100.xhp#hd_id3144768.15.help.text
+msgctxt "02120100.xhp#hd_id3144768.15.help.text"
+msgid "Page"
+msgstr "Página"
+
+#: 02120100.xhp#par_id3154960.16.help.text
+msgid "<ahelp hid=\"HID_SC_HF_PAGE\">Inserts a placeholder in the selected header/footer area, which is replaced by page numbering. This allows continuous page numbering in a document.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_HF_PAGE\">Inserta un marcador de posición en el área de encabezado/pie de página seleccionada, que se sustituye en el documento por el número de página. Esto permite numerar las páginas del documento de forma continua.</ahelp>"
+
+#: 02120100.xhp#par_id3151304.help.text
+msgid "<image id=\"img_id3155386\" src=\"sc/res/page.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155386\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155386\" src=\"sc/res/page.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3155386\">Ícono</alt></image>"
+
+#: 02120100.xhp#par_id3150048.28.help.text
+msgctxt "02120100.xhp#par_id3150048.28.help.text"
+msgid "Page"
+msgstr "Página"
+
+#: 02120100.xhp#hd_id3146962.17.help.text
+msgctxt "02120100.xhp#hd_id3146962.17.help.text"
+msgid "Pages"
+msgstr "Número de páginas"
+
+#: 02120100.xhp#par_id3153812.18.help.text
+msgid "<ahelp hid=\"HID_SC_HF_PAGES\">Inserts a placeholder in the selected header/footer area, which is replaced by the total number of pages in the document.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_HF_PAGES\">Inserta un marcador de posición en el área de encabezado/pie de página seleccionada, que se sustituye en el documento por el número total de páginas del mismo.</ahelp>"
+
+#: 02120100.xhp#par_id3149315.help.text
+msgid "<image id=\"img_id3155757\" src=\"sc/res/pages.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155757\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155757\" src=\"sc/res/pages.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3155757\">Ícono</alt></image>"
+
+#: 02120100.xhp#par_id3147499.29.help.text
+msgctxt "02120100.xhp#par_id3147499.29.help.text"
+msgid "Pages"
+msgstr "Número de páginas"
+
+#: 02120100.xhp#hd_id3149050.19.help.text
+msgctxt "02120100.xhp#hd_id3149050.19.help.text"
+msgid "Date"
+msgstr "Fecha"
+
+#: 02120100.xhp#par_id3153960.20.help.text
+msgid "<ahelp hid=\"HID_SC_HF_DATE\">Inserts a placeholder in the selected header/footer area, which is replaced by the current date which will be repeated in the header/footer on each page of the document.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_HF_DATE\">Inserta un marcador de posición en el área de encabezado/pie de página seleccionada, que se sustituye en el documento por la fecha actual; ésta se repetirá en cada uno de los encabezados/pies de página del documento.</ahelp>"
+
+#: 02120100.xhp#par_id3147299.help.text
+msgid "<image id=\"img_id3150394\" src=\"sc/res/date.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150394\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150394\" src=\"sc/res/date.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3150394\">Ícono</alt></image>"
+
+#: 02120100.xhp#par_id3150540.30.help.text
+msgctxt "02120100.xhp#par_id3150540.30.help.text"
+msgid "Date"
+msgstr "Fecha"
+
+#: 02120100.xhp#hd_id3147610.21.help.text
+msgctxt "02120100.xhp#hd_id3147610.21.help.text"
+msgid "Time"
+msgstr "Hora"
+
+#: 02120100.xhp#par_id3145638.22.help.text
+msgid "<ahelp hid=\"HID_SC_HF_TIME\">Inserts a placeholder in the selected header/footer area, which is replaced by the current time in the header/footer on each page of the document.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_HF_TIME\">Inserta un marcador de posición en el área de encabezado/pie de página seleccionada, que se sustituye en todos los encabezados/pies de página del documento por la hora actual.</ahelp>"
+
+#: 02120100.xhp#par_id3153122.help.text
+msgid "<image id=\"img_id3146884\" src=\"sc/res/time.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146884\">Icon</alt></image>"
+msgstr "<image id=\"img_id3146884\" src=\"sc/res/time.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3146884\">Ícono</alt></image>"
+
+#: 02120100.xhp#par_id3157904.31.help.text
+msgctxt "02120100.xhp#par_id3157904.31.help.text"
+msgid "Time"
+msgstr "Hora"
+
+#: 04060120.xhp#tit.help.text
+msgctxt "04060120.xhp#tit.help.text"
+msgid "Bit Operation Functions"
+msgstr "Funciones de operaciones sobre bits"
+
+#: 04060120.xhp#hd_id4149052.1.help.text
+msgctxt "04060120.xhp#hd_id4149052.1.help.text"
+msgid "Bit Operation Functions"
+msgstr "Funciones de operaciones sobre bits"
+
+#: 04060120.xhp#bm_id4150026.help.text
+#, fuzzy
+msgid "<bookmark_value>BITAND function</bookmark_value>"
+msgstr "<bookmark_value>Y</bookmark_value>"
+
+#: 04060120.xhp#hd_id4150026.238.help.text
+msgid "BITAND"
+msgstr ""
+
+#: 04060120.xhp#par_id4146942.239.help.text
+msgid "<ahelp hid=\"HID_FUNC_BITAND\">Returns a bitwise logical \"and\" of the parameters.</ahelp>"
+msgstr ""
+
+#: 04060120.xhp#hd_id4150459.240.help.text
+#, fuzzy
+msgctxt "04060120.xhp#hd_id4150459.240.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060120.xhp#par_id4146878.241.help.text
+msgid "BITAND(number1; number2)"
+msgstr ""
+
+#: 04060120.xhp#par_id4151228.242.help.text
+msgctxt "04060120.xhp#par_id4151228.242.help.text"
+msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
+msgstr "<emph>Numero1</emph> y <emph>numero2</emph> son enteros positivos menores que 2 ^ 48 (281 474 976 710 656)."
+
+#: 04060120.xhp#hd_id4148582.248.help.text
+#, fuzzy
+msgctxt "04060120.xhp#hd_id4148582.248.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060120.xhp#par_id4149246.250.help.text
+msgid "<item type=\"input\">=BITAND(6;10)</item> returns 2 (0110 & 1010 = 0010)."
+msgstr ""
+
+#: 04060120.xhp#bm_id4146139.help.text
+#, fuzzy
+msgid "<bookmark_value>BITOR function</bookmark_value>"
+msgstr "<bookmark_value>O</bookmark_value>"
+
+#: 04060120.xhp#hd_id4146139.252.help.text
+msgid "BITOR"
+msgstr ""
+
+#: 04060120.xhp#par_id4150140.253.help.text
+msgid "<ahelp hid=\"HID_FUNC_BITOR\">Returns a bitwise logical \"or\" of the parameters.</ahelp>"
+msgstr ""
+
+#: 04060120.xhp#hd_id4149188.254.help.text
+msgctxt "04060120.xhp#hd_id4149188.254.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060120.xhp#par_id4148733.255.help.text
+msgid "BITOR(number1; number2)"
+msgstr ""
+
+#: 04060120.xhp#par_id4150864.256.help.text
+msgctxt "04060120.xhp#par_id4150864.256.help.text"
+msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
+msgstr "<emph>Numero1</emph> y <emph>numero2</emph> son enteros positivos menores que 2 ^ 48 (281 474 976 710 656)."
+
+#: 04060120.xhp#par_id4149884.264.help.text
+msgid "<item type=\"input\">=BITOR(6;10)</item> returns 14 (0110 | 1010 = 1110)."
+msgstr ""
+
+#: 04060120.xhp#bm_id4150019.help.text
+#, fuzzy
+msgid "<bookmark_value>BITXOR function</bookmark_value>"
+msgstr "<bookmark_value>O</bookmark_value>"
+
+#: 04060120.xhp#hd_id4150019.182.help.text
+msgid "BITXOR"
+msgstr ""
+
+#: 04060120.xhp#par_id4145246.183.help.text
+msgid "<ahelp hid=\"HID_FUNC_BITXOR\">Returns a bitwise logical \"exclusive or\" of the parameters.</ahelp>"
+msgstr ""
+
+#: 04060120.xhp#hd_id4153047.184.help.text
+msgctxt "04060120.xhp#hd_id4153047.184.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060120.xhp#par_id4157970.185.help.text
+msgid "BITXOR(number1; number2)"
+msgstr ""
+
+#: 04060120.xhp#par_id4145302.186.help.text
+msgctxt "04060120.xhp#par_id4145302.186.help.text"
+msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
+msgstr "<emph>Numero1</emph> y <emph>numero2</emph> son enteros positivos menores que 2 ^ 48 (281 474 976 710 656)."
+
+#: 04060120.xhp#hd_id4150269.192.help.text
+#, fuzzy
+msgctxt "04060120.xhp#hd_id4150269.192.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060120.xhp#par_id4149394.196.help.text
+msgid "<item type=\"input\">=BITXOR(6;10)</item> returns 12 (0110 ^ 1010 = 1100)"
+msgstr ""
+
+#: 04060120.xhp#bm_id4155370.help.text
+#, fuzzy
+msgid "<bookmark_value>BITLSHIFT function</bookmark_value>"
+msgstr "<bookmark_value>DISTR.BINOM</bookmark_value>"
+
+#: 04060120.xhp#hd_id4155370.266.help.text
+msgid "BITLSHIFT"
+msgstr ""
+
+#: 04060120.xhp#par_id4158411.267.help.text
+msgid "<ahelp hid=\"HID_FUNC_BITLSHIFT\">Shifts a number left by n bits.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_BITLSHIFT\">Desplaza un número a la izquierda n bits.</ahelp>"
+
+#: 04060120.xhp#hd_id4155814.268.help.text
+#, fuzzy
+msgctxt "04060120.xhp#hd_id4155814.268.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060120.xhp#par_id4147536.269.help.text
+msgid "BITLSHIFT(number; shift)"
+msgstr ""
+
+#: 04060120.xhp#par_id4150475.270.help.text
+msgctxt "04060120.xhp#par_id4150475.270.help.text"
+msgid "<emph>Number</emph> is a positive integer less than 2 ^ 48 (281 474 976 710 656)."
+msgstr "<emph>Número</emph> es un entero positivo menor que 2 ^ 48 (281 474 976 710 656)."
+
+#: 04060120.xhp#par_id4153921.271.help.text
+msgid "<emph>Shift</emph> is the number of positions the bits will be moved to the left. If shift is negative, it is synonymous with BITRSHIFT (number; -shift)."
+msgstr ""
+
+#: 04060120.xhp#hd_id4153723.276.help.text
+#, fuzzy
+msgctxt "04060120.xhp#hd_id4153723.276.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060120.xhp#par_id4149819.278.help.text
+msgid "<item type=\"input\">=BITLSHIFT(6;1)</item> returns 12 (0110 << 1 = 1100)."
+msgstr ""
+
+#: 04060120.xhp#bm_id4083280.help.text
+#, fuzzy
+msgid "<bookmark_value>BITRSHIFT function</bookmark_value>"
+msgstr "<bookmark_value>DISTR.BINOM</bookmark_value>"
+
+#: 04060120.xhp#hd_id4083280.165.help.text
+msgid "BITRSHIFT"
+msgstr ""
+
+#: 04060120.xhp#par_id4152482.166.help.text
+msgid "<ahelp hid=\"HID_FUNC_BITRSHIFT\">Shifts a number right by n bits.</ahelp>"
+msgstr ""
+
+#: 04060120.xhp#hd_id4149713.167.help.text
+#, fuzzy
+msgctxt "04060120.xhp#hd_id4149713.167.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060120.xhp#par_id4145087.168.help.text
+msgid "BITRSHIFT(number; shift)"
+msgstr ""
+
+#: 04060120.xhp#par_id4149277.169.help.text
+msgctxt "04060120.xhp#par_id4149277.169.help.text"
+msgid "<emph>Number</emph> is a positive integer less than 2 ^ 48 (281 474 976 710 656)."
+msgstr "<emph>Número</emph> es un entero positivo menor que 2 ^ 48 (281 474 976 710 656)."
+
+#: 04060120.xhp#par_id4149270.170.help.text
+msgid "<emph>Shift</emph> is the number of positions the bits will be moved to the right. If shift is negative, it is synonymous with BITLSHIFT (number; -shift)."
+msgstr ""
+
+#: 04060120.xhp#hd_id4152933.175.help.text
+#, fuzzy
+msgctxt "04060120.xhp#hd_id4152933.175.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060120.xhp#par_id4156130.179.help.text
+msgid "<item type=\"input\">=BITRSHIFT(6;1)</item> returns 3 (0110 >> 1 = 0011)."
+msgstr ""
+
+#: 04070100.xhp#tit.help.text
+msgctxt "04070100.xhp#tit.help.text"
+msgid "Define Names"
+msgstr "Definir nombres"
+
+#: 04070100.xhp#hd_id3156330.1.help.text
+msgctxt "04070100.xhp#hd_id3156330.1.help.text"
+msgid "Define Names"
+msgstr "Definir nombres"
+
+#: 04070100.xhp#par_id3154366.2.help.text
+msgid "<variable id=\"namenfestlegentext\"><ahelp hid=\".uno:DefineName\">Opens a dialog where you can specify a name for a selected area.</ahelp></variable>"
+msgstr "<variable id=\"namenfestlegentext\"><ahelp hid=\".uno:DefineName\">Abre un diálogo en el que se puede especificar un nombre para el área seleccionada.</ahelp></variable>"
+
+#: 04070100.xhp#par_id3154123.31.help.text
+msgid "Use the mouse to define ranges or type the reference into the <emph>Define Name </emph>dialog fields."
+msgstr "Utilice el ratón para definir áreas o escriba la referencia en los campos del diálogo <emph>Definir nombres</emph>."
+
+#: 04070100.xhp#par_id3155131.30.help.text
+msgid "The <emph>Sheet Area</emph> box on the Formula bar contains a list of defined names for the ranges. Click a name from this box to highlight the corresponding reference on the spreadsheet. Names given formulas or parts of a formula are not listed here."
+msgstr "El cuadro <emph>Área de hoja</emph> de la barra de fórmulas contiene la lista de los nombres de área definidos. Pulse en uno de los nombres de este cuadro para destacar la referencia correspondiente en la hoja de cálculo. La lista no contiene los nombres asignados a fórmulas o partes de ellas."
+
+#: 04070100.xhp#hd_id3151118.3.help.text
+msgctxt "04070100.xhp#hd_id3151118.3.help.text"
+msgid "Name"
+msgstr "Nombre"
+
+#: 04070100.xhp#par_id3163712.29.help.text
+msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_NAMES:ED_NAME\">Enter the name of the area for which you want to define a reference. All area names already defined in the spreadsheet are listed in the text field below.</ahelp> If you click a name on the list, the corresponding reference in the document will be shown with a blue frame. If multiple cell ranges belong to the same area name, they are displayed with different colored frames."
+msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_NAMES:ED_NAME\">Escriba el nombre del área cuya referencia desea definir. El campo de texto inferior contiene todos los nombres de área definidos en la hoja de cálculo.</ahelp> Si pulsa en un nombre de la lista, la referencia correspondiente del documento quedará destacada mediante un marco azul. Si varias áreas de celdas corresponden al mismo nombre de área, se muestran con marcos de colores distintos."
+
+#: 04070100.xhp#hd_id3153728.9.help.text
+msgid "Assigned to"
+msgstr "Asignado a"
+
+#: 04070100.xhp#par_id3147435.10.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_NAMES:ED_ASSIGN\">The reference of the selected area name is shown here as an absolute value.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_NAMES:ED_ASSIGN\">Aquí se muestra la referencia del nombre del área seleccionada como valor absoluto.</ahelp>"
+
+#: 04070100.xhp#par_id3146986.12.help.text
+msgid "To insert a new area reference, place the cursor in this field and use your mouse to select the desired area in any sheet of your spreadsheet document."
+msgstr "Para introducir una nueva referencia de área, sitúe el punto de inserción en este campo, se adopta la referencia directamente con la selección del área de hoja correspondiente en la hoja actual o en otra."
+
+#: 04070100.xhp#hd_id3154729.13.help.text
+msgctxt "04070100.xhp#hd_id3154729.13.help.text"
+msgid "More"
+msgstr "Opciones"
+
+#: 04070100.xhp#par_id3149958.14.help.text
+msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_NAMES:BTN_MORE\">Allows you to specify the <emph>Area type </emph>(optional) for the reference.</ahelp>"
+msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_NAMES:BTN_MORE\">Permite especificar el <emph>Tipo de área </emph>(opcional) de la referencia.</ahelp>"
+
+#: 04070100.xhp#hd_id3147394.15.help.text
+msgid "Area type"
+msgstr "Tipo de área"
+
+#: 04070100.xhp#par_id3155416.16.help.text
+msgid "Defines additional options related to the type of reference area."
+msgstr "Permite definir el tipo de área para la definición del área seleccionada."
+
+#: 04070100.xhp#hd_id3150716.17.help.text
+msgctxt "04070100.xhp#hd_id3150716.17.help.text"
+msgid "Print range"
+msgstr "Área de impresión"
+
+#: 04070100.xhp#par_id3150751.18.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_PRINTAREA\">Defines the area as a print range.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_PRINTAREA\">Define el área como intervalo de impresión.</ahelp>"
+
+#: 04070100.xhp#hd_id3153764.19.help.text
+#, fuzzy
+msgctxt "04070100.xhp#hd_id3153764.19.help.text"
+msgid "Filter"
+msgstr "Filtro"
+
+#: 04070100.xhp#par_id3155766.20.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_CRITERIA\">Defines the selected area to be used in an <link href=\"text/scalc/01/12040300.xhp\" name=\"advanced filter\">advanced filter</link>.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_CRITERIA\">Define el área seleccionada para su uso en un <link href=\"text/scalc/01/12040300.xhp\" name=\"filtro especial\">filtro especial</link>.</ahelp>"
+
+#: 04070100.xhp#hd_id3159267.21.help.text
+msgid "Repeat column"
+msgstr "Columna a repetir"
+
+#: 04070100.xhp#par_id3149565.22.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_COLHEADER\">Defines the area as a repeating column.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_COLHEADER\">Define el área como columna repetida.</ahelp>"
+
+#: 04070100.xhp#hd_id3153966.23.help.text
+msgid "Repeat row"
+msgstr "Fila a repetir"
+
+#: 04070100.xhp#par_id3150300.24.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_ROWHEADER\">Defines the area as a repeating row.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_ROWHEADER\">Define el área como fila repetida.</ahelp>"
+
+#: 04070100.xhp#hd_id3155112.27.help.text
+msgctxt "04070100.xhp#hd_id3155112.27.help.text"
+msgid "Add/Modify"
+msgstr "Agregar/Modificar"
+
+#: 04070100.xhp#par_id3159236.28.help.text
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_NAMES:BTN_ADD\">Click the <emph>Add</emph> button to add the defined name to the list. Click the <emph>Modify</emph> button to enter another name for an already existing name selected from the list.</ahelp>"
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_NAMES:BTN_ADD\">Pulse el botón <emph>Agregar</emph> para agregar a la lista el nombre definido. Haga clic en el botón <emph>Modificar</emph> para escribir un nombre distinto para el nombre seleccionado en la lista.</ahelp>"
+
+#: 12040400.xhp#tit.help.text
+msgid "Remove Filter"
+msgstr "Borrar filtro"
+
+#: 12040400.xhp#hd_id3153087.1.help.text
+msgid "<link href=\"text/scalc/01/12040400.xhp\" name=\"Remove Filter\">Remove Filter</link>"
+msgstr "<link href=\"text/scalc/01/12040400.xhp\" name=\"Eliminar filtro\">Eliminar filtro</link>"
+
+#: 12040400.xhp#par_id3154760.2.help.text
+msgid "<ahelp hid=\".uno:DataFilterRemoveFilter\">Removes the filter from the selected cell range. To enable this command, click inside the cell area where the filter was applied.</ahelp>"
+msgstr "<ahelp hid=\".uno:DataFilterRemoveFilter\">Remueva el filtro del rango de celdas seleccionado. Para habilitar este comando, presione dentro del área de la celda a la selected cell range. To enable this command, click inside the cell area donde el filtro fue aplicado.</ahelp>"
+
+#: 12090000.xhp#tit.help.text
+#, fuzzy
+msgctxt "12090000.xhp#tit.help.text"
+msgid "Pivot Table"
+msgstr "Tabla dinámica"
+
+#: 12090000.xhp#hd_id3150275.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12090000.xhp\" name=\"Pivot Table\">Pivot Table</link>"
+msgstr "<link href=\"text/shared/01/01100500.xhp\" name=\"Priority Table\">Tabla de prioridades</link>"
+
+#: 12090000.xhp#par_id3153562.2.help.text
+#, fuzzy
+msgid "A pivot table provides a summary of large amounts of data. You can then rearrange the pivot table to view different summaries of the data."
+msgstr "Una tabla de Piloto de datos ofrece el resumen de una gran cantidad de datos. Luego puede cambiar el diseño de la tabla de Piloto de datos para ver distintos resúmenes de los datos."
+
+#: 12090000.xhp#hd_id3155923.3.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12090100.xhp\" name=\"Create\">Create</link>"
+msgstr "<link href=\"text/scalc/01/12090300.xhp\" name=\"Eliminar\">Eliminar</link>"
+
+#: 12090000.xhp#par_idN105FB.help.text
+#, fuzzy
+msgctxt "12090000.xhp#par_idN105FB.help.text"
+msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
+msgstr "<link href=\"text/scalc/01/12090102.xhp\" name=\"Diálogo Piloto de datos\">Diálogo Piloto de datos</link>"
+
+#: solver.xhp#tit.help.text
+msgid "Solver"
+msgstr "Solver"
+
+#: solver.xhp#bm_id7654652.help.text
+msgid "<bookmark_value>goal seeking;solver</bookmark_value><bookmark_value>what if operations;solver</bookmark_value><bookmark_value>back-solving</bookmark_value><bookmark_value>solver</bookmark_value>"
+msgstr "<bookmark_value>busqueda de objetivo;solucionador</bookmark_value><bookmark_value>análisis Y Sí;Solver</bookmark_value><bookmark_value>regresar solución;solver</bookmark_value><bookmark_value>solver</bookmark_value>"
+
+#: solver.xhp#hd_id9216284.help.text
+msgid "<variable id=\"solver\"><link href=\"text/scalc/01/solver.xhp\">Solver</link></variable>"
+msgstr "<variable id=\"solver\"><link href=\"text/scalc/01/solver.xhp\">Solver</link></variable>"
+
+#: solver.xhp#par_id9210486.help.text
+msgid "<ahelp hid=\".\">Opens the Solver dialog. A solver allows to solve equations with multiple unknown variables by goal seeking methods.</ahelp>"
+msgstr "<ahelp hid=\".\">Abre el diálogo de Solver. Sover te permite resolver ecuaciones con multiples variables desconocidas por el metodo de busqueda de metas.</ahelp>"
+
+#: solver.xhp#par_id8538773.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ingrese o de clic en la referencia de la celda o la celda meta. Este campo toma la dirección de la celda del cual el valor sera optimizado.</ahelp>"
+
+#: solver.xhp#par_id7564012.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation for a maximum value of the target cell.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Intenta resolver la ecuación para un valor maximo de la celda usada.</ahelp>"
+
+#: solver.xhp#par_id1186254.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation for a minimum value of the target cell.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Trate de solucionar la ecuación para un valor mínimo de la celda objetivo.</ahelp>"
+
+#: solver.xhp#par_id7432477.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation to approach a given value of the target cell.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Intenta resolver la ecuación para acercar el valor dado de la celda usada.</ahelp>"
+
+#: solver.xhp#par_id7141026.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the value or a cell reference.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ingresa el valor o una referencia de celda.</ahelp>"
+
+#: solver.xhp#par_id8531449.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the cell range that can be changed.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ingresa el rango de celdas que pueden ser modificadas.</ahelp>"
+
+#: solver.xhp#par_id9183935.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a cell reference.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ingrese una referencia de celda.</ahelp>"
+
+#: solver.xhp#par_id946684.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select an operator from the list.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selecciona un operador de la lista.</ahelp>"
+
+#: solver.xhp#par_id9607226.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a value or a cell reference.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ingresa el valor de una celda de referencia.</ahelp>"
+
+#: solver.xhp#par_id1939451.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to shrink or restore the dialog. You can click or select cells in the sheet. You can enter a cell reference manually in the input box.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Haga clic aquí para reducir o restablecer el diálogo. Puede hacer clic o seleccionar las celdas en la hoja. Usted puede introducir manualmente una referencia de celda en el cuadro de entrada.</ahelp>"
+
+#: solver.xhp#par_id9038972.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to remove the row from the list. Any rows from below this row move up.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">De clic para eliminar la fila de la lista. Cualquier fila abajo de esta fila se mueve hacia arriba.</ahelp>"
+
+#: solver.xhp#par_id2423780.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Options dialog.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abre el diálogo de opciones.</ahelp>"
+
+#: solver.xhp#par_id2569658.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to solve the equation with the current settings. The dialog settings are retained until you close the current document.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Haga clic para solventar la ecuación con la configuración actual. El diálogo de configuración se retiene hasta que se cierre el documento actual.</ahelp>"
+
+#: solver.xhp#par_id5474410.help.text
+msgid "To solve equations with the solver"
+msgstr "Para resolver ecuaciones con solver"
+
+#: solver.xhp#par_id2216559.help.text
+msgid "The goal of the solver process is to find those variable values of an equation that result in an optimized value in the <emph>target cell</emph>, also named the \"objective\". You can choose whether the value in the target cell should be a maximum, a minimum, or approaching a given value."
+msgstr "El objetivo del proceso solucionador es encontrar estos valores variables de una ecuación que el resultado en un valor optimizado en la <emph>celda objetvo</emph>. Usted puede elegir si el valor en la celda objetivo debe ser el máximo, mínimo, o acercarse a un determinado valor."
+
+#: solver.xhp#par_id7869502.help.text
+msgid "The initial variable values are inserted in a rectangular cell range that you enter in the <emph>By changing cells</emph> box. "
+msgstr "Los valores iniciales de la variable son insertados en un rango de la celda rectangular que tu tecleas (agregas) en <emph>para cambiar celdas</emph> caja."
+
+#: solver.xhp#par_id9852900.help.text
+msgid "You can define a series of limiting conditions that set constraints for some cells. For example, you can set the constraint that one of the variables or cells must not be bigger than another variable, or not bigger than a given value. You can also define the constraint that one or more variables must be integers (values without decimals), or binary values (where only 0 and 1 are allowed)."
+msgstr "Puede definir una serie de condiciones limitantes para definir los limites de algunas celdas. Por ejemplo, puedes definir las limitantes de una variable o celda que no deba ser mas que otra variable, o no sea mas que un valor dado. Puedes tambien definir las limitantes que una o mas variables debe ser enteros (valores sin decimales), o valores binarios (donde solo 0 y 1 son permitidos)."
+
+#: solver.xhp#par_id5323953.help.text
+msgid "The default solver engine supports only linear equations."
+msgstr "El motor predeterminado del solucionador solo es compatible con ecuaciones lineales."
+
+#: solver_options.xhp#tit.help.text
+msgctxt "solver_options.xhp#tit.help.text"
+msgid "Options"
+msgstr "Opciones"
+
+#: solver_options.xhp#hd_id2794274.help.text
+msgctxt "solver_options.xhp#hd_id2794274.help.text"
+msgid "Options"
+msgstr "Opciones"
+
+#: solver_options.xhp#par_id6776940.help.text
+msgid "The Options dialog for the <link href=\"text/scalc/01/solver.xhp\">Solver</link> is used to set some options."
+msgstr "El diálogo de opciones para el <link href=\"text/scalc/01/solver.xhp\">Solucionador</link> se usa para definir algunas opciones."
+
+#: solver_options.xhp#par_id393993.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a solver engine. The listbox is disabled if only one solver engine is installed. Solver engines can be installed as extensions.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleccione un motor del solucionador. El cuadro de lista se desactiva si solamente hay un motor del solucionador instalado. Dichos motores se pueden instalar como extensiones.</ahelp>"
+
+#: solver_options.xhp#par_id5871761.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Configure the current solver.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Configurar el solucionador actual.</ahelp>"
+
+#: solver_options.xhp#par_id6531266.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">If the current entry in the Settings listbox allows to edit a value, you can click the Edit button. A dialog opens where you can change the value.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Si la entrada actual en el cuadro de lista de Configuración permite editar un valor, entonces podrá pulsar en el botón de Editar. Se abre un diálogo donde puede cambiar el valor.</ahelp>"
+
+#: solver_options.xhp#par_id3912778.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter or change the value.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Introduzca o cambie el valor.</ahelp>"
+
+#: solver_options.xhp#par_id3163853.help.text
+msgid "Use the Options dialog to configure the current solver engine."
+msgstr "Use el diálogo de Opciones para configurar el motor del solucionador."
+
+#: solver_options.xhp#par_id121158.help.text
+msgid "You can install more solver engines as extensions, if available. Open Tools - Extension Manager and browse to the Extensions web site to search for extensions."
+msgstr "Puede instalar más motores del solucionador como extensiones, si están disponibles. Abra Herramientas - Gestor de extensiones y navegue al sitio web de extensiones para buscar extensiones."
+
+#: solver_options.xhp#par_id3806878.help.text
+msgid "Select the solver engine to use and to configure from the listbox. The listbox is disabled if onle one solver engine is installed."
+msgstr "Seleccione el motor de solver para usar y para configurar de la caja de lista. La caja de lista esta deshabilitada si solo existe un motor de solver instalado."
+
+#: solver_options.xhp#par_id130619.help.text
+msgid "In the Settings box, check all settings that you want to use for the current goal seeking operation. If the current option offers different values, the Edit button is enabled. Click Edit to open a dialog where you can change the value."
+msgstr "En la caja de Settings, cheque todas las configuraciones que quiera para usar la operación predeterminada de busqueda de meta. Si la opcion actual ofrece diferentes valores, el botón Editar esta activa. Haga clic en Editar para abrir un diálogo donde puedes cambiar el valor."
+
+#: solver_options.xhp#par_id9999694.help.text
+msgid "Click OK to accept the changes and to go back to the <link href=\"text/scalc/01/solver.xhp\">Solver</link> dialog."
+msgstr "De clic en OK para aceptar los cambios y regrese al diálogo de <link href=\"text/scalc/01/solver.xhp\">Solver</link>."
+
+#: 02160000.xhp#tit.help.text
+msgctxt "02160000.xhp#tit.help.text"
+msgid "Delete Cells"
+msgstr "Eliminar celdas"
+
+#: 02160000.xhp#bm_id3153726.help.text
+msgid "<bookmark_value>cells; deleting cells</bookmark_value><bookmark_value>columns; deleting</bookmark_value><bookmark_value>rows; deleting</bookmark_value><bookmark_value>spreadsheets; deleting cells</bookmark_value><bookmark_value>deleting;cells/rows/columns</bookmark_value>"
+msgstr "<bookmark_value>celdas; borrar celdas</bookmark_value><bookmark_value>columnas; borrar</bookmark_value><bookmark_value>filas; borrar</bookmark_value><bookmark_value>Hojas de Cálculo; borrar celdas</bookmark_value><bookmark_value>borrar celdas/filas/columnas</bookmark_value>"
+
+#: 02160000.xhp#hd_id3153726.1.help.text
+msgctxt "02160000.xhp#hd_id3153726.1.help.text"
+msgid "Delete Cells"
+msgstr "Eliminar celdas"
+
+#: 02160000.xhp#par_id3154490.2.help.text
+#, fuzzy
+msgid "<variable id=\"zellenloeschentext\"><ahelp hid=\".uno:DeleteCell\">Completely deletes selected cells, columns or rows. The cells below or to the right of the deleted cells will fill the space.</ahelp></variable> Note that the selected delete option is stored and reloaded when the dialog is next called."
+msgstr "<variable id=\"zellenloeschentext\"><ahelp hid=\".uno:DeleteCell\">Elimina por completo las celdas, columnas o filas seleccionadas. Las celdas situadas debajo o a la derecha de las celdas borradas ocupan el espacio.</ahelp></variable> Tenga en cuenta que la opción de borrado seleccionada se guarda y sigue activa al volver a abrir el diálogo."
+
+#: 02160000.xhp#hd_id3149121.3.help.text
+msgctxt "02160000.xhp#hd_id3149121.3.help.text"
+msgid "Selection"
+msgstr "Opciones"
+
+#: 02160000.xhp#par_id3150751.4.help.text
+msgid "This area contains options for specifying how sheets are displayed after deleting cells."
+msgstr "En esta área aparece una serie de opciones para elegir cuál va a ser el aspecto de la hoja tras eliminar las celdas."
+
+#: 02160000.xhp#hd_id3155767.5.help.text
+msgid "Shift cells up"
+msgstr "Desplazar celdas hacia arriba"
+
+#: 02160000.xhp#par_id3153714.6.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DELCELL:BTN_CELLSUP\">Fills the space produced by the deleted cells with the cells underneath it.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DELCELL:BTN_CELLSUP\">Rellena el espacio dejado por las celdas borradas con las celdas situadas debajo de ellas.</ahelp>"
+
+#: 02160000.xhp#hd_id3156382.7.help.text
+msgid "Shift cells left"
+msgstr "Desplazar celdas hacia la izquierda"
+
+#: 02160000.xhp#par_id3154702.8.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DELCELL:BTN_CELLSLEFT\">Fills the resulting space by the cells to the right of the deleted cells.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DELCELL:BTN_CELLSLEFT\">Rellena el espacio dejado por las celdas borradas con las celdas situadas a la derecha de ellas.</ahelp>"
+
+#: 02160000.xhp#hd_id3146918.9.help.text
+msgid "Delete entire row(s)"
+msgstr "Borrar filas completas"
+
+#: 02160000.xhp#par_id3148487.10.help.text
+msgid "<ahelp hid=\".uno:DeleteRows\">After selecting at least one cell, deletes the entire row from the sheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteRows\">Después de seleccionar una celda como mínimo, borra toda la fila de la hoja.</ahelp>"
+
+#: 02160000.xhp#hd_id3155114.11.help.text
+msgid "Delete entire column(s)"
+msgstr "Borrar columnas completas"
+
+#: 02160000.xhp#par_id3150086.12.help.text
+msgid "<ahelp hid=\".uno:DeleteColumns\">After selecting at least one cell, deletes the entire column from the sheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteColumns\">Después de seleccionar una celda como mínimo, borra toda la columna de la hoja.</ahelp>"
+
+#: 02160000.xhp#par_id3166424.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/02150000.xhp\" name=\"Deleting Contents\">Deleting Contents</link>"
+msgstr "<link href=\"text/scalc/01/02150000.xhp\" name=\"Delete Contents\">Eliminar contenidos</link>"
+
+#: 05040200.xhp#tit.help.text
+msgctxt "05040200.xhp#tit.help.text"
+msgid "Optimal Column Width"
+msgstr "Ancho óptimo de columnas"
+
+#: 05040200.xhp#bm_id3155628.help.text
+msgid "<bookmark_value>spreadsheets; optimal column widths</bookmark_value><bookmark_value>columns; optimal widths</bookmark_value><bookmark_value>optimal column widths</bookmark_value>"
+msgstr "<bookmark_value>hojas de cálculo;anchos de columna óptimos</bookmark_value><bookmark_value>columnas;anchos óptimos</bookmark_value><bookmark_value>anchos de columna óptimos</bookmark_value>"
+
+#: 05040200.xhp#hd_id3155628.1.help.text
+msgctxt "05040200.xhp#hd_id3155628.1.help.text"
+msgid "Optimal Column Width"
+msgstr "Ancho de columna óptimo"
+
+#: 05040200.xhp#par_id3145068.2.help.text
+msgid "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalColumnWidthDi\">Defines the optimal column width for selected columns.</ahelp></variable> The optimal column width depends on the longest entry within a column. You can choose from the available <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"measurement units\">measurement units</link>."
+msgstr "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalColumnWidthDi\">Define el ancho óptimo para las columnas seleccionadas.</ahelp></variable> El ancho de columna óptimo depende de la entrada más larga de la columna. Puede elegir cualquiera de las <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"unidades de medida\">unidades de medida</link> disponibles."
+
+#: 05040200.xhp#hd_id3150767.3.help.text
+msgctxt "05040200.xhp#hd_id3150767.3.help.text"
+msgid "Add"
+msgstr "Adicional"
+
+#: 05040200.xhp#par_id3150449.4.help.text
+msgid "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_COL_OPT:ED_VALUE\">Defines additional spacing between the longest entry in a column and the vertical column borders.</ahelp>"
+msgstr "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_COL_OPT:ED_VALUE\">Define el espacio adicional entre la entrada más larga de una columna y los bordes verticales de ésta.</ahelp>"
+
+#: 05040200.xhp#hd_id3145785.5.help.text
+msgctxt "05040200.xhp#hd_id3145785.5.help.text"
+msgid "Default value"
+msgstr "Valor predeterminado"
+
+#: 05040200.xhp#par_id3146120.6.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_COL_OPT:BTN_DEFVAL\">Defines the optimal column width in order to display the entire contents of the column.</ahelp> The additional spacing for the optimal column width is preset to 0.1 in."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_COL_OPT:BTN_DEFVAL\">Define el ancho de columna óptimo para mostrar todo su contenido.</ahelp> El espacio adicional para el ancho de columna óptimo está preestablecido en 0,1 pulgadas."
+
+#: 12040000.xhp#tit.help.text
+msgctxt "12040000.xhp#tit.help.text"
+msgid "Filter"
+msgstr "Filtrar"
+
+#: 12040000.xhp#hd_id3150767.1.help.text
+msgid "<link href=\"text/scalc/01/12040000.xhp\" name=\"Filter\">Filter</link>"
+msgstr "<link href=\"text/scalc/01/12040000.xhp\" name=\"Filtro\">Filtro</link>"
+
+#: 12040000.xhp#par_id3155131.2.help.text
+msgid "<ahelp hid=\".\">Shows commands to filter your data.</ahelp>"
+msgstr "<ahelp hid=\".\">Muestra comandos para filstrar sus datos .</ahelp>"
+
+#: 12040000.xhp#par_id3146119.7.help.text
+msgid "$[officename] automatically recognizes predefined database ranges."
+msgstr "$[officename] reconoce automáticamente las áreas de base de datos predefinidas."
+
+#: 12040000.xhp#par_id3153363.3.help.text
+msgid "The following filtering options are available:"
+msgstr "Dispone de las siguientes opciones de filtro:"
+
+#: 12040000.xhp#hd_id3153728.4.help.text
+msgid "<link href=\"text/shared/02/12090000.xhp\" name=\"Standard filter\">Standard filter</link>"
+msgstr "<link href=\"text/shared/02/12090000.xhp\" name=\"Filtro predeterminado\">Filtro predeterminado</link>"
+
+#: 12040000.xhp#hd_id3159153.5.help.text
+msgid "<link href=\"text/scalc/01/12040300.xhp\" name=\"Advanced filter\">Advanced filter</link>"
+msgstr "<link href=\"text/scalc/01/12040300.xhp\" name=\"Filtro especial\">Filtro especial</link>"
+
+#: 04090000.xhp#tit.help.text
+msgid "Link to External Data"
+msgstr "Vínculo a datos externos"
+
+#: 04090000.xhp#par_id3153192.2.help.text
+msgid "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_LINKAREA_BTN_BROWSE\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
+msgstr "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_LINKAREA_BTN_BROWSE\" visibility=\"hidden\">Localice el archivo que contiene los datos que desee insertar.</ahelp>"
+
+#: 04090000.xhp#hd_id3145785.3.help.text
+msgid "<link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\">Link to External Data</link>"
+msgstr "<link href=\"text/scalc/01/04090000.xhp\" name=\"Datos externos\">Vínculo a datos externos</link>"
+
+#: 04090000.xhp#par_id3149262.4.help.text
+msgid "<ahelp hid=\".uno:InsertExternalDataSourc\">Inserts data from an HTML, Calc, or Excel file into the current sheet as a link. The data must be located within a named range.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertExternalDataSourc\">Inserta datos de un archivo HTML, Calc o Excel en la hoja actual como vínculo. Los datos deben estar en un área con nombre.</ahelp>"
+
+#: 04090000.xhp#hd_id3146984.5.help.text
+msgid "URL of external data source."
+msgstr "URL de la fuente de datos eterna."
+
+#: 04090000.xhp#par_id3145366.6.help.text
+msgid "<ahelp hid=\"HID_SCDLG_LINKAREAURL\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp>"
+msgstr "<ahelp hid=\"HID_SCDLG_LINKAREAURL\">Introduzca el URL o el nombre del archivo que contiene los datos que desea insertar, a continuación, pulse la tecla \"Entrar\".</ahelp>"
+
+#: 04090000.xhp#hd_id3145251.7.help.text
+msgid "Available tables/ranges"
+msgstr "Hojas/Áreas disponibles"
+
+#: 04090000.xhp#par_id3147397.8.help.text
+msgid "<ahelp hid=\"SC_MULTILISTBOX_RID_SCDLG_LINKAREA_LB_RANGES\">Select the table or the data range that you want to insert.</ahelp>"
+msgstr "<ahelp hid=\"SC_MULTILISTBOX_RID_SCDLG_LINKAREA_LB_RANGES\">Seleccione la tabla o el área de datos que desee insertar.</ahelp>"
+
+#: 04090000.xhp#hd_id3154492.9.help.text
+msgid "Update every"
+msgstr "Actualizar cada"
+
+#: 04090000.xhp#par_id3154017.10.help.text
+msgid "<ahelp hid=\"SC_NUMERICFIELD_RID_SCDLG_LINKAREA_NF_DELAY\">Enter the number of seconds to wait before the external data are reloaded into the current document.</ahelp>"
+msgstr "<ahelp hid=\"SC_NUMERICFIELD_RID_SCDLG_LINKAREA_NF_DELAY\">Escriba el número de segundos que se debe esperar antes de recargar los datos externos en el documento actual.</ahelp>"
+
+#: 04070400.xhp#tit.help.text
+msgid "Define Label Range"
+msgstr "Definir área de etiqueta"
+
+#: 04070400.xhp#bm_id3150791.help.text
+msgid "<bookmark_value>sheets; defining label ranges</bookmark_value><bookmark_value>label ranges in sheets</bookmark_value>"
+msgstr "<bookmark_value>hojas;definir áreas de etiquetas</bookmark_value><bookmark_value>áreas de etiquetas en hojas</bookmark_value>"
+
+#: 04070400.xhp#hd_id3150791.1.help.text
+msgid "<variable id=\"define_label_range\"><link href=\"text/scalc/01/04070400.xhp\">Define Label Range</link></variable>"
+msgstr "<variable id=\"define_label_range\"><link href=\"text/scalc/01/04070400.xhp\">Definir área de etiqueta</link></variable>"
+
+#: 04070400.xhp#par_id3150868.2.help.text
+msgid "<variable id=\"beschtext\"><ahelp hid=\".uno:DefineLabelRange\">Opens a dialog in which you can define a label range.</ahelp></variable>"
+msgstr "<variable id=\"beschtext\"><ahelp hid=\".uno:DefineLabelRange\">Abre un diálogo en el que puede definir un área de etiquetas.</ahelp></variable>"
+
+#: 04070400.xhp#par_id3155411.13.help.text
+msgid "The cell contents of a label range can be used like names in formulas - $[officename] recognizes these names in the same manner that it does the predefined names of the weekdays and months. These names are automatically completed when typed into a formula. In addition, the names defined by label ranges will have priority over names defined by automatically generated ranges."
+msgstr "El contenido de las celdas de un área de etiquetas se puede utilizar como los nombres en las fórmulas; $[officename] reconoce estos nombres de la misma forma que lo hace con los nombres predefinidos de los días de la semana y los meses. Estos nombres se completan automáticamente al escribirlos en una fórmula. Asimismo, los nombres definidos por áreas de etiquetas tienen prioridad sobre los definidos por áreas generadas automáticamente."
+
+#: 04070400.xhp#par_id3147435.14.help.text
+msgid "You can set label ranges that contain the same labels on different sheets. $[officename] first searches the label ranges of the current sheet and, following a failed search, the ranges of other sheets."
+msgstr "Es posible definir varias áreas de etiqueta que contengan los mismos títulos en diferentes tablas. En tal caso, $[officename] comprueba en primer lugar las áreas de la tabla actual y, de no obtener resultados, las del resto de las tablas."
+
+#: 04070400.xhp#hd_id3145801.3.help.text
+msgctxt "04070400.xhp#hd_id3145801.3.help.text"
+msgid "Range"
+msgstr "Áreas"
+
+#: 04070400.xhp#par_id3154731.4.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_AREA\">Displays the cell reference of each label range.</ahelp> In order to remove a label range from the list box, select it and then click <emph>Delete</emph>."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_AREA\">Muestra la referencia de celda de cada área de etiquetas.</ahelp> Para quitar un área de etiquetas del listado, selecciónela y haga clic en <emph>Eliminar</emph>."
+
+#: 04070400.xhp#hd_id3149121.5.help.text
+msgctxt "04070400.xhp#hd_id3149121.5.help.text"
+msgid "Contains column labels"
+msgstr "Contiene etiquetas de columna"
+
+#: 04070400.xhp#par_id3150330.6.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_COLHEAD\">Includes column labels in the current label range.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_COLHEAD\">Incluye las etiquetas de columna en el área de etiquetas actual.</ahelp>"
+
+#: 04070400.xhp#hd_id3149020.7.help.text
+msgid "Contains row labels"
+msgstr "Contiene etiquetas de fila"
+
+#: 04070400.xhp#par_id3154754.8.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ROWHEAD\">Includes row labels in the current label range.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ROWHEAD\">Incluye las etiquetas de fila en el área de etiquetas actual.</ahelp>"
+
+#: 04070400.xhp#hd_id3159264.11.help.text
+msgid "For data range"
+msgstr "para área de datos"
+
+#: 04070400.xhp#par_id3154703.12.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_DATA\">Sets the data range for which the selected label range is valid. To modify it, click in the sheet and select another range with the mouse.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_DATA\">Establece el área de datos en la que es válida el área de etiquetas seleccionada. Para modificarla, haga clic en la hoja y seleccione otra área con el ratón.</ahelp>"
+
+#: 04070400.xhp#hd_id3145789.9.help.text
+msgctxt "04070400.xhp#hd_id3145789.9.help.text"
+msgid "Add"
+msgstr "Agregar"
+
+#: 04070400.xhp#par_id3147005.10.help.text
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ADD\">Adds the current label range to the list.</ahelp>"
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ADD\">Agrega a la lista el área de etiquetas actual.</ahelp>"
+
+#: func_date.xhp#tit.help.text
+msgid "DATE"
+msgstr "FECHA"
+
+#: func_date.xhp#bm_id3155511.help.text
+msgid "<bookmark_value>DATE function</bookmark_value>"
+msgstr "<bookmark_value>FECHA</bookmark_value>"
+
+#: func_date.xhp#hd_id3155511.3.help.text
+msgid "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">DATE</link></variable>"
+msgstr "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">FECHA</link></variable>"
+
+#: func_date.xhp#par_id3153551.4.help.text
+msgid "<ahelp hid=\"HID_FUNC_DATUM\">This function calculates a date specified by year, month, day and displays it in the cell's formatting.</ahelp> The default format of a cell containing the DATE function is the date format, but you can format the cells with any other number format."
+msgstr "<ahelp hid=\"HID_FUNC_DATUM\">Este función calcula una fecha, especificada por año, mes, día y lo muestra en el formato de la celda.</ahelp> El formato predeterminado de una celda que contiene la función DATE es el formato de fecha, pero puede formatearlo las celdas con cualquier otro formato numérico."
+
+#: func_date.xhp#hd_id3148590.5.help.text
+msgctxt "func_date.xhp#hd_id3148590.5.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: func_date.xhp#par_id3150474.6.help.text
+msgid "DATE(Year; Month; Day)"
+msgstr "FECHA(Año; Mes; Día)"
+
+#: func_date.xhp#par_id3152815.7.help.text
+msgid "<emph>Year</emph> is an integer between 1583 and 9957 or between 0 and 99."
+msgstr "<emph>Año</emph> es un integral entre 1583 y 9957 ó entre 0 y 99."
+
+#: func_date.xhp#par_id3153222.174.help.text
+msgid "In <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - General </item>you can set from which year a two-digit number entry is recognized as 20xx."
+msgstr "En <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias </caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - $[officename] - General </item> se puede establecer desde qué año el ingreso de un número de dos dígitos se reconoce como 20xx."
+
+#: func_date.xhp#par_id3155817.8.help.text
+msgid "<emph>Month</emph> is an integer indicating the month."
+msgstr "<emph>Mes</emph> es un integral que indica el mes."
+
+#: func_date.xhp#par_id3153183.9.help.text
+msgid "<emph>Day</emph> is an integer indicating the day of the month."
+msgstr "<emph>Día</emph> es un integral que indica el día del mes."
+
+#: func_date.xhp#par_id3156260.10.help.text
+msgid "If the values for month and day are out of bounds, they are carried over to the next digit. If you enter <item type=\"input\">=DATE(00;12;31)</item> the result will be 12/31/00. If, on the other hand, you enter <item type=\"input\">=DATE(00;13;31)</item> the result will be 1/31/01."
+msgstr "Si los valores por mes y día están fuera de los límites, que se traspasan al siguiente dígito. Si usted introduce <item type=\"input\">=FECHA(00;12;31)</item> el resultado será 12/31/00. Si, por otra parte, usted introduce <item type=\"input\">=FECHA(00;13;31)</item> el resultado será 1/31/01."
+
+#: func_date.xhp#hd_id3147477.12.help.text
+msgctxt "func_date.xhp#hd_id3147477.12.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: func_date.xhp#par_id3152589.16.help.text
+msgid "<item type=\"input\">=DATE(00;1;31)</item> yields 1/31/00 if the cell format setting is MM/DD/YY."
+msgstr "<item type=\"input\">=FECHA(00;1;31)</item> rendimientos 31/01/00 si la configuración del formato de celde es DD/MM/AA."
+
+#: func_days360.xhp#tit.help.text
+msgid "DAYS360 "
+msgstr "DÍAS360"
+
+#: func_days360.xhp#bm_id3148555.help.text
+msgid "<bookmark_value>DAYS360 function</bookmark_value>"
+msgstr "<bookmark_value>DÍAS360</bookmark_value>"
+
+#: func_days360.xhp#hd_id3148555.124.help.text
+msgid "<variable id=\"days360\"><link href=\"text/scalc/01/func_days360.xhp\">DAYS360</link></variable>"
+msgstr "<variable id=\"days360\"><link href=\"text/scalc/01/func_days360.xhp\">DÍAS360</link></variable>"
+
+#: func_days360.xhp#par_id3156032.125.help.text
+msgid "<ahelp hid=\"HID_FUNC_TAGE360\">Returns the difference between two dates based on the 360 day year used in interest calculations.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TAGE360\">Devuelve la diferencia entre dos fechas basándose en el año de 360 días usado en los cálculos de intereses.</ahelp>"
+
+#: func_days360.xhp#hd_id3155347.126.help.text
+msgctxt "func_days360.xhp#hd_id3155347.126.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: func_days360.xhp#par_id3155313.127.help.text
+msgid "DAYS360(\"Date1\"; \"Date2\"; Type)"
+msgstr "DÍAs360(\"Datos1\"; \"Datos2\"; Tipo)"
+
+#: func_days360.xhp#par_id3145263.128.help.text
+msgid "If <emph>Date2</emph> is earlier than <emph>Date1</emph>, the function will return a negative number."
+msgstr "Si <emph>Datos2</emph> es anterior a <emph>Datos1</emph>, la función devuelta es un número negativo."
+
+#: func_days360.xhp#par_id3151064.129.help.text
+msgid "The optional argument <emph>Type</emph> determines the type of difference calculation. If Type = 0 or if the argument is missing, the US method (NASD, National Association of Securities Dealers) is used. If Type <> 0, the European method is used."
+msgstr "El argumento opcional <emph>tipo</emph> determina el tipo de cálculo de diferencia. Si el tipo es 0 o si el argumento no está presente, se utiliza el método de EE.UU. (NASD, Asociación nacional de agencias de seguros). Si el tipo es distinto de 0 se utiliza el método europeo."
+
+#: func_days360.xhp#hd_id3148641.130.help.text
+msgctxt "func_days360.xhp#hd_id3148641.130.help.text"
+msgid "Examples"
+msgstr "Ejemplos"
+
+#: func_days360.xhp#par_id3156348.132.help.text
+msgid "=DAYS360(\"2000-01-01\";NOW()) returns the number of interest days from January 1, 2000 until today."
+msgstr "=DÍAS360(\"2000-01-01\";AHORA()) devuelve el número de días de interés desde el 1 de enero de 2000 hasta el día de hoy."
+
+#: text2columns.xhp#tit.help.text
+msgid "Text to Columns"
+msgstr "Texto a columnas "
+
+#: text2columns.xhp#bm_id8004394.help.text
+msgid "<bookmark_value>text to columns</bookmark_value>"
+msgstr "<bookmark_value>texto a columnas</bookmark_value>"
+
+#: text2columns.xhp#hd_id2300180.help.text
+msgid "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
+msgstr "<link href=\"text/scalc/01/text2columns.xhp\">Texto a Columnas</link>"
+
+#: text2columns.xhp#par_id655232.help.text
+msgid "<variable id=\"text2columns\">Opens the Text to Columns dialog, where you enter settings to expand the contents of selected cells to multiple cells. </variable>"
+msgstr "<variable id=\"text2columns\">Abre el dialogo, Texto a Columnas, donde puede entrar configuraciones para expandir el contenido de celdas seleccionadas a celdas múltiples. </variable>"
+
+#: text2columns.xhp#hd_id9599597.help.text
+msgid "To expand cell contents to multiple cells"
+msgstr "Para expandir contenido de celdas a celdas múltiples "
+
+#: text2columns.xhp#par_id2021546.help.text
+msgid "You can expand cells that contain comma separated values (CSV) into multiple cells in the same row. "
+msgstr "Puede expandir celdas que contiene valores separados por comas (CSV) en celdas múltiples en la misma fila."
+
+#: text2columns.xhp#par_id2623981.help.text
+msgid "For example, cell A1 contains the comma separated values <item type=\"literal\">1,2,3,4</item>, and cell A2 contains the text <item type=\"literal\">A,B,C,D</item>. "
+msgstr "Por ejemplo, celda A1 contiene valores separado por comas: <item type=\"literal\">1,2,3,4</item>, y celda A2 contiene el texto <item type=\"literal\">A,B,C,D</item>. "
+
+#: text2columns.xhp#par_id7242042.help.text
+msgid "Select the cell or cells that you want to expand."
+msgstr "Seleccione la celda o celdas que desea expandir."
+
+#: text2columns.xhp#par_id6999420.help.text
+msgid "Choose <emph>Data - Text to Columns</emph>."
+msgstr "Escoge <emph>Datos - Texto a Columnas</emph>."
+
+#: text2columns.xhp#par_id6334116.help.text
+msgid "You see the Text to Columns dialog."
+msgstr "Ver el dialogo de Texto a Columnas."
+
+#: text2columns.xhp#par_id9276406.help.text
+msgid "Select the separator options. The preview shows how the current cell contents will be transformed into multiple cells."
+msgstr "Seleccione las opciones de separadores. La prevista muestra como los contenidos de la celda corriente será transformado en celdas múltiples."
+
+#: text2columns.xhp#par_id8523819.help.text
+msgid "You can select a fixed width and then click the ruler on the preview to set cell breakup positions."
+msgstr "Puede seleccionar un ancho fijo y entonces haga clik en la regla de la Prevista para configurar los posiciones de saltos de celdas."
+
+#: text2columns.xhp#par_id1517380.help.text
+msgid "You can select or enter separator characters to define the positions of breaking points. The separator characters are removed from the resulting cell contents."
+msgstr "Puede seleccionar o entrar caracteres de separación para definir los posiciones de puntos de saltos. Los caracteres de separación están quitado de los contenidos de celdas resultantes."
+
+#: text2columns.xhp#par_id7110812.help.text
+msgid "In the example, you select the comma as a delimiter character. Cells A1 and A2 will be expanded to four columns each. A1 contains 1, B1 contains 2, and so on."
+msgstr "En el ejemplo, selecciona la coma como carácter delimitador. Las celdas A1 y A2 se ampliarán a cuatro columnas. A1 contiene 1, B1 contiene 2, etc."
+
+#: 05050300.xhp#tit.help.text
+msgctxt "05050300.xhp#tit.help.text"
+msgid "Show Sheet"
+msgstr "Mostrar hoja"
+
+#: 05050300.xhp#bm_id3148946.help.text
+msgid "<bookmark_value>sheets; displaying</bookmark_value><bookmark_value>displaying; sheets</bookmark_value>"
+msgstr "<bookmark_value>hojas;mostrar</bookmark_value><bookmark_value>mostrar;hojas</bookmark_value>"
+
+#: 05050300.xhp#hd_id3148946.1.help.text
+msgctxt "05050300.xhp#hd_id3148946.1.help.text"
+msgid "Show Sheet"
+msgstr "Mostrar hoja de cálculo"
+
+#: 05050300.xhp#par_id3148799.2.help.text
+msgid "<variable id=\"tabeintext\"><ahelp visibility=\"visible\" hid=\".uno:Show\">Displays sheets that were previously hidden with the <emph>Hide</emph> command.</ahelp></variable> Select one sheet only to call the command. The current sheet is always selected. If a sheet other than the current sheet is selected, you can deselect it by pressing <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> while clicking the corresponding sheet tab at the bottom of the window."
+msgstr "<variable id=\"tabeintext\"><ahelp visibility=\"visible\" hid=\".uno:Show\">Muestra las hojas que se ocultaron mediante la orden <emph>Ocultar</emph>.</ahelp></variable> Seleccione una única página para ejecutar la orden. La hoja actual siempre está seleccionada. Si está seleccionada una hoja distinta de la actual, puede quitar la selección pulsando <switchinline select=\"sys\"> <caseinline select=\"MAC\">Comando</caseinline> <defaultinline>Control</defaultinline> </switchinline> al tiempo que hace clic en la pestaña correspondiente en la parte inferior de la ventana."
+
+#: 05050300.xhp#hd_id3151112.3.help.text
+msgid "Hidden sheets"
+msgstr "Hojas ocultas"
+
+#: 05050300.xhp#par_id3145273.4.help.text
+msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_SHOW_TAB:LB_ENTRYLIST\" visibility=\"visible\">Displays a list of all hidden sheets in your spreadsheet document.</ahelp> To show a certain sheet, click the corresponding entry on the list and confirm with OK."
+msgstr "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_SHOW_TAB:LB_ENTRYLIST\" visibility=\"visible\">Muestra una lista de hojas ocultas en el documento de la hoja de cálculo.</ahelp> Para mostrar una hoja determinada, pulse en la entrada correspondiente de la lista y confirme pulsando Aceptar."
+
+#: 06030100.xhp#tit.help.text
+msgid "Trace Precedents"
+msgstr "Rastrear los precedentes"
+
+#: 06030100.xhp#bm_id3155628.help.text
+msgid "<bookmark_value>cells; tracing precedents</bookmark_value><bookmark_value>formula cells;tracing precedents</bookmark_value>"
+msgstr "<bookmark_value>celdas;rastrear precedentes</bookmark_value><bookmark_value>celdas de fórmulas;rastrear precedentes</bookmark_value>"
+
+#: 06030100.xhp#hd_id3155628.1.help.text
+msgid "<link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedents\">Trace Precedents</link>"
+msgstr "<link href=\"text/scalc/01/06030100.xhp\" name=\"Rastrear precedente\">Rastrear precedente</link>"
+
+#: 06030100.xhp#par_id3153542.2.help.text
+msgid "<ahelp hid=\".uno:ShowPrecedents\">This function shows the relationship between the current cell containing a formula and the cells used in the formula.</ahelp>"
+msgstr "<ahelp hid=\".uno:ShowPrecedents\">Esta función muestra la relación entre la celda actual que contiene una fórmula y las celdas utilizadas en la fórmula.</ahelp>"
+
+#: 06030100.xhp#par_id3147265.4.help.text
+msgid "Traces are displayed in the sheet with marking arrows. At the same time, the range of all the cells contained in the formula of the current cell is highlighted with a blue frame."
+msgstr "Se muestran flechas de rastreo en la hoja. Simultáneamente el área de las celdas contenidas en la fórmula de la celda actual queda destacada con un marco azul."
+
+#: 06030100.xhp#par_id3154321.3.help.text
+msgid "This function is based on a principle of layers. For example, if the precedent cell to a formula is already indicated with a tracer arrow, when you repeat this command, the tracer arrows are drawn to the precedent cells of this cell."
+msgstr "Esta función se realiza por capas. Si por ejemplo se muestra el seguimiento de una fórmula respecto a la anterior, al volver a activar la función se muestran los seguimientos o rastros respecto a las anteriores."
+
+#: 04080000.xhp#tit.help.text
+msgctxt "04080000.xhp#tit.help.text"
+msgid "Function List"
+msgstr "Lista de funciones"
+
+#: 04080000.xhp#bm_id3154126.help.text
+msgid "<bookmark_value>formula list window</bookmark_value><bookmark_value>function list window</bookmark_value><bookmark_value>inserting functions; function list window</bookmark_value>"
+msgstr "<bookmark_value>ventana de lista de fórmulas</bookmark_value><bookmark_value>ventana de lista de funciones</bookmark_value><bookmark_value>insertar funciones;ventana de lista de funciones</bookmark_value>"
+
+#: 04080000.xhp#hd_id3154126.1.help.text
+msgid "<link href=\"text/scalc/01/04080000.xhp\" name=\"Function List\">Function List</link>"
+msgstr "<link href=\"text/scalc/01/04080000.xhp\" name=\"Lista de funciones\">Lista de funciones</link>"
+
+#: 04080000.xhp#par_id3151118.2.help.text
+msgid "<variable id=\"funktionslistetext\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">This command opens the <emph>Function List</emph> window, which displays all functions that can be inserted into your document.</ahelp></variable> The <emph>Function List</emph> window is similar to the <emph>Functions</emph> tab page of the <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Function Wizard</link>. The functions are inserted with placeholders to be replaced with your own values."
+msgstr "<variable id=\"funktionslistetext\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">Este comando abre la ventana <emph>Lista de Funciones</emph>, la cual muestra todas las funciones que se pueden insertar en el documento.</ahelp></variable> La ventana de <emph>Lista de funciones</emph> es similar a la pestaña de la página <emph>Funciones</emph> del <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Asistente para funciones</link>. Las funciones son insertadas como marcadores de posición a ser reemplazados con sus valores."
+
+#: 04080000.xhp#par_id3152576.3.help.text
+msgid "The <emph>Function List</emph> window is a resizable <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link>. Use it to quickly enter functions in the spreadsheet. By double-clicking an entry in the functions list, the respective function is directly inserted with all parameters."
+msgstr "La ventana <emph>Lista de funciones</emph> es una <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"ventana acoplable y de tamaño modificable\">ventana acoplable y de tamaño modificable</link>. Utilícela para introducir rápidamente funciones en la hoja de cálculo. Al pulsar dos veces en uno de los elementos de la lista de funciones se inserta la función correspondiente con todos sus parámetros."
+
+#: 04080000.xhp#hd_id3145799.4.help.text
+msgid "Category List"
+msgstr "Lista de categorías"
+
+#: 04080000.xhp#hd_id3153160.5.help.text
+msgctxt "04080000.xhp#hd_id3153160.5.help.text"
+msgid "Function List"
+msgstr "Lista de funciones"
+
+#: 04080000.xhp#par_id3149412.6.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:FID_FUNCTION_BOX:LB_FUNC\">Displays the available functions.</ahelp> When you select a function, the area below the list box displays a short description. To insert the selected function double-click it or click the <emph>Insert Function into calculation sheet</emph> icon."
+msgstr "<ahelp hid=\"SC:LISTBOX:FID_FUNCTION_BOX:LB_FUNC\">Muestra las funciones disponibles.</ahelp> Al seleccionar una función se muestra una breve descripción en el área situada debajo del listado. Para insertar la función seleccionada, haga doble clic en ella o seleccione el símbolo <emph>Insertar la función en la hoja de cálculo</emph>."
+
+#: 04080000.xhp#hd_id3146971.7.help.text
+msgid "Insert Function into calculation sheet"
+msgstr "Insertar la función en la hoja de cálculo"
+
+#: 04080000.xhp#par_id3150043.help.text
+msgid "<image id=\"img_id3159267\" src=\"sc/res/fx.png\" width=\"0.1945inch\" height=\"0.1945inch\"><alt id=\"alt_id3159267\">Icon</alt></image>"
+msgstr "<image id=\"img_id3159267\" src=\"sc/res/fx.png\" width=\"0.1945inch\" height=\"0.1945inch\"><alt id=\"alt_id3159267\">Icono</alt></image>"
+
+#: 04080000.xhp#par_id3147345.8.help.text
+msgid "<ahelp hid=\"SC:IMAGEBUTTON:FID_FUNCTION_BOX:IMB_INSERT\">Inserts the selected function into the document.</ahelp>"
+msgstr "<ahelp hid=\"SC:IMAGEBUTTON:FID_FUNCTION_BOX:IMB_INSERT\">Inserta la función seleccionada en el documento.</ahelp>"
+
+#: 05070000.xhp#tit.help.text
+msgctxt "05070000.xhp#tit.help.text"
+msgid "Page Style"
+msgstr "Estilos de página"
+
+#: 05070000.xhp#hd_id3157910.1.help.text
+msgctxt "05070000.xhp#hd_id3157910.1.help.text"
+msgid "Page Style"
+msgstr "Estilo de hoja"
+
+#: 05070000.xhp#par_id3156023.2.help.text
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:PageFormatDialog\" visibility=\"visible\">Opens a dialog where you can define the appearance of all pages in your document.</ahelp></variable>"
+msgstr "<variable id=\"seitetext\"><ahelp hid=\".uno:PageFormatDialog\" visibility=\"visible\">Abre un diálogo que permite definir el aspecto de las páginas del documento.</ahelp></variable>"
+
+#: 02150000.xhp#tit.help.text
+msgctxt "02150000.xhp#tit.help.text"
+msgid "Deleting Contents"
+msgstr "Borrar contenido"
+
+#: 02150000.xhp#bm_id3143284.help.text
+msgid "<bookmark_value>deleting; cell contents</bookmark_value><bookmark_value>cells; deleting contents</bookmark_value><bookmark_value>spreadsheets; deleting cell contents</bookmark_value><bookmark_value>cell contents; deleting</bookmark_value>"
+msgstr "<bookmark_value>eliminar;contenido de celdas</bookmark_value><bookmark_value>celdas;eliminar contenido</bookmark_value><bookmark_value>hojas de cálculo;eliminar contenido de celdas</bookmark_value><bookmark_value>contenido de celdas;eliminar</bookmark_value>"
+
+#: 02150000.xhp#hd_id3143284.1.help.text
+msgctxt "02150000.xhp#hd_id3143284.1.help.text"
+msgid "Deleting Contents"
+msgstr "Eliminar contenidos"
+
+#: 02150000.xhp#par_id3149456.2.help.text
+msgid "<variable id=\"inhalteloeschentext\"><ahelp hid=\".uno:Delete\">Specifies the contents to be deleted from the active cell or from a selected cell range.</ahelp></variable> If several sheets are selected, all selected sheets will be affected."
+msgstr "<variable id=\"inhalteloeschentext\"><ahelp hid=\".uno:Delete\">Especifica el contenido que se debe borrar de una celda o área de celdas seleccionadas.</ahelp></variable> Si se seleccionan varias celdas, quedan afectadas todas ellas."
+
+#: 02150000.xhp#par_id3159154.21.help.text
+msgid "This dialog is also called by pressing Backspace after the cell cursor has been activated on the sheet."
+msgstr ""
+
+#: 02150000.xhp#par_id3145367.22.help.text
+msgid "Pressing Delete deletes content without calling the dialog or changing formats."
+msgstr ""
+
+#: 02150000.xhp#par_id3153951.23.help.text
+msgid "Use <emph>Cut</emph> on the Standard bar to delete contents and formats without the dialog."
+msgstr "Con el símbolo <emph>Cortar</emph> de la barra estándar se eliminan los contenidos y formatos sin el diálogo."
+
+#: 02150000.xhp#hd_id3148575.3.help.text
+msgctxt "02150000.xhp#hd_id3148575.3.help.text"
+msgid "Selection"
+msgstr "Opciones"
+
+#: 02150000.xhp#par_id3149665.4.help.text
+msgid "This area lists the options for deleting contents."
+msgstr "Esta área ofrece diferentes posibilidades para seleccionar el contenido que desee eliminar. "
+
+#: 02150000.xhp#hd_id3146975.5.help.text
+msgid "Delete All"
+msgstr "Eliminar todo"
+
+#: 02150000.xhp#par_id3154729.6.help.text
+msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELALL\">Deletes all content from the selected cell range.</ahelp>"
+msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELALL\">Borra todo el contenido del área de celdas seleccionada.</ahelp>"
+
+#: 02150000.xhp#hd_id3156286.7.help.text
+msgid "Text"
+msgstr "Texto"
+
+#: 02150000.xhp#par_id3154015.8.help.text
+msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELSTRINGS\">Deletes text only. Formats, formulas, numbers and dates are not affected.</ahelp>"
+msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELSTRINGS\">Borra solo el texto. No afecta a formatos, fórmulas, números y fechas.</ahelp>"
+
+#: 02150000.xhp#hd_id3153840.9.help.text
+msgid "Numbers"
+msgstr "Números"
+
+#: 02150000.xhp#par_id3148405.10.help.text
+msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELNUMBERS\">Deletes numbers only. Formats and formulas remain unchanged.</ahelp>"
+msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELNUMBERS\">Borra únicamente los números. Los formatos y las fórmulas no cambian.</ahelp>"
+
+#: 02150000.xhp#hd_id3155764.11.help.text
+msgid "Date & time"
+msgstr "Fecha y hora"
+
+#: 02150000.xhp#par_id3149567.12.help.text
+msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELDATETIME\">Deletes date and time values. Formats, text, numbers and formulas remain unchanged.</ahelp>"
+msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELDATETIME\">Borra los valores de fecha y hora. Los formatos, el texto, los números y las fórmulas no cambian.</ahelp>"
+
+#: 02150000.xhp#hd_id3154703.13.help.text
+msgctxt "02150000.xhp#hd_id3154703.13.help.text"
+msgid "Formulas"
+msgstr "Fórmulas"
+
+#: 02150000.xhp#par_id3148485.14.help.text
+msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELFORMULAS\">Deletes formulas. Text, numbers, formats, dates and times remain unchanged.</ahelp>"
+msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELFORMULAS\">Borra las fórmulas. El texto, los números, los formatos, las fechas y las horas no cambian.</ahelp>"
+
+#: 02150000.xhp#hd_id3150300.15.help.text
+msgctxt "02150000.xhp#hd_id3150300.15.help.text"
+msgid "Comments"
+msgstr "Comentarios"
+
+#: 02150000.xhp#par_id3154658.16.help.text
+msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELNOTES\">Deletes comments added to cells. All other elements remain unchanged.</ahelp>"
+msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELNOTES\">Elimina las notas agregadas a las celdas. Todos los demás elementos se conservan sin cambios.</ahelp>"
+
+#: 02150000.xhp#hd_id3155112.17.help.text
+msgid "Formats"
+msgstr "Formatos"
+
+#: 02150000.xhp#par_id3146134.18.help.text
+msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELATTRS\">Deletes format attributes applied to cells. All cell content remains unchanged.</ahelp>"
+msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELATTRS\">Borra los atributos de formato aplicados a las celdas. El contenido de las celdas no cambia.</ahelp>"
+
+#: 02150000.xhp#hd_id3150088.19.help.text
+msgctxt "02150000.xhp#hd_id3150088.19.help.text"
+msgid "Objects"
+msgstr "Objetos"
+
+#: 02150000.xhp#par_id3152990.20.help.text
+msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELOBJECTS\">Deletes objects. All cell content remains unchanged.</ahelp>"
+msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELOBJECTS\">Borra los objetos. El contenido de las celdas no cambia.</ahelp>"
+
+#: 07090000.xhp#tit.help.text
+msgid "Freeze"
+msgstr "Fijar"
+
+#: 07090000.xhp#hd_id3150517.1.help.text
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"Freeze\">Freeze</link>"
+msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"Fijar\">Fijar</link>"
+
+#: 07090000.xhp#par_id3156289.2.help.text
+msgid "<ahelp hid=\".uno:FreezePanes\" visibility=\"visible\">Divides the sheet at the top left corner of the active cell and the area to the top left is no longer scrollable.</ahelp>"
+msgstr "<ahelp hid=\".uno:FreezePanes\" visibility=\"visible\">Divide la hoja a partir de la esquina superior izquierda de la celda activa; el área situada en el extremo superior izquierdo ya no puede desplazarse.</ahelp>"
+
+#: 12070100.xhp#tit.help.text
+msgctxt "12070100.xhp#tit.help.text"
+msgid "Consolidate by"
+msgstr "Consolidar según"
+
+#: 12070100.xhp#hd_id3151210.1.help.text
+msgctxt "12070100.xhp#hd_id3151210.1.help.text"
+msgid "Consolidate by"
+msgstr "Consolidar según"
+
+#: 12070100.xhp#hd_id3125864.2.help.text
+msgctxt "12070100.xhp#hd_id3125864.2.help.text"
+msgid "Consolidate by"
+msgstr "Consolidar según"
+
+#: 12070100.xhp#par_id3154909.3.help.text
+msgid "Use this section if the cell ranges that you want to consolidate contain labels. You only need to select these options if the consolidation ranges contain similar labels and the data arranged is arranged differently."
+msgstr "Utilice esta sección si las áreas de celdas que desea consolidar contienen etiquetas. Sólo debe seleccionar estas opciones si las áreas de consolidación contienen etiquetas similares y los datos están dispuestos de forma distinta."
+
+#: 12070100.xhp#hd_id3153968.4.help.text
+msgid "Row labels"
+msgstr "Etiqueta de filas"
+
+#: 12070100.xhp#par_id3150441.5.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYROW\" visibility=\"visible\">Uses the row labels to arrange the consolidated data.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYROW\" visibility=\"visible\">Utiliza las etiquetas de fila para disponer los datos consolidados.</ahelp>"
+
+#: 12070100.xhp#hd_id3146976.6.help.text
+msgid "Column labels"
+msgstr "Etiquetas de columna"
+
+#: 12070100.xhp#par_id3155411.7.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYCOL\" visibility=\"visible\">Uses the column labels to arrange the consolidated data.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYCOL\" visibility=\"visible\">Utiliza las etiquetas de columna para disponer los datos consolidados.</ahelp>"
+
+#: 12070100.xhp#hd_id3153191.12.help.text
+msgctxt "12070100.xhp#hd_id3153191.12.help.text"
+msgid "Options"
+msgstr "Opciones"
+
+#: 12070100.xhp#hd_id3159154.8.help.text
+msgid "Link to source data"
+msgstr "Conectar con datos fuente"
+
+#: 12070100.xhp#par_id3146986.9.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_REFS\" visibility=\"visible\">Links the data in the consolidation range to the source data, and automatically updates the results of the consolidation when the source data is changed.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_REFS\" visibility=\"visible\">Vincula los datos del área de consolidación con los datos fuente y actualiza automáticamente los resultados de la consolidación en caso de modificación de dichos datos fuente.</ahelp>"
+
+#: 12070100.xhp#hd_id3163708.10.help.text
+msgctxt "12070100.xhp#hd_id3163708.10.help.text"
+msgid "More <<"
+msgstr "Opciones <<"
+
+#: 12070100.xhp#par_id3151118.11.help.text
+msgctxt "12070100.xhp#par_id3151118.11.help.text"
+msgid "Hides the additional options."
+msgstr "Oculta las opciones adicionales."
+
+#: 02110000.xhp#tit.help.text
+msgid "Navigator"
+msgstr "Navegador"
+
+#: 02110000.xhp#bm_id3150791.help.text
+msgid "<bookmark_value>Navigator;for sheets</bookmark_value><bookmark_value>navigating;in spreadsheets</bookmark_value><bookmark_value>displaying; scenario names</bookmark_value><bookmark_value>scenarios;displaying names</bookmark_value>"
+msgstr "<bookmark_value>Navegador;para hojas</bookmark_value><bookmark_value>navegar;en hojas de cálculo</bookmark_value><bookmark_value>mostrar; nombres de escenario</bookmark_value><bookmark_value>escenarios;mostrar nombres</bookmark_value>"
+
+#: 02110000.xhp#hd_id3150791.1.help.text
+msgid "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>"
+msgstr "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navegador</link>"
+
+#: 02110000.xhp#par_id3156422.2.help.text
+msgid "<ahelp hid=\".uno:Navigator\">Activates and deactivates the Navigator.</ahelp> The Navigator is a <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link>."
+msgstr "<ahelp hid=\".uno:Navigator\">Activa y desactiva el Navegador.</ahelp> El Navegador es una <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">ventana acoplable</link>."
+
+#: 02110000.xhp#par_id3145271.40.help.text
+msgid "Choose <emph>View - Navigator</emph> to display the Navigator."
+msgstr "Seleccione <emph>Editar - Navegador</emph> para abrir el Navegador."
+
+#: 02110000.xhp#hd_id3159155.4.help.text
+msgctxt "02110000.xhp#hd_id3159155.4.help.text"
+msgid "Column"
+msgstr "Columna"
+
+#: 02110000.xhp#par_id3146984.5.help.text
+msgid "<ahelp hid=\"HID_SC_NAVIPI_COL\">Enter the column letter. Press Enter to reposition the cell cursor to the specified column in the same row.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_COL\">Inserte la letra de la columna. Pulse INTRO para colocar el cursor de celdas en la columna especificada en la misma fila. </ahelp>"
+
+#: 02110000.xhp#hd_id3147126.6.help.text
+msgctxt "02110000.xhp#hd_id3147126.6.help.text"
+msgid "Row"
+msgstr "Fila"
+
+#: 02110000.xhp#par_id3149958.7.help.text
+msgid "<ahelp hid=\"HID_SC_NAVIPI_ROW\">Enter a row number. Press Enter to reposition the cell cursor to the specified row in the same column.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_ROW\">Entra un número de fila. Oprima INTRO para reposicionar el cursor de la celda a la fila especificado en la misma columna.</ahelp>"
+
+#: 02110000.xhp#hd_id3150717.8.help.text
+msgctxt "02110000.xhp#hd_id3150717.8.help.text"
+msgid "Data Range"
+msgstr "Área de datos"
+
+#: 02110000.xhp#par_id3150752.10.help.text
+msgid "<ahelp hid=\"HID_SC_NAVIPI_DATA\">Specifies the current data range denoted by the position of the cell cursor.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_DATA\">Especifica el área de datos actual designada por la posición del cursor de celda.</ahelp>"
+
+#: 02110000.xhp#par_id3159264.help.text
+msgid "<image id=\"img_id3147338\" src=\"cmd/sc_grid.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147338\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147338\" src=\"cmd/sc_grid.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147338\">Ícono</alt></image>"
+
+#: 02110000.xhp#par_id3146919.9.help.text
+msgctxt "02110000.xhp#par_id3146919.9.help.text"
+msgid "Data Range"
+msgstr "Área de datos"
+
+#: 02110000.xhp#hd_id3148488.14.help.text
+msgctxt "02110000.xhp#hd_id3148488.14.help.text"
+msgid "Start"
+msgstr "Comienzo"
+
+#: 02110000.xhp#par_id3150086.16.help.text
+msgid "<ahelp hid=\"HID_SC_NAVIPI_UP\">Moves to the cell at the beginning of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_UP\">Se desplaza a la celda situada al principio del área de datos actual, que se puede resaltar mediante el botón <emph>Área de datos</emph>.</ahelp>"
+
+#: 02110000.xhp#par_id3152994.help.text
+msgid "<image id=\"img_id3150515\" src=\"sw/imglst/sc20186.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150515\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150515\" src=\"sw/imglst/sc20186.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150515\">Ícono</alt></image>"
+
+#: 02110000.xhp#par_id3154372.15.help.text
+msgctxt "02110000.xhp#par_id3154372.15.help.text"
+msgid "Start"
+msgstr "Comienzo"
+
+#: 02110000.xhp#hd_id3146982.17.help.text
+msgctxt "02110000.xhp#hd_id3146982.17.help.text"
+msgid "End"
+msgstr "Fin"
+
+#: 02110000.xhp#par_id3152985.19.help.text
+msgid "<ahelp hid=\"HID_SC_NAVIPI_DOWN\">Moves to the cell at the end of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_DOWN\">Se desplaza a la celda situada al final del área de datos actual, que se puede resaltar mediante el botón <emph>Área de datos</emph>.</ahelp>"
+
+#: 02110000.xhp#par_id3159170.help.text
+msgid "<image id=\"img_id3148871\" src=\"sw/imglst/sc20175.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148871\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148871\" src=\"sw/imglst/sc20175.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148871\">Ícono</alt></image>"
+
+#: 02110000.xhp#par_id3147072.18.help.text
+msgctxt "02110000.xhp#par_id3147072.18.help.text"
+msgid "End"
+msgstr "Fin"
+
+#: 02110000.xhp#hd_id3150107.20.help.text
+msgctxt "02110000.xhp#hd_id3150107.20.help.text"
+msgid "Toggle"
+msgstr "Conmutar"
+
+#: 02110000.xhp#par_id3159098.22.help.text
+msgid "<ahelp hid=\"HID_SC_NAVIPI_ROOT\">Toggles the content view. Only the selected Navigator element and its subelements are displayed.</ahelp> Click the icon again to restore all elements for viewing."
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_ROOT\">Cambia la vista actual. Sólo se muestran el elemento seleccionado del Navegador y sus subelementos.</ahelp> Vuelva a hacer clic en el símbolo para restablecer la visualización de todos los elementos."
+
+#: 02110000.xhp#par_id3152869.help.text
+msgid "<image id=\"img_id3149126\" src=\"sw/imglst/sc20244.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149126\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149126\" src=\"sw/imglst/sc20244.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149126\">Ícono</alt></image>"
+
+#: 02110000.xhp#par_id3159229.21.help.text
+msgctxt "02110000.xhp#par_id3159229.21.help.text"
+msgid "Toggle"
+msgstr "Conmutar"
+
+#: 02110000.xhp#hd_id3149381.11.help.text
+msgctxt "02110000.xhp#hd_id3149381.11.help.text"
+msgid "Contents"
+msgstr "Contenidos"
+
+#: 02110000.xhp#par_id3150051.13.help.text
+msgid "<ahelp hid=\"HID_SC_NAVIPI_ZOOM\">Allows you to hide/show the contents.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_ZOOM\">Permite ocultar o mostrar el contenido.</ahelp>"
+
+#: 02110000.xhp#par_id3155597.help.text
+msgid "<image id=\"img_id3154738\" src=\"sw/imglst/sc20233.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154738\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154738\" src=\"sw/imglst/sc20233.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154738\">Ícono</alt></image>"
+
+#: 02110000.xhp#par_id3150955.12.help.text
+msgctxt "02110000.xhp#par_id3150955.12.help.text"
+msgid "Contents"
+msgstr "Contenidos"
+
+#: 02110000.xhp#hd_id3147244.23.help.text
+msgctxt "02110000.xhp#hd_id3147244.23.help.text"
+msgid "Scenarios"
+msgstr "Escenarios"
+
+#: 02110000.xhp#par_id3153955.25.help.text
+msgid "<ahelp hid=\"HID_SC_NAVIPI_SCEN\">Displays all available scenarios. Double-click a name to apply that scenario.</ahelp> The result is shown in the sheet. For more information, choose <link href=\"text/scalc/01/06050000.xhp\" name=\"Tools - Scenarios\"><emph>Tools - Scenarios</emph></link>."
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_SCEN\">Muestra todos los escenarios disponibles. Pulse dos veces sobre un nombre para aplicar el escenario correspondiente.</ahelp> El resultado se muestra en la hoja. Si desea obtener más información, seleccione <link href=\"text/scalc/01/06050000.xhp\" name=\"Herramientas - Escenarios\"><emph>Herramientas - Escenarios</emph></link>."
+
+#: 02110000.xhp#par_id3148745.help.text
+#, fuzzy
+msgid "<image id=\"img_id3159256\" src=\"sc/imglst/navipi/na07.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159256\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149126\" src=\"sw/imglst/sc20244.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149126\">Ícono</alt></image>"
+
+#: 02110000.xhp#par_id3166466.24.help.text
+msgctxt "02110000.xhp#par_id3166466.24.help.text"
+msgid "Scenarios"
+msgstr "Escenarios"
+
+#: 02110000.xhp#par_idN10A6C.help.text
+msgid "If the Navigator displays scenarios, you can access the following commands when you right-click a scenario entry:"
+msgstr "Si el Navegador muestra escenarios, puede acceder a los comandos siguientes al hacer clic con el botón derecho en una entrada de escenario:"
+
+#: 02110000.xhp#par_idN10A77.help.text
+msgctxt "02110000.xhp#par_idN10A77.help.text"
+msgid "Delete"
+msgstr "Eliminar"
+
+#: 02110000.xhp#par_idN10A7B.help.text
+msgid "<ahelp hid=\"HID_SC_SCENARIO_DELETE\">Deletes the selected scenario.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_SCENARIO_DELETE\">Borra el escenario seleccionado.</ahelp>"
+
+#: 02110000.xhp#par_idN10A92.help.text
+msgid "Properties"
+msgstr "Propiedades"
+
+#: 02110000.xhp#par_idN10A96.help.text
+msgid "<ahelp hid=\"HID_SC_SCENARIO_EDIT\">Opens the <link href=\"text/scalc/01/06050000.xhp\">Edit scenario</link> dialog, where you can edit the scenario properties.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_SCENARIO_EDIT\">Abre el diálogo <link href=\"text/scalc/01/06050000.xhp\">Editar escenario</link>, que permite editar las propiedades del escenario.</ahelp>"
+
+#: 02110000.xhp#hd_id3150037.26.help.text
+msgctxt "02110000.xhp#hd_id3150037.26.help.text"
+msgid "Drag Mode"
+msgstr "Modo Arrastrar"
+
+#: 02110000.xhp#par_id3157876.28.help.text
+msgid "<ahelp hid=\"HID_SC_NAVIPI_DROP\">Opens a submenu for selecting the drag mode. You decide which action is performed when dragging and dropping an object from the Navigator into a document. Depending on the mode you select, the icon indicates whether a hyperlink, link or a copy is created.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_DROP\">Abre un submenú para seleccionar el modo de arrastre. Puede decidir la acción que se desee llevar a cabo al arrastrar y soltar un objeto del Navegador en un documento. En función del modo seleccionado, el icono indica si se crea un hipervínculo, un vínculo o una copia.</ahelp>"
+
+#: 02110000.xhp#par_id3149947.help.text
+msgid "<image id=\"img_id3159119\" src=\"cmd/sc_chainframes.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159119\">Icon</alt></image>"
+msgstr "<image id=\"img_id3159119\" src=\"cmd/sc_chainframes.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159119\">Ícono</alt></image>"
+
+#: 02110000.xhp#par_id3150656.27.help.text
+msgctxt "02110000.xhp#par_id3150656.27.help.text"
+msgid "Drag Mode"
+msgstr "Modo Arrastrar"
+
+#: 02110000.xhp#hd_id3149009.29.help.text
+msgid "Insert as Hyperlink"
+msgstr "Insertar como hipervínculo"
+
+#: 02110000.xhp#par_id3146938.30.help.text
+msgid "<ahelp hid=\"HID_SC_DROPMODE_URL\">Inserts a hyperlink when you drag-and-drop an object from the Navigator into a document.</ahelp> You can later click the created hyperlink to set the cursor and the view to the respective object. "
+msgstr "<ahelp hid=\"HID_SC_DROPMODE_URL\">Inserta un hipervínculo al arrastrar y soltar un objeto del Navegador en un documento.</ahelp> Más adelante se puede pulsar en el hipervínculo creado para desplazar el cursor y la vista al objeto correspondiente. "
+
+#: 02110000.xhp#par_id3880733.help.text
+msgid "If you insert a hyperlink that links to an open document, you need to save the document before you can use the hyperlink."
+msgstr "Si inserta un hipervínculo que lleva a un documento abierto, debe guardar el documento antes de poder utilizar el hipervínculo."
+
+#: 02110000.xhp#hd_id3154682.31.help.text
+msgid "Insert as Link"
+msgstr "Insertar como vínculo"
+
+#: 02110000.xhp#par_id3150746.32.help.text
+msgid "<ahelp hid=\"HID_SC_DROPMODE_LINK\">Creates a link when you drag-and-drop an object from the Navigator into a document.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_DROPMODE_LINK\">Crea un vínculo al arrastrar y colocar un objeto del Navegador en un documento.</ahelp>"
+
+#: 02110000.xhp#hd_id3145824.33.help.text
+msgid "Insert as Copy"
+msgstr "Insertar como copia"
+
+#: 02110000.xhp#par_id3147471.34.help.text
+msgid "<ahelp hid=\"HID_SC_DROPMODE_COPY\">Generates a copy when you drag-and-drop an object from the Navigator into a document.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_DROPMODE_COPY\">Genera una copia al arrastrar y colocar un objeto del Navegador en un documento.</ahelp>"
+
+#: 02110000.xhp#hd_id3147423.38.help.text
+msgctxt "02110000.xhp#hd_id3147423.38.help.text"
+msgid "Objects"
+msgstr "Objetos existentes"
+
+#: 02110000.xhp#par_id3150700.39.help.text
+msgid "<ahelp hid=\"HID_SC_NAVIPI_ENTRIES\">Displays all objects in your document.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_ENTRIES\">Muestra todos los objetos del documento.</ahelp>"
+
+#: 02110000.xhp#hd_id3150860.35.help.text
+msgid "Documents"
+msgstr "Documentos"
+
+#: 02110000.xhp#par_id3153929.36.help.text
+msgid "<ahelp hid=\"HID_SC_NAVIPI_DOC\">Displays the names of all open documents.</ahelp> To switch to another open document in the Navigator, click the document name. The status (active, inactive) of the document is shown in brackets after the name. You can switch the active document in the <emph>Window</emph> menu."
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_DOC\">Muestra los nombres de todos los documentos abiertos.</ahelp> Para cambiar a otro documento abierto en el Navegador, pulse en su nombre. Tras el nombre del documento se muestra su estado (activo, inactivo) entre paréntesis. Se puede cambiar el documento activo mediante el menú <emph>Ventana</emph>."
+
+#: 02200000.xhp#tit.help.text
+msgctxt "02200000.xhp#tit.help.text"
+msgid "Sheet"
+msgstr "Hoja"
+
+#: 02200000.xhp#hd_id3146794.1.help.text
+msgid "<link href=\"text/scalc/01/02200000.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr "<link href=\"text/scalc/01/02200000.xhp\" name=\"Sheet\">Hoja</link>"
+
+#: 02200000.xhp#par_id3149456.2.help.text
+msgid "<ahelp hid=\".\">Edit commands for entire sheets.</ahelp>"
+msgstr "<ahelp hid=\".\">Edite los comandos de páginas completas.</ahelp>"
+
+#: 02200000.xhp#hd_id3150792.3.help.text
+msgid "<link href=\"text/scalc/01/02180000.xhp\" name=\"Move/Copy\">Move/Copy</link>"
+msgstr "<link href=\"text/scalc/01/02180000.xhp\" name=\"Move/Copy\">Mover/Copiar</link>"
+
+#: 02200000.xhp#hd_id3153968.4.help.text
+msgid "<link href=\"text/scalc/01/02210000.xhp\" name=\"Select\">Select</link>"
+msgstr "<link href=\"text/scalc/01/02210000.xhp\" name=\"Select\">Seleccionar</link>"
+
+#: 02200000.xhp#hd_id3163708.5.help.text
+msgid "<link href=\"text/scalc/01/02170000.xhp\" name=\"Delete\">Delete</link>"
+msgstr "<link href=\"text/scalc/01/02170000.xhp\" name=\"Delete\">Borrar</link>"
+
+#: 02200000.xhp#hd_id3163733308.help.text
+msgid "<link href=\"text/shared/01/06140500.xhp\" name=\"Events\">Events</link>"
+msgstr "<link href=\"text/shared/01/06140500.xhp\" name=\"Events\">Eventos</link>"
+
+#: 04060116.xhp#tit.help.text
+msgctxt "04060116.xhp#tit.help.text"
+msgid "Add-in Functions, List of Analysis Functions Part Two"
+msgstr "Funciones add-in, lista de funciones de análisis, segunda parte"
+
+#: 04060116.xhp#bm_id3145074.help.text
+msgid "<bookmark_value>imaginary numbers in analysis functions</bookmark_value> <bookmark_value>complex numbers in analysis functions</bookmark_value>"
+msgstr "<bookmark_value>números imaginarios en funciones de análisis</bookmark_value> <bookmark_value>números complejos en funciones de análisis</bookmark_value>"
+
+#: 04060116.xhp#hd_id3154659.1.help.text
+msgctxt "04060116.xhp#hd_id3154659.1.help.text"
+msgid "Add-in Functions, List of Analysis Functions Part Two"
+msgstr "Categoría Add-in, lista de las funciones de análisis, parte 2"
+
+#: 04060116.xhp#par_id3151242.174.help.text
+msgid "<link href=\"text/scalc/01/04060108.xhp\" name=\"Category Statistics\">Category Statistics</link>"
+msgstr "<link href=\"text/scalc/01/04060108.xhp\" name=\"Category Statistics\">Categoría Estadística</link>"
+
+#: 04060116.xhp#par_id3148869.5.help.text
+msgid "<link href=\"text/scalc/01/04060115.xhp\" name=\"Analysis Functions Part One\">Analysis Functions Part One</link>"
+msgstr "<link href=\"text/scalc/01/04060115.xhp\" name=\"Analysis Functions Part One\">Funciones de análisis, parte 1</link>"
+
+#: 04060116.xhp#par_id3147072.240.help.text
+msgctxt "04060116.xhp#par_id3147072.240.help.text"
+msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Back to the Overview</link>"
+msgstr "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Regresar a la página general</link>"
+
+#: 04060116.xhp#bm_id3154959.help.text
+msgid "<bookmark_value>IMABS function</bookmark_value>"
+msgstr "<bookmark_value>IM.ABS</bookmark_value>"
+
+#: 04060116.xhp#hd_id3154959.44.help.text
+msgid "IMABS"
+msgstr "IM.ABS"
+
+#: 04060116.xhp#par_id3149895.45.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMABS\">The result is the absolute value of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMABS\">El resultado es el valor absoluto de un número complejo.</ahelp>"
+
+#: 04060116.xhp#hd_id3155382.46.help.text
+msgctxt "04060116.xhp#hd_id3155382.46.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060116.xhp#par_id3151302.47.help.text
+msgid "IMABS(\"ComplexNumber\")"
+msgstr "IM.ABS(\"Número Complejo\")"
+
+#: 04060116.xhp#par_id3153974.48.help.text
+msgid "<variable id=\"complex\"><emph>ComplexNumber</emph> is a complex number that is entered in the form \"x+yi\" or \"x+yj\".</variable>"
+msgstr "<variable id=\"complex\"><emph>NúmeroComplejo</emph> es un número complejo que se introduce como \"x+yi\" o \"x+yj\". </variable>"
+
+#: 04060116.xhp#hd_id3149697.49.help.text
+msgctxt "04060116.xhp#hd_id3149697.49.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060116.xhp#par_id3143222.50.help.text
+msgid " <item type=\"input\">=IMABS(\"5+12j\")</item> returns 13."
+msgstr " <item type=\"input\">=IM.ABS(\"5+12j\")</item> devuelve 13."
+
+#: 04060116.xhp#bm_id3145357.help.text
+msgid "<bookmark_value>IMAGINARY function</bookmark_value>"
+msgstr "<bookmark_value>IMAGINARIO</bookmark_value>"
+
+#: 04060116.xhp#hd_id3145357.51.help.text
+msgid "IMAGINARY"
+msgstr "IMAGINARIO"
+
+#: 04060116.xhp#par_id3146965.52.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMAGINARY\">The result is the imaginary coefficient of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMAGINARY\">El resultado es el coeficiente imaginario de un número complejo.</ahelp>"
+
+#: 04060116.xhp#hd_id3153555.53.help.text
+msgctxt "04060116.xhp#hd_id3153555.53.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060116.xhp#par_id3155522.54.help.text
+msgid "IMAGINARY(\"ComplexNumber\")"
+msgstr "IMAGINARIO(\"Número Complejo\")"
+
+#: 04060116.xhp#hd_id3151193.56.help.text
+msgctxt "04060116.xhp#hd_id3151193.56.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060116.xhp#par_id3155592.57.help.text
+msgid " <item type=\"input\">=IMAGINARY(\"4+3j\")</item> returns 3."
+msgstr " <item type=\"input\">=IMAGINARIO(\"4+3j\")</item> devuelve 3."
+
+#: 04060116.xhp#bm_id3146106.help.text
+msgid "<bookmark_value>IMPOWER function</bookmark_value>"
+msgstr "<bookmark_value>IM.POT</bookmark_value>"
+
+#: 04060116.xhp#hd_id3146106.58.help.text
+msgid "IMPOWER"
+msgstr "IM.POT"
+
+#: 04060116.xhp#par_id3147245.59.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMPOWER\">The result is the integer power of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMPOWER\">El resultado es la potencia entera de un número complejo.</ahelp>"
+
+#: 04060116.xhp#hd_id3150954.60.help.text
+msgctxt "04060116.xhp#hd_id3150954.60.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060116.xhp#par_id3147501.61.help.text
+msgid "IMPOWER(\"ComplexNumber\"; Number)"
+msgstr "IM.POT(\"Número Complejo\"; Número)"
+
+#: 04060116.xhp#par_id3155743.63.help.text
+msgid " <emph>Number</emph> is the exponent."
+msgstr " <emph>Número</emph> es el exponente."
+
+#: 04060116.xhp#hd_id3149048.64.help.text
+msgctxt "04060116.xhp#hd_id3149048.64.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060116.xhp#par_id3151393.65.help.text
+msgid " <item type=\"input\">=IMPOWER(\"2+3i\";2)</item> returns -5+12i."
+msgstr " <item type=\"input\">=IM.POT(\"2+3i\";2)</item> devuelve -5+12i."
+
+#: 04060116.xhp#bm_id3148748.help.text
+msgid "<bookmark_value>IMARGUMENT function</bookmark_value>"
+msgstr "<bookmark_value>IM.ANGULO</bookmark_value>"
+
+#: 04060116.xhp#hd_id3148748.66.help.text
+msgid "IMARGUMENT"
+msgstr "IM.ANGULO"
+
+#: 04060116.xhp#par_id3151341.67.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMARGUMENT\">The result is the argument (the phi angle) of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMARGUMENT\">El resultado es el argumento (ángulo phi) de un número complejo.</ahelp>"
+
+#: 04060116.xhp#hd_id3150533.68.help.text
+msgctxt "04060116.xhp#hd_id3150533.68.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060116.xhp#par_id3156402.69.help.text
+msgid "IMARGUMENT(\"ComplexNumber\")"
+msgstr "IM.ÁNGULO(\"Número Complejo\")"
+
+#: 04060116.xhp#hd_id3153019.71.help.text
+msgctxt "04060116.xhp#hd_id3153019.71.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060116.xhp#par_id3159125.72.help.text
+msgid " <item type=\"input\">=IMARGUMENT(\"3+4j\")</item> returns 0.927295."
+msgstr " <item type=\"input\">=IM.ÁNGULO(\"3+4j\")</item> devuelve 0,927295."
+
+#: 04060116.xhp#bm_id3149146.help.text
+msgid "<bookmark_value>IMCOS function</bookmark_value>"
+msgstr "<bookmark_value>IM.COS</bookmark_value>"
+
+#: 04060116.xhp#hd_id3149146.73.help.text
+msgid "IMCOS"
+msgstr "IM.COS"
+
+#: 04060116.xhp#par_id3149725.74.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMCOS\">The result is the cosine of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMCOS\">El resultado es el coseno de un número complejo.</ahelp>"
+
+#: 04060116.xhp#hd_id3159116.75.help.text
+msgctxt "04060116.xhp#hd_id3159116.75.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060116.xhp#par_id3147415.76.help.text
+msgid "IMCOS(\"ComplexNumber\")"
+msgstr "IM.COS(\"Número Complejo\")"
+
+#: 04060116.xhp#hd_id3152980.78.help.text
+msgctxt "04060116.xhp#hd_id3152980.78.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060116.xhp#par_id3157901.79.help.text
+msgid " <item type=\"input\">=IMCOS(\"3+4j\") </item>returns -27.03-3.85i (rounded)."
+msgstr " <item type=\"input\">=IM.COS(\"3+4j\")</item> devuelve -27,03-3,85i (redondeado)."
+
+#: 04060116.xhp#bm_id3150024.help.text
+msgid "<bookmark_value>IMDIV function</bookmark_value>"
+msgstr "<bookmark_value>IM.DIV</bookmark_value>"
+
+#: 04060116.xhp#hd_id3150024.80.help.text
+msgid "IMDIV"
+msgstr "IM.DIV"
+
+#: 04060116.xhp#par_id3145825.81.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMDIV\">The result is the division of two complex numbers.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMDIV\">El resultado es la división de dos números complejos.</ahelp>"
+
+#: 04060116.xhp#hd_id3150465.82.help.text
+msgctxt "04060116.xhp#hd_id3150465.82.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060116.xhp#par_id3146942.83.help.text
+msgid "IMDIV(\"Numerator\"; \"Denominator\")"
+msgstr "IM.DIV(\"Numerador\"; \"Denominador\")"
+
+#: 04060116.xhp#par_id3150741.84.help.text
+msgid " <emph>Numerator</emph>, <emph>Denominator</emph> are complex numbers that are entered in the form \"x+yi\" or \"x+yj\"."
+msgstr " <emph>Numerador</emph>, <emph>Denominador</emph> son números complejos que se especifican con el formato \"x+yi\" o \"x+yj\"."
+
+#: 04060116.xhp#hd_id3151229.85.help.text
+msgctxt "04060116.xhp#hd_id3151229.85.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060116.xhp#par_id3148440.86.help.text
+msgid " <item type=\"input\">=IMDIV(\"-238+240i\";\"10+24i\")</item> returns 5+12i."
+msgstr " <item type=\"input\">=IM.DIV(\"-238+240i\";\"10+24i\")</item> devuelve 5+12i."
+
+#: 04060116.xhp#bm_id3153039.help.text
+msgid "<bookmark_value>IMEXP function</bookmark_value>"
+msgstr "<bookmark_value>IM.EXP</bookmark_value>"
+
+#: 04060116.xhp#hd_id3153039.87.help.text
+msgid "IMEXP"
+msgstr "IM.EXP"
+
+#: 04060116.xhp#par_id3144741.88.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMEXP\">The result is the power of e and the complex number.</ahelp> The constant e has a value of approximately 2.71828182845904."
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMEXP\">El resultado es la potencia de e y el número complejo.</ahelp> La constante e tiene un valor aproximado de 2,71828182845904."
+
+#: 04060116.xhp#hd_id3145591.89.help.text
+msgctxt "04060116.xhp#hd_id3145591.89.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060116.xhp#par_id3154810.90.help.text
+msgid "IMEXP(\"ComplexNumber\")"
+msgstr "IM.EXP(\"Número Complejo\")"
+
+#: 04060116.xhp#hd_id3148581.92.help.text
+msgctxt "04060116.xhp#hd_id3148581.92.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060116.xhp#par_id3149253.93.help.text
+msgid " <item type=\"input\">=IMEXP(\"1+j\") </item>returns 1.47+2.29j (rounded)."
+msgstr " <item type=\"input\">=IM.EXP(\"1+j\") </item>devuelve 1,47+2,29j (redondeado)."
+
+#: 04060116.xhp#bm_id3149955.help.text
+msgid "<bookmark_value>IMCONJUGATE function</bookmark_value>"
+msgstr "<bookmark_value>IM.CONJUGADA</bookmark_value>"
+
+#: 04060116.xhp#hd_id3149955.94.help.text
+msgid "IMCONJUGATE"
+msgstr "IM.CONJUGADA"
+
+#: 04060116.xhp#par_id3155263.95.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMCONJUGATE\">The result is the conjugated complex complement to a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMCONJUGATE\">El resultado es el complemento complejo conjugado de un número complejo.</ahelp>"
+
+#: 04060116.xhp#hd_id3148750.96.help.text
+msgctxt "04060116.xhp#hd_id3148750.96.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060116.xhp#par_id3153082.97.help.text
+msgid "IMCONJUGATE(\"ComplexNumber\")"
+msgstr "IM.CONJUGADA(\"Número Complejo\")"
+
+#: 04060116.xhp#hd_id3153326.99.help.text
+msgctxt "04060116.xhp#hd_id3153326.99.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060116.xhp#par_id3149688.100.help.text
+msgid " <item type=\"input\">=IMCONJUGATE(\"1+j\")</item> returns 1-j."
+msgstr " <item type=\"input\">=IM.CONJUGADA(\"1+j\")</item> devuelve 1-j."
+
+#: 04060116.xhp#bm_id3150898.help.text
+msgid "<bookmark_value>IMLN function</bookmark_value>"
+msgstr "<bookmark_value>IM.LN</bookmark_value>"
+
+#: 04060116.xhp#hd_id3150898.101.help.text
+msgid "IMLN"
+msgstr "IM.LN"
+
+#: 04060116.xhp#par_id3146853.102.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMLN\">The result is the natural logarithm (to the base e) of a complex number.</ahelp> The constant e has a value of approximately 2.71828182845904."
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLN\">El resultado es el logaritmo natural (en base e) de un número complejo.</ahelp> La constante e tiene un valor aproximado de 2,71828182845904."
+
+#: 04060116.xhp#hd_id3150008.103.help.text
+msgctxt "04060116.xhp#hd_id3150008.103.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060116.xhp#par_id3155954.104.help.text
+msgid "IMLN(\"ComplexNumber\")"
+msgstr "IM.LN(\"Número Complejo\")"
+
+#: 04060116.xhp#hd_id3153565.106.help.text
+msgctxt "04060116.xhp#hd_id3153565.106.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060116.xhp#par_id3153736.107.help.text
+msgid " <item type=\"input\">=IMLN(\"1+j\")</item> returns 0.35+0.79j (rounded)."
+msgstr " <item type=\"input\">=IM.LN(\"1+j\") </item>devuelve 0,35+0,79j (redondeado)."
+
+#: 04060116.xhp#bm_id3155929.help.text
+msgid "<bookmark_value>IMLOG10 function</bookmark_value>"
+msgstr "<bookmark_value>IM.LOG10</bookmark_value>"
+
+#: 04060116.xhp#hd_id3155929.108.help.text
+msgid "IMLOG10"
+msgstr "IM.LOG10"
+
+#: 04060116.xhp#par_id3149882.109.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMLOG10\">The result is the common logarithm (to the base 10) of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLOG10\">El resultado es el logaritmo común (en base 10) de un número complejo.</ahelp>"
+
+#: 04060116.xhp#hd_id3154327.110.help.text
+msgctxt "04060116.xhp#hd_id3154327.110.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060116.xhp#par_id3150128.111.help.text
+msgid "IMLOG10(\"ComplexNumber\")"
+msgstr "IM.LOG10(\"Número Complejo\")"
+
+#: 04060116.xhp#hd_id3149003.113.help.text
+msgctxt "04060116.xhp#hd_id3149003.113.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060116.xhp#par_id3151021.114.help.text
+msgid " <item type=\"input\">=IMLOG10(\"1+j\")</item> returns 0.15+0.34j (rounded)."
+msgstr " <item type=\"input\">=IM.LOG10(\"1+j\")</item> devuelve 0,15+0,34j (redondeado)."
+
+#: 04060116.xhp#bm_id3155623.help.text
+msgid "<bookmark_value>IMLOG2 function</bookmark_value>"
+msgstr "<bookmark_value>IM.LOG2</bookmark_value>"
+
+#: 04060116.xhp#hd_id3155623.115.help.text
+msgid "IMLOG2"
+msgstr "IM.LOG2"
+
+#: 04060116.xhp#par_id3150932.116.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMLOG2\">The result is the binary logarithm of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLOG2\">El resultado es el logaritmo binario de un número complejo.</ahelp>"
+
+#: 04060116.xhp#hd_id3153046.117.help.text
+msgctxt "04060116.xhp#hd_id3153046.117.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060116.xhp#par_id3145355.118.help.text
+msgid "IMLOG2(\"ComplexNumber\")"
+msgstr "IM.LOG2(\"Número Complejo\")"
+
+#: 04060116.xhp#hd_id3148768.120.help.text
+msgctxt "04060116.xhp#hd_id3148768.120.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060116.xhp#par_id3149536.121.help.text
+msgid " <item type=\"input\">=IMLOG2(\"1+j\")</item> returns 0.50+1.13j (rounded)."
+msgstr " <item type=\"input\">=IM.LOG2(\"1+j\")</item> devuelve 0,50+1,13j (redondeado)."
+
+#: 04060116.xhp#bm_id3145626.help.text
+msgid "<bookmark_value>IMPRODUCT function</bookmark_value>"
+msgstr "<bookmark_value>IM.PRODUCT</bookmark_value>"
+
+#: 04060116.xhp#hd_id3145626.122.help.text
+msgid "IMPRODUCT"
+msgstr "IM.PRODUCT"
+
+#: 04060116.xhp#par_id3153545.123.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMPRODUCT\">The result is the product of up to 29 complex numbers.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMPRODUCT\">El resultado es el producto de un máximo de 29 números complejos.</ahelp>"
+
+#: 04060116.xhp#hd_id3149388.124.help.text
+msgctxt "04060116.xhp#hd_id3149388.124.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060116.xhp#par_id3149027.125.help.text
+msgid "IMPRODUCT(\"ComplexNumber\"; \"ComplexNumber1\"; ...)"
+msgstr "IM.PRODUCT(\"Número Complejo\"; \"Número Complejo1\"; ...)"
+
+#: 04060116.xhp#hd_id3153228.127.help.text
+msgctxt "04060116.xhp#hd_id3153228.127.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060116.xhp#par_id3155815.128.help.text
+msgid " <item type=\"input\">=IMPRODUCT(\"3+4j\";\"5-3j\")</item> returns 27+11j."
+msgstr " <item type=\"input\">=IM.PRODUCT(\"3+4j\";\"5-3j\")</item> devuelve 27+11j."
+
+#: 04060116.xhp#bm_id3147539.help.text
+msgid "<bookmark_value>IMREAL function</bookmark_value>"
+msgstr "<bookmark_value>IM.REAL</bookmark_value>"
+
+#: 04060116.xhp#hd_id3147539.129.help.text
+msgid "IMREAL"
+msgstr "IM.REAL"
+
+#: 04060116.xhp#par_id3155372.130.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMREAL\">The result is the real coefficient of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMREAL\">El resultado es el coeficiente real de un número complejo.</ahelp>"
+
+#: 04060116.xhp#hd_id3154951.131.help.text
+msgctxt "04060116.xhp#hd_id3154951.131.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060116.xhp#par_id3153927.132.help.text
+msgid "IMREAL(\"ComplexNumber\")"
+msgstr "IM.REAL(\"Número Complejo\")"
+
+#: 04060116.xhp#hd_id3155409.134.help.text
+msgctxt "04060116.xhp#hd_id3155409.134.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060116.xhp#par_id3155986.135.help.text
+msgid " <item type=\"input\">=IMREAL(\"1+3j\")</item> returns 1."
+msgstr " <item type=\"input\">=IM.REAL(\"1+3j\")</item> devuelve 1."
+
+#: 04060116.xhp#bm_id3148431.help.text
+msgid "<bookmark_value>IMSIN function</bookmark_value>"
+msgstr "<bookmark_value>IM.SENO</bookmark_value>"
+
+#: 04060116.xhp#hd_id3148431.136.help.text
+msgid "IMSIN"
+msgstr "IM.SENO"
+
+#: 04060116.xhp#par_id3152591.137.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMSIN\">The result is the sine of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSIN\">El resultado es el seno de un número complejo.</ahelp>"
+
+#: 04060116.xhp#hd_id3149822.138.help.text
+msgctxt "04060116.xhp#hd_id3149822.138.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060116.xhp#par_id3150387.139.help.text
+msgid "IMSIN(\"ComplexNumber\")"
+msgstr "IM.SENO(\"Número Complejo\")"
+
+#: 04060116.xhp#hd_id3150613.141.help.text
+msgctxt "04060116.xhp#hd_id3150613.141.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060116.xhp#par_id3154310.142.help.text
+msgid " <item type=\"input\">=IMSIN(\"3+4j\")</item> returns 3.85+27.02j (rounded)."
+msgstr " <item type=\"input\">=IM.SENO(\"3+4j\")</item> devuelve 3,85+27,02j (redondeado)."
+
+#: 04060116.xhp#bm_id3163826.help.text
+msgid "<bookmark_value>IMSUB function</bookmark_value>"
+msgstr "<bookmark_value>IM.SUSTR</bookmark_value>"
+
+#: 04060116.xhp#hd_id3163826.143.help.text
+msgid "IMSUB"
+msgstr "IM.SUSTR"
+
+#: 04060116.xhp#par_id3149277.144.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMSUB\">The result is the subtraction of two complex numbers.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSUB\">El resultado es la sustracción de dos números complejos.</ahelp>"
+
+#: 04060116.xhp#hd_id3149264.145.help.text
+msgctxt "04060116.xhp#hd_id3149264.145.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060116.xhp#par_id3149710.146.help.text
+msgid "IMSUB(\"ComplexNumber1\"; \"ComplexNumber2\")"
+msgstr "IM.SUSTR(\"Número Complejo1\"; \"Número Complejo2\")"
+
+#: 04060116.xhp#hd_id3155833.148.help.text
+msgctxt "04060116.xhp#hd_id3155833.148.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060116.xhp#par_id3150963.149.help.text
+msgid " <item type=\"input\">=IMSUB(\"13+4j\";\"5+3j\")</item> returns 8+j."
+msgstr " <item type=\"input\">=IM.SUB(\"13+4j\";\"5+3j\")</item> devuelve 8+7j."
+
+#: 04060116.xhp#bm_id3156312.help.text
+msgid "<bookmark_value>IMSUM function</bookmark_value>"
+msgstr "<bookmark_value>IM.SUM</bookmark_value>"
+
+#: 04060116.xhp#hd_id3156312.150.help.text
+msgid "IMSUM"
+msgstr "IM.SUM"
+
+#: 04060116.xhp#par_id3153215.151.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMSUM\">The result is the sum of up to 29 complex numbers.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSUM\">El resultado es la suma de un máximo de 29 números complejos.</ahelp>"
+
+#: 04060116.xhp#hd_id3156095.152.help.text
+msgctxt "04060116.xhp#hd_id3156095.152.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060116.xhp#par_id3152930.153.help.text
+msgid "IMSUM(\"ComplexNumber1\"; \"ComplexNumber2\"; ...)"
+msgstr "IM.SUM(\"Número Complejo1\"; \"Número Complejo2\"; ...)"
+
+#: 04060116.xhp#hd_id3154640.155.help.text
+msgctxt "04060116.xhp#hd_id3154640.155.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060116.xhp#par_id3147081.156.help.text
+msgid " <item type=\"input\">=IMSUM(\"13+4j\";\"5+3j\")</item> returns 18+7j."
+msgstr " <item type=\"input\">=IM.SUM(\"13+4j\";\"5+3j\")</item> devuelve 18+7j."
+
+#: 04060116.xhp#bm_id3147570.help.text
+msgid "<bookmark_value>IMSQRT function</bookmark_value>"
+msgstr "<bookmark_value>IM.RAIZ2</bookmark_value>"
+
+#: 04060116.xhp#hd_id3147570.167.help.text
+msgid "IMSQRT"
+msgstr "IM.RAIZ2"
+
+#: 04060116.xhp#par_id3156131.168.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMSQRT\">The result is the square root of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSQRT\">El resultado es la raíz cuadrada de un número complejo.</ahelp>"
+
+#: 04060116.xhp#hd_id3145202.169.help.text
+msgctxt "04060116.xhp#hd_id3145202.169.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060116.xhp#par_id3150760.170.help.text
+msgid "IMSQRT(\"ComplexNumber\")"
+msgstr "IM.RAIZ2(\"Número Complejo\")"
+
+#: 04060116.xhp#hd_id3147268.172.help.text
+msgctxt "04060116.xhp#hd_id3147268.172.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060116.xhp#par_id3152807.173.help.text
+msgid " <item type=\"input\">=IMSQRT(\"3+4i\")</item> returns 2+1i."
+msgstr " <item type=\"input\">=IM.RAIZ2(\"3+4i\")</item> devuelve 2+1i."
+
+#: 04060116.xhp#bm_id3154054.help.text
+msgid "<bookmark_value>COMPLEX function</bookmark_value>"
+msgstr "<bookmark_value>COMPLEJO</bookmark_value>"
+
+#: 04060116.xhp#hd_id3154054.157.help.text
+msgid "COMPLEX"
+msgstr "COMPLEJO"
+
+#: 04060116.xhp#par_id3156111.158.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_COMPLEX\">The result is a complex number which is returned from a real coefficient and an imaginary coefficient.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COMPLEX\">El resultado es un número complejo creado a partir de un coeficiente real y un coeficiente imaginario.</ahelp>"
+
+#: 04060116.xhp#hd_id3154744.159.help.text
+msgctxt "04060116.xhp#hd_id3154744.159.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060116.xhp#par_id3155999.160.help.text
+msgid "COMPLEX(RealNum; INum; Suffix)"
+msgstr "COMPLEJO(NúmeroReal; INum; Sufijo)"
+
+#: 04060116.xhp#par_id3153626.161.help.text
+msgid " <emph>RealNum</emph> is the real coefficient of the complex number."
+msgstr " <emph>NúmeroReal</emph> es el coeficiente real de un número complejo."
+
+#: 04060116.xhp#par_id3149135.162.help.text
+msgid " <emph>INum</emph> is the imaginary coefficient of the complex number."
+msgstr " <emph>INum</emph> es el coeficiente imaginario de un número complejo."
+
+#: 04060116.xhp#par_id3155849.163.help.text
+msgid " <emph>Suffix</emph> is a list of options, \"i\" or \"j\"."
+msgstr " <emph>Sufijo</emph> es una lista de opciones, \"i\" o \"j\"."
+
+#: 04060116.xhp#hd_id3145659.164.help.text
+msgctxt "04060116.xhp#hd_id3145659.164.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060116.xhp#par_id3143229.165.help.text
+msgid " <item type=\"input\">=COMPLEX(3;4;\"j\")</item> returns 3+4j."
+msgstr " <item type=\"input\">=COMPLEJO(3;4;\"j\")</item> devuelve 3+4j."
+
+#: 04060116.xhp#bm_id3155103.help.text
+msgid "<bookmark_value>OCT2BIN function</bookmark_value> <bookmark_value>converting;octal numbers, into binary numbers</bookmark_value>"
+msgstr "<bookmark_value>OCT.A.BIN</bookmark_value> <bookmark_value>convertir;números octales, en números binarios</bookmark_value>"
+
+#: 04060116.xhp#hd_id3155103.217.help.text
+msgid "OCT2BIN"
+msgstr "OCT.A.BIN"
+
+#: 04060116.xhp#par_id3146898.218.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2BIN\">The result is the binary number for the octal number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2BIN\">El resultado es el número binario para el número octal introducido.</ahelp>"
+
+#: 04060116.xhp#hd_id3146088.219.help.text
+msgctxt "04060116.xhp#hd_id3146088.219.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060116.xhp#par_id3154303.220.help.text
+msgid "OCT2BIN(Number; Places)"
+msgstr "OCT.A.BIN(Número; Decimales)"
+
+#: 04060116.xhp#par_id3156013.221.help.text
+msgctxt "04060116.xhp#par_id3156013.221.help.text"
+msgid " <emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgstr " <emph>Número</emph> es el número octal. El número puede tener un máximo de 10 cifras. El bit más importante es el de signo, los siguientes bits devuelven el valor. Los números negativos se especifican como un complemento de dos."
+
+#: 04060116.xhp#par_id3153984.222.help.text
+msgctxt "04060116.xhp#par_id3153984.222.help.text"
+msgid " <emph>Places</emph> is the number of places to be output."
+msgstr " <emph>Cifras</emph> es el número de espacios totales."
+
+#: 04060116.xhp#hd_id3147493.223.help.text
+msgctxt "04060116.xhp#hd_id3147493.223.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060116.xhp#par_id3147260.224.help.text
+msgid " <item type=\"input\">=OCT2BIN(3;3)</item> returns 011."
+msgstr " <item type=\"input\">=OCT.A.BIN(3;3)</item> devuelve 011."
+
+#: 04060116.xhp#bm_id3152791.help.text
+msgid "<bookmark_value>OCT2DEC function</bookmark_value> <bookmark_value>converting;octal numbers, into decimal numbers</bookmark_value>"
+msgstr "<bookmark_value>OCT.A.DEC</bookmark_value> <bookmark_value>convertir;números octales, en números decimales</bookmark_value>"
+
+#: 04060116.xhp#hd_id3152791.225.help.text
+msgid "OCT2DEC"
+msgstr "OCT.A.DEC"
+
+#: 04060116.xhp#par_id3149199.226.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2DEZ\">The result is the decimal number for the octal number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2DEZ\">El resultado es el número decimal que corresponda al número octal introducido.</ahelp>"
+
+#: 04060116.xhp#hd_id3159337.227.help.text
+msgctxt "04060116.xhp#hd_id3159337.227.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060116.xhp#par_id3153902.228.help.text
+msgid "OCT2DEC(Number)"
+msgstr "OCT.A.DEC(Número)"
+
+#: 04060116.xhp#par_id3155326.229.help.text
+msgctxt "04060116.xhp#par_id3155326.229.help.text"
+msgid " <emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgstr " <emph>Número</emph> es el número octal. El número puede tener un máximo de 10 cifras. El bit más importante es el de signo, los siguientes bits devuelven el valor. Los números negativos se especifican como un complemento de dos."
+
+#: 04060116.xhp#hd_id3154698.230.help.text
+msgctxt "04060116.xhp#hd_id3154698.230.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060116.xhp#par_id3154930.231.help.text
+msgid " <item type=\"input\">=OCT2DEC(144)</item> returns 100."
+msgstr " <item type=\"input\">=OCT.A.DEC(144)</item> devuelve 100."
+
+#: 04060116.xhp#bm_id3155391.help.text
+msgid "<bookmark_value>OCT2HEX function</bookmark_value> <bookmark_value>converting;octal numbers, into hexadecimal numbers</bookmark_value>"
+msgstr "<bookmark_value>OCT.A.HEX</bookmark_value> <bookmark_value>convertir;números octales, en números hexadecimales</bookmark_value>"
+
+#: 04060116.xhp#hd_id3155391.232.help.text
+msgid "OCT2HEX"
+msgstr "OCT.A.HEX"
+
+#: 04060116.xhp#par_id3148831.233.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2HEX\"> The result is the hexadecimal number for the octal number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2HEX\"> El resultado es el número hexadecimal que corresponda al número octal introducido.</ahelp>"
+
+#: 04060116.xhp#hd_id3146988.234.help.text
+msgctxt "04060116.xhp#hd_id3146988.234.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060116.xhp#par_id3150523.235.help.text
+msgid "OCT2HEX(Number; Places)"
+msgstr "OCT.A.DEC(Número; Decimales)"
+
+#: 04060116.xhp#par_id3159162.236.help.text
+msgctxt "04060116.xhp#par_id3159162.236.help.text"
+msgid " <emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgstr " <emph>Número</emph> es el número octal. El número puede tener un máximo de 10 cifras. El bit más importante es el de signo, los siguientes bits devuelven el valor. Los números negativos se especifican como un complemento de dos."
+
+#: 04060116.xhp#par_id3145420.237.help.text
+msgctxt "04060116.xhp#par_id3145420.237.help.text"
+msgid " <emph>Places</emph> is the number of places to be output."
+msgstr " <emph>Cifras</emph> es el número de espacios totales."
+
+#: 04060116.xhp#hd_id3150504.238.help.text
+msgctxt "04060116.xhp#hd_id3150504.238.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060116.xhp#par_id3148802.239.help.text
+msgid " <item type=\"input\">=OCT2HEX(144;4)</item> returns 0064."
+msgstr " <item type=\"input\">=OCT.A.HEX(144;4)</item> devuelve 0064."
+
+#: 04060116.xhp#bm_id3148446.help.text
+msgid "<bookmark_value>CONVERT_ADD function</bookmark_value>"
+msgstr "<bookmark_value>CONVERTIR_ADD</bookmark_value>"
+
+#: 04060116.xhp#hd_id3148446.175.help.text
+msgid "CONVERT_ADD"
+msgstr "CONVERTIR_ADD"
+
+#: 04060116.xhp#par_id3154902.176.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">Converts a value from one unit of measure to the corresponding value in another unit of measure.</ahelp> Enter the units of measures directly as text in quotation marks or as a reference. If you enter the units of measure in cells, they must correspond exactly with the following list which is case sensitive: For example, in order to enter a lower case l (for liter) in a cell, enter the apostrophe ' immediately followed by l."
+msgstr "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">Convierte un valor expresado en una unidad de medida en el valor correspondiente en otra unidad.</ahelp> Escriba las unidades de medida directamente en forma de texto entre comillas o bien en forma de referencia. Si escribe las unidades de medida en celdas, deberán corresponderse exactamente con la lista siguiente; tenga en cuenta la distinción entre mayúsculas y minúsculas: Por ejemplo, para escribir una l minúscula (de \"litro\") en una celda, escriba un apóstrofo ' y a continuación una l."
+
+#: 04060116.xhp#par_id3153055.177.help.text
+msgid "Property"
+msgstr "<emph>Propiedad</emph>"
+
+#: 04060116.xhp#par_id3147234.178.help.text
+msgid "Units"
+msgstr "<emph>Unidades</emph>"
+
+#: 04060116.xhp#par_id3147512.179.help.text
+msgid "Weight"
+msgstr "Medida"
+
+#: 04060116.xhp#par_id3148476.180.help.text
+msgid "<emph>g</emph>, sg, lbm, <emph>u</emph>, ozm, stone, ton, grain, pweight, hweight, shweight, brton"
+msgstr ""
+
+#: 04060116.xhp#par_id3155361.181.help.text
+msgid "Length"
+msgstr "Longitud"
+
+#: 04060116.xhp#par_id3148925.182.help.text
+msgid "<emph>m</emph>, mi, Nmi, in, ft, yd, ang, Pica, ell, <emph>parsec</emph>, <emph>lightyear</emph>, survey_mi"
+msgstr ""
+
+#: 04060116.xhp#par_id3158429.183.help.text
+msgctxt "04060116.xhp#par_id3158429.183.help.text"
+msgid "Time"
+msgstr "Hora"
+
+#: 04060116.xhp#par_id3150707.184.help.text
+msgid "yr, day, hr, mn, <emph>sec</emph>, <emph>s</emph>"
+msgstr ""
+
+#: 04060116.xhp#par_id3153238.185.help.text
+msgid "Pressure"
+msgstr "Presión"
+
+#: 04060116.xhp#par_id3166437.186.help.text
+msgid "<emph>Pa</emph>, <emph>atm</emph>, <emph>at</emph>, <emph>mmHg</emph>, Torr, psi"
+msgstr ""
+
+#: 04060116.xhp#par_id3152944.187.help.text
+msgid "Force"
+msgstr "Fuerza"
+
+#: 04060116.xhp#par_id3155582.188.help.text
+msgid "<emph>N</emph>, <emph>dyn</emph>, <emph>dy</emph>, lbf, <emph>pond</emph>"
+msgstr ""
+
+#: 04060116.xhp#par_id3153686.189.help.text
+msgid "Energy"
+msgstr "Energía"
+
+#: 04060116.xhp#par_id3153386.190.help.text
+msgid "<emph>J</emph>, <emph>e</emph>, <emph>c</emph>, <emph>cal</emph>, <emph>eV</emph>, <emph>ev</emph>, HPh, <emph>Wh</emph>, <emph>wh</emph>, flb, BTU, btu"
+msgstr ""
+
+#: 04060116.xhp#par_id3154100.191.help.text
+msgid "Power"
+msgstr "Potencia"
+
+#: 04060116.xhp#par_id3149915.192.help.text
+msgid "<emph>W</emph>, <emph>w</emph>, HP, PS"
+msgstr ""
+
+#: 04060116.xhp#par_id3148988.193.help.text
+msgid "Field strength"
+msgstr "Potencia de campo"
+
+#: 04060116.xhp#par_id3148616.194.help.text
+msgid "<emph>T</emph>, <emph>ga</emph>"
+msgstr ""
+
+#: 04060116.xhp#par_id3151120.195.help.text
+msgid "Temperature"
+msgstr "Temperatura"
+
+#: 04060116.xhp#par_id3148659.196.help.text
+msgid "C, F, <emph>K</emph>, <emph>kel</emph>, Reau, Rank"
+msgstr ""
+
+#: 04060116.xhp#par_id3154610.197.help.text
+msgid "Volume"
+msgstr "Volumen"
+
+#: 04060116.xhp#par_id3149423.198.help.text
+msgid "<emph>l</emph>, <emph>L</emph>, <emph>lt</emph>, tsp, tbs, oz, cup, pt, us_pt, qt, gal, <emph>m3</emph>, mi3, Nmi3, in3, ft3, yd3, ang3, Pica3, barrel, bushel, regton, Schooner, Middy, Glass"
+msgstr ""
+
+#: 04060116.xhp#par_id3149244.199.help.text
+msgid "Area"
+msgstr "Superficie"
+
+#: 04060116.xhp#par_id3150425.200.help.text
+msgid "<emph>m2</emph>, mi2, Nmi2, in2, ft2, yd2, <emph>ang2</emph>, Pica2, Morgen, <emph>ar</emph>, acre, ha"
+msgstr ""
+
+#: 04060116.xhp#par_id3150629.201.help.text
+msgid "Speed"
+msgstr "Velocidad"
+
+#: 04060116.xhp#par_id3159246.202.help.text
+msgid "<emph>m/s</emph>, <emph>m/sec</emph>, m/h, mph, kn, admkn"
+msgstr ""
+
+#: 04060116.xhp#par_id3150789.201.help.text
+msgid "Information"
+msgstr ""
+
+#: 04060116.xhp#par_id3159899.202.help.text
+msgid "<emph>bit</emph>, <emph>byte</emph>"
+msgstr ""
+
+#: 04060116.xhp#par_id3143277.203.help.text
+msgid "Units of measure in <emph>bold</emph> can be preceded by a prefix character from the following list:"
+msgstr ""
+
+#: 04060116.xhp#par_id3148422.204.help.text
+msgid "Prefix"
+msgstr ""
+
+#: 04060116.xhp#par_id3148423.help.text
+msgid "Multiplier"
+msgstr ""
+
+#: 04060116.xhp#par_id3149490.help.text
+msgid "Y (yotta)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149931.help.text
+msgid "10^24"
+msgstr ""
+
+#: 04060116.xhp#par_id3149491.help.text
+msgid "Z (zetta)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149932.help.text
+msgid "10^21"
+msgstr ""
+
+#: 04060116.xhp#par_id3149492.help.text
+msgid "E (exa)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149933.help.text
+msgid "10^18"
+msgstr ""
+
+#: 04060116.xhp#par_id3149493.help.text
+msgid "P (peta)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149934.help.text
+msgid "10^15"
+msgstr ""
+
+#: 04060116.xhp#par_id3149494.help.text
+msgid "T (tera)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149935.help.text
+msgid "10^12"
+msgstr ""
+
+#: 04060116.xhp#par_id3149495.help.text
+msgid "G (giga)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149936.help.text
+msgid "10^9"
+msgstr ""
+
+#: 04060116.xhp#par_id3149496.help.text
+msgid "M (mega)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149937.help.text
+msgid "10^6"
+msgstr ""
+
+#: 04060116.xhp#par_id3149497.help.text
+msgid "k (kilo)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149938.help.text
+msgid "10^3"
+msgstr ""
+
+#: 04060116.xhp#par_id3149498.help.text
+msgid "h (hecto)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149939.help.text
+msgid "10^2"
+msgstr ""
+
+#: 04060116.xhp#par_id3149499.help.text
+msgid "e (deca)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149940.help.text
+msgid "10^1"
+msgstr ""
+
+#: 04060116.xhp#par_id3149500.help.text
+msgid "d (deci)"
+msgstr ""
+
+#: 04060116.xhp#par_id3143940.help.text
+msgid "10^-1"
+msgstr ""
+
+#: 04060116.xhp#par_id3149501.help.text
+msgid "c (centi)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149941.help.text
+msgid "10^-2"
+msgstr ""
+
+#: 04060116.xhp#par_id3149502.help.text
+msgid "m (milli)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149942.help.text
+msgid "10^-3"
+msgstr ""
+
+#: 04060116.xhp#par_id3149503.help.text
+msgid "u (micro)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149943.help.text
+msgid "10^-6"
+msgstr ""
+
+#: 04060116.xhp#par_id3149504.help.text
+msgid "n (nano)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149944.help.text
+msgid "10^-9"
+msgstr ""
+
+#: 04060116.xhp#par_id3149505.help.text
+msgid "p (pico)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149945.help.text
+msgid "10^-12"
+msgstr ""
+
+#: 04060116.xhp#par_id3149506.help.text
+msgid "f (femto)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149946.help.text
+msgid "10^-15"
+msgstr ""
+
+#: 04060116.xhp#par_id3149507.help.text
+msgid "a (atto)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149947.help.text
+msgid "10^-18"
+msgstr ""
+
+#: 04060116.xhp#par_id3149508.help.text
+msgid "z (zepto)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149948.help.text
+msgid "10^-21"
+msgstr ""
+
+#: 04060116.xhp#par_id3149509.help.text
+msgid "y (yocto)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149949.help.text
+msgid "10^-24"
+msgstr ""
+
+#: 04060116.xhp#par_id0908200903061174.help.text
+msgid "Information units \"bit\" and \"byte\" may also be prefixed by one of the following IEC 60027-2 / IEEE 1541 prefixes:"
+msgstr "Las unidades de información \"bit\" y \"byte\" también pueden estar prefijadas por uno de los siguientes prefijos IEC 60027-2 / IEEE 1541:"
+
+#: 04060116.xhp#par_id0908200903090966.help.text
+msgid "ki kibi 1024"
+msgstr "ki kibi 1024"
+
+#: 04060116.xhp#par_id0908200903090958.help.text
+msgid "Mi mebi 1048576"
+msgstr "Mi mebi 1048576"
+
+#: 04060116.xhp#par_id0908200903090936.help.text
+msgid "Gi gibi 1073741824"
+msgstr "Gi gibi 1073741824"
+
+#: 04060116.xhp#par_id0908200903090975.help.text
+msgid "Ti tebi 1099511627776"
+msgstr "Ti tebi 1099511627776"
+
+#: 04060116.xhp#par_id0908200903090930.help.text
+msgid "Pi pebi 1125899906842620"
+msgstr "Pi pebi 1125899906842620"
+
+#: 04060116.xhp#par_id0908200903091070.help.text
+msgid "Ei exbi 1152921504606850000"
+msgstr "Ei exbi 1152921504606850000"
+
+#: 04060116.xhp#par_id0908200903091097.help.text
+msgid "Zi zebi 1180591620717410000000"
+msgstr "Zi zebi 1180591620717410000000"
+
+#: 04060116.xhp#par_id0908200903091010.help.text
+msgid "Yi yobi 1208925819614630000000000"
+msgstr "Yi yobi 1208925819614630000000000"
+
+#: 04060116.xhp#hd_id3146125.209.help.text
+msgctxt "04060116.xhp#hd_id3146125.209.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060116.xhp#par_id3153695.210.help.text
+msgid "CONVERT_ADD(Number; \"FromUnit\"; \"ToUnit\")"
+msgstr "CONVERTIR_ADD(Número; \"DeUnidad\"; \"AUnidad\")"
+
+#: 04060116.xhp#par_id3147522.211.help.text
+msgid " <emph>Number</emph> is the number to be converted."
+msgstr " <emph>Número</emph> es el número que se va a convertir."
+
+#: 04060116.xhp#par_id3154472.212.help.text
+msgid " <emph>FromUnit</emph> is the unit from which conversion is taking place."
+msgstr " <emph>DeUnidad</emph> es la unidad desde la que se efectúa la conversión."
+
+#: 04060116.xhp#par_id3153790.213.help.text
+msgid " <emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
+msgstr " <emph>AUnidad</emph> es la unidad a la que se efectúa la conversión. Ambas unidades deben ser del mismo tipo."
+
+#: 04060116.xhp#hd_id3156270.214.help.text
+msgctxt "04060116.xhp#hd_id3156270.214.help.text"
+msgid "Examples"
+msgstr "Ejemplos"
+
+#: 04060116.xhp#par_id3156336.215.help.text
+msgid " <item type=\"input\">=CONVERT_ADD(10;\"HP\";\"PS\") </item>returns, rounded to two decimal places, 10.14. 10 HP equal 10.14 PS."
+msgstr " <item type=\"input\">=CONVERTIR_ADD(10;\"HP\";\"PS\") </item>devuelve, redondeado a dos posiciones decimales, 10,14. 10 HP equivalen a 10,14 PS."
+
+#: 04060116.xhp#par_id3154834.216.help.text
+msgid " <item type=\"input\">=CONVERT_ADD(10;\"km\";\"mi\") </item>returns, rounded to two decimal places, 6.21. 10 kilometers equal 6.21 miles. The k is the permitted prefix character for the factor 10^3."
+msgstr " <item type=\"input\">=CONVERTIR_ADD(10;\"km\";\"mi\") </item>devuelve, redondeado a dos posiciones decimales, 6,21. 10 kilómetros equivalen a 6,21 millas. La k es el carácter de prefijo permitido para el factor 10^3."
+
+#: 04060116.xhp#bm_id3147096.help.text
+msgid "<bookmark_value>FACTDOUBLE function</bookmark_value> <bookmark_value>factorials;numbers with increments of two</bookmark_value>"
+msgstr "<bookmark_value>FACT.DOBLE</bookmark_value> <bookmark_value>factoriales;números con incrementos de dos</bookmark_value>"
+
+#: 04060116.xhp#hd_id3147096.36.help.text
+msgid "FACTDOUBLE"
+msgstr "FACT.DOBLE"
+
+#: 04060116.xhp#par_id3151309.37.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">Returns the double factorial of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">El resultado es el factorial del número en incrementos de 2.</ahelp>"
+
+#: 04060116.xhp#hd_id3154666.38.help.text
+msgctxt "04060116.xhp#hd_id3154666.38.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060116.xhp#par_id3155121.39.help.text
+msgid "FACTDOUBLE(Number)"
+msgstr "FACT.DOBLE(Número)"
+
+#: 04060116.xhp#par_id3158440.40.help.text
+msgid "Returns <emph>Number</emph> <emph>!!</emph>, the double factorial of <emph>Number</emph>, where <emph>Number</emph> is an integer greater than or equal to zero."
+msgstr "Devuelve <emph>Número</emph> <emph>!!</emph>, el factorial doble de <emph>Número</emph>, donde <emph>Número</emph> es un número entero mayor o igual a cero."
+
+#: 04060116.xhp#par_id2480849.help.text
+msgid "For even numbers FACTDOUBLE(n) returns:"
+msgstr "For even numbers FACTDOUBLE(n) returns:"
+
+#: 04060116.xhp#par_id4181951.help.text
+msgid "2*4*6*8* ... *n"
+msgstr "2*4*6*8* ... *n"
+
+#: 04060116.xhp#par_id2927335.help.text
+msgid "For odd numbers FACTDOUBLE(n) returns:"
+msgstr "For odd numbers FACTDOUBLE(n) returns:"
+
+#: 04060116.xhp#par_id2107303.help.text
+msgid "1*3*5*7* ... *n"
+msgstr "1*3*5*7* ... *n"
+
+#: 04060116.xhp#par_id4071779.help.text
+msgid "FACTDOUBLE(0) returns 1 by definition."
+msgstr "FACT.DOBLE(0) devuelve 1 por definición."
+
+#: 04060116.xhp#hd_id3154622.42.help.text
+msgctxt "04060116.xhp#hd_id3154622.42.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060116.xhp#par_id7844477.help.text
+msgid " <item type=\"input\">=FACTDOUBLE(5)</item> returns 15."
+msgstr " <item type=\"input\">=FACT.DOBLE(5)</item> devuelve 15."
+
+#: 04060116.xhp#par_id3154116.43.help.text
+msgid " <item type=\"input\">=FACTDOUBLE(6)</item> returns 48."
+msgstr " <item type=\"input\">=FACT.DOBLE(6)</item> devuelve 48."
+
+#: 04060116.xhp#par_id6478469.help.text
+msgid " <item type=\"input\">=FACTDOUBLE(0)</item> returns 1."
+msgstr " <item type=\"input\">=FACT.DOBLE(0)</item> devuelve 1."
+
+#: 05050100.xhp#tit.help.text
+msgctxt "05050100.xhp#tit.help.text"
+msgid "Rename Sheet"
+msgstr "Cambiar nombre a la hoja"
+
+#: 05050100.xhp#bm_id3147336.help.text
+msgid "<bookmark_value>worksheet names</bookmark_value><bookmark_value>changing; sheet names</bookmark_value><bookmark_value>sheets; renaming</bookmark_value>"
+msgstr "<bookmark_value>nombres de hojas de trabajo</bookmark_value><bookmark_value>cambiar;nombres de hojas</bookmark_value><bookmark_value>hojas;cambiar nombre</bookmark_value>"
+
+#: 05050100.xhp#hd_id3147336.1.help.text
+msgctxt "05050100.xhp#hd_id3147336.1.help.text"
+msgid "Rename Sheet"
+msgstr "Cambiar nombre de hoja"
+
+#: 05050100.xhp#par_id3150792.2.help.text
+msgid "<variable id=\"umbenennentext\"><ahelp hid=\".uno:RenameTable\">This command opens a dialog where you can assign a different name to the current sheet.</ahelp></variable>"
+msgstr "<variable id=\"umbenennentext\"><ahelp hid=\".uno:RenameTable\">Este comando abre un diálogo que permite asignar un nombre distinto a la hoja actual.</ahelp></variable>"
+
+#: 05050100.xhp#hd_id3153968.3.help.text
+msgctxt "05050100.xhp#hd_id3153968.3.help.text"
+msgid "Name"
+msgstr "Nombre"
+
+#: 05050100.xhp#par_id3155131.help.text
+msgid "<ahelp hid=\"HID_SC_APPEND_NAME\">Enter a new name for the sheet here.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_APPEND_NAME\">Ingrese aquí un nuevo nombre par ala Hoja .</ahelp>"
+
+#: 05050100.xhp#par_id3153092.5.help.text
+msgid "You can also open the<emph> Rename Sheet </emph>dialog through the context menu by positioning the mouse pointer over a sheet tab at the bottom of the window and <switchinline select=\"sys\"><caseinline select=\"MAC\">clicking while pressing Control</caseinline><defaultinline>clicking the right mouse button</defaultinline></switchinline>."
+msgstr "También puede abrir el diálogo <emph>Cambiar nombre a la hoja</emph> mediante el menú contextual; para ello. coloque el puntero sobre una de las pestañas de la hoja situada en la parte inferior de la ventana y <switchinline select=\"sys\"><caseinline select=\"MAC\">haga clic mientras pulsa la tecla Control</caseinline><defaultinline>clic con el botón derecho del ratón</defaultinline></switchinline>."
+
+#: 05050100.xhp#par_id3147396.6.help.text
+msgid "Alternatively, click the sheet tab while pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Alt</defaultinline></switchinline> key. Now you can change the name directly. <switchinline select=\"sys\"><caseinline select=\"UNIX\"><embedvar href=\"text/shared/00/00000099.xhp#winmanager\"/></caseinline></switchinline>"
+msgstr "Otra posibilidad es pulsar en la pestaña de hoja mientras presiona la tecla <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline>tecla<defaultinline>Alt</defaultinline></switchinline>. Ahora ya puede cambiar el nombre. <switchinline select=\"sys\"><caseinline select=\"UNIX\"><embedvar href=\"text/shared/00/00000099.xhp#winmanager\"/></caseinline></switchinline>"
+
+#: 07080000.xhp#tit.help.text
+msgid "Split"
+msgstr "Dividir"
+
+#: 07080000.xhp#hd_id3163800.1.help.text
+msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"Split\">Split</link>"
+msgstr "<link href=\"text/scalc/01/07080000.xhp\" name=\"Dividir\">Dividir</link>"
+
+#: 07080000.xhp#par_id3150084.2.help.text
+msgid "<ahelp hid=\".uno:SplitWindow\" visibility=\"visible\">Divides the current window at the top left corner of the active cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:SplitWindow\" visibility=\"visible\">Divide la ventana actual en la esquina superior izquierda de la celda activa.</ahelp>"
+
+#: 07080000.xhp#par_id3154910.3.help.text
+msgid "You can also use the mouse to split the window horizontally or vertically. To do this, drag the thick black line located directly above the vertical scrollbar or directly to the right of the horizontal scrollbar into the window. A thick black line will show where the window is split."
+msgstr "También puede utilizarse el ratón para dividir la ventana en sentido horizontal o vertical. Para ello, arrastre hacia la ventana la línea negra gruesa situada justo encima de la barra de desplazamiento vertical o a la derecha de la barra de desplazamiento horizontal. El lugar de división de la ventana quedará indicado mediante una línea negra gruesa."
+
+#: 07080000.xhp#par_id3149263.4.help.text
+msgid "A split window has its own scrollbars in each partial section; by contrast, <link href=\"text/scalc/01/07090000.xhp\" name=\"fixed window sections\">fixed window sections</link> are not scrollable."
+msgstr "Una ventana dividida contiene barras de desplazamiento propias en cada área, mientras que un <link href=\"text/scalc/01/07090000.xhp\" name=\"área de ventana fija\">área de ventana fija</link> no dispone de ellas."
+
+#: func_now.xhp#tit.help.text
+msgid "NOW"
+msgstr "AHORA"
+
+#: func_now.xhp#bm_id3150521.help.text
+msgid "<bookmark_value>NOW function</bookmark_value>"
+msgstr "<bookmark_value>AHORA</bookmark_value>"
+
+#: func_now.xhp#hd_id3150521.47.help.text
+msgid "<variable id=\"now\"><link href=\"text/scalc/01/func_now.xhp\">NOW</link></variable>"
+msgstr "<variable id=\"now\"><link href=\"text/scalc/01/func_now.xhp\">AHORA</link></variable>"
+
+#: func_now.xhp#par_id3148829.48.help.text
+msgid "<ahelp hid=\"HID_FUNC_JETZT\">Returns the computer system date and time.</ahelp> The value is updated when you recalculate the document or each time a cell value is modified."
+msgstr "<ahelp hid=\"HID_FUNC_JETZT\">Devuelve la fecha y la hora del sistema.</ahelp> El valor se actualiza cuando se recalcula el documento o cada vez que se modifica un valor de la celda."
+
+#: func_now.xhp#hd_id3146988.49.help.text
+msgctxt "func_now.xhp#hd_id3146988.49.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: func_now.xhp#par_id3154897.50.help.text
+msgid "NOW()"
+msgstr "AHORA()"
+
+#: func_now.xhp#par_id4598529.help.text
+msgid "NOW is a function without arguments."
+msgstr "NOW es una función sin argumentos."
+
+#: func_now.xhp#hd_id3154205.51.help.text
+msgctxt "func_now.xhp#hd_id3154205.51.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: func_now.xhp#par_id3150774.52.help.text
+msgid "<item type=\"input\">=NOW()-A1</item> returns the difference between the date in A1 and now. Format the result as a number."
+msgstr "<item type=\"input\">=AHORA()-A1</item> devuelve la diferencia entre la fecha en A1 y ahora. El formato resultado como un número."
+
+#: 12120100.xhp#tit.help.text
+msgid "Criteria"
+msgstr "Criterios"
+
+#: 12120100.xhp#bm_id1464278.help.text
+msgid "<bookmark_value>selection lists;validity</bookmark_value>"
+msgstr "<bookmark_value>seleccionar listas;validación</bookmark_value>"
+
+#: 12120100.xhp#hd_id3153032.1.help.text
+msgid "<link href=\"text/scalc/01/12120100.xhp\" name=\"Criteria\">Criteria</link>"
+msgstr "<link href=\"text/scalc/01/12120100.xhp\" name=\"Criterios\">Criterios</link>"
+
+#: 12120100.xhp#par_id3156327.2.help.text
+msgid "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_VALUES\">Specify the validation rules for the selected cell(s).</ahelp>"
+msgstr "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_VALUES\">Especifique las reglas de validación para las celdas seleccionadas.</ahelp>"
+
+#: 12120100.xhp#par_id3155923.4.help.text
+msgid "For example, you can define criteria such as: \"Numbers between 1 and 10\" or \"Texts that are no more than 20 characters\"."
+msgstr "Se pueden definir distintos tipos de criterios, como, por ejemplo, \"números entre 1 y 10\" o \"textos con un máximo de 20 caracteres\"."
+
+#: 12120100.xhp#hd_id3153896.5.help.text
+msgid "Allow"
+msgstr "Permitir"
+
+#: 12120100.xhp#par_id3150400.6.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_ALLOW\">Click a validation option for the selected cell(s).</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_ALLOW\">Haga clic en una opción de validación para las celdas seleccionadas.</ahelp>"
+
+#: 12120100.xhp#par_id3148797.17.help.text
+msgid "The following conditions are available:"
+msgstr "Dispone de las siguientes condiciones:"
+
+#: 12120100.xhp#par_id3150447.18.help.text
+msgctxt "12120100.xhp#par_id3150447.18.help.text"
+msgid "Condition"
+msgstr "<emph>Condición</emph>"
+
+#: 12120100.xhp#par_id3155854.19.help.text
+msgid "Effect"
+msgstr "<emph>Acción</emph>"
+
+#: 12120100.xhp#par_id3153092.20.help.text
+msgid "All values"
+msgstr "Todos los valores"
+
+#: 12120100.xhp#par_id3155411.21.help.text
+msgid "No limitation."
+msgstr "No hay limitación."
+
+#: 12120100.xhp#par_id3147434.22.help.text
+msgid "Whole number"
+msgstr "Número entero"
+
+#: 12120100.xhp#par_id3154319.23.help.text
+msgid "Only whole numbers corresponding to the condition."
+msgstr "Sólo números enteros que respondan a la condición."
+
+#: 12120100.xhp#par_id3145802.24.help.text
+msgid "Decimal"
+msgstr "Decimal"
+
+#: 12120100.xhp#par_id3153160.25.help.text
+msgid "All numbers corresponding to the condition."
+msgstr "Todos los números que respondan a la condición."
+
+#: 12120100.xhp#par_id3149377.26.help.text
+msgctxt "12120100.xhp#par_id3149377.26.help.text"
+msgid "Date"
+msgstr "Fecha"
+
+#: 12120100.xhp#par_id3150718.27.help.text
+msgctxt "12120100.xhp#par_id3150718.27.help.text"
+msgid "All numbers corresponding to the condition. The entered values are formatted accordingly the next time the dialog is called up."
+msgstr "Todos los números que respondan a la condición. Los valores registrados se formatean correspondientemente la próxima vez que se abra el diálogo."
+
+#: 12120100.xhp#par_id3146969.28.help.text
+msgctxt "12120100.xhp#par_id3146969.28.help.text"
+msgid "Time"
+msgstr "Hora"
+
+#: 12120100.xhp#par_id3155066.29.help.text
+msgctxt "12120100.xhp#par_id3155066.29.help.text"
+msgid "All numbers corresponding to the condition. The entered values are formatted accordingly the next time the dialog is called up."
+msgstr "Todos los números que respondan a la condición. Los valores registrados se formatean correspondientemente la próxima vez que se active el diálogo."
+
+#: 12120100.xhp#par_idN106A0.help.text
+msgid "Cell range"
+msgstr "Área de celdas"
+
+#: 12120100.xhp#par_idN106A5.help.text
+msgid "Allow only values that are given in a cell range. The cell range can be specified explicitly, or as a named database range, or as a named range. The range may consist of one column or one row of cells. If you specify a range of columns and rows, only the first column is used."
+msgstr "Sólo permite los valores de una determinada área de celdas. El área de celdas se puede especificar de forma explícita, o como un área de base de datos con nombre, o un área con nombre. El área puede estar compuesta por una columna o una fila de celdas. Si especifica un área de columnas y filas, sólo se utiliza la primera columna."
+
+#: 12120100.xhp#par_idN106AB.help.text
+msgid "List"
+msgstr "Lista"
+
+#: 12120100.xhp#par_idN106B0.help.text
+msgid "Allow only values or strings specified in a list. Strings and values can be mixed. Numbers evaluate to their value, so if you enter the number 1 in the list, the entry 100% is also valid."
+msgstr "Sólo permite las cadenas o valores especificados en una lista. Las cadenas y valores se pueden mezclar. Los números evalúan su valor, de modo que si introduce el número 1 en la lista, la entrada 100% también es válida."
+
+#: 12120100.xhp#par_id3154756.30.help.text
+msgid "Text length"
+msgstr "Longitud del texto"
+
+#: 12120100.xhp#par_id3147339.31.help.text
+msgid "Entries whose length corresponds to the condition."
+msgstr "Entradas cuya longitud corresponda a la condición."
+
+#: 12120100.xhp#hd_id3154704.7.help.text
+msgid "Allow blank cells"
+msgstr "Permitir celdas en blanco"
+
+#: 12120100.xhp#par_id3153967.8.help.text
+msgid "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_VALUES:TSB_ALLOW_BLANKS\">In conjunction with <emph>Tools - Detective - Mark invalid Data</emph>, this defines that blank cells are shown as invalid data (disabled) or not (enabled).</ahelp>"
+msgstr "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_VALUES:TSB_ALLOW_BLANKS\">En combinación con <emph>Herramientas - Detective - Marcar los datos incorrectos</emph>, esta función define que las celdas en blanco se muestren como datos incorrectos (desactivadas) o no (activadas).</ahelp>"
+
+#: 12120100.xhp#par_idN10709.help.text
+msgid "Show selection list"
+msgstr "Mostrar lista de selección"
+
+#: 12120100.xhp#par_idN1070D.help.text
+msgid "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SHOWLIST\">Shows a list of all valid strings or values to select from. The list can also be opened by selecting the cell and pressing Ctrl+D (Mac: Command+D).</ahelp>"
+msgstr "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SHOWLIST\">Muestra una lista de todos los valores o cadenas válidos desde donde se pueden seleccionar. También puede abrir la lista seleccionando la celda y pulsando Ctrl + D.</ahelp>"
+
+#: 12120100.xhp#par_idN10724.help.text
+msgid "Sort entries ascending"
+msgstr "Orden ascendente"
+
+#: 12120100.xhp#par_idN10728.help.text
+msgid "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SORTLIST\">Sorts the selection list in ascending order and filters duplicates from the list. If not checked, the order from the data source is taken.</ahelp>"
+msgstr "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SORTLIST\">Ordena la lista de selección de forma ascendente y filtra los duplicados de la lista. Si no está seleccionada esta opción, se sigue el orden del origen de datos.</ahelp>"
+
+#: 12120100.xhp#par_idN1073F.help.text
+msgid "Source"
+msgstr "Origen"
+
+#: 12120100.xhp#par_idN10743.help.text
+msgid "<ahelp hid=\"sc:Edit:TP_VALIDATION_VALUES:EDT_MIN\">Enter the cell range that contains the valid values or text.</ahelp>"
+msgstr "<ahelp hid=\"sc:Edit:TP_VALIDATION_VALUES:EDT_MIN\">Introduzca el área de celdas que contenga el texto o los valores válidos.</ahelp>"
+
+#: 12120100.xhp#par_idN1075A.help.text
+msgid "Entries"
+msgstr "Entradas"
+
+#: 12120100.xhp#par_idN1075E.help.text
+msgid "<ahelp hid=\"sc:MultiLineEdit:TP_VALIDATION_VALUES:EDT_LIST\">Enter the entries that will be valid values or text strings.</ahelp>"
+msgstr "<ahelp hid=\"sc:MultiLineEdit:TP_VALIDATION_VALUES:EDT_LIST\">Indique las entradas que serán cadenas de texto o valores válidos.</ahelp>"
+
+#: 12120100.xhp#hd_id3163807.9.help.text
+msgid "Data"
+msgstr "Datos"
+
+#: 12120100.xhp#par_id3144502.10.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_VALUE\">Select the comparative operator that you want to use.</ahelp> The available operators depend on what you selected in the <emph>Allow </emph>box. If you select \"between\" or \"not between\", the <emph>Minimum</emph> and <emph>Maximum</emph> input boxes appear. Otherwise, only the <emph>Minimum</emph>, the <emph>Maximum, or the Value</emph> input boxes appear."
+msgstr "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_VALUE\">Seleccione el operador de comparación que desee usar.</ahelp> Los operadores disponibles dependen de la opción seleccionada en el cuadro <emph>Permitir</emph>. Al seleccionar \"entre\" o \"no entre\" se muestran los cuadros de entrada <emph>Mínimo</emph> y <emph>Máximo</emph>. En otros casos, sólo se muestra uno de los cuadros de entrada: <emph>Mínimo</emph>, <emph>Máximo o Valor</emph>."
+
+#: 12120100.xhp#hd_id3153782.11.help.text
+msgctxt "12120100.xhp#hd_id3153782.11.help.text"
+msgid "Value"
+msgstr "Valor"
+
+#: 12120100.xhp#par_id3153266.12.help.text
+msgid "Enter the value for the data validation option that you selected in the <emph>Allow </emph>box."
+msgstr "Escriba el valor para la opción de validación de datos seleccionada en el cuadro <emph>Permitir</emph>."
+
+#: 12120100.xhp#hd_id3149814.13.help.text
+msgid "Minimum"
+msgstr "Mínimo"
+
+#: 12120100.xhp#par_id3153199.14.help.text
+msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MIN\">Enter the minimum value for the data validation option that you selected in the <emph>Allow </emph>box.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MIN\">Escriba el valor mínimo para la opción de validación de datos seleccionada en el cuadro <emph>Permitir</emph>.</ahelp>"
+
+#: 12120100.xhp#hd_id3149035.15.help.text
+msgid "Maximum"
+msgstr "Máximo"
+
+#: 12120100.xhp#par_id3150089.16.help.text
+msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MAX\">Enter the maximum value for the data validation option that you selected in the <emph>Allow </emph>box.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MAX\">Escriba el valor máximo para la opción de validación de datos seleccionada en el cuadro <emph>Permitir</emph>.</ahelp>"
+
+#: 12080200.xhp#tit.help.text
+msgid "Show Details"
+msgstr "Mostrar detalles"
+
+#: 12080200.xhp#bm_id3153561.help.text
+msgid "<bookmark_value>tables; showing details</bookmark_value>"
+msgstr "<bookmark_value>tablas;mostrar detalles</bookmark_value>"
+
+#: 12080200.xhp#hd_id3153561.1.help.text
+msgid "<link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\">Show Details</link>"
+msgstr "<link href=\"text/scalc/01/12080200.xhp\" name=\"Mostrar detalles\">Mostrar detalles</link>"
+
+#: 12080200.xhp#par_id3153822.2.help.text
+msgid "<ahelp hid=\".uno:ShowDetail\">Shows the details of the grouped row or column that contains the cursor. To show the details of all of the grouped rows or columns, select the outlined table, and then choose this command.</ahelp>"
+msgstr "<ahelp hid=\".uno:ShowDetail\">Muestra los detalles de la fila o columna agrupada en la que se encuentra el cursor. Para mostrar los detalles de todas las filas o columnas agrupadas, seleccione la tabla del esquema y elija este comando.</ahelp>"
+
+#: 12080200.xhp#par_id3155922.3.help.text
+msgid "To hide a selected group, choose <emph>Data -Outline – </emph><link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\"><emph>Hide Details</emph></link>."
+msgstr "Para ocultar un grupo seleccionado, elija <emph>Datos - Esquema -</emph><link href=\"text/scalc/01/12080100.xhp\" name=\"Ocultar detalles\"><emph>Ocultar detalles</emph></link>."
+
+#: 12080200.xhp#par_id6036561.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12080700.xhp\">Show Details command in pivot tables</link>"
+msgstr "<link href=\"text/scalc/01/12080700.xhp\">comando Mostrar detalles en Tablas del Piloto de Datos</link>"
+
+#: 05030200.xhp#tit.help.text
+msgctxt "05030200.xhp#tit.help.text"
+msgid "Optimal Row Heights"
+msgstr "Altura óptima de filas"
+
+#: 05030200.xhp#bm_id3148491.help.text
+msgid "<bookmark_value>sheets; optimal row heights</bookmark_value><bookmark_value>rows; optimal heights</bookmark_value><bookmark_value>optimal row heights</bookmark_value>"
+msgstr "<bookmark_value>hojas;altura óptima de filas</bookmark_value><bookmark_value>filas;altura óptima</bookmark_value><bookmark_value>altura óptima de filas</bookmark_value>"
+
+#: 05030200.xhp#hd_id3148491.1.help.text
+msgctxt "05030200.xhp#hd_id3148491.1.help.text"
+msgid "Optimal Row Heights"
+msgstr "Altura de fila óptima"
+
+#: 05030200.xhp#par_id3154758.2.help.text
+msgid "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalRowHeight\">Determines the optimal row height for the selected rows.</ahelp></variable> The optimal row height depends on the font size of the largest character in the row. You can use various <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"units of measure\">units of measure</link>."
+msgstr "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalRowHeight\">Determina la altura optima de la celda para las filas seleccionadas.</ahelp></variable> La altura óptima de la fila depende del tamaño del tipo de letra del mayor carácter de la fila. Se pueden utilizar diversas <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"unidades de medida\">unidades de medida</link>."
+
+#: 05030200.xhp#hd_id3154908.3.help.text
+msgctxt "05030200.xhp#hd_id3154908.3.help.text"
+msgid "Add"
+msgstr "Adicional"
+
+#: 05030200.xhp#par_id3151044.4.help.text
+msgid "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_ROW_OPT:ED_VALUE\">Sets additional spacing between the largest character in a row and the cell boundaries.</ahelp>"
+msgstr "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_ROW_OPT:ED_VALUE\">Define el espacio adicional entre el carácter de mayor tamaño de una fila y los límites de la celda.</ahelp>"
+
+#: 05030200.xhp#hd_id3150439.5.help.text
+msgctxt "05030200.xhp#hd_id3150439.5.help.text"
+msgid "Default value"
+msgstr "Valor predeterminado"
+
+#: 05030200.xhp#par_id3146984.6.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ROW_OPT:BTN_DEFVAL\">Restores the default value for the optimal row height.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ROW_OPT:BTN_DEFVAL\">Restablece el valor predeterminado de la altura óptima de las celdas.</ahelp>"
+
+#: 04060111.xhp#tit.help.text
+msgctxt "04060111.xhp#tit.help.text"
+msgid "Add-in Functions"
+msgstr "Funciones Add-in"
+
+#: 04060111.xhp#bm_id3150870.help.text
+msgid "<bookmark_value>add-ins; functions</bookmark_value><bookmark_value>functions; add-in functions</bookmark_value><bookmark_value>Function Wizard; add-ins</bookmark_value>"
+msgstr "<bookmark_value>add-ins;funciones</bookmark_value><bookmark_value>funciones;funciones de add-ins</bookmark_value><bookmark_value>Asistente para funciones;add-ins</bookmark_value>"
+
+#: 04060111.xhp#hd_id3150870.1.help.text
+msgctxt "04060111.xhp#hd_id3150870.1.help.text"
+msgid "Add-in Functions"
+msgstr "Funciones Add-in"
+
+#: 04060111.xhp#par_id3147427.2.help.text
+msgid "<variable id=\"addintext\">The following describes and lists some of the available add-in functions. </variable>"
+msgstr "<variable id=\"addintext\">A continuación se enumeran y describen algunas funciones add-in disponibles. </variable>"
+
+#: 04060111.xhp#par_id3163713.75.help.text
+msgid "<link href=\"text/scalc/01/04060112.xhp#addinconcept\">Add-in concept</link>"
+msgstr "<link href=\"text/scalc/01/04060112.xhp#addinconcept\">Concepto Add-in</link>"
+
+#: 04060111.xhp#par_id3146120.5.help.text
+msgid "You will also find a <link href=\"text/scalc/01/04060112.xhp\">description of the $[officename] Calc add-in interface</link> in the Help. In addition, important functions and their parameters are described in the Help for the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>$[officename] Calc add-in DLL</defaultinline></switchinline>."
+msgstr "En la Ayuda también hay una <link href=\"text/scalc/01/04060112.xhp\">descripción de la interfaz de add-in de $[officename] Calc</link>. Asimismo, se describen las funciones importantes y sus parámetros para las DLL del add-in de la <switchinline select=\"sys\"><caseinline select=\"UNIX\">biblioteca compartida</caseinline><defaultinline>de $[officename] Calc</defaultinline></switchinline>."
+
+#: 04060111.xhp#hd_id3151075.7.help.text
+msgid "Add-ins supplied"
+msgstr "Las Add-ins suministradas"
+
+#: 04060111.xhp#par_id3156285.8.help.text
+msgid "$[officename] contains examples for the add-in interface of $[officename] Calc."
+msgstr "$[officename] contiene ejemplos de la interfaz de Add-in de $[officename] Calc."
+
+#: 04060111.xhp#par_id3159267.76.help.text
+msgid "<link href=\"text/scalc/01/04060115.xhp\">Analysis Functions Part One</link>"
+msgstr "<link href=\"text/scalc/01/04060115.xhp\">Funciones de análisis, primera parte</link>"
+
+#: 04060111.xhp#par_id3154703.77.help.text
+msgid "<link href=\"text/scalc/01/04060116.xhp\">Analysis Functions Part Two</link>"
+msgstr "<link href=\"text/scalc/01/04060116.xhp\">Funciones de análisis, segunda parte</link>"
+
+#: 04060111.xhp#bm_id3149566.help.text
+msgid "<bookmark_value>ISLEAPYEAR function</bookmark_value><bookmark_value>leap year determination</bookmark_value>"
+msgstr "<bookmark_value>ESAÑOBISIESTO</bookmark_value><bookmark_value>determinación de año bisiesto</bookmark_value>"
+
+#: 04060111.xhp#hd_id3149566.14.help.text
+msgid "ISLEAPYEAR"
+msgstr "ESAÑOBISIESTO"
+
+#: 04060111.xhp#par_id3150297.15.help.text
+msgid "<ahelp hid=\".\">Determines whether a year is a leap year.</ahelp> If yes, the function will return the value 1 (TRUE); if not, it will return 0 (FALSE)."
+msgstr "<ahelp hid=\".\">Determina si un año es bisiesto.</ahelp> En caso afirmativo, la función devuelve el valor 1 (VERDADERO); en caso negativo, devuelve 0 (FALSO)."
+
+#: 04060111.xhp#hd_id3148487.16.help.text
+msgctxt "04060111.xhp#hd_id3148487.16.help.text"
+msgid "Syntax"
+msgstr "<emph>Sintaxis</emph>"
+
+#: 04060111.xhp#par_id3150205.17.help.text
+msgid "ISLEAPYEAR(\"Date\")"
+msgstr "ESAÑOBISIESTO(\"Fecha\")"
+
+#: 04060111.xhp#par_id3159239.18.help.text
+msgid "<emph>Date</emph> specifies whether a given date falls within a leap year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
+msgstr "<emph>Fecha</emph> especifica si una fecha cae dentro de un año bisiesto. La Fecha parámetro debe ser una fecha válida de acuerdo a las opciones de localización de la %PRODUCTNAME."
+
+#: 04060111.xhp#hd_id3149817.19.help.text
+msgctxt "04060111.xhp#hd_id3149817.19.help.text"
+msgid "Example"
+msgstr "<emph>Ejemplo</emph>"
+
+#: 04060111.xhp#par_id3150786.20.help.text
+msgid "=ISLEAPYEAR(A1) returns 1, if A1 contains 1968-02-29, the valid date 29th of February 1968 in your locale setting."
+msgstr "=ESAÑOBISIESTO(A1) devuelve 1, si A1 contiene 1968-02-29, será el formato de tu localización en este caso la fecha valida de 29 de Febrero de 1968."
+
+#: 04060111.xhp#par_idN107E7.help.text
+msgid "You may also use =ISLEAPYEAR(\"1968-02-29\") or =ISLEAPYEAR(\"2/29/68\")."
+msgstr "También puedes utilizar =ESAÑOBISIESTO(\"1968-02-29\") o =ESAÑOBISIESTO(\"2/29/68\")."
+
+#: 04060111.xhp#par_idN107EA.help.text
+msgid "Never use =ISLEAPYEAR(2/29/68), because this would first evaluate 2 divided by 29 divided by 68, and then calculate the ISLEAPYEAR function from this small number as a serial date number."
+msgstr "Nunca utilices =ESAÑOBISIESTO(2/29/68), porque este podría evaluar primero 2 dividido por 29 dividido por 68, y después calcular la función ESAÑOBISIESTO de este número pequeño como un número de serie de la fecha."
+
+#: 04060111.xhp#bm_id3154656.help.text
+msgid "<bookmark_value>YEARS function</bookmark_value><bookmark_value>number of years between two dates</bookmark_value>"
+msgstr "<bookmark_value>AÑOS</bookmark_value><bookmark_value>número de años entre dos fechas</bookmark_value>"
+
+#: 04060111.xhp#hd_id3154656.21.help.text
+msgid "YEARS"
+msgstr "AÑOS"
+
+#: 04060111.xhp#par_id3150886.22.help.text
+msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFYEARS\">Calculates the difference in years between two dates.</ahelp>"
+msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFYEARS\">Calcula la diferencia entre dos fechas, en años.</ahelp>"
+
+#: 04060111.xhp#hd_id3154370.23.help.text
+msgctxt "04060111.xhp#hd_id3154370.23.help.text"
+msgid "Syntax"
+msgstr "<emph>Sintaxis</emph>"
+
+#: 04060111.xhp#par_id3146114.24.help.text
+msgid "YEARS(StartDate; EndDate; Type)"
+msgstr "AÑOS(Fecha Inicial; Fecha Final; Tipo)"
+
+#: 04060111.xhp#par_id3145387.25.help.text
+#, fuzzy
+msgctxt "04060111.xhp#par_id3145387.25.help.text"
+msgid "<emph>StartDate</emph> is the first date"
+msgstr "<emph>FechadeInicio</emph> es el primer día del periodo"
+
+#: 04060111.xhp#par_id3156290.26.help.text
+msgctxt "04060111.xhp#par_id3156290.26.help.text"
+msgid "<emph>EndDate</emph> is the second date"
+msgstr "<emph>FechaFinal</emph> es el último día del periodo"
+
+#: 04060111.xhp#par_id3152893.27.help.text
+msgid "<emph>Type</emph> calculates the type of difference. Possible values are 0 (interval) and 1 (in calendar years)."
+msgstr "<emph>Tipo</emph> calcula el tipo de diferencia. Los valores posibles son 0 (intervalo) y 1 (en calendario anual)."
+
+#: 04060111.xhp#bm_id3152898.help.text
+msgid "<bookmark_value>MONTHS function</bookmark_value><bookmark_value>number of months between two dates</bookmark_value>"
+msgstr "<bookmark_value>MESES</bookmark_value><bookmark_value>número de meses entre dos fechas</bookmark_value>"
+
+#: 04060111.xhp#hd_id3152898.28.help.text
+msgid "MONTHS"
+msgstr "MESES"
+
+#: 04060111.xhp#par_id3153066.29.help.text
+msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFMONTHS\">Calculates the difference in months between two dates.</ahelp>"
+msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFMONTHS\">Calcula la diferencia entre dos fechas, en meses.</ahelp>"
+
+#: 04060111.xhp#hd_id3151240.30.help.text
+msgctxt "04060111.xhp#hd_id3151240.30.help.text"
+msgid "Syntax"
+msgstr "<emph>Sintaxis</emph>"
+
+#: 04060111.xhp#par_id3146869.31.help.text
+msgid "MONTHS(StartDate; EndDate; Type)"
+msgstr "MESES(FechaInicial; FechaFinal; Tipo)"
+
+#: 04060111.xhp#par_id3145075.32.help.text
+msgctxt "04060111.xhp#par_id3145075.32.help.text"
+msgid "<emph>StartDate</emph> is the first date"
+msgstr "<emph>FechaInicial</emph> es el primer día del periodo"
+
+#: 04060111.xhp#par_id3157981.33.help.text
+msgctxt "04060111.xhp#par_id3157981.33.help.text"
+msgid "<emph>EndDate</emph> is the second date"
+msgstr "<emph>FechaFinal</emph> es el último día del periodo"
+
+#: 04060111.xhp#par_id3150111.34.help.text
+msgid "<emph>Type</emph> calculates the type of difference. Possible values include 0 (interval) and 1 (in calendar months)."
+msgstr "<emph>Tipo</emph> calcula el tipo de diferencia. Los valor posibles incluyen 0 (intervalo) y 1 (en el calendario anual)."
+
+#: 04060111.xhp#bm_id3159094.help.text
+msgid "<bookmark_value>ROT13 function</bookmark_value><bookmark_value>encrypting text</bookmark_value>"
+msgstr "<bookmark_value>ROT13</bookmark_value><bookmark_value>cifrado de texto</bookmark_value>"
+
+#: 04060111.xhp#hd_id3159094.35.help.text
+msgid "ROT13"
+msgstr "ROT13"
+
+#: 04060111.xhp#par_id3146781.36.help.text
+msgid "<ahelp hid=\"HID_DAI_FUNC_ROT13\">Encrypts a character string by moving the characters 13 positions in the alphabet.</ahelp> After the letter Z, the alphabet begins again (Rotation). By applying the encryption function again to the resulting code, you can decrypt the text."
+msgstr "<ahelp hid=\"HID_DAI_FUNC_ROT13\">Codifica una cadena de caracteres desplazándolos 13 posiciones en el alfabeto.</ahelp> Después de la Z se vuelve al principio del alfabeto (rotación). Al volver a aplicar la función de codificación al código resultante, se descodifica el texto."
+
+#: 04060111.xhp#hd_id3150893.37.help.text
+msgctxt "04060111.xhp#hd_id3150893.37.help.text"
+msgid "Syntax"
+msgstr "<emph>Sintaxis</emph>"
+
+#: 04060111.xhp#par_id3159205.38.help.text
+msgid "ROT13(Text)"
+msgstr "ROT13(texto)"
+
+#: 04060111.xhp#par_id3153249.39.help.text
+msgid "<emph>Text</emph> is the character string to be encrypted. ROT13(ROT13(Text)) decrypts the code."
+msgstr "<emph>Texto</emph> es la cadena de caracteres a ser codificada. ROT13(ROT13(Texto)) decodifica el código."
+
+#: 04060111.xhp#bm_id3151300.help.text
+msgid "<bookmark_value>DAYSINYEAR function</bookmark_value><bookmark_value>number of days; in a specific year</bookmark_value>"
+msgstr "<bookmark_value>DÍASENAÑO</bookmark_value><bookmark_value>número de días; en un año específico</bookmark_value>"
+
+#: 04060111.xhp#hd_id3151300.43.help.text
+msgid "DAYSINYEAR"
+msgstr "DÍASENAÑO"
+
+#: 04060111.xhp#par_id3143220.44.help.text
+msgid "<ahelp hid=\"HID_DAI_FUNC_DAYSINYEAR\">Calculates the number of days of the year in which the date entered occurs.</ahelp>"
+msgstr "<ahelp hid=\"HID_DAI_FUNC_DAYSINYEAR\">Calcula el número de días del año que coinciden con la fecha especificada.</ahelp>"
+
+#: 04060111.xhp#hd_id3145358.45.help.text
+msgctxt "04060111.xhp#hd_id3145358.45.help.text"
+msgid "Syntax"
+msgstr "<emph>Sintaxis</emph>"
+
+#: 04060111.xhp#par_id3154651.46.help.text
+msgid "DAYSINYEAR(Date)"
+msgstr "DÍASENAÑO(fecha)"
+
+#: 04060111.xhp#par_id3153803.47.help.text
+msgctxt "04060111.xhp#par_id3153803.47.help.text"
+msgid "<emph>Date</emph> is any date in the respective year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
+msgstr "<emph>Fecha</emph> es cualquier fecha en el año respectivo. El parámetro Fecha debe ser una fecha válida de acuerdo a las configuraciones locales del %PRODUCTNAME."
+
+#: 04060111.xhp#hd_id3153487.48.help.text
+msgctxt "04060111.xhp#hd_id3153487.48.help.text"
+msgid "Example"
+msgstr "<emph>Ejemplo</emph>"
+
+#: 04060111.xhp#par_id3153811.49.help.text
+msgid "=DAYSINYEAR(A1) returns 366 days if A1 contains 1968-02-29, a valid date for the year 1968."
+msgstr "=DÍASENAÑO(A1) devuelve 366 días si A1 contiene 1968-02-29, la fecha valida para el año es 1968."
+
+#: 04060111.xhp#bm_id3154737.help.text
+msgid "<bookmark_value>DAYSINMONTH function</bookmark_value><bookmark_value>number of days;in a specific month of a year</bookmark_value>"
+msgstr "<bookmark_value>DÍASENMES</bookmark_value><bookmark_value>número de días;en un mes específico del año</bookmark_value>"
+
+#: 04060111.xhp#hd_id3154737.50.help.text
+msgid "DAYSINMONTH"
+msgstr "DÍASENMES"
+
+#: 04060111.xhp#par_id3149316.51.help.text
+msgid "<ahelp hid=\"HID_DAI_FUNC_DAYSINMONTH\">Calculates the number of days of the month in which the date entered occurs.</ahelp>"
+msgstr "<ahelp hid=\"HID_DAI_FUNC_DAYSINMONTH\">Calcula el número de días del mes que coinciden con la fecha especificada.</ahelp>"
+
+#: 04060111.xhp#hd_id3145114.52.help.text
+msgctxt "04060111.xhp#hd_id3145114.52.help.text"
+msgid "Syntax"
+msgstr "<emph>Sintaxis</emph>"
+
+#: 04060111.xhp#par_id3150955.53.help.text
+msgid "DAYSINMONTH(Date)"
+msgstr "DÍASENMES(fecha)"
+
+#: 04060111.xhp#par_id3147501.54.help.text
+msgid "<emph>Date</emph> is any date in the respective month of the desired year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
+msgstr "<emph>Fecha</emph> es cualquier día en un mes respectivo de un año deseado. El parámetro Fecha debe ser una fecha válida de acuerdo con las configuraciones locales del %PRODUCTNAME."
+
+#: 04060111.xhp#hd_id3149871.55.help.text
+msgctxt "04060111.xhp#hd_id3149871.55.help.text"
+msgid "Example"
+msgstr "<emph>Ejemplo</emph>"
+
+#: 04060111.xhp#par_id3155742.56.help.text
+msgid "=DAYSINMONTH(A1) returns 29 days if A1 contains 1968-02-17, a valid date for February 1968."
+msgstr "=DÍASENMES(A1) devuelve 29 días si A1 contiene 1968-02-17, una fecha valida para Febrero de 1968."
+
+#: 04060111.xhp#bm_id3149048.help.text
+msgid "<bookmark_value>WEEKS function</bookmark_value><bookmark_value>number of weeks;between two dates</bookmark_value>"
+msgstr "<bookmark_value>SEMANAS</bookmark_value><bookmark_value>número de semanas;entro dos fechas</bookmark_value>"
+
+#: 04060111.xhp#hd_id3149048.57.help.text
+msgid "WEEKS"
+msgstr "SEMANAS"
+
+#: 04060111.xhp#par_id3153340.58.help.text
+msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFWEEKS\">Calculates the difference in weeks between two dates.</ahelp>"
+msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFWEEKS\">Calcula la diferencia entre dos fechas, en semanas.</ahelp>"
+
+#: 04060111.xhp#hd_id3150393.59.help.text
+msgctxt "04060111.xhp#hd_id3150393.59.help.text"
+msgid "Syntax"
+msgstr "<emph>Sintaxis</emph>"
+
+#: 04060111.xhp#par_id3147402.60.help.text
+msgid "WEEKS(StartDate; EndDate; Type)"
+msgstr "SEMANAS(FechaInicial; FechaFinal; Tipo)"
+
+#: 04060111.xhp#par_id3151387.61.help.text
+msgctxt "04060111.xhp#par_id3151387.61.help.text"
+msgid "<emph>StartDate</emph> is the first date"
+msgstr "<emph>FechaInicial</emph> es el primer día del periodo"
+
+#: 04060111.xhp#par_id3146324.62.help.text
+msgctxt "04060111.xhp#par_id3146324.62.help.text"
+msgid "<emph>EndDate</emph> is the second date"
+msgstr "<emph>FechaFinal</emph> es el último día del periodo"
+
+#: 04060111.xhp#par_id3166467.63.help.text
+msgid "<emph>Type</emph> calculates the type of difference. The possible values are 0 (interval) and 1 (in numbers of weeks)."
+msgstr "<emph>Tipo</emph> calcula el tipo de diferencia. El valor posible es 0 (intervalo) y 1 (en número de semanas)."
+
+#: 04060111.xhp#bm_id3145237.help.text
+msgid "<bookmark_value>WEEKSINYEAR function</bookmark_value><bookmark_value>number of weeks;in a specific year</bookmark_value>"
+msgstr "<bookmark_value>SEMANASENAÑO</bookmark_value><bookmark_value>número de semanas;en un año específico</bookmark_value>"
+
+#: 04060111.xhp#hd_id3145237.64.help.text
+msgid "WEEKSINYEAR"
+msgstr "SEMANASENAÑO"
+
+#: 04060111.xhp#par_id3147410.65.help.text
+msgid "<ahelp hid=\"HID_DAI_FUNC_WEEKSINYEAR\">Calculates the number of weeks of the year in which the date entered occurs.</ahelp> The number of weeks is defined as follows: a week that spans two years is added to the year in which most days of that week occur."
+msgstr "<ahelp hid=\"HID_DAI_FUNC_WEEKSINYEAR\">Calcula el número de semanas del año que contienen la fecha especificada.</ahelp> El número de semanas se define de la siguiente forma: si una semana se encuentra dividida entre dos años, la semana se asigna al año que contiene más días de esa semana."
+
+#: 04060111.xhp#hd_id3149719.66.help.text
+msgctxt "04060111.xhp#hd_id3149719.66.help.text"
+msgid "Syntax"
+msgstr "<emph>Sintaxis</emph>"
+
+#: 04060111.xhp#par_id3145638.67.help.text
+msgid "WEEKSINYEAR(Date)"
+msgstr "SEMANASENAÑO(fecha)"
+
+#: 04060111.xhp#par_id3149946.68.help.text
+msgctxt "04060111.xhp#par_id3149946.68.help.text"
+msgid "<emph>Date</emph> is any date in the respective year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
+msgstr "<emph>Fecha</emph> es cualquier fecha en un año respectivo. El parametro Fecha debe ser una fecha valida de acuerdo con las configuraciones locales del %PRODUCTNAME."
+
+#: 04060111.xhp#hd_id3150037.69.help.text
+msgctxt "04060111.xhp#hd_id3150037.69.help.text"
+msgid "Example"
+msgstr "<emph>Ejemplo</emph>"
+
+#: 04060111.xhp#par_id3147614.70.help.text
+msgid "WEEKSINYEAR(A1) returns 53 if A1 contains 1970-02-17, a valid date for the year 1970."
+msgstr "SEMANASENAÑO(A1) devuelve 53 si A1 contiene 1970-02-17, 1970 es una fecha valida para el año."
+
+#: 04060111.xhp#hd_id3157901.72.help.text
+msgid "Add-ins through %PRODUCTNAME API"
+msgstr "Add-ins mediante la API de %PRODUCTNAME"
+
+#: 04060111.xhp#par_id3149351.73.help.text
+#, fuzzy
+msgid "Add-ins can also be implemented through the %PRODUCTNAME <link href=\"http://api.libreoffice.org/\">API</link>."
+msgstr "También se pueden implementar add-ins mediante la <link href=\"http://api.openoffice.org/\">API</link> de %PRODUCTNAME."
+
+#: 04060102.xhp#tit.help.text
+msgctxt "04060102.xhp#tit.help.text"
+msgid "Date & Time Functions"
+msgstr "Funciones de fecha y hora"
+
+#: 04060102.xhp#bm_id3154536.help.text
+msgid "<bookmark_value>date and time functions</bookmark_value><bookmark_value>functions; date & time</bookmark_value><bookmark_value>Function Wizard; date & time</bookmark_value>"
+msgstr "<bookmark_value>fecha y hora;funciones</bookmark_value><bookmark_value>funciones;fecha y hora</bookmark_value><bookmark_value>Asistente para funciones;fecha y hora</bookmark_value>"
+
+#: 04060102.xhp#hd_id3154536.1.help.text
+msgctxt "04060102.xhp#hd_id3154536.1.help.text"
+msgid "Date & Time Functions"
+msgstr "Categoría fecha y hora"
+
+#: 04060102.xhp#par_id3153973.2.help.text
+msgid "<variable id=\"datumzeittext\">These spreadsheet functions are used for inserting and editing dates and times. </variable>"
+msgstr "<variable id=\"datumzeittext\">Estas funciones de hoja de cálculo se utilizan para insertar y editar fechas y horas.</variable>"
+
+#: 04060102.xhp#par_idN10600.help.text
+msgid "The functions whose names end with _ADD return the same results as the corresponding Microsoft Excel functions. Use the functions without _ADD to get results based on international standards. For example, the WEEKNUM function calculates the week number of a given date based on international standard ISO 8601, while WEEKNUM_ADD returns the same week number as Microsoft Excel."
+msgstr "Las funciones cuyo nombre termina con _ADD devuelven el mismo resultado que las funciones correspondientes de Microsoft Excel. Utilice las funciones sin _ADD para obtener resultados basados en estándares internacionales. Por ejemplo, la función SEM.DEL.AÑO calcula el número de semana de una fecha concreta basándose en el estándar internacional ISO 6801, mientras que SEM.DEL.AÑO_ADD devuelve el mismo número de semana que Microsoft Excel."
+
+#: 04060102.xhp#par_id3150437.170.help.text
+msgid "$[officename] internally handles a date/time value as a numerical value. If you assign the numbering format \"Number\" to a date or time value, it is converted to a number. For example, 01/01/2000 12:00 PM, converts to 36526.5. The value preceding the decimal point corresponds to the date; the value following the decimal point corresponds to the time. If you do not want to see this type of numerical date or time representation, change the number format (date or time) accordingly. To do this, select the cell containing the date or time value, call its context menu and select <emph>Format Cells</emph>. The <emph>Numbers</emph> tab page contains the functions for defining the number format."
+msgstr "$[officename] maneja internamente los valores de fecha/hora como si fuesen valores numéricos. Si asigna el formato \"Número\" a un valor de fecha u hora, dicho valor se convierte en un número. Por ejemplo, 01/01/2000 12:00 PM se convierte en 36526,5. El valor anterior a la coma decimal corresponde a la fecha; el valor situado a continuación de dicha coma corresponde a la hora. Si no desea ver las fechas u horas con este tipo de representación numérica, cambie el formato según corresponda (fecha u hora). Para ello, seleccione la celda que contiene el valor de fecha u hora, abra su menú contextual y seleccione <emph>Formatear celdas</emph>. La pestaña <emph>Números</emph> contiene funciones para definir el formato numérico."
+
+#: 04060102.xhp#hd_id2408825.help.text
+msgid "Date base for day zero"
+msgstr "Configuración de fecha para el día cero"
+
+#: 04060102.xhp#par_id9988402.help.text
+msgid "Dates are calculated as offsets from a starting day zero. You can set the day zero to be one of the following:"
+msgstr "Las fechas se calculan según la diferencia respecto al día cero. Puede establecer uno de los siguientes días como día cero:"
+
+#: 04060102.xhp#par_id6401257.help.text
+msgid "Date base"
+msgstr "Configuración de fecha"
+
+#: 04060102.xhp#par_id5841242.help.text
+msgid "Use"
+msgstr "Usar"
+
+#: 04060102.xhp#par_id6794030.help.text
+msgid "'12/30/1899'"
+msgstr "'30/12/1899'"
+
+#: 04060102.xhp#par_id7096774.help.text
+msgid "(default)"
+msgstr "(predeterminada)"
+
+#: 04060102.xhp#par_id5699942.help.text
+msgid "'01/01/1900'"
+msgstr "'01/01/1900'"
+
+#: 04060102.xhp#par_id6420484.help.text
+msgid "(used in former StarCalc 1.0)"
+msgstr "(utilizada en la antigua versión StarCalc 1.0)"
+
+#: 04060102.xhp#par_id6986602.help.text
+msgid "'01/01/1904'"
+msgstr "'01/01/1904'"
+
+#: 04060102.xhp#par_id616779.help.text
+msgid "(used in Apple software)"
+msgstr "(utilizado en software Apple)"
+
+#: 04060102.xhp#par_id791039.help.text
+msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate</emph> to select the date base."
+msgstr "Puede elegirse <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias </caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - %PRODUCTNAME Calc - Calcular</emph> para seleccionar la base de las fechas."
+
+#: 04060102.xhp#par_id1953489.help.text
+msgid "When you copy and paste cells containing date values between different spreadsheets, both spreadsheet documents must be set to the same date base. If date bases differ, the displayed date values will change!"
+msgstr "Cuando copia y pega celdas que contienen valores de fecha entre diferentes hojas de cálculo, ambos documentos de hojas de cálculo deben tener la misma configuración para las fechas. Si la configuración de fecha es diferente, cambiarán los valores de fecha."
+
+#: 04060102.xhp#hd_id757469.help.text
+msgid "Two digits years"
+msgstr "Años de dos dígitos"
+
+#: 04060102.xhp#par_id3149720.183.help.text
+msgid "In <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - General</emph> you find the area <emph>Year (two digits)</emph>. This sets the period for which two-digit information applies. Note that changes made here have an effect on some of the following functions."
+msgstr "En <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias </caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - $[officename] - General</emph> se encuentra la sección <emph>Año (con dos dígitos)</emph>. Esto establece el período que abarca la información de dos dígitos. Hay que tener en cuenta que los cambios realizados aquí tienen efectos sobre algunas de las siguientes funciones."
+
+#: 04060102.xhp#par_id3150654.185.help.text
+msgid "When entering dates, slashes or dashes used as date separators may be interpreted as arithmetic operators. Therefore, dates entered in this format are not always recognized as dates and result in erroneous calculations. To keep dates from being interpreted as parts of formulas, place them in quotation marks, for example, \"07/20/54\"."
+msgstr "Al escribir las fechas, las barras o guiones que se utilizan como separadores pueden interpretarse como operadores aritméticos. Por consiguiente, las fechas escritas con este formato no siempre se reconocen como tales, lo que puede dar lugar a errores en los cálculos. Para evitar que las fechas se interpreten como porciones de fórmulas escríbalas entre comillas; por ejemplo, \"20/07/54\"."
+
+#: 04060102.xhp#par_idN1067A.help.text
+msgid "Functions"
+msgstr "Funciones"
+
+#: 04060102.xhp#par_idN10683.help.text
+msgid "<embedvar href=\"text/scalc/01/func_workday.xhp#workday\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_workday.xhp#workday\"/>"
+
+#: 04060102.xhp#par_id5189062.help.text
+msgid "<embedvar href=\"text/scalc/01/func_yearfrac.xhp#yearfrac\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_yearfrac.xhp#yearfrac\"/>"
+
+#: 04060102.xhp#par_id6854457.help.text
+msgid "<embedvar href=\"text/scalc/01/func_date.xhp#date\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_date.xhp#date\"/>"
+
+#: 04060102.xhp#par_id6354457.help.text
+#, fuzzy
+msgid "<embedvar href=\"text/scalc/01/func_datedif.xhp#datedif\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_date.xhp#date\"/>"
+
+#: 04060102.xhp#par_id3372295.help.text
+msgid "<embedvar href=\"text/scalc/01/func_datevalue.xhp#datevalue\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_datevalue.xhp#datevalue\"/>"
+
+#: 04060102.xhp#par_id5684377.help.text
+msgid "<embedvar href=\"text/scalc/01/func_edate.xhp#edate\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_edate.xhp#edate\"/>"
+
+#: 04060102.xhp#par_id7576525.help.text
+msgid "<embedvar href=\"text/scalc/01/func_today.xhp#today\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_today.xhp#today\"/>"
+
+#: 04060102.xhp#par_id641193.help.text
+msgid "<embedvar href=\"text/scalc/01/func_year.xhp#year\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_year.xhp#year\"/>"
+
+#: 04060102.xhp#par_id6501968.help.text
+msgid "<embedvar href=\"text/scalc/01/func_now.xhp#now\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_now.xhp#now\"/>"
+
+#: 04060102.xhp#par_id3886532.help.text
+msgid "<embedvar href=\"text/scalc/01/func_weeknum.xhp#weeknum\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_weeknum.xhp#weeknum\"/>"
+
+#: 04060102.xhp#par_id614947.help.text
+msgid "<embedvar href=\"text/scalc/01/func_weeknumadd.xhp#weeknumadd\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_weeknumadd.xhp#weeknumadd\"/>"
+
+#: 04060102.xhp#par_id3953062.help.text
+msgid "<embedvar href=\"text/scalc/01/func_minute.xhp#minute\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_minute.xhp#minute\"/>"
+
+#: 04060102.xhp#par_id2579729.help.text
+msgid "<embedvar href=\"text/scalc/01/func_month.xhp#month\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_month.xhp#month\"/>"
+
+#: 04060102.xhp#par_id1346781.help.text
+msgid "<embedvar href=\"text/scalc/01/func_eomonth.xhp#eomonth\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_eomonth.xhp#eomonth\"/>"
+
+#: 04060102.xhp#par_id8951384.help.text
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.xhp#networkdays\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_networkdays.xhp#networkdays\"/>"
+
+#: 04060102.xhp#par_id1074251.help.text
+msgid "<embedvar href=\"text/scalc/01/func_eastersunday.xhp#eastersunday\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_eastersunday.xhp#eastersunday\"/>"
+
+#: 04060102.xhp#par_id372325.help.text
+msgid "<embedvar href=\"text/scalc/01/func_second.xhp#second\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_second.xhp#second\"/>"
+
+#: 04060102.xhp#par_id224005.help.text
+msgid "<embedvar href=\"text/scalc/01/func_hour.xhp#hour\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_hour.xhp#hour\"/>"
+
+#: 04060102.xhp#par_id5375835.help.text
+msgid "<embedvar href=\"text/scalc/01/func_day.xhp#day\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_day.xhp#day\"/>"
+
+#: 04060102.xhp#par_id1208838.help.text
+msgid "<embedvar href=\"text/scalc/01/func_days.xhp#days\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_days.xhp#days\"/>"
+
+#: 04060102.xhp#par_id7679982.help.text
+msgid "<embedvar href=\"text/scalc/01/func_days360.xhp#days360\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_days360.xhp#days360\"/>"
+
+#: 04060102.xhp#par_id9172643.help.text
+msgid "<embedvar href=\"text/scalc/01/func_weekday.xhp#weekday\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_weekday.xhp#weekday\"/>"
+
+#: 04060102.xhp#par_id2354503.help.text
+msgid "<embedvar href=\"text/scalc/01/func_time.xhp#time\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_time.xhp#time\"/>"
+
+#: 04060102.xhp#par_id7765434.help.text
+msgid "<embedvar href=\"text/scalc/01/func_timevalue.xhp#timevalue\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_timevalue.xhp#timevalue\"/>"
+
+#: 12080400.xhp#tit.help.text
+msgid "Ungroup"
+msgstr "Desagrupar"
+
+#: 12080400.xhp#hd_id3148492.1.help.text
+msgctxt "12080400.xhp#hd_id3148492.1.help.text"
+msgid "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
+msgstr "<link href=\"text/scalc/01/12080400.xhp\" name=\"Desagrupar\">Desagrupar</link>"
+
+#: 12080400.xhp#par_id3151384.2.help.text
+msgid "<variable id=\"gruppierungauf\"><ahelp hid=\".uno:Ungroup\" visibility=\"visible\">Ungroups the selection. In a nested group, the last rows or columns that were added are removed from the group.</ahelp></variable>"
+msgstr "<variable id=\"gruppierungauf\"><ahelp hid=\".uno:Ungroup\" visibility=\"visible\">Desagrupa la selección. En un grupo anidado, se quitan del grupo las últimas filas o columnas agregadas.</ahelp></variable>"
+
+#: 12080400.xhp#hd_id3151210.3.help.text
+msgid "Deactivate for"
+msgstr "Desactivar para"
+
+#: 12080400.xhp#hd_id3156280.5.help.text
+msgctxt "12080400.xhp#hd_id3156280.5.help.text"
+msgid "Rows"
+msgstr "Filas"
+
+#: 12080400.xhp#par_id3125864.6.help.text
+msgid "Removes selected rows from a group."
+msgstr "Extrae del grupo las filas seleccionadas."
+
+#: 12080400.xhp#hd_id3147230.7.help.text
+msgctxt "12080400.xhp#hd_id3147230.7.help.text"
+msgid "Columns"
+msgstr "Columnas"
+
+#: 12080400.xhp#par_id3154685.8.help.text
+msgid "Removes selected columns from a group."
+msgstr "Extrae del grupo las columnas seleccionadas."
+
+#: func_eastersunday.xhp#tit.help.text
+msgid "EASTERSUNDAY"
+msgstr "DOMINGOPASCUA"
+
+#: func_eastersunday.xhp#bm_id3152960.help.text
+msgid "<bookmark_value>EASTERSUNDAY function</bookmark_value>"
+msgstr "<bookmark_value>DOMINGOPASCUA</bookmark_value>"
+
+#: func_eastersunday.xhp#hd_id3152960.175.help.text
+msgid "<variable id=\"eastersunday\"><link href=\"text/scalc/01/func_eastersunday.xhp\">EASTERSUNDAY</link></variable>"
+msgstr "<variable id=\"eastersunday\"><link href=\"text/scalc/01/func_eastersunday.xhp\">DOMINGOPASCUA</link></variable>"
+
+#: func_eastersunday.xhp#par_id3154570.176.help.text
+msgid "<ahelp hid=\"HID_FUNC_OSTERSONNTAG\">Returns the date of Easter Sunday for the entered year.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_OSTERSONNTAG\">Retorna la fecha del Domingo de Pascua para el año entrado.</ahelp>"
+
+#: func_eastersunday.xhp#hd_id9460127.help.text
+msgctxt "func_eastersunday.xhp#hd_id9460127.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: func_eastersunday.xhp#par_id2113711.help.text
+msgid "EASTERSUNDAY(Year)"
+msgstr "DOMINGOPASCUA(Año)"
+
+#: func_eastersunday.xhp#par_id3938413.help.text
+msgid "<emph>Year</emph> is an integer between 1583 and 9956 or 0 and 99. You can also calculate other holidays by simple addition with this date."
+msgstr "<emph>Año</emph> es un integral entre 1583 y 9956 ó 0 y 99. Puede calcular otros días de fiestas por simple adición con este fecha."
+
+#: func_eastersunday.xhp#par_id3156156.177.help.text
+msgid "Easter Monday = EASTERSUNDAY(Year) + 1"
+msgstr "Lunes de Pascuas = EASTERSUNDAY(Año) + 1"
+
+#: func_eastersunday.xhp#par_id3147521.178.help.text
+msgid "Good Friday = EASTERSUNDAY(Year) - 2"
+msgstr "Viernes Santo = DOMINGOPASCUA(Año) - 2"
+
+#: func_eastersunday.xhp#par_id3146072.179.help.text
+msgid "Pentecost Sunday = EASTERSUNDAY(Year) + 49"
+msgstr "Domingo de Pentecostés = DOMINGOPASCUA(Año) + 49"
+
+#: func_eastersunday.xhp#par_id3149553.180.help.text
+msgid "Pentecost Monday = EASTERSUNDAY(Year) + 50"
+msgstr "Lunes de Pentecostés = DOMINGOPASCUA(Año) + 50"
+
+#: func_eastersunday.xhp#hd_id3155120.181.help.text
+msgctxt "func_eastersunday.xhp#hd_id3155120.181.help.text"
+msgid "Examples"
+msgstr "Ejemplos"
+
+#: func_eastersunday.xhp#par_id3154472.182.help.text
+msgid "=EASTERSUNDAY(2000) returns 2000-04-23."
+msgstr "=DOMINGOPASCUA(2000) devuelve 2000-04-23."
+
+#: func_eastersunday.xhp#par_id3150940.184.help.text
+msgid "EASTERSUNDAY(2000)+49 returns the internal serial number 36688. The result is 2000-06-11. Format the serial date number as a date, for example in the format YYYY-MM-DD."
+msgstr "DOMINGOPASCUA(2000)+49 devuelve el número de serial interno 36688. El resultado es 2000-06-11. El formato del número de fecha serial como una fecha, por ejemplo en el formato AAAA-MM-DD."
+
+#: 05080300.xhp#tit.help.text
+msgctxt "05080300.xhp#tit.help.text"
+msgid "Edit Print Ranges"
+msgstr "Editar áreas de impresión"
+
+#: 05080300.xhp#hd_id3153088.1.help.text
+msgctxt "05080300.xhp#hd_id3153088.1.help.text"
+msgid "Edit Print Ranges"
+msgstr "Editar áreas de impresión"
+
+#: 05080300.xhp#par_id3159488.2.help.text
+msgid "<variable id=\"druckbereichetext\"><ahelp hid=\".uno:EditPrintArea\">Opens a dialog where you can specify the print range.</ahelp></variable> You can also set the rows or columns which are to be repeated in every page."
+msgstr "<variable id=\"druckbereichetext\"><ahelp hid=\".uno:EditPrintArea\">Abre un diálogo donde especificar el intervalo de impresión.</ahelp></variable> También se puede determinar las filas o columnas que se repetirán en todas las páginas."
+
+#: 05080300.xhp#par_idN105AE.help.text
+msgid "<embedvar href=\"text/scalc/guide/printranges.xhp#printranges\"/>"
+msgstr "<embedvar href=\"text/scalc/guide/printranges.xhp#printranges\"/>"
+
+#: 05080300.xhp#hd_id3156281.3.help.text
+msgctxt "05080300.xhp#hd_id3156281.3.help.text"
+msgid "Print range"
+msgstr "Área de impresión"
+
+#: 05080300.xhp#par_id3147228.4.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_PRINTAREA\">Allows you to modify a defined print range.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_PRINTAREA\">Permite modificar un intervalo de impresión definido.</ahelp>"
+
+#: 05080300.xhp#par_id3145174.5.help.text
+msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgstr "Seleccione <emph>-ninguno-</emph> para borrar un intervalo de impresión de la hoja de cálculo actual. Seleccione <emph>-hoja completa-</emph> para configurar la hoja actual como intervalo de impresión. Seleccione <emph>-selección-</emph> para definir el área seleccionada de la hoja de cálculo como intervalo de impresión. Si selecciona <emph>-definido por el usuario-</emph>, puede definir un intervalo de impresión ya definido mediante el comando <emph>Formato - Intervalos de impresión - Definir</emph>. Si ha asignado un nombre a un intervalo utilizando el comando <emph>Insertar - Nombres - Definir</emph>, dicho nombre se mostrará y se podrá seleccionar en el cuadro de lista."
+
+#: 05080300.xhp#par_id3145272.6.help.text
+msgid "In the right-hand text box, you can enter a print range by reference or by name. If the cursor is in the <emph>Print range</emph> text box, you can also select the print range in the spreadsheet with your mouse."
+msgstr "En el cuadro de texto de la derecha puede escribir un área de impresión por referencia o por nombre. Si el cursor se encuentra en el cuadro de texto <emph>Área de impresión</emph> se puede también seleccionar el área de impresión en la hoja de cálculo mediante el ratón."
+
+#: 05080300.xhp#hd_id3149260.7.help.text
+msgid "Rows to repeat"
+msgstr "Fila a repetir"
+
+#: 05080300.xhp#par_id3147426.8.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATROW\">Choose one or more rows to print on every page. In the right text box enter the row reference, for example, \"1\" or \"$1\" or \"$2:$3\".</ahelp> The list box displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> to remove a defined repeating row."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATROW\">Elija una o más filas para que se impriman en todas las páginas. Escriba en el cuadro de texto de la derecha la referencia de la fila; por ejemplo, \"1\" o \"$1\" o \"$2:$3\".</ahelp> En el cuadro de lista aparece <emph>-definido por el usuario-</emph>. Si desea borrar una definición de repetición de fila, seleccione <emph>-ninguno-</emph>."
+
+#: 05080300.xhp#par_id3155418.9.help.text
+msgid "You can also define repeating rows by dragging the mouse in the spreadsheet, if the cursor is in the <emph>Rows to repeat</emph> text field in the dialog."
+msgstr "Una forma alternativa de definir filas repetidas es seleccionarlas arrastrando el ratón en la hoja de cálculo con el cursor en el campo del diálogo <emph>Fila que repetir</emph>."
+
+#: 05080300.xhp#hd_id3149581.10.help.text
+msgid "Columns to repeat"
+msgstr "Columna que repetir"
+
+#: 05080300.xhp#par_id3155602.11.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATCOL\">Choose one or more columns to print on every page. In the right text box enter the column reference, for example, \"A\" or \"AB\" or \"$C:$E\".</ahelp> The list box then displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> to remove a defined repeating column."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATCOL\">Elija una o más columnas para que se impriman en todas las páginas. Escriba la referencia de columna en el cuadro de texto de la derecha; por ejemplo, \"A\", \"AB\" o \"$C:$E\".</ahelp> En el listado aparece <emph>-definido por el usuario-</emph>. Si desea borrar una definición de repetición de columna, seleccione <emph>-ninguno-</emph>."
+
+#: 05080300.xhp#par_id3150749.12.help.text
+msgid "You can also define repeating columns by dragging the mouse in the spreadsheet, if the cursor is in the <emph>Columns to repeat</emph> text field in the dialog."
+msgstr "Una forma alternativa de definir columnas repetidas es seleccionarlas arrastrando el ratón en la hoja de cálculo con el cursor en el campo del diálogo <emph>Columna que repetir</emph>."
+
+#: func_year.xhp#tit.help.text
+msgid "YEAR"
+msgstr "AÑO"
+
+#: func_year.xhp#bm_id3153982.help.text
+msgid "<bookmark_value>YEAR function</bookmark_value>"
+msgstr "<bookmark_value>AÑO</bookmark_value>"
+
+#: func_year.xhp#hd_id3153982.37.help.text
+msgid "<variable id=\"year\"><link href=\"text/scalc/01/func_year.xhp\">YEAR</link></variable>"
+msgstr "<variable id=\"year\"><link href=\"text/scalc/01/func_year.xhp\">AÑO</link></variable>"
+
+#: func_year.xhp#par_id3147496.38.help.text
+msgid "<ahelp hid=\"HID_FUNC_JAHR\">Returns the year as a number according to the internal calculation rules.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_JAHR\">Devuelve el año en forma numérica según las reglas internas de cálculo.</ahelp>"
+
+#: func_year.xhp#hd_id3146090.39.help.text
+msgctxt "func_year.xhp#hd_id3146090.39.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: func_year.xhp#par_id3154304.40.help.text
+msgid "YEAR(Number)"
+msgstr "AÑO(Número)"
+
+#: func_year.xhp#par_id3156013.41.help.text
+msgid "<emph>Number</emph> shows the internal date value for which the year is to be returned."
+msgstr "El <emph>número</emph> indica el valor de fecha interno con el cual debe calcularse el número de año."
+
+#: func_year.xhp#hd_id3152797.42.help.text
+msgctxt "func_year.xhp#hd_id3152797.42.help.text"
+msgid "Examples"
+msgstr "Ejemplos"
+
+#: func_year.xhp#par_id3145668.43.help.text
+msgid "<item type=\"input\">=YEAR(1)</item> returns 1899"
+msgstr "<item type=\"input\">=AÑO(1)</item> devuelve 1899"
+
+#: func_year.xhp#par_id3151168.44.help.text
+msgid "<item type=\"input\">=YEAR(2)</item> returns 1900"
+msgstr "<item type=\"input\">=AÑO(2)</item> devuelve 1900"
+
+#: func_year.xhp#par_id3150115.45.help.text
+msgid "<item type=\"input\">=YEAR(33333.33)</item> returns 1991"
+msgstr "<item type=\"input\">=AÑO(33333.33)</item> devuelve 1991"
+
+#: 06030400.xhp#tit.help.text
+msgid "Remove Dependents"
+msgstr "Eliminar rastro al dependiente"
+
+#: 06030400.xhp#bm_id3147335.help.text
+msgid "<bookmark_value>cells; removing dependents</bookmark_value>"
+msgstr "<bookmark_value>celdas;eliminar rastro al dependiente</bookmark_value>"
+
+#: 06030400.xhp#hd_id3147335.1.help.text
+msgid "<link href=\"text/scalc/01/06030400.xhp\" name=\"Remove Dependents\">Remove Dependents</link>"
+msgstr "<link href=\"text/scalc/01/06030400.xhp\" name=\"Eliminar rastro a dependientes\">Eliminar rastro a dependientes</link>"
+
+#: 06030400.xhp#par_id3148663.2.help.text
+msgid "<ahelp visibility=\"visible\" hid=\".uno:ClearArrowDependents\">Deletes one level of tracer arrows created with <emph>Trace Dependents</emph>.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:ClearArrowDependents\">Borra un nivel de flechas de rastreo creado mediante <emph>Rastrear los dependientes</emph>.</ahelp>"
+
+#: 06050000.xhp#tit.help.text
+msgctxt "06050000.xhp#tit.help.text"
+msgid "Create Scenario"
+msgstr "Crear escenario"
+
+#: 06050000.xhp#hd_id3156023.1.help.text
+msgctxt "06050000.xhp#hd_id3156023.1.help.text"
+msgid "Create Scenario"
+msgstr "Crear escenario"
+
+#: 06050000.xhp#par_id3150541.2.help.text
+msgid "<variable id=\"szenariotext\"><ahelp hid=\".uno:ScenarioManager\">Defines a scenario for the selected sheet area.</ahelp></variable>"
+msgstr "<variable id=\"szenariotext\"><ahelp hid=\".uno:ScenarioManager\">Define un escenario para el área seleccionada de la hoja.</ahelp></variable>"
+
+#: 06050000.xhp#par_idN10637.help.text
+msgid "<embedvar href=\"text/scalc/guide/scenario.xhp#scenario\"/>"
+msgstr "<embedvar href=\"text/scalc/guide/scenario.xhp#scenario\"/>"
+
+#: 06050000.xhp#hd_id3156280.3.help.text
+msgid "Name of scenario"
+msgstr "Nombre del escenario"
+
+#: 06050000.xhp#par_id3151041.13.help.text
+msgid "<ahelp hid=\"HID_SC_SCENWIN_TOP\">Defines the name for the scenario. Use a clear and unique name so you can easily identify the scenario.</ahelp> You can also modify a scenario name in the Navigator through the <emph>Properties </emph>context menu command."
+msgstr "<ahelp hid=\"HID_SC_SCENWIN_TOP\">Define el nombre del escenario. Utilice un nombre claro y exclusivo que le permita identificar el escenario con facilidad.</ahelp> También puede modificar un nombre de escenario en el Navegador, mediante el comando <emph>Propiedades</emph> del menú contextual."
+
+#: 06050000.xhp#hd_id3153954.14.help.text
+msgid "Comment"
+msgstr "Comentario"
+
+#: 06050000.xhp#par_id3155411.15.help.text
+msgid "<ahelp hid=\"HID_SC_SCENWIN_BOTTOM\">Specifies additional information about the scenario. This information will be displayed in the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> when you click the <emph>Scenarios</emph> icon and select the desired scenario.</ahelp> You can also modify this information in the Navigator through the <emph>Properties </emph>context menu command."
+msgstr "<ahelp hid=\"HID_SC_SCENWIN_BOTTOM\">Especifica información adicional acerca del escenario. Esta información se muestra en el <link href=\"text/scalc/01/02110000.xhp\" name=\"Navegador\">Navegador</link> al hacer clic en el símbolo <emph>Escenarios</emph> y seleccionar el escenario deseado.</ahelp> Esta información también se puede modificar en el Navegador, mediante el comando <emph>Propiedades</emph> del menú contextual."
+
+#: 06050000.xhp#hd_id3145273.16.help.text
+msgid "Settings"
+msgstr "Configuración"
+
+#: 06050000.xhp#par_id3153364.17.help.text
+msgid "This section is used to define some of the settings used in the scenario display."
+msgstr "Esta área permite configurar algunos parámetros relacionados con la representación de los escenarios."
+
+#: 06050000.xhp#hd_id3145367.18.help.text
+msgid "Display border"
+msgstr "Mostrar borde"
+
+#: 06050000.xhp#par_id3151073.19.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NEWSCENARIO:LB_COLOR\">Highlights the scenario in your table with a border. The color for the border is specified in the field to the right of this option.</ahelp> The border will have a title bar displaying the name of the last scenario. The button on the right of the scenario border offers you an overview of all the scenarios in this area, if several have been defined. You can choose any of the scenarios from this list without restrictions."
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NEWSCENARIO:LB_COLOR\">Destaca el escenario en la tabla rodeándolo con un borde. El color del borde se especifica en el campo situado a la derecha de esta opción.</ahelp> El borde incluye una barra de título con el nombre del último escenario. El botón a la derecha del borde del escenario ofrece un resumen de los escenarios del área, en caso de que se hayan definido varios. Puede elegir cualquiera de los escenarios de esta lista, sin restricciones."
+
+#: 06050000.xhp#hd_id3149582.20.help.text
+msgid "Copy back"
+msgstr "Actualizar escenario con los valores modificados"
+
+#: 06050000.xhp#par_id3154942.21.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_TWOWAY\">Copies the values of cells that you change into the active scenario. If you do not select this option, the scenario is not changed when you change cell values. The behavior of the <emph>Copy back</emph> setting depends on the cell protection, the sheet protection, and the <emph>Prevent changes</emph> settings.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_TWOWAY\">Copia los valores de celdas que se modifican en el escenario activo. Si no selecciona esta opción, al modificar los valores de celdas no se cambia el escenario. El comportamiento de la opción <emph>Copiar reverso</emph> depende de la protección de las celdas y las hojas, así como de la configuración de <emph>Evitar cambios</emph>.</ahelp>"
+
+#: 06050000.xhp#hd_id3149402.22.help.text
+msgid "Copy entire sheet"
+msgstr "Copiar toda la hoja"
+
+#: 06050000.xhp#par_id3146969.23.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_COPYALL\">Copies the entire sheet into an additional scenario sheet. </ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_COPYALL\">Copia toda la hoja en una hoja de escenario adicional. </ahelp>"
+
+#: 06050000.xhp#par_idN1075A.help.text
+msgid "Prevent changes"
+msgstr "Evitar cambios"
+
+#: 06050000.xhp#par_idN1075E.help.text
+msgid "<ahelp hid=\"sc:CheckBox:RID_SCDLG_NEWSCENARIO:CB_PROTECT\">Prevents changes to the active scenario. The behavior of the <emph>Copy back</emph> setting depends on the cell protection, the sheet protection, and the <emph>Prevent changes</emph> settings.</ahelp>"
+msgstr "<ahelp hid=\"sc:CheckBox:RID_SCDLG_NEWSCENARIO:CB_PROTECT\">Evita los cambios en el escenario activo. El comportamiento de la opción <emph>Copiar reverso</emph> depende de la protección de las celdas y las hojas, así como de la configuración de <emph>Evitar cambios</emph>.</ahelp>"
+
+#: 06050000.xhp#par_idN10778.help.text
+msgid "You can only change the scenario properties if the <emph>Prevent changes</emph> option is not selected and if the sheet is not protected."
+msgstr "Las propiedades del escenario únicamente se pueden cambiar si no se ha seleccionado la opción <emph>Evitar cambios</emph> y la hoja no está protegida."
+
+#: 06050000.xhp#par_idN10780.help.text
+msgid "You can only edit cell values if the <emph>Prevent changes</emph> option is selected, if the <emph>Copy back</emph> is option is not selected, and if the cells are not protected."
+msgstr "Los valores de celdas sólo se pueden editar si la opción <emph>Evitar cambios</emph> está seleccionada, la opción <emph>Copiar reverso</emph> no está seleccionada y las celdas no están protegidas."
+
+#: 06050000.xhp#par_idN1078C.help.text
+msgid "You can only change scenario cell values and write them back into the scenario if the <emph>Prevent changes</emph> option is not selected, if the <emph>Copy back</emph> option is selected, and if the cells are not protected."
+msgstr "Sólo se pueden cambiar los valores de las celdas del escenario y volver a escribirlos en el mismo si la opción <emph>Evitar cambios</emph> no está seleccionada, la opción <emph>Copiar reverso</emph> está seleccionada y las celdas no están protegidas."
+
+#: 12040500.xhp#tit.help.text
+msgid "Hide AutoFilter"
+msgstr "Ocultar Filtro automático"
+
+#: 12040500.xhp#bm_id3150276.help.text
+msgid "<bookmark_value>database ranges; hiding AutoFilter</bookmark_value>"
+msgstr "<bookmark_value>áreas de bases de datos;ocultar Filtro automático</bookmark_value>"
+
+#: 12040500.xhp#hd_id3150276.1.help.text
+msgid "<link href=\"text/scalc/01/12040500.xhp\" name=\"Hide AutoFilter\">Hide AutoFilter</link>"
+msgstr "<link href=\"text/scalc/01/12040500.xhp\" name=\"Ocultar AutoFiltro\">Ocultar AutoFiltro</link>"
+
+#: 12040500.xhp#par_id3156326.2.help.text
+msgid "<ahelp hid=\".uno:DataFilterHideAutoFilter\" visibility=\"visible\">Hides the AutoFilter buttons in the selected cell range.</ahelp>"
+msgstr "<ahelp hid=\".uno:DataFilterHideAutoFilter\" visibility=\"visible\">Oculta los botones del Filtro automático en el área seleccionada.</ahelp>"
+
+#: 02170000.xhp#tit.help.text
+msgid "Delete Sheet"
+msgstr "Eliminar hoja"
+
+#: 02170000.xhp#bm_id3156424.help.text
+msgid "<bookmark_value>spreadsheets; deleting</bookmark_value><bookmark_value>sheets; deleting</bookmark_value><bookmark_value>deleting; spreadsheets</bookmark_value>"
+msgstr "<bookmark_value>hojas de cálculo;eliminar</bookmark_value><bookmark_value>hojas;eliminar</bookmark_value><bookmark_value>eliminar;hojas de cálculo</bookmark_value>"
+
+#: 02170000.xhp#hd_id3156424.1.help.text
+msgid " Delete Sheet"
+msgstr "Eliminar hoja"
+
+#: 02170000.xhp#par_id3153193.2.help.text
+msgid "<variable id=\"tabelleloeschentext\"><ahelp hid=\".uno:Remove\">Deletes the current sheet after query confirmation.</ahelp></variable>"
+msgstr "<variable id=\"tabelleloeschentext\"><ahelp hid=\".uno:Remove\" visibility=\"visible\">Borra la hoja actual tras una pregunta de confirmación.</ahelp></variable>"
+
+#: 02170000.xhp#par_id3145801.7.help.text
+msgid "You cannot delete a sheet while <emph>Edit - Changes - Record</emph> is activated."
+msgstr "No se puede eliminar una hoja de cálculo mientras esté activada la opción <emph>Editar - Cambios - Registrar</emph>."
+
+#: 02170000.xhp#hd_id3147124.3.help.text
+msgid "Yes"
+msgstr "Sí"
+
+#: 02170000.xhp#par_id3154943.4.help.text
+msgid "Deletes the current sheet."
+msgstr "Elimina la hoja actual."
+
+#: 02170000.xhp#hd_id3149412.5.help.text
+msgid "No"
+msgstr "No"
+
+#: 02170000.xhp#par_id3154510.6.help.text
+msgid "Cancels the dialog. No delete is performed."
+msgstr "Cancela el diálogo. No se lleva a cabo ninguna operación de borrado."
+
+#: 04070300.xhp#tit.help.text
+msgctxt "04070300.xhp#tit.help.text"
+msgid "Creating Names"
+msgstr "Crear nombres"
+
+#: 04070300.xhp#bm_id3147264.help.text
+msgid "<bookmark_value>cell ranges;creating names automatically</bookmark_value><bookmark_value>names; for cell ranges</bookmark_value>"
+msgstr "<bookmark_value>áreas de celdas;crear nombres automáticamente</bookmark_value><bookmark_value>nombres;para áreas de celdas</bookmark_value>"
+
+#: 04070300.xhp#hd_id3147264.1.help.text
+msgctxt "04070300.xhp#hd_id3147264.1.help.text"
+msgid "Creating Names"
+msgstr "Creación de nombres"
+
+#: 04070300.xhp#par_id3153969.2.help.text
+msgid "<variable id=\"namenuebernehmentext\"><ahelp hid=\".uno:CreateNames\">Allows you to automatically name multiple cell ranges.</ahelp></variable>"
+msgstr "<variable id=\"namenuebernehmentext\"><ahelp hid=\".uno:CreateNames\">Permite asignar un nombre a varias áreas de celdas de forma automática.</ahelp></variable>"
+
+#: 04070300.xhp#par_id3156280.13.help.text
+msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
+msgstr "Seleccione una zona que contenga todas las áreas a las que desee asignar un nombre. A continuación elija <emph>Insertar - Nombres - Definir</emph>. Se abre el diálogo <emph>Definir nombres</emph> que permite seleccionar las opciones de nombre deseadas."
+
+#: 04070300.xhp#hd_id3151116.3.help.text
+msgid "Create names from"
+msgstr "Nombre a partir de"
+
+#: 04070300.xhp#par_id3152597.4.help.text
+msgid "Defines which part of the spreadsheet is to be used for creating the name."
+msgstr "Define qué parte de la hoja de cálculo se utilizará para definir el nombre."
+
+#: 04070300.xhp#hd_id3153729.5.help.text
+msgid "Top row"
+msgstr "Fila superior"
+
+#: 04070300.xhp#par_id3149263.6.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_TOP\">Creates the range names from the header row of the selected range.</ahelp> Each column receives a separated name and cell reference."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_TOP\">Crea los nombres de área a partir de la fila de encabezado del área seleccionada.</ahelp> Cada columna recibe un nombre y una referencia de celda propios."
+
+#: 04070300.xhp#hd_id3146984.7.help.text
+msgid "Left Column"
+msgstr "Columna izquierda"
+
+#: 04070300.xhp#par_id3153190.8.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_LEFT\">Creates the range names from the entries in the first column of the selected sheet range.</ahelp> Each row receives a separated name and cell reference."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_LEFT\">Crea los nombres de área a partir de las entradas en la primera columna del área de hoja seleccionada.</ahelp> Cada fila recibe un nombre y una referencia de celda propios."
+
+#: 04070300.xhp#hd_id3156284.9.help.text
+msgid "Bottom row"
+msgstr "Fila inferior"
+
+#: 04070300.xhp#par_id3147124.10.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_BOTTOM\">Creates the range names from the entries in the last row of the selected sheet range.</ahelp> Each column receives a separated name and cell reference."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_BOTTOM\">Crea los nombres de área a partir de las entradas en la última fila del área de hoja seleccionada.</ahelp> Cada columna recibe un nombre y una referencia de celda propios."
+
+#: 04070300.xhp#hd_id3154731.11.help.text
+msgid "Right Column"
+msgstr "Columna derecha"
+
+#: 04070300.xhp#par_id3153158.12.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_RIGHT\">Creates the range names from the entries in the last column of the selected sheet range.</ahelp> Each row receives a separated name and cell reference."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_RIGHT\">Crea los nombres de área a partir de las entradas en la última columna del área de hoja seleccionada.</ahelp> Cada fila recibe un nombre y una referencia de celda propios."
+
+#: 06030000.xhp#tit.help.text
+msgid "Detective"
+msgstr "Detective"
+
+#: 06030000.xhp#bm_id3151245.help.text
+msgid "<bookmark_value>cell links search</bookmark_value> <bookmark_value>searching; links in cells</bookmark_value> <bookmark_value>traces;precedents and dependents</bookmark_value> <bookmark_value>Formula Auditing,see Detective</bookmark_value> <bookmark_value>Detective</bookmark_value>"
+msgstr "<bookmark_value>buscar enlaces entre celdas</bookmark_value> <bookmark_value>búsqueda; enlaces entre celdas</bookmark_value> <bookmark_value>rastrear; precedentes y dependientes</bookmark_value> <bookmark_value>auditoría de fórmulas; ver Detective</bookmark_value> <bookmark_value>Detective</bookmark_value>"
+
+#: 06030000.xhp#hd_id3151245.1.help.text
+msgid "<link href=\"text/scalc/01/06030000.xhp\" name=\"Detective\">Detective</link>"
+msgstr "<link href=\"text/scalc/01/06030000.xhp\" name=\"Detective\">Detective</link>"
+
+#: 06030000.xhp#par_id3151211.2.help.text
+msgid "This command activates the Spreadsheet Detective. With the Detective, you can trace the dependencies from the current formula cell to the cells in the spreadsheet."
+msgstr "Esta orden activa el Detective de hojas de cálculo. El Detective permite rastrear las dependencias desde la celda de fórmula actual a las celdas correspondientes de la hoja de cálculo."
+
+#: 06030000.xhp#par_id3150447.3.help.text
+msgid "Once you have defined a trace, you can point with the mouse cursor to the trace. The mouse cursor will change its shape. Double-click the trace with this cursor to select the referenced cell at the end of the trace. "
+msgstr "Tras haber definido un rastro, el puntero del ratón se puede situar sobre él. El puntero del ratón modifica su forma. Con este puntero, haga doble clic en el rastro para seleccionar la celda referenciada al final del rastro. "
+
+#: 03080000.xhp#tit.help.text
+msgid "Value Highlighting"
+msgstr "Destacar valores"
+
+#: 03080000.xhp#bm_id3151384.help.text
+#, fuzzy
+msgid "<bookmark_value>spreadsheets; value highlighting</bookmark_value><bookmark_value>values;highlighting</bookmark_value><bookmark_value>highlighting; values in sheets</bookmark_value><bookmark_value>colors;values</bookmark_value>"
+msgstr "<bookmark_value>hojas de cálculo;destacar valores</bookmark_value><bookmark_value>valores;destacar</bookmark_value><bookmark_value>destacar valores en hojas</bookmark_value>"
+
+#: 03080000.xhp#hd_id3151384.help.text
+msgid "<link href=\"text/scalc/01/03080000.xhp\" name=\"Value Highlighting\">Value Highlighting</link>"
+msgstr "<link href=\"text/scalc/01/03080000.xhp\" name=\"Value Highlighting\">Destacar valores</link>"
+
+#: 03080000.xhp#par_id3154366.help.text
+msgid "<ahelp hid=\".uno:ViewValueHighlighting\">Displays cell contents in different colors, depending on type.</ahelp>"
+msgstr "<ahelp hid=\".uno:ViewValueHighlighting\">Muestra el contenido de las celdas en colores diferentes, dependiendo del tipo.</ahelp>"
+
+#: 03080000.xhp#par_id3125863.help.text
+msgid "To remove the highlighting, unmark the menu entry."
+msgstr "Para suprimir esta característica, desactive esta entrada de menú."
+
+#: 03080000.xhp#par_id3145785.help.text
+msgid "Text cells are formatted in black, formulas in green, and number cells in blue, no matter how their display is formatted."
+msgstr "El texto de las celdas se formatea en negro, las fórmulas en verde y las celdas con números en azul; sin importar cómo estén formateadas para la visualización."
+
+#: 03080000.xhp#par_id3153188.help.text
+msgid "If this function is active, colors that you define in the document will not be displayed. When you deactivate the function, the user-defined colors are displayed again."
+msgstr "Si esta función está activada, no se mostrarán los colores que defina en el documento. Al desactivarla se vuelven a mostrar los colores definidos por el usuario."
+
+#: 04060112.xhp#tit.help.text
+msgctxt "04060112.xhp#tit.help.text"
+msgid "Add-in for Programming in $[officename] Calc"
+msgstr "Add-in para programar en $[officename] Calc"
+
+#: 04060112.xhp#bm_id3151076.help.text
+msgid "<bookmark_value>programming; add-ins</bookmark_value><bookmark_value>shared libraries; programming</bookmark_value><bookmark_value>external DLL functions</bookmark_value><bookmark_value>functions; $[officename] Calc add-in DLL</bookmark_value><bookmark_value>add-ins; for programming</bookmark_value>"
+msgstr "<bookmark_value>programar; add-ins</bookmark_value><bookmark_value>bibliotecas compartidas; programar</bookmark_value><bookmark_value>funciones DLL externas</bookmark_value><bookmark_value>funciones; DLL de complemento add-in de $[officename] Calc</bookmark_value><bookmark_value>add-ins; para programar</bookmark_value>"
+
+#: 04060112.xhp#hd_id3151076.1.help.text
+msgctxt "04060112.xhp#hd_id3151076.1.help.text"
+msgid "Add-in for Programming in $[officename] Calc"
+msgstr "Add-in para programar en $[officename] Calc"
+
+#: 04060112.xhp#par_id3147001.220.help.text
+msgid "The method of extending Calc by Add-Ins that is described in the following is outdated. The interfaces are still valid and supported, to ensure compatibility with existing Add-Ins, but for programming new Add-Ins you should use the new <link href=\"text/shared/guide/integratinguno.xhp\" name=\"API functions\">API functions</link>."
+msgstr "El método para ampliar Calc mediante add-ins que se describe a continuación no está actualizado. Para garantizar la compatibilidad con los add-ins existentes, las interfaces siguen siendo válidas y compatibles. Sin embargo, para programar add-ins nuevos se requieren nuevas <link href=\"text/shared/guide/integratinguno.xhp\" name=\"funciones API\">funciones API</link>."
+
+#: 04060112.xhp#par_id3150361.2.help.text
+msgid "$[officename] Calc can be expanded by Add-Ins, which are external programming modules providing additional functions for working with spreadsheets. These are listed in the <emph>Function Wizard</emph> in the <emph>Add-In</emph> category. If you would like to program an Add-In yourself, you can learn here which functions must be exported by the <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>external DLL</defaultinline></switchinline> so that the Add-In can be successfully attached."
+msgstr "$[officename] Calc se puede expandir mediante Add-Ins, módulos externos de programación que proporcionan funciones adicionales para trabajar con las hojas de cálculo. Dichas funciones se muestran en el <emph>Asistente para funciones</emph> de la categoría <emph>Add-In</emph>. Si desea programar un add-in, aquí se indican las funciones que debe exportar la <switchinline select=\"sys\"><caseinline select=\"UNIX\">biblioteca compartida </caseinline><defaultinline>DLL externa</defaultinline></switchinline> para poder adjuntar el add-in de forma satisfactoria."
+
+#: 04060112.xhp#par_id3149211.3.help.text
+msgid "$[officename] searches the Add-in folder defined in the configuration for a suitable <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>DLL</defaultinline></switchinline>. To be recognized by $[officename], the <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>DLL</defaultinline></switchinline> must have certain properties, as explained in the following. This information allows you to program your own Add-In for <emph>Function Wizard</emph> of $[officename] Calc."
+msgstr "$[officename] busca en la carpeta definida en <emph>Herramientas - Opciones - $[officename] - Rutas - Módulos </emph>una <switchinline select=\"sys\"><caseinline select=\"UNIX\">biblioteca compartida </caseinline><defaultinline>DLL</defaultinline></switchinline>. Para que $[officename] reconozca ésta, la <switchinline select=\"sys\"><caseinline select=\"UNIX\">biblioteca compartida</caseinline><defaultinline>DLL</defaultinline></switchinline> debe tener ciertas propiedades, como se explica a continuación. Esta información permite programar sus propios add-ins para el <emph>Asistente para funciones</emph> de $[officename] Calc."
+
+#: 04060112.xhp#hd_id3146981.4.help.text
+msgid "The Add-In Concept"
+msgstr "El concepto de Add-in"
+
+#: 04060112.xhp#par_id3156292.5.help.text
+msgid "Each Add-In library provides several functions. Some functions are used for administrative purposes. You can choose almost any name for your own functions. However, they must also follow certain rules regarding parameter passing. The exact naming and calling conventions vary for different platforms."
+msgstr "Cada biblioteca Add-in incluye diversas funciones. Algunas funciones se utilizan con fines administrativos. Puede elegir casi cualquier nombre para sus propias funciones. No obstante, se han de seguir reglas específicas relativas al paso de parámetros. Los convenios exactos de asignación de nombres y llamada de las funciones varían de una plataforma a otra."
+
+#: 04060112.xhp#hd_id3152890.6.help.text
+msgid "Functions of <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>AddIn DLL</defaultinline></switchinline>"
+msgstr "Funciones de la <switchinline select=\"sys\"><caseinline select=\"UNIX\">biblioteca compartida</caseinline><defaultinline>DLL de add-in</defaultinline></switchinline>"
+
+#: 04060112.xhp#par_id3148837.7.help.text
+msgid "At a minimum, the administrative functions <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionCount\">GetFunctionCount</link> and <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> must exist. Using these, the functions as well as parameter types and return values can be determined. As return values, the Double and String types are supported. As parameters, additionally the cell areas <link href=\"text/scalc/01/04060112.xhp\" name=\"Double Array\">Double Array</link>, <link href=\"text/scalc/01/04060112.xhp\" name=\"String Array\">String Array</link>, and <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell Array\">Cell Array</link> are supported."
+msgstr "Como mínimo deben existir las funciones administrativas <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionCount\">GetFunctionCount</link> y <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link>. Con ellas se pueden determinar las funciones, los tipos de parámetros y los valores de retorno. Como valores de retorno se admiten los tipos Doble y Cadena. Como parámetros, las áreas de celdas <link href=\"text/scalc/01/04060112.xhp\" name=\"Double Array\">doble matriz</link>, <link href=\"text/scalc/01/04060112.xhp\" name=\"String Array\">matriz de cadenas</link> y <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell Array\">matriz de celdas</link> se admiten adicionalmente."
+
+#: 04060112.xhp#par_id3148604.8.help.text
+msgid "Parameters are passed using references. Therefore, a change of these values is basically possible. However, this is not supported in $[officename] Calc because it does not make sense within spreadsheets."
+msgstr "Los parámetros se transmiten por referencia. Por tanto, en principio los valores podrían ser modificados. Sin embargo, $[officename] Calc no admite ningún cambio, dado que no es recomendable que se produzcan modificaciones dentro de una hoja de cálculo."
+
+#: 04060112.xhp#par_id3150112.9.help.text
+msgid "Libraries can be reloaded during runtime and their contents can be analyzed by the administrative functions. For each function, information is available about count and type of parameters, internal and external function names and an administrative number."
+msgstr "Las bibliotecas se pueden volver a cargar durante el tiempo de ejecución y su contenido lo pueden analizar las funciones administrativas. Para cada función hay información disponible sobre el número y los tipos de parámetros, los nombres de funciones internas y externas, así como un número administrativo."
+
+#: 04060112.xhp#par_id3155269.10.help.text
+msgid "The functions are called synchronously and return their results immediately. Real time functions (asynchronous functions) are also possible; however, they are not explained in detail because of their complexity."
+msgstr "Las funciones se activan simultáneamente y devuelven el resultado de modo inmediato. También es posible utilizar funciones de tiempo real (funciones asíncronas), pero debido a su complejidad no serán abordadas en esta Ayuda."
+
+#: 04060112.xhp#hd_id3145077.11.help.text
+msgid "General information about the interface"
+msgstr "Aspectos generales sobre la interfaz"
+
+#: 04060112.xhp#par_id3146776.12.help.text
+msgid "The maximum number of parameters in an Add-In function attached to $[officename] Calc is 16: one return value and a maximum of 15 function input parameters."
+msgstr "El número máximo de parámetros en una función Add-in acoplada a $[officename] Calc es 16: un valor de retorno y un máximo de 15 parámetros de entrada de funciones."
+
+#: 04060112.xhp#par_id3149899.13.help.text
+msgid "The data types are defined as follows:"
+msgstr "Los tipos de datos se definen del modo siguiente:"
+
+#: 04060112.xhp#par_id3151302.14.help.text
+msgid "<emph>Data types</emph>"
+msgstr "<emph>Tipos de datos</emph>"
+
+#: 04060112.xhp#par_id3143222.15.help.text
+msgid "<emph>Definition</emph>"
+msgstr "<emph>Definición</emph>"
+
+#: 04060112.xhp#par_id3149384.16.help.text
+msgid "CALLTYPE"
+msgstr "CALLTYPE"
+
+#: 04060112.xhp#par_id3146963.17.help.text
+msgid "Under Windows: FAR PASCAL (_far _pascal)"
+msgstr "con Windows: FAR PASCAL (_far _pascal)"
+
+#: 04060112.xhp#par_id3153809.18.help.text
+msgid "Other: default (operating system specific default)"
+msgstr "en los demás casos: Predeterminado (según el sistema operativo)"
+
+#: 04060112.xhp#par_id3154734.19.help.text
+msgid "USHORT"
+msgstr "USHORT"
+
+#: 04060112.xhp#par_id3155760.20.help.text
+msgid "2 Byte unsigned Integer"
+msgstr "entero sin signo de 2 bytes"
+
+#: 04060112.xhp#par_id3145320.21.help.text
+msgid "DOUBLE"
+msgstr "double"
+
+#: 04060112.xhp#par_id3150956.22.help.text
+msgid "8 byte platform-dependent format"
+msgstr "formato dependiente de la plataforma, de 8 bytes"
+
+#: 04060112.xhp#par_id3146097.23.help.text
+msgid "Paramtype"
+msgstr "Paramtype"
+
+#: 04060112.xhp#par_id3150432.24.help.text
+msgid "Platform-dependent like int"
+msgstr "dependiente de la plataforma, como int"
+
+#: 04060112.xhp#par_id3153955.25.help.text
+msgid "PTR_DOUBLE =0 pointer to a double"
+msgstr "PTR_DOUBLE =0 puntero a un double"
+
+#: 04060112.xhp#par_id3159262.26.help.text
+msgid "PTR_STRING =1 pointer to a zero-terminated string"
+msgstr "PTR_STRING =1 puntero sobre una cadena de caracteres limitada temporalmente a cero"
+
+#: 04060112.xhp#par_id3148747.27.help.text
+msgid "PTR_DOUBLE_ARR =2 pointer to a double array"
+msgstr "PTR_DOUBLE_ARR =2 puntero a un array de tipo double"
+
+#: 04060112.xhp#par_id3147406.28.help.text
+msgid "PTR_STRING_ARR =3 pointer to a string array"
+msgstr "PTR_STRING_ARR =3 puntero a un array de tipo string"
+
+#: 04060112.xhp#par_id3151392.29.help.text
+msgid "PTR_CELL_ARR =4 pointer to a cell array"
+msgstr "PTR_CELL_ARR =4 puntero a un array de tipo cell"
+
+#: 04060112.xhp#par_id3153028.30.help.text
+msgid "NONE =5"
+msgstr "NINGUNO =5"
+
+#: 04060112.xhp#hd_id3156396.31.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Biblioteca compartida</caseinline><defaultinline>Funciones de DLL</defaultinline></switchinline>"
+
+#: 04060112.xhp#par_id3153019.32.help.text
+msgid "Following you will find a description of those functions, which are called at the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>external DLL</defaultinline></switchinline>."
+msgstr "A continuación, se presenta una descripción de dichas funciones, que pueden activarse en la <switchinline select=\"sys\"><caseinline select=\"UNIX\">biblioteca compartida </caseinline><defaultinline>DLL externa</defaultinline></switchinline>."
+
+#: 04060112.xhp#par_id3150038.33.help.text
+msgid "For all <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions, the following applies:"
+msgstr "Las indicaciones siguientes se aplican a todas las funciones de <switchinline select=\"sys\"><caseinline select=\"UNIX\">biblioteca compartida </caseinline><defaultinline>DLL</defaultinline></switchinline>:"
+
+#: 04060112.xhp#par_id3157876.34.help.text
+msgid "void CALLTYPE fn(out, in1, in2, ...)"
+msgstr "void CALLTYPE fn(salida, entrada1, entrada2, ...)"
+
+#: 04060112.xhp#par_id3147616.35.help.text
+msgid "Output: Resulting value"
+msgstr "Salida: Resultado"
+
+#: 04060112.xhp#par_id3159119.36.help.text
+msgid "Input: Any number of types (double&, char*, double*, char**, Cell area), where the <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell area\">Cell area</link> is an array of types double array, string array, or cell array."
+msgstr "Entrada: Cualquier número de tipos (double&, char*, double*, char**, área de celdas), donde <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell area\">área de celdas</link> es una matriz de tipos matriz de double (entero de doble precisión), matriz de cadenas o matriz de celdas."
+
+#: 04060112.xhp#hd_id3150653.37.help.text
+msgid "GetFunctionCount()"
+msgstr "GetFunctionCount()"
+
+#: 04060112.xhp#par_id3152981.38.help.text
+msgid "Returns the number of functions without the management functions of the reference parameter. Each function has a unique number between 0 and nCount-1. This number will be needed for the <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> and <link href=\"text/scalc/01/04060112.xhp\" name=\"GetParameterDescription\">GetParameterDescription</link> functions later."
+msgstr "Origina un número de funciones que no incluyen las de administración, en el parámetro de referencia. Cada función tiene asignado un número único comprendido entre 0 y nCount-1. Este código se utiliza posteriormente para las funciones <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> y <link href=\"text/scalc/01/04060112.xhp\" name=\"GetParameterDescription\">GetParameterDescription</link>."
+
+#: 04060112.xhp#par_id3150742.39.help.text
+msgctxt "04060112.xhp#par_id3150742.39.help.text"
+msgid "<emph>Syntax</emph>"
+msgstr "<emph>Sintaxis</emph>"
+
+#: 04060112.xhp#par_id3148728.40.help.text
+msgid "void CALLTYPE GetFunctionCount(USHORT& nCount)"
+msgstr "void CALLTYPE GetFunctionCount(USHORT& nCount)"
+
+#: 04060112.xhp#par_id3154677.41.help.text
+msgctxt "04060112.xhp#par_id3154677.41.help.text"
+msgid "<emph>Parameter</emph>"
+msgstr "<emph>Parámetros</emph>"
+
+#: 04060112.xhp#par_id3146940.42.help.text
+msgid "USHORT &nCount:"
+msgstr "USHORT &nCount:"
+
+#: 04060112.xhp#par_id3149893.43.help.text
+msgid "Output: Reference to a variable, which is supposed to contain the number of Add-In functions. For example: If the Add-In provides 5 functions for $[officename] Calc, then nCount=5."
+msgstr "Salida: Referencia a una variable que debe contener el número de funciones Add-in. Por ejemplo, si Add-in ofrece 5 funciones en $[officename] Calc, nCount=5."
+
+#: 04060112.xhp#hd_id3147476.44.help.text
+msgid "GetFunctionData()"
+msgstr "GetFunctionData()"
+
+#: 04060112.xhp#par_id3154841.45.help.text
+msgid "Determines all the important information about an Add-In function."
+msgstr "Determina toda la información importante acerca de una función Add-in."
+
+#: 04060112.xhp#par_id3148888.46.help.text
+msgctxt "04060112.xhp#par_id3148888.46.help.text"
+msgid "<emph>Syntax</emph>"
+msgstr "<emph>Sintaxis</emph>"
+
+#: 04060112.xhp#par_id3148434.47.help.text
+msgid "void CALLTYPE GetFunctionData(USHORT& nNo, char* pFuncName, USHORT& nParamCount, Paramtype* peType, char* pInternalName)"
+msgstr "void CALLTYPE GetFunctionData(USHORT& nNo, char* pFuncName, USHORT& nParamCount, Paramtype* peType, char* pInternalName)"
+
+#: 04060112.xhp#par_id3149253.48.help.text
+msgctxt "04060112.xhp#par_id3149253.48.help.text"
+msgid "<emph>Parameter</emph>"
+msgstr "<emph>Parámetros</emph>"
+
+#: 04060112.xhp#par_id3149686.49.help.text
+msgctxt "04060112.xhp#par_id3149686.49.help.text"
+msgid "USHORT& nNo:"
+msgstr "USHORT& nNo:"
+
+#: 04060112.xhp#par_id3149949.50.help.text
+msgid "Input: Function number between 0 and nCount-1, inclusively."
+msgstr "Entrada: Número de función comprendido entre 0 y nCount-1, ambos incluidos."
+
+#: 04060112.xhp#par_id3149546.51.help.text
+msgid "char* pFuncName:"
+msgstr "char* pFuncName:"
+
+#: 04060112.xhp#par_id3148579.52.help.text
+msgid "Output: Function name as seen by the programmer, as it is named in the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline>. This name does not determine the name used in the <emph>Function Wizard</emph>."
+msgstr "Salida: Nombre de la función que ve el programador, como se denomina en la <switchinline select=\"sys\"><caseinline select=\"UNIX\">biblioteca compartida</caseinline><defaultinline>DLL</defaultinline></switchinline>. Este nombre no determina el nombre que se utiliza en el <emph>Asistente para funciones</emph>."
+
+#: 04060112.xhp#par_id3153935.53.help.text
+msgid "USHORT& nParamCount:"
+msgstr "USHORT& nParamCount:"
+
+#: 04060112.xhp#par_id3150142.54.help.text
+msgid "Output: Number of parameters in AddIn function. This number must be greater than 0, because there is always a result value; the maximum value is 16."
+msgstr "Salida: Número de parámetros de la función Add-in. Dicho número debe ser superior a 0, ya que siempre hay un resultado; el valor máximo es 16."
+
+#: 04060112.xhp#par_id3145143.55.help.text
+msgid "Paramtype* peType:"
+msgstr "Paramtype* peType:"
+
+#: 04060112.xhp#par_id3148750.56.help.text
+msgid "Output: Pointer to an array of exactly 16 variables of type Paramtype. The first nParamCount entries are filled with the suitable type of parameter."
+msgstr "Salida: Puntero sobre un array que contiene exactamente 16 variables del tipo paramtype. Las primeras entradas de nParamCount se completan con el tipo del parámetro correspondiente."
+
+#: 04060112.xhp#par_id3153078.57.help.text
+msgid "char* pInternalName:"
+msgstr "char* pInternalName:"
+
+#: 04060112.xhp#par_id3155261.58.help.text
+msgid "Output: Function name as seen by the user, as it appears in the <emph>Function Wizard</emph>. May contain umlauts."
+msgstr "Salida: Nombre de la función que ve el usuario, como aparece en el <emph>Asistente para funciones</emph>. Puede contener el carácter umlaut."
+
+#: 04060112.xhp#par_id3153327.59.help.text
+msgid "The pFuncName and pInternalName parameters are char arrays, which are implemented with size 256 in $[officename] Calc."
+msgstr "Los parámetros pFuncName y pInternalName son arrays de char que están implementados en $[officename] Calc con el tamaño 256."
+
+#: 04060112.xhp#hd_id3148567.60.help.text
+msgid "GetParameterDescription()"
+msgstr "GetParameterDescription()"
+
+#: 04060112.xhp#par_id3153000.61.help.text
+msgid "Provides a brief description of the Add-In function and its parameters. As an option, this function can be used to show a function and parameter description in the <emph>Function Wizard</emph>."
+msgstr "Proporciona una breve descripción de la función Add-in y de sus parámetros. Si lo desea, esta función puede utilizar para mostrar una descripción de función y parámetros en el <emph>Asistente para funciones</emph>."
+
+#: 04060112.xhp#par_id3154501.62.help.text
+msgctxt "04060112.xhp#par_id3154501.62.help.text"
+msgid "<emph>Syntax</emph>"
+msgstr "<emph>Sintaxis</emph>"
+
+#: 04060112.xhp#par_id3153564.63.help.text
+msgid "void CALLTYPE GetParameterDescription(USHORT& nNo, USHORT& nParam, char* pName, char* pDesc)"
+msgstr "void CALLTYPE GetParameterDescription(USHORT& nNo, USHORT& nParam, char* pName, char* pDesc)"
+
+#: 04060112.xhp#par_id3157995.64.help.text
+msgctxt "04060112.xhp#par_id3157995.64.help.text"
+msgid "<emph>Parameter</emph>"
+msgstr "<emph>Parámetros</emph>"
+
+#: 04060112.xhp#par_id3155925.65.help.text
+msgctxt "04060112.xhp#par_id3155925.65.help.text"
+msgid "USHORT& nNo:"
+msgstr "USHORT& nNo:"
+
+#: 04060112.xhp#par_id3149883.66.help.text
+msgid "Input: Number of the function in the library; between 0 and nCount-1."
+msgstr "Entrada: Número de la función dentro de la biblioteca, comprendido entre 0 y nCount-1."
+
+#: 04060112.xhp#par_id3154326.67.help.text
+msgid "USHORT& nParam:"
+msgstr "USHORT& nParam:"
+
+#: 04060112.xhp#par_id3159139.68.help.text
+msgid "Input: Indicates, for which parameter the description is provided; parameters start at 1. If nParam is 0, the description itself is supposed to be provided in pDesc; in this case, pName does not have any meaning."
+msgstr "Entrada: Indica el parámetro al cual debe referirse la descripción; los parámetros comienzan por 1. Si el parámetro nParam es 0, debe ofrecerse la descripción de la propia función en pDesc; en este caso, pName carece de significado."
+
+#: 04060112.xhp#par_id3147374.69.help.text
+msgid "char* pName:"
+msgstr "char* pName:"
+
+#: 04060112.xhp#par_id3145245.70.help.text
+msgid "Output: Takes up the parameter name or type, for example, the word \"Number\" or \"String\" or \"Date\", and so on. Implemented in $[officename] Calc as char[256]."
+msgstr "Salida: Acepta el nombre y el tipo de parámetro; por ejemplo, la palabra \"número\" o \"cadena de caracteres\" o \"fecha\", etc. En $[officename] Calc está implementado como char[256]."
+
+#: 04060112.xhp#par_id3151020.71.help.text
+msgid "char* pDesc:"
+msgstr "char* pDesc:"
+
+#: 04060112.xhp#par_id3148389.72.help.text
+msgid "Output: Takes up the description of the parameter, for example, \"Value, at which the universe is to be calculated.\" Implemented in $[officename] Calc as char[256]."
+msgstr "Salida: Acepta la descripción del parámetro; por ejemplo, \"valor según el cual debe calcularse el universo\". En $[officename] Calc está implementado como char[256]."
+
+#: 04060112.xhp#par_id3145303.73.help.text
+msgid "pName and pDesc are char arrays; implemented in $[officename] Calc with size 256. Please note that the space available in the <emph>Function Wizard</emph> is limited and that the 256 characters cannot be fully used."
+msgstr "pName y pDesc son matrices de caracteres de tamaño 256, implementadas en $[officename] Calc. Tenga en cuenta que el espacio disponible en el <emph>Asistente para funciones</emph> es limitado y que no es posible utilizar la totalidad de los 256 caracteres."
+
+#: 04060112.xhp#hd_id3148874.76.help.text
+msgid "Cell areas"
+msgstr "Áreas de celdas"
+
+#: 04060112.xhp#par_id3150265.77.help.text
+msgid "The following tables contain information about which data structures must be provided by an external program module in order to pass cell areas. $[officename] Calc distinguishes between three different arrays, depending on the data type."
+msgstr "Las tablas siguientes contienen información sobre las estructuras de datos que debe ofrecer un módulo de programa externo para poder transmitir áreas de celdas. En función del tipo de datos, $[officename] Calc distingue entre tres arrays diferentes."
+
+#: 04060112.xhp#hd_id3156060.78.help.text
+msgid "Double Array"
+msgstr "Array de tipo doble"
+
+#: 04060112.xhp#par_id3149540.79.help.text
+msgid "As a parameter, a cell area with values of the Number/Double type can be passed. A double array in $[officename] Calc is defined as follows:"
+msgstr "Un área de celda puede transmitirse como parámetro con los valores del tipo número/double. En $[officename] Calc, un double array se define de la forma siguiente:"
+
+#: 04060112.xhp#par_id3149388.80.help.text
+#, fuzzy
+msgctxt "04060112.xhp#par_id3149388.80.help.text"
+msgid "<emph>Offset</emph>"
+msgstr "<emph>Desplazamiento</emph>"
+
+#: 04060112.xhp#par_id3154636.81.help.text
+msgctxt "04060112.xhp#par_id3154636.81.help.text"
+msgid "<emph>Name</emph>"
+msgstr "<emph>Nombre</emph>"
+
+#: 04060112.xhp#par_id3153228.82.help.text
+msgctxt "04060112.xhp#par_id3153228.82.help.text"
+msgid "<emph>Description</emph>"
+msgstr "<emph>Descripción</emph>"
+
+#: 04060112.xhp#par_id3150685.83.help.text
+msgctxt "04060112.xhp#par_id3150685.83.help.text"
+msgid "0"
+msgstr "0"
+
+#: 04060112.xhp#par_id3154869.84.help.text
+msgctxt "04060112.xhp#par_id3154869.84.help.text"
+msgid "Col1"
+msgstr "Col1"
+
+#: 04060112.xhp#par_id3147541.85.help.text
+msgctxt "04060112.xhp#par_id3147541.85.help.text"
+msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
+msgstr "Número de columna de la esquina superior izquierda del área de celdas. La numeración comienza por 0."
+
+#: 04060112.xhp#par_id3149783.86.help.text
+msgctxt "04060112.xhp#par_id3149783.86.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060112.xhp#par_id3155986.87.help.text
+msgctxt "04060112.xhp#par_id3155986.87.help.text"
+msgid "Row1"
+msgstr "Row1"
+
+#: 04060112.xhp#par_id3147483.88.help.text
+msgctxt "04060112.xhp#par_id3147483.88.help.text"
+msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr "Número de fila de la esquina superior izquierda del área de celdas, contado a partir de 0."
+
+#: 04060112.xhp#par_id3153721.89.help.text
+msgctxt "04060112.xhp#par_id3153721.89.help.text"
+msgid "4"
+msgstr "4"
+
+#: 04060112.xhp#par_id3154317.90.help.text
+msgctxt "04060112.xhp#par_id3154317.90.help.text"
+msgid "Tab1"
+msgstr "Tab1"
+
+#: 04060112.xhp#par_id3149820.91.help.text
+msgctxt "04060112.xhp#par_id3149820.91.help.text"
+msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr "Número de hoja de la esquina superior izquierda del área de celdas, contado a partir de 0."
+
+#: 04060112.xhp#par_id3163820.92.help.text
+msgctxt "04060112.xhp#par_id3163820.92.help.text"
+msgid "6"
+msgstr "6"
+
+#: 04060112.xhp#par_id3149710.93.help.text
+msgctxt "04060112.xhp#par_id3149710.93.help.text"
+msgid "Col2"
+msgstr "Col2"
+
+#: 04060112.xhp#par_id3154819.94.help.text
+msgctxt "04060112.xhp#par_id3154819.94.help.text"
+msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
+msgstr "Número de columna de la esquina inferior derecha del área de celdas. La numeración comienza por 0."
+
+#: 04060112.xhp#par_id3145083.95.help.text
+msgctxt "04060112.xhp#par_id3145083.95.help.text"
+msgid "8"
+msgstr "8"
+
+#: 04060112.xhp#par_id3156310.96.help.text
+msgctxt "04060112.xhp#par_id3156310.96.help.text"
+msgid "Row2"
+msgstr "Fila2"
+
+#: 04060112.xhp#par_id3150968.97.help.text
+msgctxt "04060112.xhp#par_id3150968.97.help.text"
+msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr "Número de fila de la esquina inferior derecha del área de celdas, contado a partir de 0."
+
+#: 04060112.xhp#par_id3156133.98.help.text
+msgctxt "04060112.xhp#par_id3156133.98.help.text"
+msgid "10"
+msgstr "10"
+
+#: 04060112.xhp#par_id3153218.99.help.text
+msgctxt "04060112.xhp#par_id3153218.99.help.text"
+msgid "Tab2"
+msgstr "Tab2"
+
+#: 04060112.xhp#par_id3147086.100.help.text
+msgctxt "04060112.xhp#par_id3147086.100.help.text"
+msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr "Número de hoja de la esquina inferior derecha del área de celdas, contado a partir de 0."
+
+#: 04060112.xhp#par_id3151270.101.help.text
+msgctxt "04060112.xhp#par_id3151270.101.help.text"
+msgid "12"
+msgstr "12"
+
+#: 04060112.xhp#par_id3152934.102.help.text
+msgctxt "04060112.xhp#par_id3152934.102.help.text"
+msgid "Count"
+msgstr "Count"
+
+#: 04060112.xhp#par_id3145202.103.help.text
+msgctxt "04060112.xhp#par_id3145202.103.help.text"
+msgid "Number of the following elements. Empty cells are not counted or passed."
+msgstr "Número total de cada uno de los siguientes elementos. Las celdas vacías no están incluidas en el recuento y no se transmiten."
+
+#: 04060112.xhp#par_id3150879.104.help.text
+msgctxt "04060112.xhp#par_id3150879.104.help.text"
+msgid "14"
+msgstr "14"
+
+#: 04060112.xhp#par_id3156002.105.help.text
+msgctxt "04060112.xhp#par_id3156002.105.help.text"
+msgid "Col"
+msgstr "Col"
+
+#: 04060112.xhp#par_id3147276.106.help.text
+msgctxt "04060112.xhp#par_id3147276.106.help.text"
+msgid "Column number of the element. Numbering starts at 0."
+msgstr "Número de columna del elemento. La numeración comienza por 0."
+
+#: 04060112.xhp#par_id3151295.107.help.text
+msgctxt "04060112.xhp#par_id3151295.107.help.text"
+msgid "16"
+msgstr "16"
+
+#: 04060112.xhp#par_id3150261.108.help.text
+msgctxt "04060112.xhp#par_id3150261.108.help.text"
+msgid "Row"
+msgstr "Fila"
+
+#: 04060112.xhp#par_id3155851.109.help.text
+msgctxt "04060112.xhp#par_id3155851.109.help.text"
+msgid "Row number of the element; numbering starts at 0."
+msgstr "Número de fila del elemento, contado a partir de 0."
+
+#: 04060112.xhp#par_id3153150.110.help.text
+msgctxt "04060112.xhp#par_id3153150.110.help.text"
+msgid "18"
+msgstr "18"
+
+#: 04060112.xhp#par_id3153758.111.help.text
+msgctxt "04060112.xhp#par_id3153758.111.help.text"
+msgid "Tab"
+msgstr "Tab"
+
+#: 04060112.xhp#par_id3150154.112.help.text
+msgctxt "04060112.xhp#par_id3150154.112.help.text"
+msgid "Table number of the element; numbering starts at 0."
+msgstr "Número de hoja del elemento, contado a partir de 0."
+
+#: 04060112.xhp#par_id3149289.113.help.text
+msgctxt "04060112.xhp#par_id3149289.113.help.text"
+msgid "20"
+msgstr "20"
+
+#: 04060112.xhp#par_id3156010.114.help.text
+msgctxt "04060112.xhp#par_id3156010.114.help.text"
+msgid "Error"
+msgstr "Error"
+
+#: 04060112.xhp#par_id3159181.115.help.text
+msgctxt "04060112.xhp#par_id3159181.115.help.text"
+msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
+msgstr "Número de error; el valor 0 está reservado para \"ningún error\". Si el elemento procede de una celda de fórmula, el valor del error está determinado por la fórmula."
+
+#: 04060112.xhp#par_id3147493.116.help.text
+msgctxt "04060112.xhp#par_id3147493.116.help.text"
+msgid "22"
+msgstr "22"
+
+#: 04060112.xhp#par_id3149200.117.help.text
+msgctxt "04060112.xhp#par_id3149200.117.help.text"
+msgid "Value"
+msgstr "Value"
+
+#: 04060112.xhp#par_id3151174.118.help.text
+msgid "8 byte IEEE variable of type double/floating point"
+msgstr "Variable IEEE de 8 bytes del tipo double/coma flotante"
+
+#: 04060112.xhp#par_id3154688.119.help.text
+msgid "30"
+msgstr "30"
+
+#: 04060112.xhp#par_id3159337.120.help.text
+msgctxt "04060112.xhp#par_id3159337.120.help.text"
+msgid "..."
+msgstr "..."
+
+#: 04060112.xhp#par_id3155388.121.help.text
+msgctxt "04060112.xhp#par_id3155388.121.help.text"
+msgid "Next element"
+msgstr "Elemento siguiente"
+
+#: 04060112.xhp#hd_id3154935.122.help.text
+msgid "String Array"
+msgstr "String array"
+
+#: 04060112.xhp#par_id3153105.123.help.text
+msgid "A cell area, which contains values of data type Text and is passed as a string array. A string array in $[officename] Calc is defined as follows:"
+msgstr "Un área de celdas que contiene valores de tipo texto es transmitido como string array. En $[officename] Calc, un array de string se define como sigue:"
+
+#: 04060112.xhp#par_id3149908.124.help.text
+msgctxt "04060112.xhp#par_id3149908.124.help.text"
+msgid "<emph>Offset</emph>"
+msgstr "<emph>Offset</emph>"
+
+#: 04060112.xhp#par_id3159165.125.help.text
+msgctxt "04060112.xhp#par_id3159165.125.help.text"
+msgid "<emph>Name</emph>"
+msgstr "<emph>Nombre</emph>"
+
+#: 04060112.xhp#par_id3159150.126.help.text
+msgctxt "04060112.xhp#par_id3159150.126.help.text"
+msgid "<emph>Description</emph>"
+msgstr "<emph>Descripción</emph>"
+
+#: 04060112.xhp#par_id3149769.127.help.text
+msgctxt "04060112.xhp#par_id3149769.127.help.text"
+msgid "0"
+msgstr "0"
+
+#: 04060112.xhp#par_id3150509.128.help.text
+msgctxt "04060112.xhp#par_id3150509.128.help.text"
+msgid "Col1"
+msgstr "Col1"
+
+#: 04060112.xhp#par_id3148447.129.help.text
+msgctxt "04060112.xhp#par_id3148447.129.help.text"
+msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
+msgstr "Número de columna de la esquina superior izquierda del área de celdas. La numeración comienza por 0."
+
+#: 04060112.xhp#par_id3145418.130.help.text
+msgctxt "04060112.xhp#par_id3145418.130.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060112.xhp#par_id3147512.131.help.text
+msgctxt "04060112.xhp#par_id3147512.131.help.text"
+msgid "Row1"
+msgstr "Row1"
+
+#: 04060112.xhp#par_id3147235.132.help.text
+msgctxt "04060112.xhp#par_id3147235.132.help.text"
+msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr "Número de fila de la esquina superior izquierda del área de celdas, contado a partir de 0."
+
+#: 04060112.xhp#par_id3155362.133.help.text
+msgctxt "04060112.xhp#par_id3155362.133.help.text"
+msgid "4"
+msgstr "4"
+
+#: 04060112.xhp#par_id3151051.134.help.text
+msgctxt "04060112.xhp#par_id3151051.134.help.text"
+msgid "Tab1"
+msgstr "Tab1"
+
+#: 04060112.xhp#par_id3148923.135.help.text
+msgctxt "04060112.xhp#par_id3148923.135.help.text"
+msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr "Número de hoja de la esquina superior izquierda del área de celdas, contado a partir de 0."
+
+#: 04060112.xhp#par_id3149158.136.help.text
+msgctxt "04060112.xhp#par_id3149158.136.help.text"
+msgid "6"
+msgstr "6"
+
+#: 04060112.xhp#par_id3166437.137.help.text
+msgctxt "04060112.xhp#par_id3166437.137.help.text"
+msgid "Col2"
+msgstr "Col2"
+
+#: 04060112.xhp#par_id3149788.138.help.text
+msgctxt "04060112.xhp#par_id3149788.138.help.text"
+msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
+msgstr "Número de columna de la esquina inferior derecha del área de celdas. La numeración comienza por 0."
+
+#: 04060112.xhp#par_id3166450.139.help.text
+msgctxt "04060112.xhp#par_id3166450.139.help.text"
+msgid "8"
+msgstr "8"
+
+#: 04060112.xhp#par_id3152877.140.help.text
+msgctxt "04060112.xhp#par_id3152877.140.help.text"
+msgid "Row2"
+msgstr "Fila2"
+
+#: 04060112.xhp#par_id3152949.141.help.text
+msgctxt "04060112.xhp#par_id3152949.141.help.text"
+msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr "Número de fila de la esquina inferior derecha del área de celdas, contado a partir de 0."
+
+#: 04060112.xhp#par_id3159270.142.help.text
+msgctxt "04060112.xhp#par_id3159270.142.help.text"
+msgid "10"
+msgstr "10"
+
+#: 04060112.xhp#par_id3154107.143.help.text
+msgctxt "04060112.xhp#par_id3154107.143.help.text"
+msgid "Tab2"
+msgstr "Tab2"
+
+#: 04060112.xhp#par_id3153747.144.help.text
+msgctxt "04060112.xhp#par_id3153747.144.help.text"
+msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr "Número de hoja de la esquina inferior derecha del área de celdas, contado a partir de 0."
+
+#: 04060112.xhp#par_id3149924.145.help.text
+msgctxt "04060112.xhp#par_id3149924.145.help.text"
+msgid "12"
+msgstr "12"
+
+#: 04060112.xhp#par_id3154858.146.help.text
+msgctxt "04060112.xhp#par_id3154858.146.help.text"
+msgid "Count"
+msgstr "Count"
+
+#: 04060112.xhp#par_id3148621.147.help.text
+msgctxt "04060112.xhp#par_id3148621.147.help.text"
+msgid "Number of the following elements. Empty cells are not counted or passed."
+msgstr "Número total de cada uno de los siguientes elementos. Las celdas vacías no están incluidas en el recuento y no se transmiten."
+
+#: 04060112.xhp#par_id3148467.148.help.text
+msgctxt "04060112.xhp#par_id3148467.148.help.text"
+msgid "14"
+msgstr "14"
+
+#: 04060112.xhp#par_id3151126.149.help.text
+msgctxt "04060112.xhp#par_id3151126.149.help.text"
+msgid "Col"
+msgstr "Col"
+
+#: 04060112.xhp#par_id3154334.150.help.text
+msgctxt "04060112.xhp#par_id3154334.150.help.text"
+msgid "Column number of the element. Numbering starts at 0."
+msgstr "Número de columna del elemento. La numeración comienza por 0."
+
+#: 04060112.xhp#par_id3149416.151.help.text
+msgctxt "04060112.xhp#par_id3149416.151.help.text"
+msgid "16"
+msgstr "16"
+
+#: 04060112.xhp#par_id3150631.152.help.text
+msgctxt "04060112.xhp#par_id3150631.152.help.text"
+msgid "Row"
+msgstr "Fila"
+
+#: 04060112.xhp#par_id3150424.153.help.text
+msgctxt "04060112.xhp#par_id3150424.153.help.text"
+msgid "Row number of the element; numbering starts at 0."
+msgstr "Número de fila del elemento, contado a partir de 0."
+
+#: 04060112.xhp#par_id3154797.154.help.text
+msgctxt "04060112.xhp#par_id3154797.154.help.text"
+msgid "18"
+msgstr "18"
+
+#: 04060112.xhp#par_id3143274.155.help.text
+msgctxt "04060112.xhp#par_id3143274.155.help.text"
+msgid "Tab"
+msgstr "Tab"
+
+#: 04060112.xhp#par_id3149513.156.help.text
+msgctxt "04060112.xhp#par_id3149513.156.help.text"
+msgid "Table number of the element; numbering starts at 0."
+msgstr "Número de hoja del elemento, contado a partir de 0."
+
+#: 04060112.xhp#par_id3145306.157.help.text
+msgctxt "04060112.xhp#par_id3145306.157.help.text"
+msgid "20"
+msgstr "20"
+
+#: 04060112.xhp#par_id3153948.158.help.text
+msgctxt "04060112.xhp#par_id3153948.158.help.text"
+msgid "Error"
+msgstr "Error"
+
+#: 04060112.xhp#par_id3153534.159.help.text
+msgctxt "04060112.xhp#par_id3153534.159.help.text"
+msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
+msgstr "Número de error; el valor 0 está reservado para \"ningún error\". Si el elemento procede de una celda de fórmula, el valor del error está determinado por la fórmula."
+
+#: 04060112.xhp#par_id3153311.160.help.text
+msgctxt "04060112.xhp#par_id3153311.160.help.text"
+msgid "22"
+msgstr "22"
+
+#: 04060112.xhp#par_id3148695.161.help.text
+msgid "Len"
+msgstr "Len"
+
+#: 04060112.xhp#par_id3152769.162.help.text
+msgid "Length of the following string, including closing zero byte. If the length including closing zero byte equals an odd value a second zero byte is added to the string so that an even value is achieved. Therefore, Len is calculated using ((StrLen+2)&~1)."
+msgstr "Tamaño del siguiente string, incluido el byte cero de cierre. Si el tamaño es un valor impar, incluido el byte cero de cierre, se añade al string un segundo byte cero para convertirlo en par. Por tanto, Len se calcula con la fórmula ((StrLen+2)&~1)."
+
+#: 04060112.xhp#par_id3153772.163.help.text
+msgctxt "04060112.xhp#par_id3153772.163.help.text"
+msgid "24"
+msgstr "24"
+
+#: 04060112.xhp#par_id3153702.164.help.text
+msgctxt "04060112.xhp#par_id3153702.164.help.text"
+msgid "String"
+msgstr "String"
+
+#: 04060112.xhp#par_id3154474.165.help.text
+msgid "String with closing zero byte"
+msgstr "Sucesión de caracteres con byte cero de cierre"
+
+#: 04060112.xhp#par_id3156269.166.help.text
+msgid "24+Len"
+msgstr "24+Largo"
+
+#: 04060112.xhp#par_id3154825.167.help.text
+msgctxt "04060112.xhp#par_id3154825.167.help.text"
+msgid "..."
+msgstr "..."
+
+#: 04060112.xhp#par_id3147097.168.help.text
+msgctxt "04060112.xhp#par_id3147097.168.help.text"
+msgid "Next element"
+msgstr "Elemento siguiente"
+
+#: 04060112.xhp#hd_id3159091.169.help.text
+msgid "Cell Array"
+msgstr "Cell array"
+
+#: 04060112.xhp#par_id3156140.170.help.text
+msgid "Cell arrays are used to call cell areas containing text as well as numbers. A cell array in $[officename] Calc is defined as follows:"
+msgstr "Se utilizan matrices de celdas para llamar a áreas de celdas que contienen tanto datos de texto como numéricos. En $[officename] Calc una matriz de celdas se define de la siguiente forma:"
+
+#: 04060112.xhp#par_id3154664.171.help.text
+msgctxt "04060112.xhp#par_id3154664.171.help.text"
+msgid "<emph>Offset</emph>"
+msgstr "<emph>Offset</emph>"
+
+#: 04060112.xhp#par_id3154566.172.help.text
+msgctxt "04060112.xhp#par_id3154566.172.help.text"
+msgid "<emph>Name</emph>"
+msgstr "<emph>Nombre</emph>"
+
+#: 04060112.xhp#par_id3146073.173.help.text
+msgctxt "04060112.xhp#par_id3146073.173.help.text"
+msgid "<emph>Description</emph>"
+msgstr "<emph>Descripción</emph>"
+
+#: 04060112.xhp#par_id3154117.174.help.text
+msgctxt "04060112.xhp#par_id3154117.174.help.text"
+msgid "0"
+msgstr "0"
+
+#: 04060112.xhp#par_id3150988.175.help.text
+msgctxt "04060112.xhp#par_id3150988.175.help.text"
+msgid "Col1"
+msgstr "Col1"
+
+#: 04060112.xhp#par_id3146783.176.help.text
+msgctxt "04060112.xhp#par_id3146783.176.help.text"
+msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
+msgstr "Número de columna de la esquina superior izquierda del área de celdas. La numeración comienza por 0."
+
+#: 04060112.xhp#par_id3153666.177.help.text
+msgctxt "04060112.xhp#par_id3153666.177.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060112.xhp#par_id3149560.178.help.text
+msgctxt "04060112.xhp#par_id3149560.178.help.text"
+msgid "Row1"
+msgstr "Row1"
+
+#: 04060112.xhp#par_id3156156.179.help.text
+msgctxt "04060112.xhp#par_id3156156.179.help.text"
+msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr "Número de fila de la esquina superior izquierda del área de celdas, contado a partir de 0."
+
+#: 04060112.xhp#par_id3150408.180.help.text
+msgctxt "04060112.xhp#par_id3150408.180.help.text"
+msgid "4"
+msgstr "4"
+
+#: 04060112.xhp#par_id3150593.181.help.text
+msgctxt "04060112.xhp#par_id3150593.181.help.text"
+msgid "Tab1"
+msgstr "Tab1"
+
+#: 04060112.xhp#par_id3150357.182.help.text
+msgctxt "04060112.xhp#par_id3150357.182.help.text"
+msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr "Número de hoja de la esquina superior izquierda del área de celdas, contado a partir de 0."
+
+#: 04060112.xhp#par_id3146912.183.help.text
+msgctxt "04060112.xhp#par_id3146912.183.help.text"
+msgid "6"
+msgstr "6"
+
+#: 04060112.xhp#par_id3153352.184.help.text
+msgctxt "04060112.xhp#par_id3153352.184.help.text"
+msgid "Col2"
+msgstr "Col2"
+
+#: 04060112.xhp#par_id3155893.185.help.text
+msgctxt "04060112.xhp#par_id3155893.185.help.text"
+msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
+msgstr "Número de columna de la esquina inferior derecha del área de celdas. La numeración comienza por 0."
+
+#: 04060112.xhp#par_id3150827.186.help.text
+msgctxt "04060112.xhp#par_id3150827.186.help.text"
+msgid "8"
+msgstr "8"
+
+#: 04060112.xhp#par_id3148406.187.help.text
+msgctxt "04060112.xhp#par_id3148406.187.help.text"
+msgid "Row2"
+msgstr "Row2"
+
+#: 04060112.xhp#par_id3150673.188.help.text
+msgctxt "04060112.xhp#par_id3150673.188.help.text"
+msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr "Número de fila de la esquina inferior derecha del rango de celdas, contado a partir de 0."
+
+#: 04060112.xhp#par_id3155864.189.help.text
+msgctxt "04060112.xhp#par_id3155864.189.help.text"
+msgid "10"
+msgstr "10"
+
+#: 04060112.xhp#par_id3153197.190.help.text
+msgctxt "04060112.xhp#par_id3153197.190.help.text"
+msgid "Tab2"
+msgstr "Tab2"
+
+#: 04060112.xhp#par_id3149329.191.help.text
+msgctxt "04060112.xhp#par_id3149329.191.help.text"
+msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr "Número de hoja de la esquina inferior derecha del área de celdas, contado a partir de 0."
+
+#: 04060112.xhp#par_id3147360.192.help.text
+msgctxt "04060112.xhp#par_id3147360.192.help.text"
+msgid "12"
+msgstr "12"
+
+#: 04060112.xhp#par_id3154520.193.help.text
+msgctxt "04060112.xhp#par_id3154520.193.help.text"
+msgid "Count"
+msgstr "Count"
+
+#: 04060112.xhp#par_id3150647.194.help.text
+msgctxt "04060112.xhp#par_id3150647.194.help.text"
+msgid "Number of the following elements. Empty cells are not counted or passed."
+msgstr "Número total de cada uno de los siguientes elementos. Las celdas vacías no están incluidas en el recuento y no se transmiten."
+
+#: 04060112.xhp#par_id3149747.195.help.text
+msgctxt "04060112.xhp#par_id3149747.195.help.text"
+msgid "14"
+msgstr "14"
+
+#: 04060112.xhp#par_id3147579.196.help.text
+msgctxt "04060112.xhp#par_id3147579.196.help.text"
+msgid "Col"
+msgstr "Col"
+
+#: 04060112.xhp#par_id3154188.197.help.text
+msgctxt "04060112.xhp#par_id3154188.197.help.text"
+msgid "Column number of the element. Numbering starts at 0."
+msgstr "Número de columna del elemento. La numeración comienza por 0."
+
+#: 04060112.xhp#par_id3159209.198.help.text
+msgctxt "04060112.xhp#par_id3159209.198.help.text"
+msgid "16"
+msgstr "16"
+
+#: 04060112.xhp#par_id3153265.199.help.text
+msgctxt "04060112.xhp#par_id3153265.199.help.text"
+msgid "Row"
+msgstr "Row"
+
+#: 04060112.xhp#par_id3150095.200.help.text
+msgctxt "04060112.xhp#par_id3150095.200.help.text"
+msgid "Row number of the element; numbering starts at 0."
+msgstr "Número de fila del elemento, contado a partir de 0."
+
+#: 04060112.xhp#par_id3151276.201.help.text
+msgctxt "04060112.xhp#par_id3151276.201.help.text"
+msgid "18"
+msgstr "18"
+
+#: 04060112.xhp#par_id3149177.202.help.text
+msgctxt "04060112.xhp#par_id3149177.202.help.text"
+msgid "Tab"
+msgstr "Tab"
+
+#: 04060112.xhp#par_id3146925.203.help.text
+msgctxt "04060112.xhp#par_id3146925.203.help.text"
+msgid "Table number of the element; numbering starts at 0."
+msgstr "Número de hoja del elemento, contado a partir de 0."
+
+#: 04060112.xhp#par_id3150488.204.help.text
+msgctxt "04060112.xhp#par_id3150488.204.help.text"
+msgid "20"
+msgstr "20"
+
+#: 04060112.xhp#par_id3149441.205.help.text
+msgctxt "04060112.xhp#par_id3149441.205.help.text"
+msgid "Error"
+msgstr "Error"
+
+#: 04060112.xhp#par_id3156048.206.help.text
+msgctxt "04060112.xhp#par_id3156048.206.help.text"
+msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
+msgstr "Número de error; el valor 0 está reservado para \"ningún error\". Si el elemento procede de una celda de fórmula, el valor del error está determinado por la fórmula."
+
+#: 04060112.xhp#par_id3163813.207.help.text
+msgctxt "04060112.xhp#par_id3163813.207.help.text"
+msgid "22"
+msgstr "22"
+
+#: 04060112.xhp#par_id3159102.208.help.text
+msgctxt "04060112.xhp#par_id3159102.208.help.text"
+msgid "Type"
+msgstr "Tipo"
+
+#: 04060112.xhp#par_id3149581.209.help.text
+msgid "Type of cell content, 0 == Double, 1 == String"
+msgstr "Tipo de contenido de la celda, 0 == double, 1 == string"
+
+#: 04060112.xhp#par_id3155182.210.help.text
+msgctxt "04060112.xhp#par_id3155182.210.help.text"
+msgid "24"
+msgstr "24"
+
+#: 04060112.xhp#par_id3153291.211.help.text
+msgid "Value or Len"
+msgstr "Value or Len"
+
+#: 04060112.xhp#par_id3148560.212.help.text
+msgid "If type == 0: 8 byte IEEE variable of type double/floating point"
+msgstr "Si el tipo == 0: Variable IEEE de 8 bytes del tipo double/coma flotante"
+
+#: 04060112.xhp#par_id3148901.213.help.text
+msgid "If type == 1: Length of the following string, including closing zero byte. If the length including closing zero byte equals an odd value a second zero byte is added to the string so that an even value is achieved. Therefore, Len is calculated using ((StrLen+2)&~1)."
+msgstr "Si el tipo == 1: Tamaño del siguiente string, incluido el byte cero de cierre. Si el tamaño es un valor impar, incluido el byte cero de cierre, se añade al string un segundo byte cero para convertirlo en par. Por tanto, Len se calcula con la fórmula ((StrLen+2)&~1)."
+
+#: 04060112.xhp#par_id3145215.214.help.text
+msgid "26 if type==1"
+msgstr "26 if Type==1"
+
+#: 04060112.xhp#par_id3155143.215.help.text
+msgctxt "04060112.xhp#par_id3155143.215.help.text"
+msgid "String"
+msgstr "String"
+
+#: 04060112.xhp#par_id3149298.216.help.text
+msgid "If type == 1: String with closing zero byte"
+msgstr "Si el tipo == 1: Sucesión de caracteres con byte cero de cierre"
+
+#: 04060112.xhp#par_id3151322.217.help.text
+msgid "32 or 26+Len"
+msgstr "32 or 26+Len"
+
+#: 04060112.xhp#par_id3163722.218.help.text
+msgctxt "04060112.xhp#par_id3163722.218.help.text"
+msgid "..."
+msgstr "..."
+
+#: 04060112.xhp#par_id3151059.219.help.text
+msgctxt "04060112.xhp#par_id3151059.219.help.text"
+msgid "Next element"
+msgstr "Elemento siguiente"
+
+#: 12080100.xhp#tit.help.text
+msgid "Hide Details"
+msgstr "Ocultar detalles"
+
+#: 12080100.xhp#bm_id3155628.help.text
+msgid "<bookmark_value>sheets; hiding details</bookmark_value>"
+msgstr "<bookmark_value>hojas;ocultar detalles</bookmark_value>"
+
+#: 12080100.xhp#hd_id3155628.1.help.text
+msgid "<link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\">Hide Details</link>"
+msgstr "<link href=\"text/scalc/01/12080100.xhp\" name=\"Ocultar detalles\">Ocultar detalles</link>"
+
+#: 12080100.xhp#par_id3154515.2.help.text
+msgid "<ahelp hid=\".uno:HideDetail\" visibility=\"visible\">Hides the details of the grouped row or column that contains the cursor. To hide all of the grouped rows or columns, select the outlined table, and then choose this command.</ahelp>"
+msgstr "<ahelp hid=\".uno:HideDetail\" visibility=\"visible\">Oculta los detalles de la fila o columna agrupadas en las que se encuentra el cursor. Para ocultar todas las filas o columnas agrupadas, seleccione la tabla del esquema y elija este comando.</ahelp>"
+
+#: 12080100.xhp#par_id3153252.3.help.text
+msgid "To show all hidden groups, select the outlined table, and then choose <emph>Data -Outline –</emph> <link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\"><emph>Show Details</emph></link>."
+msgstr "Para mostrar todos los grupos ocultos, seleccione la tabla del esquema y elija <emph>Datos - Esquema -</emph> <link href=\"text/scalc/01/12080200.xhp\" name=\"Mostrar detalles\"><emph>Mostrar detalles</emph></link>."
+
+#: func_day.xhp#tit.help.text
+msgid "DAY "
+msgstr "DÍA"
+
+#: func_day.xhp#bm_id3147317.help.text
+msgid "<bookmark_value>DAY function</bookmark_value>"
+msgstr "<bookmark_value>DÍA</bookmark_value>"
+
+#: func_day.xhp#hd_id3147317.106.help.text
+msgid "<variable id=\"day\"><link href=\"text/scalc/01/func_day.xhp\">DAY</link></variable>"
+msgstr "<variable id=\"day\"><link href=\"text/scalc/01/func_day.xhp\">DÍA</link></variable>"
+
+#: func_day.xhp#par_id3147584.107.help.text
+msgid "<ahelp hid=\"HID_FUNC_TAG\">Returns the day of given date value.</ahelp> The day is returned as an integer between 1 and 31. You can also enter a negative date/time value."
+msgstr "<ahelp hid=\"HID_FUNC_TAG\">Devuelve el día del valor de fecha especificado.</ahelp> El día se devuelve como entero entre 1 y 31. También se puede introducir un valor de fecha/hora negativo."
+
+#: func_day.xhp#hd_id3150487.108.help.text
+msgctxt "func_day.xhp#hd_id3150487.108.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: func_day.xhp#par_id3149430.109.help.text
+msgid "DAY(Number)"
+msgstr "DÍA(número)"
+
+#: func_day.xhp#par_id3149443.110.help.text
+msgid "<emph>Number</emph>, as a time value, is a decimal, for which the day is to be returned."
+msgstr "El <emph>número</emph>, como valor temporal, es un número decimal en función del cual debe calcularse el día."
+
+#: func_day.xhp#hd_id3163809.111.help.text
+msgid "Examples "
+msgstr "Ejemplos"
+
+#: func_day.xhp#par_id3151200.112.help.text
+msgid "DAY(1) returns 31 (since $[officename] starts counting at zero from December 30, 1899)"
+msgstr "DÍA(1) devuelve 31 (desde $[officename] empieza a contar en cero desde Diciembre 30, 1899)"
+
+#: func_day.xhp#par_id3154130.113.help.text
+msgid "DAY(NOW()) returns the current day."
+msgstr "DÍA(AHORA()) devuelve el día actual."
+
+#: func_day.xhp#par_id3159190.114.help.text
+msgid "=DAY(C4) returns 5 if you enter 1901-08-05 in cell C4 (the date value might get formatted differently after you press Enter)."
+msgstr "=DÍA(C4) devuelve 5 si usted introduce 1901-08-05 en la celda C4 (el valor fecha puede configurar formatos diferentes después de que usted presione Enter)."
+
+#: 12020000.xhp#tit.help.text
+msgctxt "12020000.xhp#tit.help.text"
+msgid "Select Database Range"
+msgstr "Seleccionar área de base de datos"
+
+#: 12020000.xhp#bm_id3145068.help.text
+msgid "<bookmark_value>databases; selecting (Calc)</bookmark_value>"
+msgstr "<bookmark_value>bases de datos; seleccionar (Calc)</bookmark_value>"
+
+#: 12020000.xhp#hd_id3145068.1.help.text
+msgctxt "12020000.xhp#hd_id3145068.1.help.text"
+msgid "Select Database Range"
+msgstr "Seleccionar área de base de datos"
+
+#: 12020000.xhp#par_id3149655.2.help.text
+msgid "<variable id=\"bereichwaehlen\"><ahelp hid=\".uno:SelectDB\">Selects a database range that you defined under <link href=\"text/scalc/01/12010000.xhp\" name=\"Data - Define Range\">Data - Define Range</link>.</ahelp></variable>"
+msgstr "<variable id=\"bereichwaehlen\"><ahelp hid=\".uno:SelectDB\">Selecciona un área de base de datos definida en <link href=\"text/scalc/01/12010000.xhp\" name=\"Datos - Definir área\">Datos - Definir área</link>.</ahelp></variable>"
+
+#: 12020000.xhp#hd_id3153192.3.help.text
+msgid "Ranges"
+msgstr "Áreas"
+
+#: 12020000.xhp#par_id3154684.4.help.text
+msgid "<ahelp hid=\"HID_SC_SELENTRY_LIST\">Lists the available database ranges. To select a database range, click its name, and then click <emph>OK</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_SELENTRY_LIST\">Enumera las áreas de base de datos disponibles. Para seleccionar un área de base de datos, haga clic en su nombre y, a continuación, en <emph>Aceptar</emph>.</ahelp>"
+
+#: 12090300.xhp#tit.help.text
+msgctxt "12090300.xhp#tit.help.text"
+msgid "Delete"
+msgstr "Eliminar"
+
+#: 12090300.xhp#hd_id3150276.1.help.text
+msgid "<link href=\"text/scalc/01/12090300.xhp\" name=\"Delete\">Delete</link>"
+msgstr "<link href=\"text/scalc/01/12090300.xhp\" name=\"Eliminar\">Eliminar</link>"
+
+#: 12090300.xhp#par_id3159400.2.help.text
+msgid "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">Deletes the selected pivot table.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">Borra las tabla seleccionada del Piloto de datos.</ahelp>"
+
+#: 06030600.xhp#tit.help.text
+msgid "Trace Error"
+msgstr "Rastrear error"
+
+#: 06030600.xhp#bm_id3153561.help.text
+msgid "<bookmark_value>cells; tracing errors</bookmark_value><bookmark_value>tracing errors</bookmark_value><bookmark_value>error tracing</bookmark_value>"
+msgstr "<bookmark_value>celdas;rastrear errores</bookmark_value><bookmark_value>rastrear errores</bookmark_value><bookmark_value>error;rastro</bookmark_value>"
+
+#: 06030600.xhp#hd_id3153561.1.help.text
+msgid "<link href=\"text/scalc/01/06030600.xhp\" name=\"Trace Error\">Trace Error</link>"
+msgstr "<link href=\"text/scalc/01/06030600.xhp\" name=\"Rastrear error\">Rastrear error</link>"
+
+#: 06030600.xhp#par_id3148550.2.help.text
+msgid "<ahelp hid=\".uno:ShowErrors\" visibility=\"visible\">Draws tracer arrows to all precedent cells which cause an error value in a selected cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:ShowErrors\" visibility=\"visible\">Coloca flechas de rastreo hacia todas las celdas precedentes que provoquen la aparición de un valor de error en la celda seleccionada.</ahelp>"
+
+#: 04010000.xhp#tit.help.text
+msgid "Manual Break"
+msgstr "Salto manual"
+
+#: 04010000.xhp#bm_id3153192.help.text
+msgid "<bookmark_value>spreadsheets; inserting breaks in</bookmark_value><bookmark_value>inserting; breaks</bookmark_value><bookmark_value>page breaks; inserting in spreadsheets</bookmark_value>"
+msgstr "<bookmark_value>hojas de cálculo;insertar saltos en</bookmark_value><bookmark_value>insertar;saltos</bookmark_value><bookmark_value>saltos de página;insertar en hojas de cálculo</bookmark_value>"
+
+#: 04010000.xhp#hd_id3153192.1.help.text
+msgid "<link href=\"text/scalc/01/04010000.xhp\" name=\"Manual Break\">Manual Break</link>"
+msgstr "<link href=\"text/scalc/01/04010000.xhp\" name=\"Manual Break\">Salto manual</link>"
+
+#: 04010000.xhp#par_id3125864.2.help.text
+msgid "<ahelp hid=\".\">This command inserts manual row or column breaks to ensure that your data prints properly. You can insert a horizontal page break above, or a vertical page break to the left of, the active cell.</ahelp>"
+msgstr "<ahelp hid=\".\">Este comando inserta saltos de fila o columna manuales para asegurarse de que los datos se impriman correctamente. Puede insertar un salto de página horizontal encima o un salto de página vertical a la izquierda de la celda activa.</ahelp>"
+
+#: 04010000.xhp#par_id3155133.3.help.text
+msgid "Choose <link href=\"text/scalc/01/02190000.xhp\" name=\"Edit - Delete Manual Break\">Edit - Delete Manual Break</link> to remove breaks created manually."
+msgstr "Seleccione <link href=\"text/scalc/01/02190000.xhp\" name=\"Edit - Delete Manual Break\">Editar - Borrar salto manual</link> para suprimir los saltos creados manualmente."
+
+#: func_workday.xhp#tit.help.text
+msgid "WORKDAY"
+msgstr "DIA.LAB"
+
+#: func_workday.xhp#bm_id3149012.help.text
+msgid "<bookmark_value>WORKDAY function</bookmark_value>"
+msgstr "<bookmark_value>DIA.LAB</bookmark_value>"
+
+#: func_workday.xhp#hd_id3149012.186.help.text
+msgid "<variable id=\"workday\"><link href=\"text/scalc/01/func_workday.xhp\">WORKDAY</link></variable>"
+msgstr "<variable id=\"workday\"><link href=\"text/scalc/01/func_workday.xhp\">DIA.LAB</link></variable>"
+
+#: func_workday.xhp#par_id3149893.187.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_WORKDAY\"> The result is a date number that can be formatted as a date. You then see the date of a day that is a certain number of <emph>workdays</emph> away from the <emph>start date</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_WORKDAY\"> El resultado es un número que la fecha puede ser en formato de fecha. Así, puede ver la fecha de un día que es un cierto número de <emph>días laborales</emph> lejos de la <emph>fecha de inicio</emph>.</ahelp>"
+
+#: func_workday.xhp#hd_id3146944.188.help.text
+msgctxt "func_workday.xhp#hd_id3146944.188.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: func_workday.xhp#par_id3154844.189.help.text
+msgid "WORKDAY(StartDate; Days; Holidays)"
+msgstr "DIA.LAB(FechaInicio; Días; Vacaciones)"
+
+#: func_workday.xhp#par_id3147469.190.help.text
+msgctxt "func_workday.xhp#par_id3147469.190.help.text"
+msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation."
+msgstr "<emph>InicioFecha</emph> es la fecha a partir de cuando el cálculo se lleva a cabo. Si la fecha de inicio es una día laboral, el día se incluye en el cálculo."
+
+#: func_workday.xhp#par_id3153038.191.help.text
+msgid "<emph>Days</emph> is the number of workdays. Positive value for a result after the start date, negative value for a result before the start date."
+msgstr "<emph>Días</emph> es el número de días laborales. El valor positivo para un resultado después de la fecha de inicio, el valor negativo para el resultado antes de la fecha de inicio."
+
+#: func_workday.xhp#par_id3150693.192.help.text
+msgid "<emph>Holidays</emph> is a list of optional holidays. These are non-working days. Enter a cell range in which the holidays are listed individually."
+msgstr "<emph>Vacaciones</emph> es una lista de vacaciones opcionales. Estos son días no laborables. Introduzca un rango de celdas en el que las vacaciones son listadas individualmente."
+
+#: func_workday.xhp#hd_id3150141.193.help.text
+msgctxt "func_workday.xhp#hd_id3150141.193.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: func_workday.xhp#par_id3152782.194.help.text
+msgid "What date came 17 workdays after 1 December 2001? Enter the start date \"2001-12-01\" in C3 and the number of workdays in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
+msgstr "¿Qué fecha es 17 días después del 1 de Diciembre de 2001? Introduzca la fecha de inicio \"2001-12-01\" en C3 y el número de días laborales en D3. Las celdas F3 a J3 contienen las siguiente vacaciones, Navidad y Año Nuevo: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
+
+#: func_workday.xhp#par_id3146142.195.help.text
+msgid "=WORKDAY(C3;D3;F3:J3) returns 2001-12-28. Format the serial date number as a date, for example in the format YYYY-MM-DD."
+msgstr "=DIA.LAB(C3;D3;F3:J3) devuelve 2001-12-28. El formato del número de la fecha serial como una fecha, por ejemplo en el formato AAAA-MM-DD."
+
+#: 12030200.xhp#tit.help.text
+msgctxt "12030200.xhp#tit.help.text"
+msgid "Options"
+msgstr "Opciones"
+
+#: 12030200.xhp#bm_id3147228.help.text
+msgid "<bookmark_value>sorting; options for database ranges</bookmark_value><bookmark_value>sorting;Asian languages</bookmark_value><bookmark_value>Asian languages;sorting</bookmark_value><bookmark_value>phonebook sorting rules</bookmark_value><bookmark_value>natural sort algorithm</bookmark_value>"
+msgstr "<bookmark_value>ordenamiento; opciones para intervalos de bases de datos</bookmark_value><bookmark_value>ordenamiento; idiomas asiáticos</bookmark_value><bookmark_value>Idiomas asiáticos;ordenamiento</bookmark_value><bookmark_value>reglas de ordenamiento de agenda telefónica</bookmark_value><bookmark_value>algoritmo de ordenamiento natural</bookmark_value>"
+
+#: 12030200.xhp#hd_id3147228.1.help.text
+msgid "<link href=\"text/scalc/01/12030200.xhp\" name=\"Options\"> Options</link>"
+msgstr "<link href=\"text/scalc/01/12030200.xhp\" name=\"Opciones\">Opciones</link>"
+
+#: 12030200.xhp#par_id3153770.2.help.text
+msgid "<ahelp hid=\"HID_SCPAGE_SORT_OPTIONS\"> Sets additional sorting options.</ahelp>"
+msgstr "<ahelp hid=\"HID_SCPAGE_SORT_OPTIONS\"> Establece opciones de ordenación adicionales.</ahelp>"
+
+#: 12030200.xhp#hd_id3146976.3.help.text
+msgid " Case Sensitivity"
+msgstr " Distinción entre mayúsculas y minúsculas"
+
+#: 12030200.xhp#par_id3153091.4.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_CASESENSITIVE\"> Sorts first by uppercase letters and then by lowercase letters. For Asian languages, special handling applies.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_CASESENSITIVE\">Ordena alfabéticamente, primero las mayúsculas y, luego, las minúsculas. Los idiomas asiáticos se rigen por criterios especiales.</ahelp>"
+
+#: 12030200.xhp#par_idN10637.help.text
+msgid " Note for Asian languages: Check <emph>Case Sensitivity</emph> to apply multi-level collation. With multi-level collation, entries are first compared in their primitive forms with their cases and diacritics ignored. If they evaluate as the same, their diacritics are taken into account for the second-level comparison. If they still evaluate as the same, their cases, character widths, and Japanese Kana difference are considered for the third-level comparison."
+msgstr " Nota para los idiomas asiáticos: Marque <emph>Mayúsculas/minúsculas</emph> para aplicar intercalación en varios niveles. En la intercalación en varios niveles, en primer lugar las entradas se comparan en sus formas originales con las mayúsculas y minúsculas, y se omiten los signos diacríticos. Si se consideran iguales, los signos diacríticos se tienen en cuenta en la comparación de segundo nivel. Si las formas siguen siendo idénticas, se tienen en cuenta mayúsculas y minúsculas, el ancho de los caracteres y las diferencias de los caracteres kana japoneses en la comparación de tercer nivel."
+
+#: 12030200.xhp#hd_id3155856.5.help.text
+msgid " Range contains column/row labels"
+msgstr " El rango contiene etiquetas de columna/fila"
+
+#: 12030200.xhp#par_id3154014.6.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_LABEL\"> Omits the first row or the first column in the selection from the sort.</ahelp> The <emph>Direction</emph> setting at the bottom of the dialog defines the name and function of this check box."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_LABEL\"> Omite de la operación de ordenación la primera fila o la primera columna de la selección.</ahelp> La opción <emph>Dirección</emph> situada en la parte inferior del diálogo define el nombre y la función de esta casilla de verificación."
+
+#: 12030200.xhp#hd_id3147436.7.help.text
+msgid " Include formats"
+msgstr " Incluir formatos"
+
+#: 12030200.xhp#par_id3149377.8.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_FORMATS\"> Preserves the current cell formatting.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_FORMATS\"> Conserva el formato actual de las celdas.</ahelp>"
+
+#: 12030200.xhp#hd_id3147438.help.text
+msgid "Enable natural sort"
+msgstr ""
+
+#: 12030200.xhp#par_id3149378.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_NATURALSORT\">Natural sort is a sort algorithm that sorts string-prefixed numbers based on the value of the numerical element in each sorted number, instead of the traditional way of sorting them as ordinary strings.</ahelp> For instance, let's assume you have a series of values such as, A1, A2, A3, A4, A5, A6, ..., A19, A20, A21. When you put these values into a range of cells and run the sort, it will become A1, A11, A12, A13, ..., A19, A2, A20, A21, A3, A4, A5, ..., A9. While this sorting behavior may make sense to those who understand the underlying sorting mechanism, to the rest of the population it seems completely bizarre, if not outright inconvenient. With the natural sort feature enabled, values such as the ones in the above example get sorted \"properly\", which improves the convenience of sorting operations in general."
+msgstr ""
+
+#: 12030200.xhp#hd_id3153878.10.help.text
+msgid " Copy sort results to:"
+msgstr " Copiar resultados de clasificación en:"
+
+#: 12030200.xhp#par_id3156286.11.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_COPYRESULT\"> Copies the sorted list to the cell range that you specify.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_COPYRESULT\"> Copia la lista ordenada en el rango de celdas especificado.</ahelp>"
+
+#: 12030200.xhp#hd_id3153418.12.help.text
+msgctxt "12030200.xhp#hd_id3153418.12.help.text"
+msgid " Sort results"
+msgstr " Resultados de clasificación"
+
+#: 12030200.xhp#par_id3155602.13.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_OPTIONS:LB_OUTAREA\"> Select a named <link href=\"text/scalc/01/12010000.xhp\" name=\"cell range\"> cell range</link> where you want to display the sorted list, or enter a cell range in the input box.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_OPTIONS:LB_OUTAREA\">Seleccione un <link href=\"text/scalc/01/12010000.xhp\" name=\"rango de celdas\">rango de celdas</link> con nombre para mostrar la lista ordenada, o especifique un rango de celdas en el cuadro de entrada.</ahelp>"
+
+#: 12030200.xhp#hd_id3153707.14.help.text
+msgctxt "12030200.xhp#hd_id3153707.14.help.text"
+msgid " Sort results"
+msgstr " Resultados de clasificación"
+
+#: 12030200.xhp#par_id3145642.15.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCPAGE_SORT_OPTIONS:ED_OUTAREA\"> Enter the cell range where you want to display the sorted list, or select a named range from the list.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCPAGE_SORT_OPTIONS:ED_OUTAREA\"> Especifique el rango de celdas en el que desee mostrar la lista ordenada o seleccione un rango con nombre de la lista.</ahelp>"
+
+#: 12030200.xhp#hd_id3155445.16.help.text
+msgctxt "12030200.xhp#hd_id3155445.16.help.text"
+msgid " Custom sort order"
+msgstr " Orden de clasificación definido por el usuario"
+
+#: 12030200.xhp#par_id3156385.17.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_SORT_USER\"> Click here and then select the custom sort order that you want.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_SORT_USER\"> Haga clic aquí y seleccione el orden de clasificación personalizado que desee.</ahelp>"
+
+#: 12030200.xhp#hd_id3154704.18.help.text
+msgctxt "12030200.xhp#hd_id3154704.18.help.text"
+msgid " Custom sort order"
+msgstr " Orden de clasificación definido por el usuario"
+
+#: 12030200.xhp#par_id3155962.19.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_OPTIONS:LB_SORT_USER\"> Select the custom sort order that you want to apply. To define a custom sort order, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060400.xhp\" name=\"%PRODUCTNAME Calc - Sort Lists\">%PRODUCTNAME Calc - Sort Lists</link> .</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_OPTIONS:LB_SORT_USER\"> Puede seleccionarse el criterio de ordenamiento personalizado que se desea aplicar. Para definir un criterio de ordenamiento personalizado, elija <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias </caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060400.xhp\" name=\"%PRODUCTNAME Calc - Listas ordenadas\">%PRODUCTNAME Calc - Listas ordenadas</link> .</ahelp>"
+
+#: 12030200.xhp#hd_id3149257.28.help.text
+msgctxt "12030200.xhp#hd_id3149257.28.help.text"
+msgid " Language"
+msgstr " Idioma"
+
+#: 12030200.xhp#hd_id3147004.29.help.text
+msgctxt "12030200.xhp#hd_id3147004.29.help.text"
+msgid " Language"
+msgstr " Idioma"
+
+#: 12030200.xhp#par_id3150787.32.help.text
+msgid "<ahelp hid=\"SC_LISTBOX_RID_SCPAGE_SORT_OPTIONS_LB_LANGUAGE\"> Select the language for the sorting rules.</ahelp>"
+msgstr "<ahelp hid=\"SC_LISTBOX_RID_SCPAGE_SORT_OPTIONS_LB_LANGUAGE\"> Seleccione el idioma de las reglas de clasificación.</ahelp>"
+
+#: 12030200.xhp#hd_id3150344.30.help.text
+msgid " Options"
+msgstr " Opciones"
+
+#: 12030200.xhp#par_id3155113.33.help.text
+msgid "<ahelp hid=\"SC_LISTBOX_RID_SCPAGE_SORT_OPTIONS_LB_ALGORITHM\"> Select a sorting option for the language.</ahelp> For example, select the \"phonebook\" option for German to include the umlaut special character in the sorting."
+msgstr "<ahelp hid=\"SC_LISTBOX_RID_SCPAGE_SORT_OPTIONS_LB_ALGORITHM\"> Seleccione una opción de ordenación para el idioma.</ahelp> Por ejemplo, seleccione la opción \"listín telefónico\" para el idioma alemán si desea incluir el carácter especial umlaut para la ordenación alfabética."
+
+#: 12030200.xhp#hd_id3152580.20.help.text
+msgid " Direction"
+msgstr " Dirección"
+
+#: 12030200.xhp#hd_id3154201.22.help.text
+msgid " Top to Bottom (Sort Rows)"
+msgstr " De arriba abajo (Ordenar filas)"
+
+#: 12030200.xhp#par_id3166430.23.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_OPTIONS:BTN_TOP_DOWN\"> Sorts rows by the values in the active columns of the selected range.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_OPTIONS:BTN_TOP_DOWN\"> Ordena las filas según los valores en las columnas activas del rango seleccionado.</ahelp>"
+
+#: 12030200.xhp#hd_id3145588.24.help.text
+msgid " Left to Right (Sort Columns)"
+msgstr " De izquierda a derecha (Ordenar columnas)"
+
+#: 12030200.xhp#par_id3154370.25.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_OPTIONS:BTN_LEFT_RIGHT\"> Sorts columns by the values in the active rows of the selected range.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_OPTIONS:BTN_LEFT_RIGHT\"> Ordena las columnas según los valores en las filas activas del rango seleccionado.</ahelp>"
+
+#: 12030200.xhp#hd_id3156290.26.help.text
+msgid " Data area"
+msgstr " Área de datos"
+
+#: 12030200.xhp#par_id3156446.27.help.text
+msgid " Displays the cell range that you want to sort."
+msgstr " Muestra el rango de celdas que se desea ordenar."
+
+#: 06030700.xhp#tit.help.text
+msgid "Fill Mode"
+msgstr "Modo de relleno"
+
+#: 06030700.xhp#bm_id3145119.help.text
+msgid "<bookmark_value>cells; trace fill mode</bookmark_value><bookmark_value>traces; precedents for multiple cells</bookmark_value>"
+msgstr "<bookmark_value>celdas;modo de relleno</bookmark_value><bookmark_value>rastros;precedentes para varias celdas</bookmark_value>"
+
+#: 06030700.xhp#hd_id3145119.1.help.text
+msgid "<link href=\"text/scalc/01/06030700.xhp\" name=\"Fill Mode\">Fill Mode</link>"
+msgstr "<link href=\"text/scalc/01/06030700.xhp\" name=\"Modo de relleno\">Modo de relleno</link>"
+
+#: 06030700.xhp#par_id3151246.2.help.text
+msgid "<ahelp hid=\".uno:AuditingFillMode\">Activates the Fill Mode in the Detective. The mouse pointer changes to a special symbol, and you can click any cell to see a trace to the precedent cell.</ahelp> To exit this mode, press Escape or click the <emph>End Fill Mode</emph> command in the context menu."
+msgstr "<ahelp hid=\".uno:AuditingFillMode\">Activa el Modo de relleno del Detective. La forma del puntero del ratón se convierte un símbolo especial; al pulsar en cualquier celda se mostrará una flecha de rastreo a la celda precedente.</ahelp> Para salir de este modo, pulse la tecla Esc o haga clic en el comando <emph>Salir del modo de relleno</emph> del menú contextual."
+
+#: 06030700.xhp#par_id3151211.3.help.text
+msgid "The <emph>Fill Mode</emph> function is identical to the <link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedent\">Trace Precedent</link> command if you call this mode for the first time. Use the context menu to select further options for the Fill Mode and to exit this mode."
+msgstr "La función <emph>Modo de relleno</emph> es idéntica a la orden <link href=\"text/scalc/01/06030100.xhp\" name=\"Rastrear los precedentes\">Rastrear los precedentes</link> si se activa dicho modo por primera vez. Utilice el menú contextual para seleccionar opciones adicionales del modo de relleno y para salir de él."
+
+#: 05040000.xhp#tit.help.text
+msgctxt "05040000.xhp#tit.help.text"
+msgid "Column"
+msgstr "Columna"
+
+#: 05040000.xhp#hd_id3155628.1.help.text
+msgid "<link href=\"text/scalc/01/05040000.xhp\" name=\"Column\">Column</link>"
+msgstr "<link href=\"text/scalc/01/05040000.xhp\" name=\"Columna\">Columna</link>"
+
+#: 05040000.xhp#par_id3148946.2.help.text
+msgid "<ahelp hid=\".\">Sets the column width and hides or shows selected columns.</ahelp>"
+msgstr "<ahelp hid=\".\">Establece el ancho de la columna y oculta o muestra las columnas seleccionadas.</ahelp>"
+
+#: 05040000.xhp#hd_id3150398.3.help.text
+msgid "<link href=\"text/shared/01/05340200.xhp\" name=\"Width\">Width</link>"
+msgstr "<link href=\"text/shared/01/05340200.xhp\" name=\"Ancho...\">Ancho...</link>"
+
+#: 05040000.xhp#hd_id3145171.4.help.text
+msgid "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal Width\">Optimal Width</link>"
+msgstr "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimar ancho...\">Optimar ancho...</link>"
+
+#: 02140600.xhp#tit.help.text
+msgctxt "02140600.xhp#tit.help.text"
+msgid "Fill Series"
+msgstr "Rellenar series"
+
+#: 02140600.xhp#hd_id3148664.1.help.text
+msgctxt "02140600.xhp#hd_id3148664.1.help.text"
+msgid "Fill Series"
+msgstr "Rellenar series"
+
+#: 02140600.xhp#par_id3148797.2.help.text
+msgid "<variable id=\"reihenfuellentext\"><ahelp hid=\".uno:FillSeries\">Automatically generate series with the options in this dialog. Determine direction, increment, time unit and series type.</ahelp></variable>"
+msgstr "<variable id=\"reihenfuellentext\"><ahelp hid=\".uno:FillSeries\">Las opciones de este diálogo permiten crear series automáticamente. Puede definirse una dirección, un incremento, una unidad de tiempo o un tipo de serie.</ahelp></variable>"
+
+#: 02140600.xhp#par_id3146976.41.help.text
+msgid "Before filling a series, first select the cell range."
+msgstr "Antes de completar una serie, es preciso que esté seleccionada el área de celda que se va a rellenar."
+
+#: 02140600.xhp#par_id3145748.3.help.text
+msgid "To automatically continue a series using the assumed completion rules, choose the <emph>AutoFill</emph> option after opening the <emph>Fill Series</emph> dialog."
+msgstr "Si se utiliza la opción <emph>Serie</emph> con <emph>Relleno automático</emph>, $[officename] completa automáticamente las series comenzadas conforme a la ley de construcción de filas que supone."
+
+#: 02140600.xhp#hd_id3147435.4.help.text
+msgid "Direction"
+msgstr "Dirección"
+
+#: 02140600.xhp#par_id3154729.5.help.text
+msgid "Determines the direction of series creation."
+msgstr "Determina la dirección de creación de una serie."
+
+#: 02140600.xhp#hd_id3145253.6.help.text
+msgctxt "02140600.xhp#hd_id3145253.6.help.text"
+msgid "Down"
+msgstr "Abajo"
+
+#: 02140600.xhp#par_id3155418.7.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_BOTTOM\">Creates a downward series in the selected cell range for the column using the defined increment to the end value.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_BOTTOM\">Crea una serie en sentido descendente en el área de celdas seleccionada de la columna, utilizando el incremento definido hasta alcanzar el valor final.</ahelp>"
+
+#: 02140600.xhp#hd_id3155738.8.help.text
+msgctxt "02140600.xhp#hd_id3155738.8.help.text"
+msgid "Right"
+msgstr "Derecha"
+
+#: 02140600.xhp#par_id3149402.9.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_RIGHT\">Creates a series running from left to right within the selected cell range using the defined increment to the end value.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_RIGHT\">Crea una serie de izquierda a derecha en el área de celdas seleccionada, utilizando el incremento definido hasta alcanzar el valor final.</ahelp>"
+
+#: 02140600.xhp#hd_id3146972.10.help.text
+msgctxt "02140600.xhp#hd_id3146972.10.help.text"
+msgid "Up"
+msgstr "Arriba"
+
+#: 02140600.xhp#par_id3153711.11.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_TOP\">Creates an upward series in the cell range of the column using the defined increment to the end value.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_TOP\">Crea una serie en sentido ascendente en el área de celdas seleccionada de la columna, utilizando el incremento definido hasta alcanzar el valor final.</ahelp>"
+
+#: 02140600.xhp#hd_id3153764.12.help.text
+msgctxt "02140600.xhp#hd_id3153764.12.help.text"
+msgid "Left"
+msgstr "Izquierda"
+
+#: 02140600.xhp#par_id3156382.13.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_LEFT\">Creates a series running from right to left in the selected cell range using the defined increment to the end value.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_LEFT\">Crea una serie de derecha a izquierda en el área de celdas seleccionada, utilizando el incremento definido hasta alcanzar el valor final.</ahelp>"
+
+#: 02140600.xhp#hd_id3147344.14.help.text
+msgid "Series Type"
+msgstr "Tipo"
+
+#: 02140600.xhp#par_id3149257.15.help.text
+msgid "Defines the series type. Choose between <emph>Linear, Growth, Date </emph>and <emph>AutoFill</emph>."
+msgstr "Esta área permite elegir entre los tipos de fila <emph>Aritmético, Geométrico, Fecha</emph> y <emph>Relleno automático</emph>"
+
+#: 02140600.xhp#hd_id3148488.16.help.text
+msgid "Linear"
+msgstr "Aritmético"
+
+#: 02140600.xhp#par_id3159238.17.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_ARITHMETIC\">Creates a linear number series using the defined increment and end value.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_ARITHMETIC\">Crea una serie aritmética utilizando el incremento y el valor final definidos.</ahelp>"
+
+#: 02140600.xhp#hd_id3149210.18.help.text
+msgid "Growth"
+msgstr "Geométrico"
+
+#: 02140600.xhp#par_id3150364.19.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_GEOMETRIC\">Creates a growth series using the defined increment and end value.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_GEOMETRIC\">Crea una serie geométrica utilizando el incremento y el valor final definidos.</ahelp>"
+
+#: 02140600.xhp#hd_id3149528.20.help.text
+msgctxt "02140600.xhp#hd_id3149528.20.help.text"
+msgid "Date"
+msgstr "Fecha"
+
+#: 02140600.xhp#par_id3150887.21.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DATE\">Creates a date series using the defined increment and end date.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DATE\">Crea una serie de fechas utilizando el incremento y la fecha final definidos.</ahelp>"
+
+#: 02140600.xhp#hd_id3150202.22.help.text
+msgid "AutoFill"
+msgstr "Relleno automático"
+
+#: 02140600.xhp#par_id3156288.23.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_AUTOFILL\">Forms a series directly in the sheet.</ahelp> The AutoFill function takes account of customized lists. For example, by entering <emph>January</emph> in the first cell, the series is completed using the list defined under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists</emph>."
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_AUTOFILL\">Forma una serie directamente en la hoja.</ahelp> La función de \"Relleno automático\" toma en cuenta las listas personalizadas. Por ejemplo, al escribir <emph>enero</emph> en la primer celda, la serie se completa con la lista definida en <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline> Herramientas - Opciones</defaultinline></switchinline> - %PRODUCTNAME Calc - Listas ordenadas</emph>."
+
+#: 02140600.xhp#par_id3155811.24.help.text
+msgid "AutoFill tries to complete a value series by using a defined pattern. The series 1,3,5 is automatically completed with 7,9,11,13, and so on. Date and time series are completed accordingly; for example, after 01.01.99 and 15.01.99, an interval of 14 days is used."
+msgstr "Relleno automático intenta completar una serie de valores según un modelo definido. La serie 1,3,5 se completa automáticamente con 7,9,11,13, etc. Las series de fechas y horas se completan según corresponda; por ejemplo, después de 01.01.99 y 15.01.99 se emplea un intervalo de 14 días."
+
+#: 02140600.xhp#hd_id3148700.25.help.text
+msgid "Unit of Time"
+msgstr "Unidad de tiempo"
+
+#: 02140600.xhp#par_id3153308.26.help.text
+msgid "In this area you can specify the desired unit of time. This area is only active if the <emph>Date</emph> option has been chosen in the <emph>Series type</emph> area."
+msgstr "En esta área se puede especificar la unidad de tiempo deseada. Esta área sólo se activa si se ha seleccionado la opción <emph>Fecha</emph> en el área <emph>Tipo</emph>."
+
+#: 02140600.xhp#hd_id3148868.27.help.text
+msgid "Day"
+msgstr "Día"
+
+#: 02140600.xhp#par_id3148605.28.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY\">Use the <emph>Date</emph> series type and this option to create a series using seven days.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY\">Utilice el tipo de serie <emph>Fecha</emph> y esta opción para crear una serie con intervalo de siete días.</ahelp>"
+
+#: 02140600.xhp#hd_id3144771.29.help.text
+msgid "Weekday"
+msgstr "Día de la semana"
+
+#: 02140600.xhp#par_id3150108.30.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY_OF_WEEK\">Use the <emph>Date</emph> series type and this option to create a series of five day sets.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY_OF_WEEK\">Utilice el tipo de serie <emph>Fecha</emph> y esta opción para crear una serie con intervalo de cinco días.</ahelp>"
+
+#: 02140600.xhp#hd_id3154957.31.help.text
+msgid "Month"
+msgstr "Mes"
+
+#: 02140600.xhp#par_id3149126.32.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_MONTH\">Use the <emph>Date</emph> series type and this option to form a series from the names or abbreviations of the months.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_MONTH\">Utilice el tipo de serie <emph>Fecha</emph> y esta opción para crear una serie a partir de los nombres o abreviaturas de los meses.</ahelp>"
+
+#: 02140600.xhp#hd_id3152870.33.help.text
+msgid "Year"
+msgstr "Año"
+
+#: 02140600.xhp#par_id3151300.34.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_YEAR\">Use the <emph>Date</emph> series type and this option to create a series of years.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_YEAR\">Utilice el tipo de serie <emph>Fecha</emph> y esta opción para crear una serie con números de años.</ahelp>"
+
+#: 02140600.xhp#hd_id3154762.35.help.text
+msgid "Start Value"
+msgstr "Valor inicial"
+
+#: 02140600.xhp#par_id3149381.36.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_START_VALUES\">Determines the start value for the series.</ahelp> Use numbers, dates or times."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_START_VALUES\">Determina el valor inicial de la serie.</ahelp> Utilice números, fechas u horas."
+
+#: 02140600.xhp#hd_id3153013.37.help.text
+msgid "End Value"
+msgstr "Valor final"
+
+#: 02140600.xhp#par_id3153487.38.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_END_VALUES\">Determines the end value for the series.</ahelp> Use numbers, dates or times."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_END_VALUES\">Determina el valor final de la serie.</ahelp> Utilice números, fechas u horas."
+
+#: 02140600.xhp#hd_id3149312.39.help.text
+msgid "Increment"
+msgstr "Incremento"
+
+#: 02140600.xhp#par_id3154739.40.help.text
+msgid "The term \"increment\" denotes the amount by which a given value increases.<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_INCREMENT\"> Determines the value by which the series of the selected type increases by each step.</ahelp> Entries can only be made if the linear, growth or date series types have been selected."
+msgstr "El término \"incremento\" se refiere a la cantidad en la que aumenta un valor determinado.<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_INCREMENT\"> Determina el valor en el que se incrementa con cada paso la serie del tipo seleccionado.</ahelp> Sólo se pueden generar entradas si se ha seleccionado uno de los tipos de serie siguientes: aritmético, geométrico o fecha."
+
+#: 06060000.xhp#tit.help.text
+msgid "Protect Document"
+msgstr "Proteger documento"
+
+#: 06060000.xhp#hd_id3148946.1.help.text
+msgid "<link href=\"text/scalc/01/06060000.xhp\" name=\"Protect Document\">Protect Document</link>"
+msgstr "<link href=\"text/scalc/01/06060000.xhp\" name=\"Proteger documento\">Proteger documento</link>"
+
+#: 06060000.xhp#par_id3153362.2.help.text
+msgid "The<emph> Protect Document </emph>command prevents changes from being made to cells in the sheets or to sheets in a document. As an option, you can define a password. If a password is defined, removal of the protection is only possible if the user enters the correct password."
+msgstr "El comando <emph>Proteger documento</emph> impide realizar cambios en las celdas de las hojas o las hojas de un documento. De forma opcional, puede definir una contraseña. Si se define una contraseña, sólo es posible eliminar la protección introduciendo la contraseña correcta."
+
+#: 06060000.xhp#hd_id3147228.3.help.text
+msgid "<link href=\"text/scalc/01/06060100.xhp\" name=\"Sheets\">Sheets</link>"
+msgstr "<link href=\"text/scalc/01/06060100.xhp\" name=\"Hojas\">Hojas</link>"
+
+#: 06060000.xhp#hd_id3153768.4.help.text
+msgid "<link href=\"text/scalc/01/06060200.xhp\" name=\"Documents\">Documents</link>"
+msgstr "<link href=\"text/scalc/01/06060200.xhp\" name=\"Documento...\">Documento...</link>"
+
+#: 06060000.xhp#par_idN10622.help.text
+msgid "<embedvar href=\"text/scalc/guide/cell_protect.xhp#cell_protect\"/>"
+msgstr "<embedvar href=\"text/scalc/guide/cell_protect.xhp#cell_protect\"/>"
+
+#: 12070000.xhp#tit.help.text
+msgctxt "12070000.xhp#tit.help.text"
+msgid "Consolidate"
+msgstr "Consolidar"
+
+#: 12070000.xhp#hd_id3148946.1.help.text
+msgctxt "12070000.xhp#hd_id3148946.1.help.text"
+msgid "Consolidate"
+msgstr "Consolidar"
+
+#: 12070000.xhp#par_id3148798.2.help.text
+msgid "<variable id=\"konsolidieren\"><ahelp hid=\".uno:DataConsolidate\">Combines data from one or more independent cell ranges and calculates a new range using the function that you specify.</ahelp></variable>"
+msgstr "<variable id=\"konsolidieren\"><ahelp hid=\".uno:DataConsolidate\">Combina datos de una o más áreas de celdas independientes, y calcula un área nueva mediante la función especificada.</ahelp></variable>"
+
+#: 12070000.xhp#hd_id3150010.8.help.text
+msgctxt "12070000.xhp#hd_id3150010.8.help.text"
+msgid "Function"
+msgstr "Función"
+
+#: 12070000.xhp#par_id3149377.9.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONSOLIDATE:LB_FUNC\">Select the function that you want to use to consolidate the data.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONSOLIDATE:LB_FUNC\">Seleccione la función que desee utilizar para consolidar los datos.</ahelp>"
+
+#: 12070000.xhp#hd_id3147127.10.help.text
+msgid "Consolidation ranges"
+msgstr "Áreas de consolidación"
+
+#: 12070000.xhp#par_id3151075.11.help.text
+msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_CONSOLIDATE:LB_CONSAREAS\">Displays the cell ranges that you want to consolidate.</ahelp>"
+msgstr "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_CONSOLIDATE:LB_CONSAREAS\">Muestra las áreas de celdas que se desea consolidar.</ahelp>"
+
+#: 12070000.xhp#hd_id3147397.12.help.text
+msgid "Source data range"
+msgstr "Área de datos fuente"
+
+#: 12070000.xhp#par_id3153836.13.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DATA_AREA\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DATA_AREA\">Especifica el área de datos que se desea consolidar con las áreas enumeradas en el cuadro <emph>Áreas de consolidación</emph>. Seleccione un área de celdas de una hoja y pulse <emph>Agregar</emph>. También puede seleccionar un nombre de celda predefinido en la lista <emph>Área de datos de origen</emph>.</ahelp>"
+
+#: 12070000.xhp#hd_id3155768.15.help.text
+msgctxt "12070000.xhp#hd_id3155768.15.help.text"
+msgid "Copy results to"
+msgstr "Resultado a partir de"
+
+#: 12070000.xhp#par_id3147341.16.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DEST_AREA\">Displays the first cell in the range where the consolidation results will be displayed.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DEST_AREA\">Muestra la primera celda del área en la que aparecerán los resultados de la consolidación.</ahelp>"
+
+#: 12070000.xhp#hd_id3147345.17.help.text
+msgctxt "12070000.xhp#hd_id3147345.17.help.text"
+msgid "Add"
+msgstr "Agregar"
+
+#: 12070000.xhp#par_id3155335.18.help.text
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_CONSOLIDATE:BTN_ADD\">Adds the cell range specified in the <emph>Source data range</emph> box to the <emph>Consolidation ranges </emph>box.</ahelp>"
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_CONSOLIDATE:BTN_ADD\">Agrega la celda especificada en el cuadro <emph>Área de datos de origen</emph> al cuadro <emph>Áreas de consolidación</emph>.</ahelp>"
+
+#: 12070000.xhp#hd_id3148630.19.help.text
+msgctxt "12070000.xhp#hd_id3148630.19.help.text"
+msgid "More >>"
+msgstr "Opciones >>"
+
+#: 12070000.xhp#par_id3159239.20.help.text
+msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_CONSOLIDATE:BTN_MORE\">Shows additional <link href=\"text/scalc/01/12070100.xhp\" name=\"options\">options</link>.</ahelp>"
+msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_CONSOLIDATE:BTN_MORE\">Muestra opciones <link href=\"text/scalc/01/12070100.xhp\" name=\"\">opciones</link> adicionales.</ahelp>"
+
+#: 06030500.xhp#tit.help.text
+msgid "Remove All Traces"
+msgstr "Eliminar todos los rastros"
+
+#: 06030500.xhp#bm_id3153088.help.text
+msgid "<bookmark_value>cells; removing traces</bookmark_value>"
+msgstr "<bookmark_value>celdas;eliminar rastros</bookmark_value>"
+
+#: 06030500.xhp#hd_id3153088.1.help.text
+msgid "<link href=\"text/scalc/01/06030500.xhp\" name=\"Remove All Traces\">Remove All Traces</link>"
+msgstr " <link href=\"text/scalc/01/06030500.xhp\" name=\"Eliminar todos los rastros\">Eliminar todos los rastros</link>"
+
+#: 06030500.xhp#par_id3151246.2.help.text
+msgid "<ahelp hid=\".uno:ClearArrows\" visibility=\"visible\">Removes all tracer arrows from the spreadsheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:ClearArrows\" visibility=\"visible\">Se eliminan de la hoja todas las flechas de rastreo.</ahelp>"
+
+#: 04040000.xhp#tit.help.text
+msgctxt "04040000.xhp#tit.help.text"
+msgid "Columns"
+msgstr "Columnas"
+
+#: 04040000.xhp#bm_id3155628.help.text
+msgid "<bookmark_value>spreadsheets; inserting columns</bookmark_value><bookmark_value>inserting; columns</bookmark_value><bookmark_value>columns; inserting</bookmark_value>"
+msgstr "<bookmark_value>hojas de cálculo;insertar columnas</bookmark_value><bookmark_value>insertar;columnas</bookmark_value><bookmark_value>columnas;insertar</bookmark_value>"
+
+#: 04040000.xhp#hd_id3155628.1.help.text
+msgid "<link href=\"text/scalc/01/04040000.xhp\" name=\"Columns\">Columns</link>"
+msgstr " <link href=\"text/scalc/01/04040000.xhp\" name=\"Columns\">Columnas</link>"
+
+#: 04040000.xhp#par_id3150791.2.help.text
+msgid "<ahelp hid=\".uno:InsertColumns\">Inserts a new column to the left of the active cell.</ahelp> The number of columns inserted corresponds to the number of columns selected. The existing columns are moved to the right."
+msgstr "<ahelp hid=\".uno:InsertColumns\">Inserta una columna nueva a la izquierda de la celda activa.</ahelp>El número de columnas insertadas corresponde al número de columnas seleccionadas. Las columnas actuales se desplazan hacia la derecha."
+
+#: 02120000.xhp#tit.help.text
+msgctxt "02120000.xhp#tit.help.text"
+msgid "Headers & Footers"
+msgstr "Encabezados y pies de página"
+
+#: 02120000.xhp#hd_id3145251.1.help.text
+msgctxt "02120000.xhp#hd_id3145251.1.help.text"
+msgid "Headers & Footers"
+msgstr "Encabezados y pies de página"
+
+#: 02120000.xhp#par_id3151073.2.help.text
+msgid "<variable id=\"kopfundfusszeilentext\"><ahelp hid=\".uno:EditHeaderAndFooter\">Allows you to define and format headers and footers.</ahelp></variable>"
+msgstr "<variable id=\"kopfundfusszeilentext\"><ahelp hid=\".uno:EditHeaderAndFooter\">Permite definir y dar formato a los encabezados y pies de página.</ahelp></variable>"
+
+#: 02120000.xhp#par_id3153415.3.help.text
+msgid "The<emph> Headers/Footers </emph>dialog contains the tabs for defining headers and footers. There will be separate tabs for the left and right page headers and footers if the <emph>Same content left/right</emph> option was not marked in the <link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\">Page Style</link> dialog."
+msgstr "El diálogo <emph> Encabezados/Pie de página </emph> contiene pestañas para la definición de encabezados y pies de página. Si ha seleccionado la opción <emph>Contenido a la izquierda/derecha igual</emph> en el diálogo <link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\">Estilo de página</link> se mostrarán pestañas independientes para los encabezamientos y pies de las páginas izquierda y derecha."
+
+#: 05080400.xhp#tit.help.text
+msgctxt "05080400.xhp#tit.help.text"
+msgid "Add"
+msgstr "Agregar"
+
+#: 05080400.xhp#hd_id3149457.1.help.text
+msgid "<link href=\"text/scalc/01/05080400.xhp\" name=\"Add\">Add</link>"
+msgstr "<link href=\"text/scalc/01/05080400.xhp\" name=\"Add\">Agregar</link>"
+
+#: 05080400.xhp#par_id3156423.2.help.text
+msgid "<ahelp hid=\".uno:AddPrintArea\">Adds the current selection to the defined print areas.</ahelp>"
+msgstr "<ahelp hid=\".uno:AddPrintArea\">Agrega la selección actual a las áreas de impresión definidas.</ahelp>"
+
+#: 06030200.xhp#tit.help.text
+msgid "Remove Precedents"
+msgstr "Eliminar rastro al precedente"
+
+#: 06030200.xhp#bm_id3155628.help.text
+msgid "<bookmark_value>cells; removing precedents</bookmark_value><bookmark_value>formula cells;removing precedents</bookmark_value>"
+msgstr "<bookmark_value>celdas;eliminar rastro al precedente</bookmark_value><bookmark_value>celdas de fórmulas;eliminar precedentes</bookmark_value>"
+
+#: 06030200.xhp#hd_id3155628.1.help.text
+msgid "<link href=\"text/scalc/01/06030200.xhp\" name=\"Remove Precedents\">Remove Precedents</link>"
+msgstr "<link href=\"text/scalc/01/06030200.xhp\" name=\"Rastrear los precedentes\">Rastrear los precedentes</link>"
+
+#: 06030200.xhp#par_id3149456.2.help.text
+msgid "<ahelp hid=\".uno:ClearArrowPrecedents\">Deletes one level of the trace arrows that were inserted with the <emph>Trace Precedents</emph> command.</ahelp>"
+msgstr "<ahelp hid=\".uno:ClearArrowPrecedents\">Borra un nivel de las flechas de rastreo insertadas mediante el comando <emph>Rastrear los precedentes</emph>.</ahelp>"
+
+#: 02140300.xhp#tit.help.text
+msgctxt "02140300.xhp#tit.help.text"
+msgid "Up"
+msgstr "Arriba"
+
+#: 02140300.xhp#hd_id3147264.1.help.text
+msgid "<link href=\"text/scalc/01/02140300.xhp\" name=\"Up\">Up</link>"
+msgstr "<link href=\"text/scalc/01/02140300.xhp\" name=\"Up\">Arriba</link>"
+
+#: 02140300.xhp#par_id3150793.2.help.text
+msgid "<ahelp hid=\".uno:FillUp\" visibility=\"visible\">Fills a selected range of at least two rows with the contents of the bottom most cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:FillUp\" visibility=\"visible\">Rellena un área seleccionada con un mínimo de dos filas con el contenido de la celda situada en el extremo inferior del área.</ahelp>"
+
+#: 02140300.xhp#par_id3150447.3.help.text
+msgid "If a selected range has only one column, the content of the bottom most cell is copied into the selected cells. If several columns are selected, the contents of the bottom most cells are copied into those selected above."
+msgstr "Si se selecciona un área con una sola columna, el contenido de la última celda se copia en todas las celdas del área seleccionada. Si se seleccionan varias columnas, la última celda de cada columna se copia en las celdas superiores."
+
+#: 04060107.xhp#tit.help.text
+msgctxt "04060107.xhp#tit.help.text"
+msgid "Array Functions"
+msgstr "Funciones de matriz"
+
+#: 04060107.xhp#bm_id3147273.help.text
+msgid "<bookmark_value>matrices; functions</bookmark_value><bookmark_value>Function Wizard; arrays</bookmark_value><bookmark_value>array formulas</bookmark_value><bookmark_value>inline array constants</bookmark_value><bookmark_value>formulas;arrays</bookmark_value><bookmark_value>functions;array functions</bookmark_value><bookmark_value>editing; array formulas</bookmark_value><bookmark_value>copying; array formulas</bookmark_value><bookmark_value>adjusting array ranges</bookmark_value><bookmark_value>calculating;conditional calculations</bookmark_value><bookmark_value>matrices; calculations</bookmark_value><bookmark_value>conditional calculations with arrays</bookmark_value><bookmark_value>implicit array handling</bookmark_value><bookmark_value>forced array handling</bookmark_value>"
+msgstr "<bookmark_value>matrices; funciones</bookmark_value><bookmark_value>Asistente para Funciones; matrices</bookmark_value><bookmark_value>formulas de matriz</bookmark_value><bookmark_value> constantes de matrices en-línea</bookmark_value><bookmark_value>formulas;matrices</bookmark_value><bookmark_value>funciones;funciones de matriz</bookmark_value><bookmark_value>editando; formulas matrices</bookmark_value><bookmark_value>copiando; formulas de matrices</bookmark_value><bookmark_value>ajustando rangos de matrices</bookmark_value><bookmark_value>calculando;calculaciones matricial</bookmark_value><bookmark_value>matrices; </bookmark_value><bookmark_value>calculaciones condicional con matrices</bookmark_value><bookmark_value> manejo implícito de matrices</bookmark_value><bookmark_value>manejo de matrices forzados</bookmark_value>"
+
+#: 04060107.xhp#hd_id3147273.1.help.text
+msgctxt "04060107.xhp#hd_id3147273.1.help.text"
+msgid "Array Functions"
+msgstr "Funciones de matriz"
+
+#: 04060107.xhp#par_id3154744.2.help.text
+msgid "<variable id=\"matrixtext\">This category contains the array functions. </variable>"
+msgstr "<variable id=\"matrixtext\">Esta categoría contiene las funciones de matriz. </variable>"
+
+#: 04060107.xhp#hd_id3146084.257.help.text
+msgid "What is an Array?"
+msgstr "¿Qué es una matriz?"
+
+#: 04060107.xhp#par_id3154298.258.help.text
+msgid "<variable id=\"wasmatrix\">An array is a linked range of cells on a spreadsheet containing values. </variable> A square range of 3 rows and 3 columns is a 3 x 3 array:"
+msgstr "<variable id=\"wasmatrix\">Una matriz es un área de celdas vinculada de una hoja de cálculo, cuyas celdas contienen valores. </variable> Un área cuadrada de 3 filas y 3 columnas es una matriz de 3 x 3:"
+
+#: 04060107.xhp#par_id3154692.260.help.text
+msgctxt "04060107.xhp#par_id3154692.260.help.text"
+msgid "A"
+msgstr "A"
+
+#: 04060107.xhp#par_id3150117.261.help.text
+msgctxt "04060107.xhp#par_id3150117.261.help.text"
+msgid "B"
+msgstr "B"
+
+#: 04060107.xhp#par_id3155325.262.help.text
+msgctxt "04060107.xhp#par_id3155325.262.help.text"
+msgid "C"
+msgstr "C"
+
+#: 04060107.xhp#par_id3153104.263.help.text
+msgctxt "04060107.xhp#par_id3153104.263.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060107.xhp#par_id3146996.264.help.text
+msgctxt "04060107.xhp#par_id3146996.264.help.text"
+msgid "<item type=\"input\">7</item>"
+msgstr "<item type=\"input\">7</item>"
+
+#: 04060107.xhp#par_id3150529.265.help.text
+msgid "<item type=\"input\">31</item>"
+msgstr "<item type=\"input\">31</item>"
+
+#: 04060107.xhp#par_id3148831.266.help.text
+msgctxt "04060107.xhp#par_id3148831.266.help.text"
+msgid "<item type=\"input\">33</item>"
+msgstr "<item type=\"input\">33</item>"
+
+#: 04060107.xhp#par_id3148943.267.help.text
+msgctxt "04060107.xhp#par_id3148943.267.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060107.xhp#par_id3149771.268.help.text
+msgid "<item type=\"input\">95</item>"
+msgstr "<item type=\"input\">95</item>"
+
+#: 04060107.xhp#par_id3158407.269.help.text
+msgctxt "04060107.xhp#par_id3158407.269.help.text"
+msgid "<item type=\"input\">17</item>"
+msgstr "<item type=\"input\">17</item>"
+
+#: 04060107.xhp#par_id3148806.270.help.text
+msgctxt "04060107.xhp#par_id3148806.270.help.text"
+msgid "<item type=\"input\">2</item>"
+msgstr "<item type=\"input\">2</item>"
+
+#: 04060107.xhp#par_id3154904.271.help.text
+msgctxt "04060107.xhp#par_id3154904.271.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060107.xhp#par_id3150779.272.help.text
+msgctxt "04060107.xhp#par_id3150779.272.help.text"
+msgid "<item type=\"input\">5</item>"
+msgstr "<item type=\"input\">5</item>"
+
+#: 04060107.xhp#par_id3148449.273.help.text
+msgctxt "04060107.xhp#par_id3148449.273.help.text"
+msgid "<item type=\"input\">10</item>"
+msgstr "<item type=\"input\">10</item>"
+
+#: 04060107.xhp#par_id3147238.274.help.text
+msgid "<item type=\"input\">50</item>"
+msgstr "<item type=\"input\">50</item>"
+
+#: 04060107.xhp#par_id3153583.277.help.text
+msgid "The smallest possible array is a 1 x 2 or 2 x 1 array with two adjacent cells."
+msgstr "La mínima matriz posible son dos celdas adyacentes, 1 x 2 o 2 x 1."
+
+#: 04060107.xhp#hd_id3148474.275.help.text
+msgid "What is an array formula?"
+msgstr "¿Qué es una fórmula de matriz?"
+
+#: 04060107.xhp#par_id3155355.276.help.text
+msgid "A formula in which the individual values in a cell range are evaluated is referred to as an array formula. The difference between an array formula and other formulas is that the array formula deals with several values simultaneously instead of just one."
+msgstr "Se denomina fórmula de matriz la que permite evaluar los valores individuales de un área de celdas. La diferencia entre una fórmula de matriz y otro tipo de fórmula es que aquélla no emplea un único valor, sino varios valores simultáneamente."
+
+#: 04060107.xhp#par_id3151052.278.help.text
+msgid "Not only can an array formula process several values, but it can also return several values. The results of an array formula is also an array."
+msgstr "Una fórmula de matriz no sólo puede procesar varios valores, sino también devolver varios resultados. El resultado de una fórmula de matriz también es una matriz."
+
+#: 04060107.xhp#par_id3158432.279.help.text
+msgid "To multiply the values in the individual cells by 10 in the above array, you do not need to apply a formula to each individual cell or value. Instead you just need to use a single array formula. Select a range of 3 x 3 cells on another part of the spreadsheet, enter the formula <item type=\"input\">=10*A1:C3</item> and confirm this entry using the key combination <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter. The result is a 3 x 3 array in which the individual values in the cell range (A1:C3) are multiplied by a factor of 10."
+msgstr "Para multiplicar los valores por 10 de las celdas individuales de la matriz de arriba, no necesita aplicar una fórmula para cada celda o valor individual. En su lugar necesita usar una simple formula de matriz. Seleccione un rango de 3 x 3 celdas en otra parte de la hoja de cálculo, ingrese la fórmula <item type=\"input\">=10*A1:C3</item> y confirme esta entrada usando la combinación de teclas <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter. El resultado es una matríz de 3 x 3 en el cual cada valor individual en el rango de celda (A1:C3) son multiplicados por 10."
+
+#: 04060107.xhp#par_id3149156.280.help.text
+msgid "In addition to multiplication, you can also use other operators on the reference range (an array). With $[officename] Calc, you can add (+), subtract (-), multiply (*), divide (/), use exponents (^), concatenation (&) and comparisons (=, <>, <, >, <=, >=). The operators can be used on each individual value in the cell range and return the result as an array if the array formula was entered."
+msgstr "Se pueden utilizar otros operadores, aparte de la multiplicación, en el área (matriz) de referencia. $[officename] Calc permite sumar (+), restar (-), multiplicar (*), dividir (/), elevar a potencias (^), concatenar (&) y comparar (=, <>, <, >, <=, >=). Los operadores se pueden utilizar en cada uno de los valores individuales del área de celdas; devuelven el resultado en forma de matriz, si la fórmula se ha escrito como fórmula de matriz."
+
+#: 04060107.xhp#par_id3166456.326.help.text
+msgid "Comparison operators in an array formula treat empty cells in the same way as in a normal formula, that is, either as zero or as an empty string. For example, if cells A1 and A2 are empty the array formulas <item type=\"input\">{=A1:A2=\"\"}</item> and <item type=\"input\">{=A1:A2=0}</item> will both return a 1 column 2 row array of cells containing TRUE."
+msgstr "Comparativa de operadores en una formula natriz trata las celdas vacias de la misma manera que en una formula normal, eso es, tanto como cero o como una cadena vacia. Por ejemplo, si las celdas A1 y A2 estan vacias en las formulas <item type=\"input\">{=A1:A2=\"\"}</item> y <item type=\"input\">{=A1:A2=0}</item> ambas regresan 1 columan 2 filas de matriz y celdas conteniendo VERDADERO."
+
+#: 04060107.xhp#hd_id3150713.281.help.text
+msgid "When do you use array formulas?"
+msgstr "¿Cuándo se deben utilizar fórmulas de matriz?"
+
+#: 04060107.xhp#par_id3149787.282.help.text
+msgid "Use array formulas if you have to repeat calculations using different values. If you decide to change the calculation method later, you only have to update the array formula. To add an array formula, select the entire array range and then <link href=\"text/scalc/01/04060107.xhp\" name=\"make the required change to the array formula\">make the required change to the array formula</link>."
+msgstr "Utilice fórmulas de matriz si debe repetir los mismos cálculos con valores distintos. Si más adelante decide cambiar el método de cálculo, sólo deberá modificar la fórmula de matriz. Para agregar una fórmula de matriz, seleccione toda la matriz y <link href=\"text/scalc/01/04060107.xhp\" name=\"make the required change to the array formula\">haga los cambios necesarios en la fórmula</link>."
+
+#: 04060107.xhp#par_id3149798.283.help.text
+msgid "Array formulas are also a space saving option when several values must be calculated, since they are not very memory-intensive. In addition, arrays are an essential tool for carrying out complex calculations, because you can have several cell ranges included in your calculations. $[officename] has different math functions for arrays, such as the MMULT function for multiplying two arrays or the SUMPRODUCT function for calculating the scalar products of two arrays."
+msgstr "Las fórmulas de matriz representan un ahorro de espacio cuando se deben calcular muchos valores, ya que utilizan una cantidad reducida de memoria. Asimismo, las matrices son una herramienta fundamental para llevar a cabo cálculos complejos, ya que permiten incluir varias áreas de celdas en los cálculos. $[officename] dispone de diversas funciones matemáticas para matrices, como la función MMULT para multiplicar dos matrices o SUMA.PRODUCTO para calcular el producto escalar de dos matrices."
+
+#: 04060107.xhp#hd_id3155588.284.help.text
+msgid "Using Array Formulas in $[officename] Calc"
+msgstr "Uso de fórmulas de matriz en $[officename] Calc"
+
+#: 04060107.xhp#par_id3152876.285.help.text
+msgid "You can also create a \"normal\" formula in which the reference range, such as parameters, indicate an array formula. The result is obtained from the intersection of the reference range and the rows or columns in which the formula is found. If there is no intersection or if the range at the intersection covers several rows or columns, a #VALUE! error message appears. The following example illustrates this concept:"
+msgstr "También se puede crear una fórmula \"normal\" en la que el área de referencia, como los parámetros, indique una fórmula de matriz. El resultado se obtiene de la intersección del rango de referencia y de las filas o columnas en las que se encuentra la fórmula. Si no hay intersección o si el área de la intersección abarca varias filas o columnas se mostrará un mensaje de error #VALOR!. En el ejemplo siguiente se ilustra este concepto:"
+
+#: 04060107.xhp#hd_id3151271.313.help.text
+msgid "Creating Array Formulas"
+msgstr "Crear fórmulas de matriz"
+
+#: 04060107.xhp#par_id3149102.314.help.text
+msgid "If you create an array formula using the <emph>Function Wizard</emph>, you must mark the <emph>Array</emph> check box each time so that the results are returned in an array. Otherwise, only the value in the upper-left cell of the array being calculated is returned."
+msgstr "Para crear una fórmula de matriz mediante el <emph>Asistente para funciones</emph>, deberá seleccionar la casilla de verificación <emph>Matriz</emph> para que los resultados se devuelvan en una matriz. En caso contrario, sólo se devolverá el valor correspondiente a la celda superior izquierda de la matriz."
+
+#: 04060107.xhp#par_id3153392.4.help.text
+msgid "If you enter the array formula directly into the cell, you must use the key combination Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter instead of the Enter key. Only then does the formula become an array formula."
+msgstr "Si escribe la fórmula de matriz directamente en la celda, se deberá utilizar la combinación de teclas Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter, en lugar de la tecla Enter. Solo entonces la formula se convertirá en una formula de matriz."
+
+#: 04060107.xhp#par_id3151120.315.help.text
+msgid "Array formulas appear in braces in $[officename] Calc. You cannot create array formulas by manually entering the braces."
+msgstr "Las fórmulas de matriz se muestran en $[officename] Calc entre llaves. No es posible crear fórmulas de matriz escribiendo las llaves manualmente."
+
+#: 04060107.xhp#par_id3154342.5.help.text
+msgid "The cells in a results array are automatically protected against changes. However, you can edit or copy the array formula by selecting the entire array cell range."
+msgstr "Las celdas de una matriz de resultados están automáticamente protegidas contra modificaciones. No obstante, puede editar o copiar la fórmula de matriz si selecciona toda el área de celdas de la matriz."
+
+#: 04060107.xhp#hd_id8834803.help.text
+msgid "Using Inline Array Constants in Formulas"
+msgstr "Utilizando Constantes de Matrices En línea en Formulas"
+
+#: 04060107.xhp#par_id985747.help.text
+msgid "Calc supports inline matrix/array constants in formulas. An inline array is surrounded by curly braces '{' and '}'. Elements can be each a number (including negatives), a logical constant (TRUE, FALSE), or a literal string. Non-constant expressions are not allowed. Arrays can be entered with one or more rows, and one or more columns. All rows must consist of the same number of elements, all columns must consist of the same number of elements. "
+msgstr "Calc apoya constantes de matrices en línea en formulas. Un matriz en línea es rodeado por llaves, '{' y '}'. Los elementos puede ser cada una un número (incluso negativos), una constante lógica (TRUE, FALSE), o una cadena literal. Expresiones no-constantes no están permitido. Los matrices puede ser entrada en una ó más filas, y una ó más columnas. Todas las filas tiene que tener igual número de elementos, todos columnas debe consista de la misma número de elementos."
+
+#: 04060107.xhp#par_id936613.help.text
+msgid "The column separator (separating elements in one row) and the row separator are language and locale dependent. But in this help content, the ';' semicolon and '|' pipe symbol are used to indicate the column and row separators, respectively. For example, in the English locale, the ',' comma is used as the column separator, while the ';' semicolon is used as the row separator."
+msgstr ""
+
+#: 04060107.xhp#par_id1877498.help.text
+msgid "Arrays can not be nested."
+msgstr "Los matrices no pueden ser anidados."
+
+#: 04060107.xhp#par_id4262520.help.text
+msgid "<emph>Examples:</emph>"
+msgstr "<emph>Ejemplo:</emph>"
+
+#: 04060107.xhp#par_id9387493.help.text
+msgid "={1;2;3}"
+msgstr "={1;2;3}"
+
+#: 04060107.xhp#par_id8207037.help.text
+msgid "An array with one row consisting of the three numbers 1, 2, and 3."
+msgstr "Un matriz de una fila que consiste de tres números: 1, 2, y 3."
+
+#: 04060107.xhp#par_id6757103.help.text
+msgid "To enter this array constant, you select three cells in a row, then you type the formula <item type=\"input\">={1;2;3}</item> using the curly braces and the semicolons, then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter."
+msgstr "Para ingresar esta matriz como constante, se selecciona tres celdas en una fila, luego se escribe la formula <item type=\"input\">={1;2;3}</item> usando llaves, punto y comas, luego presionar <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter."
+
+#: 04060107.xhp#par_id8868068.help.text
+msgid "={1;2;3|4;5;6}"
+msgstr "={1;2;3|4;5;6}"
+
+#: 04060107.xhp#par_id6626483.help.text
+msgid "An array with two rows and three values in each row."
+msgstr "Un matriz con dos filas y tres valores en cada fila."
+
+#: 04060107.xhp#par_id5262916.help.text
+msgid "={0;1;2|FALSE;TRUE;\"two\"}"
+msgstr "={0;1;2|FALSE;TRUE;\"dos\"}"
+
+#: 04060107.xhp#par_id1623889.help.text
+msgid "A mixed data array."
+msgstr "Un matriz con datos mixtos."
+
+#: 04060107.xhp#par_id7781914.help.text
+msgid "=SIN({1;2;3})"
+msgstr "=SIN({1;2;3})"
+
+#: 04060107.xhp#par_id300912.help.text
+msgid "Entered as a matrix formula, delivers the result of three SIN calculations with the arguments 1, 2, and 3."
+msgstr "Entrado como un formula matriz, retorno el resulto de tres calculaciones de SIN con los argumentos 1, 2, y 3."
+
+#: 04060107.xhp#hd_id3148660.316.help.text
+msgid "Editing Array Formulas"
+msgstr "Editar fórmulas de matriz"
+
+#: 04060107.xhp#par_id3149241.317.help.text
+msgid "Select the cell range or array containing the array formula. To select the whole array, position the cell cursor inside the array range, then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+/, where / is the Division key on the numeric keypad."
+msgstr ""
+
+#: 04060107.xhp#par_id3143274.318.help.text
+msgid "Either press F2 or position the cursor in the input line. Both of these actions let you edit the formula."
+msgstr "Pulse F2 o coloque el cursor en la línea de entrada. Ambas acciones permiten editar la fórmula."
+
+#: 04060107.xhp#par_id3154798.319.help.text
+msgid "After you have made changes, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter."
+msgstr "Una vez efectuados los cambios, pulse <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Control</defaultinline></switchinline> + Shift + Intro."
+
+#: 04060107.xhp#par_id3150628.334.help.text
+msgid "You can format the separate parts of an array. For example, you can change the font color. Select a cell range and then change the attribute you want."
+msgstr "Se pueden formatear las distintas partes de una matriz. Se puede, por ejemplo, cambiar el color del tipo de letra. Seleccione un área de celdas y cambie el atributo que desee."
+
+#: 04060107.xhp#hd_id3145608.320.help.text
+msgid "Copying Array Formulas"
+msgstr "Copiar fórmulas de matriz"
+
+#: 04060107.xhp#par_id3149585.321.help.text
+msgctxt "04060107.xhp#par_id3149585.321.help.text"
+msgid "Select the cell range or array containing the array formula."
+msgstr "Seleccione el área de celdas o la matriz que contengan la fórmula de matriz."
+
+#: 04060107.xhp#par_id3154619.322.help.text
+msgid "Either press F2 or position the cursor in the input line."
+msgstr "Pulse F2 o coloque el cursor en la línea de entrada."
+
+#: 04060107.xhp#par_id3150994.323.help.text
+msgid "Copy the formula into the input line by pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C."
+msgstr "Copie la fórmula en la línea de entrada pulsando <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Control</defaultinline></switchinline> + C."
+
+#: 04060107.xhp#par_id3146787.324.help.text
+msgid "Select a range of cells where you want to insert the array formula and either press F2 or position the cursor in the input line."
+msgstr "Seleccione el área de celdas donde desea insertar la fórmula de matriz y pulse F2 o sitúe el cursor en la línea de entrada."
+
+#: 04060107.xhp#par_id3154419.325.help.text
+msgid "Paste the formula by pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V in the selected space and confirm it by pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter. The selected range now contains the array formula."
+msgstr "Pegue la fórmula pulsando <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Control</defaultinline></switchinline> + V en el lugar seleccionado y confirme pulsando <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Control</defaultinline></switchinline> + Shift + Intro. El área seleccionada contiene ahora la fórmula de matriz."
+
+#: 04060107.xhp#hd_id3154834.328.help.text
+msgid "Adjusting an Array Range"
+msgstr "Ajustar un área de matriz"
+
+#: 04060107.xhp#par_id3148679.329.help.text
+msgid "If you want to edit the output array, do the following:"
+msgstr "Para editar la matriz de salida, siga este procedimiento:"
+
+#: 04060107.xhp#par_id3151102.330.help.text
+msgctxt "04060107.xhp#par_id3151102.330.help.text"
+msgid "Select the cell range or array containing the array formula."
+msgstr "Seleccione el área de celdas o la matriz que contengan la fórmula de matriz."
+
+#: 04060107.xhp#par_id3147096.331.help.text
+msgid "Below the selection, to the right, you will see a small icon with which you can zoom in or out on the range using your mouse."
+msgstr "Bajo la selección, a la derecha, verá un pequeño símbolo que permite acercar o alejar el área utilizando el ratón."
+
+#: 04060107.xhp#par_id3150974.332.help.text
+msgid "When you adjust the array range, the array formula will not automatically be adjusted. You are only changing the range in which the result will appear."
+msgstr "Al ajustar el área de la matriz, la fórmula no se ajusta automáticamente. Sólo se modifica el área en la que aparece el resultado."
+
+#: 04060107.xhp#par_id3146080.333.help.text
+msgid "By holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key, you can create a copy of the array formula in the given range."
+msgstr ""
+
+#: 04060107.xhp#par_idN10D47.help.text
+msgid "Conditional Array Calculations"
+msgstr "Cálculos de matriz condicional"
+
+#: 04060107.xhp#par_idN10D4B.help.text
+msgid "A conditional array calculation is an array or matrix formula that includes an IF() or CHOOSE() function. The condition argument in the formula is an area reference or a matrix result."
+msgstr "Un cálculo de matriz condicional es una fórmula de matriz que incluye una función SI() o ELEGIR(). El argumento de condición de la fórmula es una referencia de área o un resultado de matriz."
+
+#: 04060107.xhp#par_idN10D4E.help.text
+msgid "In the following example, the >0 test of the {=IF(A1:A3>0;\"yes\";\"no\")} formula is applied to each cell in the range A1:A3 and the result is copied to the corresponding cell."
+msgstr "En el ejemplo siguiente, la prueba >0 de la fórmula {=SI(A1:A3>0;\"sí\";\"no\")} se aplica a cada celda del área A1:A3 y el resultado se copia en la celda correspondiente."
+
+#: 04060107.xhp#par_idN10D65.help.text
+msgctxt "04060107.xhp#par_idN10D65.help.text"
+msgid "A"
+msgstr "A"
+
+#: 04060107.xhp#par_idN10D6B.help.text
+msgctxt "04060107.xhp#par_idN10D6B.help.text"
+msgid "B (formula)"
+msgstr "B (fórmula)"
+
+#: 04060107.xhp#par_idN10B75.help.text
+msgctxt "04060107.xhp#par_idN10B75.help.text"
+msgid "B (result)"
+msgstr "B (resultado)"
+
+#: 04060107.xhp#par_idN10D79.help.text
+msgctxt "04060107.xhp#par_idN10D79.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060107.xhp#par_idN10D80.help.text
+msgctxt "04060107.xhp#par_idN10D80.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060107.xhp#par_idN10D86.help.text
+msgctxt "04060107.xhp#par_idN10D86.help.text"
+msgid "{=IF(A1:A3>0;\"yes\";\"no\")}"
+msgstr "{=SI(A1:A3>0;\"sí\";\"no\")}"
+
+#: 04060107.xhp#par_idN10D8C.help.text
+msgctxt "04060107.xhp#par_idN10D8C.help.text"
+msgid "yes"
+msgstr "sí"
+
+#: 04060107.xhp#par_idN10D94.help.text
+msgctxt "04060107.xhp#par_idN10D94.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060107.xhp#par_idN10D9B.help.text
+msgctxt "04060107.xhp#par_idN10D9B.help.text"
+msgid "0"
+msgstr "0"
+
+#: 04060107.xhp#par_idN10DA1.help.text
+msgctxt "04060107.xhp#par_idN10DA1.help.text"
+msgid "{=IF(A1:A3>0;\"yes\";\"no\")}"
+msgstr "{=SI(A1:A3>0;\"sí\";\"no\")}"
+
+#: 04060107.xhp#par_idN10DA7.help.text
+msgid "no"
+msgstr "no"
+
+#: 04060107.xhp#par_idN10DAF.help.text
+msgctxt "04060107.xhp#par_idN10DAF.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060107.xhp#par_idN10DB6.help.text
+msgctxt "04060107.xhp#par_idN10DB6.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060107.xhp#par_idN10DBC.help.text
+msgctxt "04060107.xhp#par_idN10DBC.help.text"
+msgid "{=IF(A1:A3>0;\"yes\";\"no\")}"
+msgstr "{=SI(A1:A3>0;\"sí\";\"no\")}"
+
+#: 04060107.xhp#par_idN10DC2.help.text
+msgctxt "04060107.xhp#par_idN10DC2.help.text"
+msgid "yes"
+msgstr "sí"
+
+#: 04060107.xhp#par_idN10DD0.help.text
+msgid "The following functions provide forced array handling: CORREL, COVAR, FORECAST, FTEST, INTERCEPT, MDETERM, MINVERSE, MMULT, MODE, PEARSON, PROB, RSQ, SLOPE, STEYX, SUMPRODUCT, SUMX2MY2, SUMX2PY2, SUMXMY2, TTEST. If you use area references as arguments when you call one of these functions, the functions behave as array functions. The following table provides an example of forced array handling:"
+msgstr "Las opciones siguientes permiten la gestión de matrices forzada: COEF.DE.CORREL, COVAR, PRONÓSTICO, PRUEBA.F, INTERSECCIÓN.EJE, MDETERM, MINVERSA, MMULT, MODA, PEARSON, PROBABILIDAD, COEFICIENTE.R2, PENDIENTE, ERROR.TÍPICO.XY, SUMA.PRODUCTO, SUMAX2MENOSY2, SUMAX2MASY2, SUMAXMENOSY2, PRUEBA.T. Si utiliza referencias de áreas como argumentos al realizar una de estas funciones, las funciones actúan como funciones de matriz. En la tabla siguiente se muestra un ejemplo de gestión de matrices forzada:"
+
+#: 04060107.xhp#par_idN10DE2.help.text
+msgctxt "04060107.xhp#par_idN10DE2.help.text"
+msgid "A"
+msgstr "A"
+
+#: 04060107.xhp#par_idN10DE8.help.text
+msgctxt "04060107.xhp#par_idN10DE8.help.text"
+msgid "B (formula)"
+msgstr "B (fórmula)"
+
+#: 04060107.xhp#par_idN10DEE.help.text
+msgctxt "04060107.xhp#par_idN10DEE.help.text"
+msgid "B (result)"
+msgstr "B (resultado)"
+
+#: 04060107.xhp#par_idN10DF4.help.text
+msgid "C (forced array formula)"
+msgstr "C (fórmula de matriz forzada)"
+
+#: 04060107.xhp#par_idN10DFA.help.text
+msgid "C (result)"
+msgstr "C (resultado)"
+
+#: 04060107.xhp#par_idN10E02.help.text
+msgctxt "04060107.xhp#par_idN10E02.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060107.xhp#par_idN10E09.help.text
+msgctxt "04060107.xhp#par_idN10E09.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060107.xhp#par_idN10E0F.help.text
+msgctxt "04060107.xhp#par_idN10E0F.help.text"
+msgid "=A1:A2+1"
+msgstr "=A1:A2+1"
+
+#: 04060107.xhp#par_idN10E17.help.text
+msgctxt "04060107.xhp#par_idN10E17.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060107.xhp#par_idN10E1D.help.text
+msgctxt "04060107.xhp#par_idN10E1D.help.text"
+msgid "=SUMPRODUCT(A1:A2+1)"
+msgstr "=SUMA.PRODUCTO(A1:A2+1)"
+
+#: 04060107.xhp#par_idN10E25.help.text
+msgctxt "04060107.xhp#par_idN10E25.help.text"
+msgid "5"
+msgstr "5"
+
+#: 04060107.xhp#par_idN10E2D.help.text
+msgctxt "04060107.xhp#par_idN10E2D.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060107.xhp#par_idN10E34.help.text
+msgctxt "04060107.xhp#par_idN10E34.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060107.xhp#par_idN10E3A.help.text
+msgctxt "04060107.xhp#par_idN10E3A.help.text"
+msgid "=A1:A2+1"
+msgstr "=A1:A2+1"
+
+#: 04060107.xhp#par_idN10E42.help.text
+msgctxt "04060107.xhp#par_idN10E42.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060107.xhp#par_idN10E48.help.text
+msgctxt "04060107.xhp#par_idN10E48.help.text"
+msgid "=SUMPRODUCT(A1:A2+1)"
+msgstr "=SUMA.PRODUCTO(A1:A2+1)"
+
+#: 04060107.xhp#par_idN10E50.help.text
+msgctxt "04060107.xhp#par_idN10E50.help.text"
+msgid "5"
+msgstr "5"
+
+#: 04060107.xhp#par_idN10E58.help.text
+msgctxt "04060107.xhp#par_idN10E58.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060107.xhp#par_idN10E63.help.text
+msgctxt "04060107.xhp#par_idN10E63.help.text"
+msgid "=A1:A2+1"
+msgstr "=A1:A2+1"
+
+#: 04060107.xhp#par_idN10E6A.help.text
+msgid "#VALUE!"
+msgstr "#VALOR!"
+
+#: 04060107.xhp#par_idN10E70.help.text
+msgctxt "04060107.xhp#par_idN10E70.help.text"
+msgid "=SUMPRODUCT(A1:A2+1)"
+msgstr "=SUMA.PRODUCTO(A1:A2+1)"
+
+#: 04060107.xhp#par_idN10E78.help.text
+msgctxt "04060107.xhp#par_idN10E78.help.text"
+msgid "5"
+msgstr "5"
+
+#: 04060107.xhp#bm_id3158446.help.text
+msgid "<bookmark_value>MUNIT function</bookmark_value>"
+msgstr "<bookmark_value>MUNITARIA</bookmark_value>"
+
+#: 04060107.xhp#hd_id3158446.12.help.text
+msgid "MUNIT"
+msgstr "MUNITARIA"
+
+#: 04060107.xhp#par_id3154121.13.help.text
+msgid "<ahelp hid=\"HID_FUNC_EINHEITSMATRIX\">Returns the unitary square array of a certain size.</ahelp> The unitary array is a square array where the main diagonal elements equal 1 and all other array elements are equal to 0."
+msgstr "<ahelp hid=\"HID_FUNC_EINHEITSMATRIX\">Devuelve una matriz cuadrada unitaria de un tamaño determinado.</ahelp> La matriz unitaria es una matriz cuadrada en la que los elementos de la diagonal son iguales a 1 y el resto de los elementos iguales a 0."
+
+#: 04060107.xhp#hd_id3155123.14.help.text
+msgctxt "04060107.xhp#hd_id3155123.14.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060107.xhp#par_id3156271.15.help.text
+msgid "MUNIT(Dimensions)"
+msgstr "MUNITARIA(Dimensión)"
+
+#: 04060107.xhp#par_id3159390.16.help.text
+msgid "<emph>Dimensions</emph> refers to the size of the array unit."
+msgstr "<emph>Dimensión</emph> hace referencia al tamaño de la matriz unitaria."
+
+#: 04060107.xhp#par_idN10C9B.help.text
+msgctxt "04060107.xhp#par_idN10C9B.help.text"
+msgid "You can find a general introduction to Array functions at the top of this page."
+msgstr "Al principio de esta página se incluye información general sobre las funciones de matriz."
+
+#: 04060107.xhp#hd_id3156162.17.help.text
+msgctxt "04060107.xhp#hd_id3156162.17.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060107.xhp#par_id3150949.18.help.text
+msgid "Select a square range within the spreadsheet, for example, from A1 to E5."
+msgstr "Seleccione un área cuadrada de la hoja de cálculo, por ejemplo, de A1 a E5."
+
+#: 04060107.xhp#par_id3151260.19.help.text
+msgid "Without deselecting the range, select the MUNIT function. Mark the <emph>Array</emph> check box. Enter the desired dimensions for the array unit, in this case <item type=\"input\">5</item>, and click <emph>OK</emph>."
+msgstr "Sin anular el rango, seleccione la función MUNITARIA. Marque la casilla de verificación de la<emph>Matriz</emph>. Introduce las dimensiones deseadas para la matriz UNITARIA, en este caso <item type=\"input\">5</item>, y haga clic <emph>Aceptar</emph>."
+
+#: 04060107.xhp#par_id3150403.20.help.text
+msgid "You can also enter the <item type=\"input\">=Munit(5)</item> formula in the last cell of the selected range (E5), and press <switchinline select=\"sys\"><caseinline select=\"MAC\">Shift+Command+Enter</caseinline><defaultinline>Shift+Ctrl+Enter</defaultinline></switchinline>."
+msgstr "También puede introducir la fórmula <item type=\"input\">=Munit(5)</item> en la última celda del rango seleccionado (E5), y pulsar <switchinline select=\"sys\"><caseinline select=\"MAC\">Shift.+Comando+Intro</caseinline><defaultinline>Mayús.+Control+Intro</defaultinline></switchinline>."
+
+#: 04060107.xhp#par_id3156143.21.help.text
+msgid "You now see a unit array with a range of A1:E5."
+msgstr "Se insertará una matriz unitaria en el área A1:E5."
+
+#: 04060107.xhp#par_idN10FA7.help.text
+msgctxt "04060107.xhp#par_idN10FA7.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#bm_id3159084.help.text
+msgid "<bookmark_value>FREQUENCY function</bookmark_value>"
+msgstr "<bookmark_value>FRECUENCIA</bookmark_value>"
+
+#: 04060107.xhp#hd_id3159084.22.help.text
+msgid "FREQUENCY"
+msgstr "FRECUENCIA"
+
+#: 04060107.xhp#par_id3145777.23.help.text
+msgid "<ahelp hid=\"HID_FUNC_HAEUFIGKEIT\">Indicates the frequency distribution in a one-column-array.</ahelp> The function counts the number of values in the Data array that are within the values given by the Classes array."
+msgstr "<ahelp hid=\"HID_FUNC_HAEUFIGKEIT\">Indica la distribución de frecuencias en una matriz de una columna.</ahelp> La función cuenta la cantidad de valores de la matriz Datos que se encuentran entre los valores dados por la matriz Clases."
+
+#: 04060107.xhp#hd_id3153347.24.help.text
+msgctxt "04060107.xhp#hd_id3153347.24.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060107.xhp#par_id3155498.25.help.text
+msgid "FREQUENCY(Data; Classes)"
+msgstr "FRECUENCIA(datos; grupos)"
+
+#: 04060107.xhp#par_id3154352.26.help.text
+msgid "<emph>Data</emph> represents the reference to the values to be counted."
+msgstr "<emph>Datos</emph> representa la referencia de los valores que se debe contar."
+
+#: 04060107.xhp#par_id3148402.27.help.text
+msgid "<emph>Classes</emph> represents the array of the limit values."
+msgstr "<emph>Clases</emph> representa la matriz que contiene los valores de límite."
+
+#: 04060107.xhp#par_idN10D71.help.text
+msgctxt "04060107.xhp#par_idN10D71.help.text"
+msgid "You can find a general introduction to Array functions at the top of this page."
+msgstr "Al principio de esta página se incluye información general sobre las funciones de matriz."
+
+#: 04060107.xhp#hd_id3148981.28.help.text
+msgctxt "04060107.xhp#hd_id3148981.28.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060107.xhp#par_id3155904.219.help.text
+msgid "In the following table, column A lists unsorted measurement values. Column B contains the upper limit you entered for the classes into which you want to divide the data in column A. According to the limit entered in B1, the FREQUENCY function returns the number of measured values less than or equal to 5. As the limit in B2 is 10, the FREQUENCY function returns the second result as the number of measured values that are greater than 5 and less than or equal to 10. The text you entered in B6, \">25\", is only for reference purposes."
+msgstr "En la siguiente tabla, la columna A lista valores de medición sin ordenar. La Columna B empuja el valor limite que se ingreso dentro de las clases que quiera dividir de los datos de la columna A. De acuerdo a los limites ingresados en B1, la función de FRECUENCIA regresa el numero de valores medidos en menos que o igual a 5, y menos ue o igual a 10. El texto que ingresaste dentro de B6, \">25\", es solo para propositos de referencia."
+
+#: 04060107.xhp#par_id3155869.220.help.text
+msgid "<emph>A</emph>"
+msgstr "<emph>A</emph>"
+
+#: 04060107.xhp#par_id3149328.221.help.text
+msgid "<emph>B</emph>"
+msgstr "<emph>B</emph>"
+
+#: 04060107.xhp#par_id3152467.222.help.text
+msgid "<emph>C</emph>"
+msgstr "<emph>C</emph>"
+
+#: 04060107.xhp#par_id3154528.223.help.text
+msgctxt "04060107.xhp#par_id3154528.223.help.text"
+msgid "<emph>1</emph>"
+msgstr "<emph>1</emph>"
+
+#: 04060107.xhp#par_id3149744.224.help.text
+msgctxt "04060107.xhp#par_id3149744.224.help.text"
+msgid "12"
+msgstr "12"
+
+#: 04060107.xhp#par_id3147309.225.help.text
+msgctxt "04060107.xhp#par_id3147309.225.help.text"
+msgid "5"
+msgstr "5"
+
+#: 04060107.xhp#par_id3154199.226.help.text
+msgctxt "04060107.xhp#par_id3154199.226.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060107.xhp#par_id3159218.227.help.text
+msgctxt "04060107.xhp#par_id3159218.227.help.text"
+msgid "<emph>2</emph>"
+msgstr "<emph>2</emph>"
+
+#: 04060107.xhp#par_id3153263.228.help.text
+msgctxt "04060107.xhp#par_id3153263.228.help.text"
+msgid "8"
+msgstr "8"
+
+#: 04060107.xhp#par_id3156201.229.help.text
+msgctxt "04060107.xhp#par_id3156201.229.help.text"
+msgid "10"
+msgstr "10"
+
+#: 04060107.xhp#par_id3147552.230.help.text
+msgctxt "04060107.xhp#par_id3147552.230.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060107.xhp#par_id3149174.231.help.text
+msgctxt "04060107.xhp#par_id3149174.231.help.text"
+msgid "<emph>3</emph>"
+msgstr "<emph>3</emph>"
+
+#: 04060107.xhp#par_id3151201.232.help.text
+msgctxt "04060107.xhp#par_id3151201.232.help.text"
+msgid "24"
+msgstr "24"
+
+#: 04060107.xhp#par_id3150245.233.help.text
+msgctxt "04060107.xhp#par_id3150245.233.help.text"
+msgid "15"
+msgstr "15"
+
+#: 04060107.xhp#par_id3159194.234.help.text
+msgctxt "04060107.xhp#par_id3159194.234.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060107.xhp#par_id3146925.235.help.text
+msgctxt "04060107.xhp#par_id3146925.235.help.text"
+msgid "<emph>4</emph>"
+msgstr "<emph>4</emph>"
+
+#: 04060107.xhp#par_id3154128.236.help.text
+msgctxt "04060107.xhp#par_id3154128.236.help.text"
+msgid "11"
+msgstr "11"
+
+#: 04060107.xhp#par_id3151067.237.help.text
+msgctxt "04060107.xhp#par_id3151067.237.help.text"
+msgid "20"
+msgstr "20"
+
+#: 04060107.xhp#par_id3156033.238.help.text
+msgctxt "04060107.xhp#par_id3156033.238.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060107.xhp#par_id3149298.239.help.text
+msgctxt "04060107.xhp#par_id3149298.239.help.text"
+msgid "<emph>5</emph>"
+msgstr "<emph>5</emph>"
+
+#: 04060107.xhp#par_id3151382.240.help.text
+msgctxt "04060107.xhp#par_id3151382.240.help.text"
+msgid "5"
+msgstr "5"
+
+#: 04060107.xhp#par_id3155141.241.help.text
+msgid "25"
+msgstr "25"
+
+#: 04060107.xhp#par_id3145213.242.help.text
+msgctxt "04060107.xhp#par_id3145213.242.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060107.xhp#par_id3145268.243.help.text
+msgctxt "04060107.xhp#par_id3145268.243.help.text"
+msgid "<emph>6</emph>"
+msgstr "<emph>6</emph>"
+
+#: 04060107.xhp#par_id3163724.244.help.text
+msgctxt "04060107.xhp#par_id3163724.244.help.text"
+msgid "20"
+msgstr "20"
+
+#: 04060107.xhp#par_id3147132.245.help.text
+msgid ">25"
+msgstr ">25"
+
+#: 04060107.xhp#par_id3148903.246.help.text
+msgctxt "04060107.xhp#par_id3148903.246.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060107.xhp#par_id3151007.247.help.text
+msgctxt "04060107.xhp#par_id3151007.247.help.text"
+msgid "<emph>7</emph>"
+msgstr "<emph>7</emph>"
+
+#: 04060107.xhp#par_id3153294.248.help.text
+msgctxt "04060107.xhp#par_id3153294.248.help.text"
+msgid "16"
+msgstr "16"
+
+#: 04060107.xhp#par_id3147284.249.help.text
+msgctxt "04060107.xhp#par_id3147284.249.help.text"
+msgid "<emph>8</emph>"
+msgstr "<emph>8</emph>"
+
+#: 04060107.xhp#par_id3154914.250.help.text
+msgctxt "04060107.xhp#par_id3154914.250.help.text"
+msgid "9"
+msgstr "9"
+
+#: 04060107.xhp#par_id3154218.251.help.text
+msgctxt "04060107.xhp#par_id3154218.251.help.text"
+msgid "<emph>9</emph>"
+msgstr "<emph>9</emph>"
+
+#: 04060107.xhp#par_id3147226.252.help.text
+msgctxt "04060107.xhp#par_id3147226.252.help.text"
+msgid "7"
+msgstr "7"
+
+#: 04060107.xhp#par_id3149045.253.help.text
+msgid "<emph>10</emph>"
+msgstr "<emph>10</emph>"
+
+#: 04060107.xhp#par_id3155799.254.help.text
+msgctxt "04060107.xhp#par_id3155799.254.help.text"
+msgid "16"
+msgstr "16"
+
+#: 04060107.xhp#par_id3155076.255.help.text
+msgid "<emph>11</emph>"
+msgstr "<emph>11</emph>"
+
+#: 04060107.xhp#par_id3150217.256.help.text
+msgid "33"
+msgstr "33"
+
+#: 04060107.xhp#par_id3150312.29.help.text
+msgid "Select a single column range in which to enter the frequency according to the class limits. You must select one field more than the class ceiling. In this example, select the range C1:C6. Call up the FREQUENCY function in the <emph>Function Wizard</emph>. Select the <emph>Data</emph> range in (A1:A11), and then the <emph>Classes</emph> range in which you entered the class limits (B1:B6). Select the <emph>Array</emph> check box and click <emph>OK</emph>. You will see the frequency count in the range C1:C6."
+msgstr "Selecciona un rango de columan sencilla en el cual para ingresar la frecuencia de acuerdo los limites de clases. No debes seleccionar un campo mas que la clase. En este ejemplo, seleccionamos el rango C1:C6. Llama a la función de FRECUENCIA en el<emph>Asistente para funciones</emph>. Selecciona el rango de <emph>Datos</emph> dentro de (A1:A11), y despues los rangos de <emph>Classes</emph> en el cual insertas los limites de la clase (B1:B6). Selecciona la caja de verificacion de <emph>Arreglo</emph> y da clic en <emph>Aceptar</emph>. Veras en el cual veras la frecuencia de conteo en el rango de C1:C6."
+
+#: 04060107.xhp#par_idN11269.help.text
+msgctxt "04060107.xhp#par_idN11269.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#bm_id3151030.help.text
+msgid "<bookmark_value>MDETERM function</bookmark_value><bookmark_value>determinants</bookmark_value>"
+msgstr "<bookmark_value>MDETERM</bookmark_value><bookmark_value>determinantes</bookmark_value>"
+
+#: 04060107.xhp#hd_id3151030.31.help.text
+msgid "MDETERM"
+msgstr "MDETERM"
+
+#: 04060107.xhp#par_id3154073.32.help.text
+msgid "<ahelp hid=\"HID_FUNC_MDET\">Returns the array determinant of an array.</ahelp> This function returns a value in the current cell; it is not necessary to define a range for the results."
+msgstr "<ahelp hid=\"HID_FUNC_MDET\">Devuelve el determinante de una matriz.</ahelp> Esta función devuelve un valor en la celda actual; no es necesario definir un área de resultados."
+
+#: 04060107.xhp#hd_id3156366.33.help.text
+msgctxt "04060107.xhp#hd_id3156366.33.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060107.xhp#par_id3156380.34.help.text
+msgid "MDETERM(Array)"
+msgstr "MDETERM(Matriz)"
+
+#: 04060107.xhp#par_id3150290.35.help.text
+msgid "<emph>Array</emph> represents a square array in which the determinants are defined."
+msgstr "<emph>matriz</emph> representa una matriz cuadrada cuyo determinante se debe calcular."
+
+#: 04060107.xhp#par_idN11035.help.text
+msgid "You can find a general introduction to using Array functions on top of this page."
+msgstr "Al principio de esta página se incluye información general sobre el uso de funciones de matriz."
+
+#: 04060107.xhp#par_idN11333.help.text
+msgctxt "04060107.xhp#par_idN11333.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#bm_id3151348.help.text
+msgid "<bookmark_value>MINVERSE function</bookmark_value><bookmark_value>inverse arrays</bookmark_value>"
+msgstr "<bookmark_value>MINVERSA</bookmark_value><bookmark_value>matrices inversas</bookmark_value>"
+
+#: 04060107.xhp#hd_id3151348.39.help.text
+msgid "MINVERSE"
+msgstr "MINVERSA"
+
+#: 04060107.xhp#par_id3145569.40.help.text
+msgid "<ahelp hid=\"HID_FUNC_MINV\">Returns the inverse array.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MINV\">Devuelve la matriz inversa.</ahelp>"
+
+#: 04060107.xhp#hd_id3156072.41.help.text
+msgctxt "04060107.xhp#hd_id3156072.41.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060107.xhp#par_id3156085.42.help.text
+msgid "MINVERSE(Array)"
+msgstr "MINVERSA(Matriz)"
+
+#: 04060107.xhp#par_id3157849.43.help.text
+msgid "<emph>Array</emph> represents a square array that is to be inverted."
+msgstr "<emph>Matriz</emph> representa la matriz cuadrada que se debe invertir."
+
+#: 04060107.xhp#par_idN113EE.help.text
+msgctxt "04060107.xhp#par_idN113EE.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#hd_id3157868.44.help.text
+msgctxt "04060107.xhp#hd_id3157868.44.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060107.xhp#par_id3149638.45.help.text
+msgid "Select a square range and select MINVERSE. Select the output array, select the <emph>Array</emph> field and click <emph>OK</emph>."
+msgstr "Seleccione un área cuadrada y a continuación MINVERSA. Seleccione la matriz de salida y el campo <emph>Matriz</emph>; a continuación, haga clic en <emph>Aceptar</emph>."
+
+#: 04060107.xhp#bm_id3148546.help.text
+msgid "<bookmark_value>MMULT function</bookmark_value>"
+msgstr "<bookmark_value>MMULT</bookmark_value>"
+
+#: 04060107.xhp#hd_id3148546.47.help.text
+msgid "MMULT"
+msgstr "MMULT"
+
+#: 04060107.xhp#par_id3148518.48.help.text
+msgid "<ahelp hid=\"HID_FUNC_MMULT\">Calculates the array product of two arrays.</ahelp> The number of columns for array 1 must match the number of rows for array 2. The square array has an equal number of rows and columns."
+msgstr "<ahelp hid=\"HID_FUNC_MMULT\">Calcula la matriz producto de dos matrices.</ahelp> El número de columnas de la matriz 1 debe coincidir con el número de filas de la matriz 2. La matriz cuadrada tiene el mismo número de filas y de columnas."
+
+#: 04060107.xhp#hd_id3146767.49.help.text
+msgctxt "04060107.xhp#hd_id3146767.49.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060107.xhp#par_id3150798.50.help.text
+msgid "MMULT(Array; Array)"
+msgstr "MMULT(Matriz; Matriz)"
+
+#: 04060107.xhp#par_id3150812.51.help.text
+msgid "<emph>Array</emph> at first place represents the first array used in the array product."
+msgstr "La primera <emph>matriz</emph> representa la primera matriz del producto."
+
+#: 04060107.xhp#par_id3152553.52.help.text
+msgid "<emph>Array</emph> at second place represents the second array with the same number of rows."
+msgstr "La segunda <emph>matriz</emph> representa la segunda matriz del producto, con el mismo número de filas."
+
+#: 04060107.xhp#par_idN114C3.help.text
+msgctxt "04060107.xhp#par_idN114C3.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#hd_id3152574.53.help.text
+msgctxt "04060107.xhp#hd_id3152574.53.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060107.xhp#par_id3146826.54.help.text
+msgid "Select a square range. Choose the MMULT function. Select the first <emph>Array</emph>, then select the second <emph>Array</emph>. Using <emph>Function Wizard</emph>, mark the <emph>Array</emph> check box. Click <emph>OK</emph>. The output array will appear in the first selected range."
+msgstr "Seleccione un área cuadrada. Elija la función MMULT. Seleccione la primera <emph>matriz</emph> y, a continuación, la segunda. Marque la casilla de verificación <emph>Matriz</emph> en el <emph>Asistente para funciones</emph>. Haga clic en <emph>Aceptar</emph>. La matriz de salida aparecerá en el área seleccionada."
+
+#: 04060107.xhp#bm_id3154970.help.text
+msgid "<bookmark_value>TRANSPOSE function</bookmark_value>"
+msgstr "<bookmark_value>TRANSPONER</bookmark_value>"
+
+#: 04060107.xhp#hd_id3154970.56.help.text
+msgid "TRANSPOSE"
+msgstr "TRANSPONER"
+
+#: 04060107.xhp#par_id3155276.57.help.text
+msgid "<ahelp hid=\"HID_FUNC_MTRANS\">Transposes the rows and columns of an array.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MTRANS\">Transpone las filas y las columnas de una matriz.</ahelp>"
+
+#: 04060107.xhp#hd_id3155294.58.help.text
+msgctxt "04060107.xhp#hd_id3155294.58.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060107.xhp#par_id3153843.59.help.text
+msgid "TRANSPOSE(Array)"
+msgstr "TRANSPONER(Matriz)"
+
+#: 04060107.xhp#par_id3153857.60.help.text
+msgid "<emph>Array</emph> represents the array in the spreadsheet that is to be transposed."
+msgstr "<emph>Matriz</emph> representa la matriz de la hoja de cálculo que se debe transponer."
+
+#: 04060107.xhp#par_idN115A5.help.text
+msgctxt "04060107.xhp#par_idN115A5.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#hd_id3159352.61.help.text
+msgctxt "04060107.xhp#hd_id3159352.61.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060107.xhp#par_id3159366.62.help.text
+msgid "In the spreadsheet, select the range in which the transposed array can appear. If the original array has n rows and m columns, your selected range must have at least m rows and n columns. Then enter the formula directly, select the original array and press <switchinline select=\"sys\"><caseinline select=\"MAC\">Shift+Command+Enter</caseinline><defaultinline>Shift+Ctrl+Enter</defaultinline></switchinline>. Or, if you are using the <emph>Function Wizard</emph>, mark the <emph>Array</emph> check box. The transposed array appears in the selected target range and is protected automatically against changes."
+msgstr "Seleccione el área de la hoja en la que debe aparecer la matriz transpuesta. Si la matriz original tiene n filas y m columnas, el área seleccionada deberá tener como mínimo m filas y n columnas. Escriba la fórmula directamente, seleccione la matriz original y pulse <switchinline select=\"sys\"><caseinline select=\"MAC\">Shift+Command+Intro</caseinline><defaultinline>Shift+Control+Intro</defaultinline></switchinline>. Si utiliza el <emph>Asistente para funciones</emph>, marque la casilla de verificación <emph>Matriz</emph>. La matriz transpuesta aparece en el área de destino seleccionada y queda automáticamente protegida contra cambios."
+
+#: 04060107.xhp#bm_id3109846.help.text
+msgid "<bookmark_value>LINEST function</bookmark_value>"
+msgstr "<bookmark_value>ESTIMACIÓN.LINEAL</bookmark_value>"
+
+#: 04060107.xhp#hd_id3109846.64.help.text
+msgid "LINEST"
+msgstr "ESTIMACIÓN.LINEAL"
+
+#: 04060107.xhp#par_id3144733.65.help.text
+msgid "<ahelp hid=\"HID_FUNC_RGP\">Returns a table of statistics for a straight line that best fits a data set.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_RGP\">Retorna una tabla de estadísticas para Returns a table of statistics for a una línea recta que mejor se ajuste a un conjunto de datos .</ahelp>"
+
+#: 04060107.xhp#hd_id3152825.66.help.text
+msgctxt "04060107.xhp#hd_id3152825.66.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060107.xhp#par_id3152839.67.help.text
+msgid "LINEST(data_Y; data_X; linearType; stats)"
+msgstr "ESTIMACIÓN.LINEAL(Datos_Y; Datos_X; tipo_lineal; estadística)"
+
+#: 04060107.xhp#par_id3152853.68.help.text
+msgid "<emph>data_Y</emph> is a single row or column range specifying the y coordinates in a set of data points."
+msgstr "<emph>data_Y</emph> es un rango simple de columnas o filas que especifican las coordenadas y en un conjunto de puntos de datos ."
+
+#: 04060107.xhp#par_id3154428.69.help.text
+msgid "<emph>data_X</emph> is a corresponding single row or column range specifying the x coordinates. If <emph>data_X</emph> is omitted it defaults to <item type=\"literal\">1, 2, 3, ..., n</item>. If there is more than one set of variables <emph>data_X</emph> may be a range with corresponding multiple rows or columns."
+msgstr "<emph>datos_X</emph> corresponde a un simple rango de fila o columna que especifica las coordenadas X. Si <emph>datos_X</emph> es omitido, los valores predeterminados son <item type=\"literal\">1, 2, 3, ..., n</item>. Si existe mas de un grupo de variables <emph>datos_X</emph> puede ser un rango correspondiente a multiples filas o columnas."
+
+#: 04060107.xhp#par_id0811200804502119.help.text
+msgid "LINEST finds a straight line <item type=\"literal\">y = a + bx</item> that best fits the data, using linear regression (the \"least squares\" method). With more than one set of variables the straight line is of the form <item type=\"literal\">y = a + b1x1 + b2x2 ... + bnxn</item>."
+msgstr "ESTIMACIÓN.LINEAL encuentra la recta <item type=\"literal\">y = a + bx</item> que mejor se ajusta a los datos, usa regresión lineal (el método \"cuadrados mínimos\"). Con mas de un grupo de variables la recta es de la forma <item type=\"literal\">y = a + b1x1 + b2x2 ... + bnxn</item>."
+
+#: 04060107.xhp#par_id3154448.70.help.text
+msgid " if<emph>linearType</emph> is FALSE the straight line found is forced to pass through the origin (the constant a is zero; y = bx). If omitted, <emph>linearType</emph> defaults to TRUE (the line is not forced through the origin)."
+msgstr " si<emph>tipo_lineal</emph> es FALSO la recta encontrada es forzada a pasar por el origen (la constante a es cero; y = bx). Si se omite, <emph>tipo_lineal</emph> se predetermina a VERDADERO (la recta no es forzada a pasar por el origen)."
+
+#: 04060107.xhp#par_id3154142.71.help.text
+msgid "if<emph>stats</emph> is omitted or FALSE only the top line of the statistics table is returned. If TRUE the entire table is returned."
+msgstr "si <emph>estadística</emph> es omitida o es FALSO solamente se retornara la linea superior de la tabla de estadísticas. Si es VERDADERO la tabla entera sera retornada. "
+
+#: 04060107.xhp#par_id0811200804502261.help.text
+msgid "LINEST returns a table (array) of statistics as below and must be entered as an array formula (for example by using <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Return rather than just Return)."
+msgstr "ESTIMACIÓN.LINEAL retorna una tabla (matriz) de estadísticas como más abajo y debe ser ingresada como una fórmula de matriz (por ejemplo usando <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift.+Intro en vez de solo Intro )."
+
+#: 04060107.xhp#par_idN11416.help.text
+msgctxt "04060107.xhp#par_idN11416.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060107.xhp#par_idN116C6.help.text
+msgctxt "04060107.xhp#par_idN116C6.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#hd_id3154162.72.help.text
+msgctxt "04060107.xhp#hd_id3154162.72.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060107.xhp#par_id3154176.73.help.text
+msgid "This function returns an array and is handled in the same way as the other array functions. Select a range for the answers and then the function. Select <emph>data_Y</emph>. If you want, you can enter other parameters. Select <emph>Array</emph> and click <emph>OK</emph>."
+msgstr "Esta función devuelve una matriz y es manejada de la misma forma que las demás funciones matriz. Seleccione un rango para la respuesta y, a continuación, la función. Seleccione DatosY. Si lo desea, puede introducir otros parámetros. Seleccione <emph> Matriz </emph>y haga clic en <emph> Aceptar </emph>."
+
+#: 04060107.xhp#par_id3155468.74.help.text
+msgid "The results returned by the system (if <emph>stats</emph> = 0), will at least show the slope of the regression line and its intersection with the Y axis. If <emph>stats</emph> does not equal 0, other results are to be displayed."
+msgstr "Los resultados devueltos por el sistema (si <emph>Estadística</emph> = 0), muestraran, al menos, la pendiente de la línea de regresión y su intersección con el eje Y. Si la <emph>Estadística</emph> no es igual a 0, otros resultados serán mostrados."
+
+#: 04060107.xhp#hd_id3155491.75.help.text
+msgid "Other LINEST Results:"
+msgstr "Otros resultados de ESTIMACIÓN.LINEAL:"
+
+#: 04060107.xhp#par_id3159291.76.help.text
+msgid "Examine the following examples:"
+msgstr "Examine los ejemplos siguientes:"
+
+#: 04060107.xhp#par_id3157922.77.help.text
+msgctxt "04060107.xhp#par_id3157922.77.help.text"
+msgid "A"
+msgstr "A"
+
+#: 04060107.xhp#par_id3157945.78.help.text
+msgctxt "04060107.xhp#par_id3157945.78.help.text"
+msgid "B"
+msgstr "B"
+
+#: 04060107.xhp#par_id3152486.79.help.text
+msgctxt "04060107.xhp#par_id3152486.79.help.text"
+msgid "C"
+msgstr "C"
+
+#: 04060107.xhp#par_id3152509.80.help.text
+msgctxt "04060107.xhp#par_id3152509.80.help.text"
+msgid "D"
+msgstr "D"
+
+#: 04060107.xhp#par_id3152532.81.help.text
+msgctxt "04060107.xhp#par_id3152532.81.help.text"
+msgid "E"
+msgstr "E"
+
+#: 04060107.xhp#par_id3153431.82.help.text
+msgid "F"
+msgstr "F"
+
+#: 04060107.xhp#par_id3153454.83.help.text
+msgid "G"
+msgstr "G"
+
+#: 04060107.xhp#par_id3154995.84.help.text
+msgctxt "04060107.xhp#par_id3154995.84.help.text"
+msgid "<emph>1</emph>"
+msgstr "<emph>1</emph>"
+
+#: 04060107.xhp#par_id3155021.85.help.text
+msgid "<item type=\"input\">x1</item>"
+msgstr "<item type=\"input\">x1</item>"
+
+#: 04060107.xhp#par_id3155044.86.help.text
+msgid "<item type=\"input\">x2</item>"
+msgstr "<item type=\"input\">x2</item>"
+
+#: 04060107.xhp#par_id3163734.87.help.text
+msgid "<item type=\"input\">y</item>"
+msgstr "<item type=\"input\">y</item>"
+
+#: 04060107.xhp#par_id3163766.88.help.text
+msgid "<item type=\"input\">LIN</item><item type=\"input\">EST value</item>"
+msgstr "<item type=\"input\">LINEAL</item><item type=\"input\">valor de ESTIMACIÓN</item>"
+
+#: 04060107.xhp#par_id3145686.89.help.text
+msgctxt "04060107.xhp#par_id3145686.89.help.text"
+msgid "<emph>2</emph>"
+msgstr "<emph>2</emph>"
+
+#: 04060107.xhp#par_id3145713.90.help.text
+msgctxt "04060107.xhp#par_id3145713.90.help.text"
+msgid "<item type=\"input\">4</item>"
+msgstr "<item type=\"input\">4</item>"
+
+#: 04060107.xhp#par_id3145736.91.help.text
+msgctxt "04060107.xhp#par_id3145736.91.help.text"
+msgid "<item type=\"input\">7</item>"
+msgstr "<item type=\"input\">7</item>"
+
+#: 04060107.xhp#par_id3159427.92.help.text
+msgid "<item type=\"input\">100</item>"
+msgstr "<item type=\"input\">100</item>"
+
+#: 04060107.xhp#par_id3159460.93.help.text
+msgid "<item type=\"input\">4,17</item>"
+msgstr "<item type=\"input\">4,17</item>"
+
+#: 04060107.xhp#par_id3159483.94.help.text
+msgid "-<item type=\"input\">3,48</item>"
+msgstr "-<item type=\"input\">3,48</item>"
+
+#: 04060107.xhp#par_id3152381.95.help.text
+msgid "<item type=\"input\">82,33</item>"
+msgstr "<item type=\"input\">82,33</item>"
+
+#: 04060107.xhp#par_id3152408.96.help.text
+msgctxt "04060107.xhp#par_id3152408.96.help.text"
+msgid "<emph>3</emph>"
+msgstr "<emph>3</emph>"
+
+#: 04060107.xhp#par_id3152435.97.help.text
+msgctxt "04060107.xhp#par_id3152435.97.help.text"
+msgid "<item type=\"input\">5</item>"
+msgstr "<item type=\"input\">5</item>"
+
+#: 04060107.xhp#par_id3152458.98.help.text
+msgctxt "04060107.xhp#par_id3152458.98.help.text"
+msgid "<item type=\"input\">9</item>"
+msgstr "<item type=\"input\">9</item>"
+
+#: 04060107.xhp#par_id3155652.99.help.text
+msgid "<item type=\"input\">105</item>"
+msgstr "<item type=\"input\">105</item>"
+
+#: 04060107.xhp#par_id3155684.100.help.text
+msgid "<item type=\"input\">5,46</item>"
+msgstr "<item type=\"input\">5,46</item>"
+
+#: 04060107.xhp#par_id3155707.101.help.text
+msgid "<item type=\"input\">10,96</item>"
+msgstr "<item type=\"input\">10,96</item>"
+
+#: 04060107.xhp#par_id3155730.102.help.text
+msgid "<item type=\"input\">9,35</item>"
+msgstr "<item type=\"input\">9,35</item>"
+
+#: 04060107.xhp#par_id3159506.103.help.text
+msgctxt "04060107.xhp#par_id3159506.103.help.text"
+msgid "<emph>4</emph>"
+msgstr "<emph>4</emph>"
+
+#: 04060107.xhp#par_id3159533.104.help.text
+msgctxt "04060107.xhp#par_id3159533.104.help.text"
+msgid "<item type=\"input\">6</item>"
+msgstr "<item type=\"input\">6</item>"
+
+#: 04060107.xhp#par_id3159556.105.help.text
+msgctxt "04060107.xhp#par_id3159556.105.help.text"
+msgid "<item type=\"input\">11</item>"
+msgstr "<item type=\"input\">11</item>"
+
+#: 04060107.xhp#par_id3159579.106.help.text
+msgid "<item type=\"input\">104</item>"
+msgstr "<item type=\"input\">104</item>"
+
+#: 04060107.xhp#par_id3159611.107.help.text
+msgid "<item type=\"input\">0,87</item>"
+msgstr "<item type=\"input\">0,87</item>"
+
+#: 04060107.xhp#par_id3152606.108.help.text
+msgid "<item type=\"input\">5,06</item>"
+msgstr "<item type=\"input\">5,06</item>"
+
+#: 04060107.xhp#par_id3152629.109.help.text
+msgctxt "04060107.xhp#par_id3152629.109.help.text"
+msgid "<item type=\"input\">#NA</item>"
+msgstr "<item type=\"input\">#NA</item>"
+
+#: 04060107.xhp#par_id3152655.110.help.text
+msgctxt "04060107.xhp#par_id3152655.110.help.text"
+msgid "<emph>5</emph>"
+msgstr "<emph>5</emph>"
+
+#: 04060107.xhp#par_id3152682.111.help.text
+msgctxt "04060107.xhp#par_id3152682.111.help.text"
+msgid "<item type=\"input\">7</item>"
+msgstr "<item type=\"input\">7</item>"
+
+#: 04060107.xhp#par_id3152705.112.help.text
+msgctxt "04060107.xhp#par_id3152705.112.help.text"
+msgid "<item type=\"input\">12</item>"
+msgstr "<item type=\"input\">12</item>"
+
+#: 04060107.xhp#par_id3152728.113.help.text
+msgid "<item type=\"input\">108</item>"
+msgstr "<item type=\"input\">108</item>"
+
+#: 04060107.xhp#par_id3144352.114.help.text
+msgid "<item type=\"input\">13,21</item>"
+msgstr "<item type=\"input\">13,21</item>"
+
+#: 04060107.xhp#par_id3144375.115.help.text
+msgctxt "04060107.xhp#par_id3144375.115.help.text"
+msgid "<item type=\"input\">4</item>"
+msgstr "<item type=\"input\">4</item>"
+
+#: 04060107.xhp#par_id3144398.116.help.text
+msgctxt "04060107.xhp#par_id3144398.116.help.text"
+msgid "<item type=\"input\">#NA</item>"
+msgstr "<item type=\"input\">#NA</item>"
+
+#: 04060107.xhp#par_id3144425.117.help.text
+msgctxt "04060107.xhp#par_id3144425.117.help.text"
+msgid "<emph>6</emph>"
+msgstr "<emph>6</emph>"
+
+#: 04060107.xhp#par_id3144452.118.help.text
+msgctxt "04060107.xhp#par_id3144452.118.help.text"
+msgid "<item type=\"input\">8</item>"
+msgstr "<item type=\"input\">8</item>"
+
+#: 04060107.xhp#par_id3144475.119.help.text
+msgid "<item type=\"input\">15</item>"
+msgstr "<item type=\"input\">15</item>"
+
+#: 04060107.xhp#par_id3144498.120.help.text
+msgid "<item type=\"input\">111</item>"
+msgstr "<item type=\"input\">111</item>"
+
+#: 04060107.xhp#par_id3158233.121.help.text
+msgid "<item type=\"input\">675,45</item>"
+msgstr "<item type=\"input\">675,45</item>"
+
+#: 04060107.xhp#par_id3158256.122.help.text
+msgid "<item type=\"input\">102,26</item>"
+msgstr "<item type=\"input\">102,26</item>"
+
+#: 04060107.xhp#par_id3158279.123.help.text
+msgctxt "04060107.xhp#par_id3158279.123.help.text"
+msgid "<item type=\"input\">#NA</item>"
+msgstr "<item type=\"input\">#NA</item>"
+
+#: 04060107.xhp#par_id3158306.124.help.text
+msgctxt "04060107.xhp#par_id3158306.124.help.text"
+msgid "<emph>7</emph>"
+msgstr "<emph>7</emph>"
+
+#: 04060107.xhp#par_id3158333.125.help.text
+msgctxt "04060107.xhp#par_id3158333.125.help.text"
+msgid "<item type=\"input\">9</item>"
+msgstr "<item type=\"input\">9</item>"
+
+#: 04060107.xhp#par_id3158356.126.help.text
+msgctxt "04060107.xhp#par_id3158356.126.help.text"
+msgid "<item type=\"input\">17</item>"
+msgstr "<item type=\"input\">17</item>"
+
+#: 04060107.xhp#par_id3158379.127.help.text
+msgid "<item type=\"input\">120</item>"
+msgstr "<item type=\"input\">120</item>"
+
+#: 04060107.xhp#par_id3144560.128.help.text
+msgctxt "04060107.xhp#par_id3144560.128.help.text"
+msgid "<emph>8</emph>"
+msgstr "<emph>8</emph>"
+
+#: 04060107.xhp#par_id3144586.129.help.text
+msgctxt "04060107.xhp#par_id3144586.129.help.text"
+msgid "<item type=\"input\">10</item>"
+msgstr "<item type=\"input\">10</item>"
+
+#: 04060107.xhp#par_id3144609.130.help.text
+msgid "<item type=\"input\">19</item>"
+msgstr "<item type=\"input\">19</item>"
+
+#: 04060107.xhp#par_id3144632.131.help.text
+msgid "<item type=\"input\">133</item>"
+msgstr "<item type=\"input\">133</item>"
+
+#: 04060107.xhp#par_id3144687.132.help.text
+msgid "Column A contains several X1 values, column B several X2 values and column C the Y values. You have already entered these values in your spreadsheet. You have now set up E2:G6 in the spreadsheet and activated the <emph>Function Wizard</emph>. For the LINEST function to work, you must have marked the <emph>Array</emph> check box in the <emph>Function Wizard</emph>. Next, select the following values in the spreadsheet (or enter them using the keyboard):"
+msgstr "La columna A contiene diversos valores de X1, la columna B diversos valores de X2 y la columna C, los valores Y. Estos valores ya están en la hoja de cálculo. Ha configurado el área E2:G6 en la hoja de cálculo y ha abierto el <emph>Asistente para funciones</emph>. Para que la función ESTIMACIÓN.LINEAL funcione, deberá seleccionar la casilla de verificación <emph>Matriz</emph> en el <emph>Asistente para funciones</emph>. A continuación seleccione los siguientes valores en la hoja de cálculo (o escríbalos con el teclado):"
+
+#: 04060107.xhp#par_id3158020.133.help.text
+msgid "<emph>data_Y</emph> is C2:C8"
+msgstr "<emph>Datos_Y</emph> están en C2:C8"
+
+#: 04060107.xhp#par_id3158039.134.help.text
+msgid "<emph>data_X</emph> is A2:B8"
+msgstr "<emph>Datos_X</emph> están en A2:B8"
+
+#: 04060107.xhp#par_id3158058.135.help.text
+msgid "<emph>linearType</emph> and <emph>stats</emph> are both set to 1."
+msgstr "<emph>tipo_lineal</emph> y <emph>estadística</emph> están fijadas a 1."
+
+#: 04060107.xhp#par_id3158084.136.help.text
+msgid "As soon as you click <emph>OK</emph>, $[officename] Calc will fill the above example with the LINEST values as shown in the example."
+msgstr "Cuando haga clic en <emph>Aceptar</emph>, $[officename] Calc rellenará el ejemplo anterior con los valores de ESTIMACIÓN.LINEAL, como se muestra en el ejemplo."
+
+#: 04060107.xhp#par_id3158106.137.help.text
+msgid "The formula in the <emph>Formula</emph> Bar corresponds to each cell of the LINEST array <item type=\"input\">{=LINEST(C2:C8;A2:B8;1;1)}</item>"
+msgstr "La fórmula en la barra <emph>Fórmula</emph> corresponde a cada celda de la matriz de ESTIMACIÓN.LINEAL <item type=\"input\">{=ESTIMACIÓN.LINEAL(C2:C8;A2:B8;1;1)}</item>"
+
+#: 04060107.xhp#par_id3158128.138.help.text
+msgid "<emph>This represents the calculated LINEST values:</emph>"
+msgstr "<emph>Representa los valores de ESTIMACIÓN.LINEAL calculados:</emph>"
+
+#: 04060107.xhp#bm_id3158146.help.text
+msgid "<bookmark_value>slopes, see also regression lines</bookmark_value><bookmark_value>regression lines;LINEST function</bookmark_value>"
+msgstr "<bookmark_value>pendientes,véase también líneas de regresión</bookmark_value><bookmark_value>líneas de regresión;función ESTIMACION.LINEAL</bookmark_value>"
+
+#: 04060107.xhp#par_id3158146.139.help.text
+msgid "E2 and F2: Slope m of the regression line y=b+m*x for the x1 and x2 values. The values are given in reverse order; that is, the slope for x2 in E2 and the slope for x1 in F2."
+msgstr "E2 Y F2: La Pendiente m de la línea de regresión y=b+m*x para los valores x1 y x2. Los valores se dan en orden inverso; es decir, la pendiente de x2 en E2 y la pendiente de x1 en F2."
+
+#: 04060107.xhp#par_id3158184.140.help.text
+msgid "G2: Intersection b with the y axis."
+msgstr "G2: Intersección de b con el eje y."
+
+#: 04060107.xhp#bm_id3158204.help.text
+msgid "<bookmark_value>standard errors;array functions</bookmark_value>"
+msgstr "<bookmark_value>errores estándar</bookmark_value>"
+
+#: 04060107.xhp#par_id3158204.141.help.text
+msgid "E3 and F3: The standard error of the slope value."
+msgstr "E3 y F3: El error estándar del valor de la pendiente."
+
+#: 04060107.xhp#par_id3145845.142.help.text
+msgid "G3: The standard error of the intercept"
+msgstr "G3: El error estándar de la intersección"
+
+#: 04060107.xhp#bm_id3145859.help.text
+msgid "<bookmark_value>RSQ calculations</bookmark_value>"
+msgstr "<bookmark_value>Cálculos de COEFICIENTE.R2</bookmark_value>"
+
+#: 04060107.xhp#par_id3145859.143.help.text
+msgid "E4: RSQ"
+msgstr "E4: COEFICIENTE.R2"
+
+#: 04060107.xhp#par_id3145880.144.help.text
+msgid "F4: The standard error of the regression calculated for the Y value."
+msgstr "F4: El error estándar de la regresión calculada para el valor Y."
+
+#: 04060107.xhp#par_id3145894.145.help.text
+msgid "E5: The F value from the variance analysis."
+msgstr "E5: El valor F del análisis de varianza."
+
+#: 04060107.xhp#par_id3145915.146.help.text
+msgid "F5: The degrees of freedom from the variance analysis."
+msgstr "F5: Los grados de libertad del análisis de varianza."
+
+#: 04060107.xhp#par_id3145937.147.help.text
+msgid "E6: The sum of the squared deviation of the estimated Y values from their linear mean."
+msgstr "E6: La suma de la desviación cuadrada de los valores Y estimados de su media lineal."
+
+#: 04060107.xhp#par_id3145952.148.help.text
+msgid "F6: The sum of the squared deviation of the estimated Y value from the given Y values."
+msgstr "F6: La suma de la desviación cuadrada de los valores Y estimados de los valores Y especificados."
+
+#: 04060107.xhp#par_idN11B04.help.text
+msgctxt "04060107.xhp#par_idN11B04.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#bm_id1596728.help.text
+msgid "<bookmark_value>LOGEST function</bookmark_value>"
+msgstr "<bookmark_value>ESTIMACIÓN.LOGARÍTMICA</bookmark_value>"
+
+#: 04060107.xhp#hd_id3146009.150.help.text
+msgid "LOGEST"
+msgstr "ESTIMACIÓN.LOGARÍTMICA"
+
+#: 04060107.xhp#par_id3146037.151.help.text
+msgid "<ahelp hid=\"HID_FUNC_RKP\">This function calculates the adjustment of the entered data as an exponential regression curve (y=b*m^x).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_RKP\">Esta función calcula el ajuste de los datos introducidos como curva de regresión exponencial (y=b*m^x).</ahelp>"
+
+#: 04060107.xhp#hd_id3146056.152.help.text
+msgctxt "04060107.xhp#hd_id3146056.152.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060107.xhp#par_id3163123.153.help.text
+msgid "LOGEST(DataY; DataX; FunctionType; Stats)"
+msgstr "ESTIMACIÓN.LOGARÍTMICA(DatosY; DatosX; TipodeFunción; Estadística)"
+
+#: 04060107.xhp#par_id3163137.154.help.text
+#, fuzzy
+msgctxt "04060107.xhp#par_id3163137.154.help.text"
+msgid "<emph>DataY</emph> represents the Y Data array."
+msgstr "<emph>DatosY</emph> representan la matriz de datos Y."
+
+#: 04060107.xhp#par_id3163155.155.help.text
+#, fuzzy
+msgctxt "04060107.xhp#par_id3163155.155.help.text"
+msgid "<emph>DataX</emph> (optional) represents the X Data array."
+msgstr "<emph>DatosX</emph> (opcional) representa la matriz de datos X."
+
+#: 04060107.xhp#par_id3163174.156.help.text
+msgid "<emph>FunctionType</emph> (optional). If Function_Type = 0, functions in the form y = m^x will be calculated. Otherwise, y = b*m^x functions will be calculated."
+msgstr "<emph>TipodeFunción</emph> (opcional). Si Tipo_de_Función = 0, las funciones en la forma y = m^x serán calculadas. De lo contrario, las funciones y = b*m^x serán calculadas."
+
+#: 04060107.xhp#par_id3163196.157.help.text
+msgid "<emph>Stats</emph> (optional). If Stats=0, only the regression coefficient is calculated."
+msgstr "<emph>Estads</emph> (opcional). Si Estads=0, sólo se calcula el coeficiente de regresión."
+
+#: 04060107.xhp#par_idN118F7.help.text
+msgctxt "04060107.xhp#par_idN118F7.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060107.xhp#par_idN11BC3.help.text
+msgctxt "04060107.xhp#par_idN11BC3.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#hd_id3163216.158.help.text
+msgctxt "04060107.xhp#hd_id3163216.158.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060107.xhp#par_id3163230.159.help.text
+msgid "See LINEST. However, no square sum will be returned."
+msgstr "Consulte ESTIMACIÓN.LINEAL. Sin embargo, no se devuelve ninguna suma cuadrada."
+
+#: 04060107.xhp#bm_id3163286.help.text
+msgid "<bookmark_value>SUMPRODUCT function</bookmark_value><bookmark_value>scalar products</bookmark_value><bookmark_value>dot products</bookmark_value><bookmark_value>inner products</bookmark_value>"
+msgstr "<bookmark_value>SUMA.PRODUCTO</bookmark_value><bookmark_value>productos escalares</bookmark_value><bookmark_value>productos de punto</bookmark_value><bookmark_value>productos internos</bookmark_value>"
+
+#: 04060107.xhp#hd_id3163286.161.help.text
+msgid "SUMPRODUCT"
+msgstr "SUMA.PRODUCTO"
+
+#: 04060107.xhp#par_id3163314.162.help.text
+msgid "<ahelp hid=\"HID_FUNC_SUMMENPRODUKT\">Multiplies corresponding elements in the given arrays, and returns the sum of those products.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SUMMENPRODUKT\">Multiplica los elementos correspondientes en las matrices especificadas, y calcula la suma de dichos productos.</ahelp>"
+
+#: 04060107.xhp#hd_id3163334.163.help.text
+msgctxt "04060107.xhp#hd_id3163334.163.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060107.xhp#par_id3163347.164.help.text
+msgid "SUMPRODUCT(Array1; Array2...Array30)"
+msgstr "SUMA.PRODUCTO(Matriz1; Matriz2...Matriz30)"
+
+#: 04060107.xhp#par_id3163362.165.help.text
+msgid "<emph>Array1, Array2...Array30</emph> represent arrays whose corresponding elements are to be multiplied."
+msgstr "<emph>Matriz1, Matriz2...Matriz30</emph> representan matrices cuyos elementos correspondientes se multiplican."
+
+#: 04060107.xhp#par_idN11B19.help.text
+msgid "At least one array must be part of the argument list. If only one array is given, all array elements are summed."
+msgstr "La lista de argumentos debe contener una matriz como mínimo. Si sólo se proporciona una matriz, se suman todos los elementos de matriz."
+
+#: 04060107.xhp#par_idN11B1C.help.text
+msgctxt "04060107.xhp#par_idN11B1C.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060107.xhp#par_idN11B2F.help.text
+msgctxt "04060107.xhp#par_idN11B2F.help.text"
+msgid "A"
+msgstr "A"
+
+#: 04060107.xhp#par_idN11B35.help.text
+msgctxt "04060107.xhp#par_idN11B35.help.text"
+msgid "B"
+msgstr "B"
+
+#: 04060107.xhp#par_idN11B3B.help.text
+msgctxt "04060107.xhp#par_idN11B3B.help.text"
+msgid "C"
+msgstr "C"
+
+#: 04060107.xhp#par_idN11B41.help.text
+msgctxt "04060107.xhp#par_idN11B41.help.text"
+msgid "D"
+msgstr "D"
+
+#: 04060107.xhp#par_idN11B48.help.text
+msgctxt "04060107.xhp#par_idN11B48.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060107.xhp#par_idN11B4E.help.text
+msgctxt "04060107.xhp#par_idN11B4E.help.text"
+msgid "<item type=\"input\">2</item>"
+msgstr "<item type=\"input\">2</item>"
+
+#: 04060107.xhp#par_idN11B54.help.text
+msgctxt "04060107.xhp#par_idN11B54.help.text"
+msgid "<item type=\"input\">3</item>"
+msgstr "<item type=\"input\">3</item>"
+
+#: 04060107.xhp#par_idN11B5A.help.text
+msgctxt "04060107.xhp#par_idN11B5A.help.text"
+msgid "<item type=\"input\">4</item>"
+msgstr "<item type=\"input\">4</item>"
+
+#: 04060107.xhp#par_idN11B60.help.text
+msgctxt "04060107.xhp#par_idN11B60.help.text"
+msgid "<item type=\"input\">5</item>"
+msgstr "<item type=\"input\">5</item>"
+
+#: 04060107.xhp#par_idN11B67.help.text
+msgctxt "04060107.xhp#par_idN11B67.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060107.xhp#par_idN11B6D.help.text
+msgctxt "04060107.xhp#par_idN11B6D.help.text"
+msgid "<item type=\"input\">6</item>"
+msgstr "<item type=\"input\">6</item>"
+
+#: 04060107.xhp#par_idN11B73.help.text
+msgctxt "04060107.xhp#par_idN11B73.help.text"
+msgid "<item type=\"input\">7</item>"
+msgstr "<item type=\"input\">7</item>"
+
+#: 04060107.xhp#par_idN11B79.help.text
+msgctxt "04060107.xhp#par_idN11B79.help.text"
+msgid "<item type=\"input\">8</item>"
+msgstr "<item type=\"input\">8</item>"
+
+#: 04060107.xhp#par_idN11B7F.help.text
+msgctxt "04060107.xhp#par_idN11B7F.help.text"
+msgid "<item type=\"input\">9</item>"
+msgstr "<item type=\"input\">9</item>"
+
+#: 04060107.xhp#par_idN11B86.help.text
+msgctxt "04060107.xhp#par_idN11B86.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060107.xhp#par_idN11B8C.help.text
+msgctxt "04060107.xhp#par_idN11B8C.help.text"
+msgid "<item type=\"input\">10</item>"
+msgstr "<item type=\"input\">10</item>"
+
+#: 04060107.xhp#par_idN11B92.help.text
+msgctxt "04060107.xhp#par_idN11B92.help.text"
+msgid "<item type=\"input\">11</item>"
+msgstr "<item type=\"input\">11</item>"
+
+#: 04060107.xhp#par_idN11B98.help.text
+msgctxt "04060107.xhp#par_idN11B98.help.text"
+msgid "<item type=\"input\">12</item>"
+msgstr "<item type=\"input\">12</item>"
+
+#: 04060107.xhp#par_idN11B9E.help.text
+msgid "<item type=\"input\">13</item>"
+msgstr "<item type=\"input\">13</item>"
+
+#: 04060107.xhp#par_idN11BA1.help.text
+msgid "<item type=\"input\">=SUMPRODUCT(A1:B3;C1:D3)</item> returns 397."
+msgstr "<item type=\"input\">=SUMA.PRODUCTO(A1:B3;C1:D3)</item> devuelve 397."
+
+#: 04060107.xhp#par_idN11BA4.help.text
+msgid "Calculation: A1*C1 + B1*D1 + A2*C2 + B2*D2 + A3*C3 + B3*D3"
+msgstr "Cálculo: A1*C1 + B1*D1 + A2*C2 + B2*D2 + A3*C3 + B3*D3"
+
+#: 04060107.xhp#par_idN11BA7.help.text
+msgid "You can use SUMPRODUCT to calculate the scalar product of two vectors."
+msgstr "Puede utilizar la función SUMPRODUCT para calcular el producto escalar de dos vectores."
+
+#: 04060107.xhp#par_idN11BBC.help.text
+msgid "SUMPRODUCT returns a single number, it is not necessary to enter the function as an array function."
+msgstr "SUMA.PRODUCTO devuelve un único número; no es necesario introducir la función como una función de matriz."
+
+#: 04060107.xhp#par_idN11C91.help.text
+msgctxt "04060107.xhp#par_idN11C91.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#bm_id3144842.help.text
+msgid "<bookmark_value>SUMX2MY2 function</bookmark_value>"
+msgstr "<bookmark_value>SUMAX2MENOSY2</bookmark_value>"
+
+#: 04060107.xhp#hd_id3144842.169.help.text
+msgid "SUMX2MY2"
+msgstr "SUMAX2MENOSY2"
+
+#: 04060107.xhp#par_id3144871.170.help.text
+msgid "<ahelp hid=\"HID_FUNC_SUMMEX2MY2\">Returns the sum of the difference of squares of corresponding values in two arrays.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SUMMEX2MY2\">Calcula la suma de la diferencia los cuadrados de los valores correspondientes en dos matrices.</ahelp>"
+
+#: 04060107.xhp#hd_id3144889.171.help.text
+msgctxt "04060107.xhp#hd_id3144889.171.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060107.xhp#par_id3144903.172.help.text
+msgid "SUMX2MY2(ArrayX; ArrayY)"
+msgstr "SUMX2MENOSY2(MatrizX; MatrizY)"
+
+#: 04060107.xhp#par_id3144916.173.help.text
+#, fuzzy
+msgctxt "04060107.xhp#par_id3144916.173.help.text"
+msgid "<emph>ArrayX</emph> represents the first array whose elements are to be squared and added."
+msgstr "<emph>MatrizX</emph> representa la primera matriz cuyos elementos se llevaran al cuadrado y serán sumados."
+
+#: 04060107.xhp#par_id3144936.174.help.text
+msgid "<emph>ArrayY</emph> represents the second array whose elements are to be squared and subtracted."
+msgstr "<emph>MatrizY</emph> representa la segunda matriz los cuales elementos deberan ser de raiz y substraido."
+
+#: 04060107.xhp#par_idN11D6B.help.text
+msgctxt "04060107.xhp#par_idN11D6B.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#bm_id3145026.help.text
+msgid "<bookmark_value>SUMX2PY2 function</bookmark_value>"
+msgstr "<bookmark_value>SUMAX2MASY2</bookmark_value>"
+
+#: 04060107.xhp#hd_id3145026.178.help.text
+msgid "SUMX2PY2"
+msgstr "SUMAX2MASY2"
+
+#: 04060107.xhp#par_id3145055.179.help.text
+msgid "<ahelp hid=\"HID_FUNC_SUMMEX2PY2\">Returns the sum of the sum of squares of corresponding values in two arrays.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SUMMEX2PY2\">Calcula la suma de los cuadrados de los valores correspondientes en dos matrices.</ahelp>"
+
+#: 04060107.xhp#hd_id3163390.180.help.text
+msgctxt "04060107.xhp#hd_id3163390.180.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060107.xhp#par_id3163404.181.help.text
+msgid "SUMX2PY2(ArrayX; ArrayY)"
+msgstr "SUMAX2MASY2(MatrizX; MatrizY)"
+
+#: 04060107.xhp#par_id3163417.182.help.text
+msgctxt "04060107.xhp#par_id3163417.182.help.text"
+msgid "<emph>ArrayX</emph> represents the first array whose elements are to be squared and added."
+msgstr ""
+
+#: 04060107.xhp#par_id3163437.183.help.text
+msgid "<emph>ArrayY</emph> represents the second array, whose elements are to be squared and added."
+msgstr "<emph>MatrizY</emph> representa la segunda matriz, cuyos elementos deben ponerse al cuadrado y agregarse."
+
+#: 04060107.xhp#par_idN11E45.help.text
+msgctxt "04060107.xhp#par_idN11E45.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#bm_id3163527.help.text
+msgid "<bookmark_value>SUMXMY2 function</bookmark_value>"
+msgstr "<bookmark_value>función SUMAXMENOSY2</bookmark_value>"
+
+#: 04060107.xhp#hd_id3163527.187.help.text
+msgid "SUMXMY2"
+msgstr "SUMAXMENOSY2"
+
+#: 04060107.xhp#par_id3163556.188.help.text
+msgid "<ahelp hid=\"HID_FUNC_SUMMEXMY2\">Adds the squares of the variance between corresponding values in two arrays.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SUMMEXMY2\">Agrega los cuadrados de la varianza entre los valores correspondientes en dos matrices.</ahelp>"
+
+#: 04060107.xhp#hd_id3163574.189.help.text
+msgctxt "04060107.xhp#hd_id3163574.189.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060107.xhp#par_id3163588.190.help.text
+msgid "SUMXMY2(ArrayX; ArrayY)"
+msgstr "SUMAXMENOSY2(MatrizX; MatrizY)"
+
+#: 04060107.xhp#par_id3163601.191.help.text
+msgid "<emph>ArrayX</emph> represents the first array whose elements are to be subtracted and squared."
+msgstr "<emph>MatrizX</emph> representa la primer matriz loscuales elementos seran substraido y sacado raiz."
+
+#: 04060107.xhp#par_id3163621.192.help.text
+msgid "<emph>ArrayY</emph> represents the second array, whose elements are to be subtracted and squared."
+msgstr "<emph>MatrizY</emph> representa la segunda matriz, los cuales los elementos deberan ser substraido y sacado raiz."
+
+#: 04060107.xhp#par_idN11F1F.help.text
+msgctxt "04060107.xhp#par_idN11F1F.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#bm_id3166062.help.text
+msgid "<bookmark_value>TREND function</bookmark_value>"
+msgstr "<bookmark_value>TENDENCIA</bookmark_value>"
+
+#: 04060107.xhp#hd_id3166062.196.help.text
+msgid "TREND"
+msgstr "TENDENCIA"
+
+#: 04060107.xhp#par_id3166091.197.help.text
+msgid "<ahelp hid=\"HID_FUNC_TREND\">Returns values along a linear trend.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TREND\">Devuelve valores siguiendo una tendencia lineal.</ahelp>"
+
+#: 04060107.xhp#hd_id3166109.198.help.text
+msgctxt "04060107.xhp#hd_id3166109.198.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060107.xhp#par_id3166122.199.help.text
+msgid "TREND(DataY; DataX; NewDataX; LinearType)"
+msgstr "TENDENCIA(DatosY; DatosX; NuevosDatosX; TipodeLinea)"
+
+#: 04060107.xhp#par_id3166137.200.help.text
+msgctxt "04060107.xhp#par_id3166137.200.help.text"
+msgid "<emph>DataY</emph> represents the Y Data array."
+msgstr "<emph>DatosY</emph> representa la matriz de Datos Y."
+
+#: 04060107.xhp#par_id3166156.201.help.text
+msgctxt "04060107.xhp#par_id3166156.201.help.text"
+msgid "<emph>DataX</emph> (optional) represents the X Data array."
+msgstr "<emph>DatosX</emph> representa la matriz de Datos X."
+
+#: 04060107.xhp#par_id3166176.202.help.text
+msgid "<emph>NewDataX</emph> (optional) represents the array of the X data, which are used for recalculating values."
+msgstr "<emph>NuevosDatosX</emph> (opcional) representa las matriz de los datos X, los cuales son usados para recalcular los valores."
+
+#: 04060107.xhp#par_id3166196.203.help.text
+msgid "<emph>LinearType</emph>(Optional). If LinearType = 0, then lines will be calculated through the zero point. Otherwise, offset lines will also be calculated. The default is LinearType <> 0."
+msgstr "<emph>LinearType</emph>(Optional). Si LinearType = 0, las lineas seran calculadas atravez del punto cero. De lo contrario, las lineas alternas tambien seran calculadas. El valor predeterminado es LinearType <> 0."
+
+#: 04060107.xhp#par_idN11D2F.help.text
+msgctxt "04060107.xhp#par_idN11D2F.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060107.xhp#par_idN12019.help.text
+msgctxt "04060107.xhp#par_idN12019.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#hd_id3166231.204.help.text
+msgctxt "04060107.xhp#hd_id3166231.204.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060107.xhp#par_id3166245.205.help.text
+msgid "Select a spreadsheet range in which the trend data will appear. Select the function. Enter the output data or select it with the mouse. Mark the <emph>Array</emph> field. click <emph>OK</emph>. The trend data calculated from the output data is displayed."
+msgstr "Seleccione un área de la hoja de cálculo para contener los datos de tendencia. Seleccione la función. Escriba los datos de salida o selecciónelos con el ratón. Seleccione el campo <emph>Matriz</emph> y haga clic en <emph>Aceptar</emph>. Se muestran los datos de tendencia calculados a partir de los datos de salida."
+
+#: 04060107.xhp#bm_id3166317.help.text
+msgid "<bookmark_value>GROWTH function</bookmark_value><bookmark_value>exponential trends in arrays</bookmark_value>"
+msgstr "<bookmark_value>CRECIMIENTO</bookmark_value><bookmark_value>tendencia exponencial en matrices</bookmark_value>"
+
+#: 04060107.xhp#hd_id3166317.207.help.text
+msgid "GROWTH"
+msgstr "CRECIMIENTO"
+
+#: 04060107.xhp#par_id3166346.208.help.text
+msgid "<ahelp hid=\"HID_FUNC_VARIATION\">Calculates the points of an exponential trend in an array.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VARIATION\">Calcula los puntos de una tendencia exponencial en una matriz.</ahelp>"
+
+#: 04060107.xhp#hd_id3166364.209.help.text
+msgctxt "04060107.xhp#hd_id3166364.209.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060107.xhp#par_id3166377.210.help.text
+msgid "GROWTH(DataY; DataX; NewDataX; FunctionType)"
+msgstr "CRECIMIENTO(DatosY; DatosX; NuevosDatosX; FunctionType)"
+
+#: 04060107.xhp#par_id3166392.211.help.text
+msgctxt "04060107.xhp#par_id3166392.211.help.text"
+msgid "<emph>DataY</emph> represents the Y Data array."
+msgstr "<emph>DatosY</emph> representa la matriz de Datos Y."
+
+#: 04060107.xhp#par_id3166411.212.help.text
+msgctxt "04060107.xhp#par_id3166411.212.help.text"
+msgid "<emph>DataX</emph> (optional) represents the X Data array."
+msgstr "<emph>DatosX</emph> (opcional) representa la matriz de Datos X."
+
+#: 04060107.xhp#par_id3173797.213.help.text
+msgid "<emph>NewDataX</emph> (optional) represents the X data array, in which the values are recalculated."
+msgstr "<emph>NuevosDatosX</emph> (opcional) representa la matriz de datosX, en los cuales se recalculan."
+
+#: 04060107.xhp#par_id3173817.214.help.text
+msgid "<emph>FunctionType</emph>(optional). If FunctionType = 0, functions in the form y = m^x will be calculated. Otherwise, y = b*m^x functions will be calculated."
+msgstr "<emph>FunctionType</emph>(opcional). Si FunctionType = 0, la función de manera y = m^x será calculado. De lo contrario, la función y = b*m^x será calculada."
+
+#: 04060107.xhp#par_idN11DFD.help.text
+msgctxt "04060107.xhp#par_idN11DFD.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060107.xhp#par_idN12113.help.text
+msgctxt "04060107.xhp#par_idN12113.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#hd_id3173839.215.help.text
+msgctxt "04060107.xhp#hd_id3173839.215.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060107.xhp#par_id3173852.216.help.text
+msgid "This function returns an array and is handled in the same way as the other array functions. Select a range where you want the answers to appear and select the function. Select DataY. Enter any other parameters, mark <emph>Array</emph> and click <emph>OK</emph>."
+msgstr "Esta función devuelve una matriz y es manipulada de la misma manera que otras funciónes de matriz. Selecciona un rango donde quiera que aparesca la respueta y selecciona la función. Selecciona DatosY. Ingresa cualquier otro parametro, marca <emph>Matriz</emph> y haz clic en <emph>OK</emph>."
+
+#: 12080500.xhp#tit.help.text
+msgid "AutoOutline"
+msgstr "Esquema automático"
+
+#: 12080500.xhp#hd_id3150275.1.help.text
+msgid "<link href=\"text/scalc/01/12080500.xhp\" name=\"AutoOutline\">AutoOutline</link>"
+msgstr "<link href=\"text/scalc/01/12080500.xhp\" name=\"Esquema automático\">Esquema automático</link>"
+
+#: 12080500.xhp#par_id3145069.2.help.text
+msgid "<ahelp hid=\".uno:AutoOutline\">If the selected cell range contains formulas or references, $[officename] automatically outlines the selection.</ahelp>"
+msgstr "<ahelp hid=\".uno:AutoOutline\">Si el rango de celdas seleccionado contiene fórmulas o referencias, $[officename] automáticamente crea un esquema con la selección.</ahelp>"
+
+#: 12080500.xhp#par_id3148798.10.help.text
+msgid "For example, consider the following table:"
+msgstr "Por ejemplo, supongamos la tabla siguiente:"
+
+#: 12080500.xhp#par_id3154123.11.help.text
+msgid "January"
+msgstr "Enero"
+
+#: 12080500.xhp#par_id3154011.12.help.text
+msgid "February"
+msgstr "Febrero"
+
+#: 12080500.xhp#par_id3152460.13.help.text
+msgid "March"
+msgstr "Marzo"
+
+#: 12080500.xhp#par_id3146119.14.help.text
+msgid "1st Quarter"
+msgstr "Primer trimestre"
+
+#: 12080500.xhp#par_id3155854.15.help.text
+msgid "April"
+msgstr "Abril"
+
+#: 12080500.xhp#par_id3148575.16.help.text
+msgid "May"
+msgstr "Mayo"
+
+#: 12080500.xhp#par_id3145271.17.help.text
+msgid "June"
+msgstr "Junio"
+
+#: 12080500.xhp#par_id3145648.18.help.text
+msgid "2nd Quarter"
+msgstr "Segundo trimestre"
+
+#: 12080500.xhp#par_id3153876.19.help.text
+msgctxt "12080500.xhp#par_id3153876.19.help.text"
+msgid "100"
+msgstr "100"
+
+#: 12080500.xhp#par_id3145251.20.help.text
+msgid "120"
+msgstr "120"
+
+#: 12080500.xhp#par_id3149400.21.help.text
+msgid "130"
+msgstr "130"
+
+#: 12080500.xhp#par_id3150328.22.help.text
+msgid "350"
+msgstr "350"
+
+#: 12080500.xhp#par_id3155443.23.help.text
+msgctxt "12080500.xhp#par_id3155443.23.help.text"
+msgid "100"
+msgstr "100"
+
+#: 12080500.xhp#par_id3153713.24.help.text
+msgctxt "12080500.xhp#par_id3153713.24.help.text"
+msgid "100"
+msgstr "100"
+
+#: 12080500.xhp#par_id3156385.25.help.text
+msgid "200"
+msgstr "200"
+
+#: 12080500.xhp#par_id3145230.26.help.text
+msgid "400"
+msgstr "400"
+
+#: 12080500.xhp#par_id3147363.27.help.text
+msgid "The cells for the 1st and 2nd quarters each contain a sum formula for the three cells to their left. If you apply the <emph>AutoOutline</emph> command, the table is grouped into two quarters."
+msgstr "Las celdas correspondientes al 1º y 2º trimestres contienen una fórmula de suma de las tres celdas situadas a su izquierda. Si se aplica la orden <emph>Esquema automático</emph>, la tabla se agrupa en dos trimestres."
+
+#: 12080500.xhp#par_id3146918.9.help.text
+msgid "To remove the outline, select the table, and then choose <link href=\"text/scalc/01/12080600.xhp\" name=\"Data - Group and Outline - Remove\">Data - Group and Outline - Remove</link>."
+msgstr "Para borrar el esquema, seleccione la tabla y elija <link href=\"text/scalc/01/12080600.xhp\" name=\"Data - Group and Otuline - Remove\">Datos - Esquema - Borrar</link>."
+
+#: 06070000.xhp#tit.help.text
+msgid "AutoCalculate"
+msgstr "Cálculo automático"
+
+#: 06070000.xhp#bm_id3145673.help.text
+msgid "<bookmark_value>calculating; auto calculating sheets</bookmark_value><bookmark_value>recalculating;auto calculating sheets</bookmark_value><bookmark_value>AutoCalculate function in sheets</bookmark_value><bookmark_value>correcting sheets automatically</bookmark_value><bookmark_value>formulas;AutoCalculate function</bookmark_value><bookmark_value>cell contents;AutoCalculate function</bookmark_value>"
+msgstr "<bookmark_value>calcular;calcular hojas automáticamente</bookmark_value><bookmark_value>función Cálculo automático en hojas</bookmark_value><bookmark_value>corregir hojas automáticamente</bookmark_value><bookmark_value>fórmulas;Cálculo automático</bookmark_value><bookmark_value>contenido de celdas;Cálculo automático</bookmark_value>"
+
+#: 06070000.xhp#hd_id3145673.1.help.text
+msgid "<link href=\"text/scalc/01/06070000.xhp\" name=\"AutoCalculate\">AutoCalculate</link>"
+msgstr "<link href=\"text/scalc/01/06070000.xhp\" name=\"Cálculo automático\">Cálculo automático</link>"
+
+#: 06070000.xhp#par_id3148798.2.help.text
+msgid "<ahelp hid=\".uno:AutomaticCalculation\">Automatically recalculates all formulas in the document.</ahelp>"
+msgstr "<ahelp hid=\".uno:AutomaticCalculation\">Recalcula automáticamente todas las fórmulas del documento.</ahelp>"
+
+#: 06070000.xhp#par_id3145173.3.help.text
+msgid "All cells are recalculated after a sheet cell has been modified. Any charts in the sheet will also be refreshed."
+msgstr "Al modificar una celda de la hoja se recalculan todas las celdas. También se actualizan los diagramas de la hoja. Si está activada la función <emph>Cálculo automático</emph>, la función <emph>Recalcular</emph> (F9) no está disponible."
+
+#: 12050100.xhp#tit.help.text
+msgid "1st, 2nd, 3rd Group"
+msgstr "Grupo 1, Grupo 2, Grupo 3"
+
+#: 12050100.xhp#hd_id3149784.1.help.text
+msgid "<link href=\"text/scalc/01/12050100.xhp\" name=\"1st, 2nd, 3rd Group\">1st, 2nd, 3rd Group</link>"
+msgstr "<link href=\"text/scalc/01/12050100.xhp\" name=\"grupo 1º, 2º, 3º\">grupo 1º, 2º, 3º</link>"
+
+#: 12050100.xhp#par_id3145068.2.help.text
+msgid "<ahelp hid=\"HID_SCPAGE_SUBT_GROUP1\">Specify the settings for up to three subtotal groups. Each tab has the same layout.</ahelp>"
+msgstr "<ahelp hid=\"HID_SCPAGE_SUBT_GROUP1\">Especifique la configuración para un máximo de tres grupos de subtotales. Cada pestaña tiene el mismo diseño.</ahelp>"
+
+#: 12050100.xhp#par_id3148797.3.help.text
+msgid "To insert subtotal values into a table:"
+msgstr "Para insertar subtotales en una tabla:"
+
+#: 12050100.xhp#par_id3154908.13.help.text
+msgid "Ensure that the columns of the table have labels."
+msgstr "Compruebe que las columnas de la tabla estén etiquetadas."
+
+#: 12050100.xhp#par_id3153968.4.help.text
+msgid "Select the table or the area in the table that you want to calculate subtotals for, and then choose <emph>Data – Subtotals</emph>."
+msgstr "Seleccione la tabla o el área de ésta cuyos subtotales desee calcular y elija <emph>Datos - Subtotales</emph>."
+
+#: 12050100.xhp#par_id3161831.5.help.text
+msgid "In the <emph>Group By</emph> box, select the column that you want to add the subtotals to."
+msgstr "En el cuadro <emph>Agrupar por</emph> seleccione la columna por la que desee agrupar los subtotales."
+
+#: 12050100.xhp#par_id3153188.6.help.text
+msgid "In the <emph>Calculate subtotals for</emph> box, select the check boxes for the columns containing the values that you want to subtotal."
+msgstr "En el cuadro <emph>Calcular subtotales para</emph> seleccione las casillas de verificación de las columnas que contengan los valores que desea calcular."
+
+#: 12050100.xhp#par_id3152460.14.help.text
+msgid "In the <emph>Use function</emph> box, select the function that you want to use to calculate the subtotals."
+msgstr "En el cuadro <emph>Usar función</emph> seleccione la función que desee utilizar para calcular los subtotales."
+
+#: 12050100.xhp#par_id3154321.15.help.text
+msgctxt "12050100.xhp#par_id3154321.15.help.text"
+msgid "Click <emph>OK</emph>."
+msgstr "Pulse <emph>Aceptar</emph>."
+
+#: 12050100.xhp#hd_id3156441.7.help.text
+msgctxt "12050100.xhp#hd_id3156441.7.help.text"
+msgid "Group by"
+msgstr "Agrupar por"
+
+#: 12050100.xhp#par_id3154013.8.help.text
+msgid "<ahelp hid=\"HID_SC_SUBT_GROUP\">Select the column that you want to control the subtotal calculation process. If the contents of the selected column change, the subtotals are automatically recalculated.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_SUBT_GROUP\">Seleccione la columna que desee que controle el proceso de cálculo de subtotales. Si el contenido de la columna seleccionada cambia, los subtotales se recalculan automáticamente.</ahelp>"
+
+#: 12050100.xhp#hd_id3154943.9.help.text
+msgid "Calculate subtotals for"
+msgstr "Calcular subtotales para"
+
+#: 12050100.xhp#par_id3147125.10.help.text
+msgid "<ahelp hid=\"HID_SC_SUBT_COLS\">Select the column(s) containing the values that you want to subtotal.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_SUBT_COLS\">Seleccione las columnas que contienen los valores que desea calcular.</ahelp>"
+
+#: 12050100.xhp#hd_id3156283.11.help.text
+msgid "Use function"
+msgstr "Usar función"
+
+#: 12050100.xhp#par_id3145647.12.help.text
+msgid "<ahelp hid=\"HID_SC_SUBT_FUNC\">Select the mathematical function that you want to use to calculate the subtotals.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_SUBT_FUNC\">Seleccione la función matemática que desee utilizar para calcular los subtotales.</ahelp>"
+
+#: 12080700.xhp#tit.help.text
+#, fuzzy
+msgid "Show Details (Pivot Table)"
+msgstr "Mostrar detalles (DatosPiloto)"
+
+#: 12080700.xhp#hd_id3344523.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12080700.xhp\">Show Details (Pivot Table)</link>"
+msgstr "<link href=\"text/scalc/01/12080700.xhp\">Mostrar detalles (DatosPiloto)</link>"
+
+#: 12080700.xhp#par_id871303.help.text
+#, fuzzy
+msgid "<ahelp hid=\".\">Inserts a new \"drill-down\" sheet with more information about the current pivot table cell. You can also double-click a pivot table cell to insert the \"drill-down\" sheet. The new sheet shows a subset of rows from the original data source that constitutes the result data displayed in the current cell.</ahelp>"
+msgstr "<ahelp hid=\".\">Inserta una nueva hoja de \"Detalles\" que contiene mas información sobre la celda actual del Piloto de Datos. Usted puede hacer doble-clic sobre la celda del Piloto de Datos para insertar la hoja \"Detallada\". La nueva hoja mostrara desde los datos iniciales un conjunto de filas que constituyen el resultado de los datos desplegados en la celda actual.</ahelp>"
+
+#: 12080700.xhp#par_id7132480.help.text
+#, fuzzy
+msgid "Hidden items are not evaluated, the rows for the hidden items are included. Show Details is available only for pivot tables that are based on cell ranges or database data."
+msgstr "Los artículos ocultos no serán evaluados, se incluirán las filas de los artículos ocultos. Mostrar Detalles solo esta disponible para tablas del Piloto de Datos que están basadas en un rango de celdas o datos de una base de datos."
+
+#: 04050000.xhp#tit.help.text
+msgctxt "04050000.xhp#tit.help.text"
+msgid "Insert Sheet"
+msgstr "Insertar hoja"
+
+#: 04050000.xhp#bm_id4522232.help.text
+msgid "<bookmark_value>sheets;creating</bookmark_value>"
+msgstr "<bookmark_value>Hojas; creación</bookmark_value>"
+
+#: 04050000.xhp#hd_id3155629.1.help.text
+msgctxt "04050000.xhp#hd_id3155629.1.help.text"
+msgid "Insert Sheet"
+msgstr "Insertar hoja"
+
+#: 04050000.xhp#par_id3147264.2.help.text
+#, fuzzy
+msgid "<variable id=\"tabelleeinfuegentext\"><ahelp hid=\".uno:Insert\">Defines the options to be used to insert a new sheet.</ahelp> You can create a new sheet, or insert an existing sheet from a file.</variable>"
+msgstr "<variable id=\"tabelleeinfuegentext\"><ahelp hid=\".uno:Insert\">Defina las opciones de uso para insertar una nueva hoja.</ahelp> Puede crear una nueva hoja, o insertar una hoja existente desde un archivo. </variable>"
+
+#: 04050000.xhp#hd_id3154684.19.help.text
+msgid "Position"
+msgstr "Posición"
+
+#: 04050000.xhp#par_id3156281.20.help.text
+msgid "Specifies where the new sheet is to be inserted into your document."
+msgstr "Especifica dónde se insertará la hoja nueva dentro del documento."
+
+#: 04050000.xhp#hd_id3154123.21.help.text
+msgid "Before current sheet"
+msgstr "Delante de la hoja actual"
+
+#: 04050000.xhp#par_id3145787.22.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSERT_TABLE:RB_BEFORE\">Inserts a new sheet directly before the current sheet.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSERT_TABLE:RB_BEFORE\">Inserta una hoja nueva justo antes de la hoja actual.</ahelp>"
+
+#: 04050000.xhp#hd_id3155414.23.help.text
+msgid "After current sheet"
+msgstr "Detrás de la hoja actual"
+
+#: 04050000.xhp#par_id3145271.24.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSERT_TABLE:RB_BEHIND\">Inserts a new sheet directly after the current sheet.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSERT_TABLE:RB_BEHIND\">Inserta una hoja nueva justo después de la hoja actual.</ahelp>"
+
+#: 04050000.xhp#hd_id3147428.25.help.text
+msgctxt "04050000.xhp#hd_id3147428.25.help.text"
+msgid "Sheet"
+msgstr "Hoja"
+
+#: 04050000.xhp#par_id3154012.26.help.text
+msgid "Specifies whether a new sheet or an existing sheet is inserted into the document."
+msgstr "Especifica si se insertará en el documento una hoja nueva o una hoja ya existente."
+
+#: 04050000.xhp#hd_id3147350.3.help.text
+msgid "New sheet"
+msgstr "Nueva hoja"
+
+#: 04050000.xhp#par_id3149262.4.help.text
+msgid "<ahelp hid=\"SC_RADIOBUTTON_RID_SCDLG_INSERT_TABLE_RB_NEW\">Creates a new sheet. Enter a sheet name in the <emph>Name</emph> field. Allowed characters are letters, numbers, spaces, and the underline character.</ahelp>"
+msgstr "<ahelp hid=\"SC_RADIOBUTTON_RID_SCDLG_INSERT_TABLE_RB_NEW\">Crea una hoja. En el campo <emph>Nombre</emph>, asigne un nombre a la hoja. Se permiten los caracteres alfabéticos, numéricos, los espacios y el carácter de subrayado. </ahelp>"
+
+#: 04050000.xhp#hd_id3155418.27.help.text
+#, fuzzy
+msgid "No. of sheets"
+msgstr "Núm. de hojas"
+
+#: 04050000.xhp#par_id3148457.28.help.text
+msgid "<ahelp hid=\"SC:NUMERICFIELD:RID_SCDLG_INSERT_TABLE:NF_COUNT\">Specifies the number of sheets to be created.</ahelp>"
+msgstr "<ahelp hid=\"SC:NUMERICFIELD:RID_SCDLG_INSERT_TABLE:NF_COUNT\">Especifica el número de hojas que se deben crear.</ahelp>"
+
+#: 04050000.xhp#hd_id3149379.7.help.text
+msgctxt "04050000.xhp#hd_id3149379.7.help.text"
+msgid "Name"
+msgstr "Nombre"
+
+#: 04050000.xhp#par_id3150718.8.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_INSERT_TABLE:ED_TABNAME\">Specifies the name of the new sheet.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_INSERT_TABLE:ED_TABNAME\">Especifica el nombre de la nueva hoja.</ahelp>"
+
+#: 04050000.xhp#hd_id3155066.9.help.text
+msgid "From File"
+msgstr "A partir de archivo"
+
+#: 04050000.xhp#par_id3153714.10.help.text
+msgid "<ahelp hid=\"SC_RADIOBUTTON_RID_SCDLG_INSERT_TABLE_RB_FROMFILE\">Inserts a sheet from an existing file into the current document.</ahelp>"
+msgstr "<ahelp hid=\"SC_RADIOBUTTON_RID_SCDLG_INSERT_TABLE_RB_FROMFILE\">Inserta una hoja de un archivo en el documento activo.</ahelp>"
+
+#: 04050000.xhp#hd_id3149020.15.help.text
+msgctxt "04050000.xhp#hd_id3149020.15.help.text"
+msgid "Browse"
+msgstr "Examinar"
+
+#: 04050000.xhp#par_id3159267.16.help.text
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_INSERT_TABLE:BTN_BROWSE\">Opens a dialog for selecting a file.</ahelp>"
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_INSERT_TABLE:BTN_BROWSE\">Abre un diálogo para la selección de un archivo.</ahelp>"
+
+#: 04050000.xhp#hd_id3149255.29.help.text
+msgid "Available Sheets"
+msgstr "Hojas disponibles"
+
+#: 04050000.xhp#par_id3155336.30.help.text
+msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_INSERT_TABLE:LB_TABLES\">If you selected a file by using the <emph>Browse</emph> button, the sheets contained in it are displayed in the list box. The file path is displayed below this box. Select the sheet to be inserted from the list box.</ahelp>"
+msgstr "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_INSERT_TABLE:LB_TABLES\">Si ha seleccionado un archivo utilizando el botón <emph>Examinar</emph>, las hojas que contenga se mostrarán en la lista. La ruta del archivo se mostrará debajo de la lista. Seleccione en la lista la hoja que desea insertar.</ahelp>"
+
+#: 04050000.xhp#hd_id3145791.17.help.text
+msgid "Link"
+msgstr "Vínculo"
+
+#: 04050000.xhp#par_id3152580.18.help.text
+msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_INSERT_TABLE_CB_LINK\">Select to insert the sheet as a link instead as a copy. The links can be updated to show the current contents.</ahelp>"
+msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_INSERT_TABLE_CB_LINK\">Seleccione para insertar la hoja como vínculo en lugar de como copia. Los vínculos se pueden actualizar para que muestren el contenido nuevo.</ahelp>"
+
+#: 12060000.xhp#tit.help.text
+msgctxt "12060000.xhp#tit.help.text"
+msgid "Multiple Operations"
+msgstr "Operaciones múltiples"
+
+#: 12060000.xhp#hd_id3153381.1.help.text
+msgctxt "12060000.xhp#hd_id3153381.1.help.text"
+msgid "Multiple Operations"
+msgstr "Operaciones múltiples"
+
+#: 12060000.xhp#par_id3154140.2.help.text
+msgid "<variable id=\"mehrfachoperationen\"><ahelp hid=\".uno:TableOperationDialog\">Applies the same formula to different cells, but with different parameter values.</ahelp></variable>"
+msgstr "<variable id=\"mehrfachoperationen\"><ahelp hid=\".uno:TableOperationDialog\">Aplica la misma fórmula a distintas celdas, pero con diferentes valores de los parámetros .</ahelp></variable>"
+
+#: 12060000.xhp#par_id3152598.5.help.text
+msgid "The <emph>Row</emph> or <emph>Column</emph> box must contain a reference to the first cell of the selected range."
+msgstr "Los cuadros <emph>Fila</emph> o <emph>Columna</emph> deben contener una referencia a la primera celda del área seleccionada."
+
+#: 12060000.xhp#par_id3154011.16.help.text
+msgid "If you export a spreadsheet containing multiple operations to Microsoft Excel, the location of the cells containing the formula must be fully defined relative to the data range."
+msgstr "Si exporta una hoja de cálculo que contenga operaciones múltiples a Microsoft Excel, la ubicación de las celdas que contienen la fórmula debe estar totalmente definida de forma relativa al área de datos."
+
+#: 12060000.xhp#hd_id3156441.3.help.text
+msgid "Defaults"
+msgstr "Valores predeterminados"
+
+#: 12060000.xhp#hd_id3154492.6.help.text
+msgctxt "12060000.xhp#hd_id3154492.6.help.text"
+msgid "Formulas"
+msgstr "Fórmulas"
+
+#: 12060000.xhp#par_id3151073.7.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_FORMULARANGE\">Enter the cell references for the cells containing the formulas that you want to use in the multiple operation.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_FORMULARANGE\"> Ingresa las referencias de las celdas para que las celdas contengan fórmulas que quiera usar en operaciones múltiples .</ahelp>"
+
+#: 12060000.xhp#hd_id3154729.8.help.text
+msgctxt "12060000.xhp#hd_id3154729.8.help.text"
+msgid "Row"
+msgstr "Fila"
+
+#: 12060000.xhp#par_id3148456.9.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_ROWCELL\">Enter the input cell reference that you want to use as a variable for the rows in the data table.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_ROWCELL\">Ingresa la referencia a la celda de entrada que quiere usar como variable para las filas en la tabla de datos .</ahelp>"
+
+#: 12060000.xhp#hd_id3150718.14.help.text
+msgctxt "12060000.xhp#hd_id3150718.14.help.text"
+msgid "Column"
+msgstr "Columna"
+
+#: 12060000.xhp#par_id3150327.15.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_COLCELL\">Enter the input cell reference that you want to use as a variable for the columns in the data table.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_COLCELL\" visibility=\"visible\">Escriba la referencia de la celda de entrada que desee utilizar como variable para las columnas en la tabla de datos.</ahelp>"
+
+#: 04060115.xhp#tit.help.text
+msgctxt "04060115.xhp#tit.help.text"
+msgid "Add-in Functions, List of Analysis Functions Part One"
+msgstr "Funciones add-in, lista de funciones de análisis, primera parte"
+
+#: 04060115.xhp#bm_id3152871.help.text
+msgid "<bookmark_value>add-ins; analysis functions</bookmark_value><bookmark_value>analysis functions</bookmark_value>"
+msgstr "<bookmark_value>add-ins;funciones de análisis</bookmark_value><bookmark_value>funciones de análisis</bookmark_value>"
+
+#: 04060115.xhp#hd_id3152871.1.help.text
+msgctxt "04060115.xhp#hd_id3152871.1.help.text"
+msgid "Add-in Functions, List of Analysis Functions Part One"
+msgstr "Funciones Add-in, Lista de funciones de análisis Primera parte"
+
+#: 04060115.xhp#par_id3149873.102.help.text
+msgid "<link href=\"text/scalc/01/04060110.xhp\" name=\"General conversion function BASIS\">General conversion function BASIS</link>"
+msgstr "<link href=\"text/scalc/01/04060110.xhp\" name=\"General conversion function BASIS\">Función general de conversión BASIS</link>"
+
+#: 04060115.xhp#par_id3145324.5.help.text
+msgid "<link href=\"text/scalc/01/04060116.xhp\" name=\"Analysis functions Part Two\">Analysis functions Part Two</link>"
+msgstr "<link href=\"text/scalc/01/04060116.xhp\" name=\"Analysis functions Part Two\">Funciones de análisis, parte 2</link>"
+
+#: 04060115.xhp#par_id3155751.156.help.text
+msgctxt "04060115.xhp#par_id3155751.156.help.text"
+msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Back to the Overview</link>"
+msgstr "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Regresar a la Información General</link>"
+
+#: 04060115.xhp#bm_id3153074.help.text
+msgid "<bookmark_value>Bessel functions</bookmark_value>"
+msgstr "<bookmark_value>BESSEL</bookmark_value>"
+
+#: 04060115.xhp#hd_id3153334.111.help.text
+msgid "BESSELI"
+msgstr "BESSELI"
+
+#: 04060115.xhp#par_id3153960.112.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELI\">Calculates the modified Bessel function.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELI\">Calcula la función de Bessel modificada.</ahelp>"
+
+#: 04060115.xhp#hd_id3150392.113.help.text
+msgctxt "04060115.xhp#hd_id3150392.113.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060115.xhp#par_id3147295.114.help.text
+msgid "BESSELI(X; N)"
+msgstr "BESSELI(X; N)"
+
+#: 04060115.xhp#par_id3151338.115.help.text
+#, fuzzy
+msgctxt "04060115.xhp#par_id3151338.115.help.text"
+msgid "<emph>X</emph> is the value on which the function will be calculated."
+msgstr "<emph>X</emph> es el valor sobre el que la función será calculada."
+
+#: 04060115.xhp#par_id3151392.116.help.text
+msgctxt "04060115.xhp#par_id3151392.116.help.text"
+msgid "<emph>N</emph> is the order of the Bessel function"
+msgstr "<emph>N</emph> es el orden de la función Bessel."
+
+#: 04060115.xhp#hd_id3153027.103.help.text
+msgid "BESSELJ"
+msgstr "BESSELJ"
+
+#: 04060115.xhp#par_id3153015.104.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\">Calculates the Bessel function (cylinder function).</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\">Calcula la función de Bessel (función cilíndrica).</ahelp>"
+
+#: 04060115.xhp#hd_id3146884.105.help.text
+msgctxt "04060115.xhp#hd_id3146884.105.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060115.xhp#par_id3150032.106.help.text
+msgid "BESSELJ(X; N)"
+msgstr "BESSELJ(X; N)"
+
+#: 04060115.xhp#par_id3150378.107.help.text
+msgctxt "04060115.xhp#par_id3150378.107.help.text"
+msgid "<emph>X</emph> is the value on which the function will be calculated."
+msgstr "<emph>X</emph> es el valor sobre el cual la función será calculada."
+
+#: 04060115.xhp#par_id3145638.108.help.text
+msgctxt "04060115.xhp#par_id3145638.108.help.text"
+msgid "<emph>N</emph> is the order of the Bessel function"
+msgstr "<emph>N</emph> es el orden de la función Bessel."
+
+#: 04060115.xhp#hd_id3149946.117.help.text
+msgid "BESSELK"
+msgstr "BESSELK"
+
+#: 04060115.xhp#par_id3159122.118.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELK\">Calculates the modified Bessel function.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELK\">Calcula la función de Bessel modificada.</ahelp>"
+
+#: 04060115.xhp#hd_id3150650.119.help.text
+msgctxt "04060115.xhp#hd_id3150650.119.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060115.xhp#par_id3149354.120.help.text
+msgid "BESSELK(X; N)"
+msgstr "BESSELK(X; N)"
+
+#: 04060115.xhp#par_id3150481.121.help.text
+msgctxt "04060115.xhp#par_id3150481.121.help.text"
+msgid "<emph>X</emph> is the value on which the function will be calculated."
+msgstr "<emph>X</emph> es el valor sobre el cual la función será calculada."
+
+#: 04060115.xhp#par_id3150024.122.help.text
+msgctxt "04060115.xhp#par_id3150024.122.help.text"
+msgid "<emph>N</emph> is the order of the Bessel function"
+msgstr "<emph>N</emph> es el orden de la función Bessel."
+
+#: 04060115.xhp#hd_id3145828.123.help.text
+msgid "BESSELY"
+msgstr "BESSELY"
+
+#: 04060115.xhp#par_id3146877.124.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">Calculates the modified Bessel function.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">Calcula la función de Bessel modificada.</ahelp>"
+
+#: 04060115.xhp#hd_id3146941.125.help.text
+msgctxt "04060115.xhp#hd_id3146941.125.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060115.xhp#par_id3148884.126.help.text
+msgid "BESSELY(X; N)"
+msgstr "BESSELY(X; N)"
+
+#: 04060115.xhp#par_id3147475.127.help.text
+msgctxt "04060115.xhp#par_id3147475.127.help.text"
+msgid "<emph>X</emph> is the value on which the function will be calculated."
+msgstr "<emph>X</emph> es el valor con el cual la función será calculada."
+
+#: 04060115.xhp#par_id3147421.128.help.text
+msgctxt "04060115.xhp#par_id3147421.128.help.text"
+msgid "<emph>N</emph> is the order of the Bessel function"
+msgstr "<emph>N</emph> es el orden de la función Bessel"
+
+#: 04060115.xhp#bm_id3153034.help.text
+msgid "<bookmark_value>BIN2DEC function</bookmark_value><bookmark_value>converting;binary numbers, into decimal numbers</bookmark_value>"
+msgstr "<bookmark_value>BIN.A.DEC</bookmark_value><bookmark_value>convertir;números binarios, en números decimales</bookmark_value>"
+
+#: 04060115.xhp#hd_id3153034.17.help.text
+msgid "BIN2DEC"
+msgstr "BIN.A.DEC"
+
+#: 04060115.xhp#par_id3144744.18.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\">The result is the decimal number for the binary number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\">El resultado es el número decimal que corresponda al número binario introducido.</ahelp>"
+
+#: 04060115.xhp#hd_id3145593.19.help.text
+msgctxt "04060115.xhp#hd_id3145593.19.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060115.xhp#par_id3149726.20.help.text
+msgid "BIN2DEC(Number)"
+msgstr "HEX.A.DEC(Número)"
+
+#: 04060115.xhp#par_id3150142.21.help.text
+#, fuzzy
+msgctxt "04060115.xhp#par_id3150142.21.help.text"
+msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
+msgstr "<emph>Número</emph> es un número binario. El número puede tener un máximo de 10 posiciones (bits). El bit más significativo es el bit de signo. Los números negativos se registran como dos del complemento."
+
+#: 04060115.xhp#hd_id3149250.22.help.text
+msgctxt "04060115.xhp#hd_id3149250.22.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060115.xhp#par_id3145138.23.help.text
+msgid "<item type=\"input\">=BIN2DEC(1100100)</item> returns 100."
+msgstr "<item type=\"input\">=BIN.A.DEC(1100100)</item> devuelve 100."
+
+#: 04060115.xhp#bm_id3149954.help.text
+msgid "<bookmark_value>BIN2HEX function</bookmark_value><bookmark_value>converting;binary numbers, into hexadecimal numbers</bookmark_value>"
+msgstr "<bookmark_value>BIN.A.HEX</bookmark_value><bookmark_value>convertir;números binarios, en números hexadecimales</bookmark_value>"
+
+#: 04060115.xhp#hd_id3149954.24.help.text
+msgid "BIN2HEX"
+msgstr "BIN.A.HEX"
+
+#: 04060115.xhp#par_id3148585.25.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2HEX\">The result is the hexadecimal number for the binary number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2HEX\">El resultado es el número hexadecimal que corresponda al número binario introducido.</ahelp>"
+
+#: 04060115.xhp#hd_id3153936.26.help.text
+msgctxt "04060115.xhp#hd_id3153936.26.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060115.xhp#par_id3148753.27.help.text
+msgid "BIN2HEX(Number; Places)"
+msgstr "BIN2HEX(Número; Cifras)"
+
+#: 04060115.xhp#par_id3155255.28.help.text
+msgctxt "04060115.xhp#par_id3155255.28.help.text"
+msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
+msgstr "<emph>Número</emph> es un número binario. El número puede tener un máximo de 10 cifras (bits). El bit más significativo es el bit de signo. Los números negativos se registran como dos del complemento."
+
+#: 04060115.xhp#par_id3150860.29.help.text
+msgid "Places means the number of places to be output."
+msgstr "Cifras significa el número de cifras a salir."
+
+#: 04060115.xhp#hd_id3155829.30.help.text
+msgctxt "04060115.xhp#hd_id3155829.30.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060115.xhp#par_id3149686.31.help.text
+msgid "<item type=\"input\">=BIN2HEX(1100100;6)</item> returns 000064."
+msgstr "<item type=\"input\">=BIN.A.HEX(1100100;6)</item> devuelve 000064."
+
+#: 04060115.xhp#bm_id3153332.help.text
+msgid "<bookmark_value>BIN2OCT function</bookmark_value><bookmark_value>converting;binary numbers, into octal numbers</bookmark_value>"
+msgstr "<bookmark_value>BIN.A.OCT</bookmark_value><bookmark_value>convertir;números binarios, en números octales</bookmark_value>"
+
+#: 04060115.xhp#hd_id3153332.9.help.text
+msgid "BIN2OCT"
+msgstr "BIN.A.OCT"
+
+#: 04060115.xhp#par_id3155951.10.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\"> The result is the octal number for the binary number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\"> El resultado es el número octal que corresponda al número binario introducido.</ahelp>"
+
+#: 04060115.xhp#hd_id3153001.11.help.text
+msgctxt "04060115.xhp#hd_id3153001.11.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060115.xhp#par_id3154508.12.help.text
+msgid "BIN2OCT(Number; Places)"
+msgstr "DEC.A.OCT(Número;decimales)"
+
+#: 04060115.xhp#par_id3153567.13.help.text
+msgctxt "04060115.xhp#par_id3153567.13.help.text"
+msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
+msgstr "<emph>Número</emph> es un número binario. El número puede tener un máximo de 10 cifras (bits). El bit más significativo es el bit de signo. Los números negativos se registran como dos del complemento."
+
+#: 04060115.xhp#par_id3155929.14.help.text
+msgctxt "04060115.xhp#par_id3155929.14.help.text"
+msgid "<emph>Places</emph> means the number of places to be output."
+msgstr "<emph>Cifras</emph> significa el número de espacios totales."
+
+#: 04060115.xhp#hd_id3150128.15.help.text
+msgctxt "04060115.xhp#hd_id3150128.15.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060115.xhp#par_id3153733.16.help.text
+msgid "<item type=\"input\">=BIN2OCT(1100100;4)</item> returns 0144."
+msgstr "<item type=\"input\">=BIN.A.OCT(1100100;4)</item> devuelve 0144."
+
+#: 04060115.xhp#bm_id3150014.help.text
+msgid "<bookmark_value>DELTA function</bookmark_value><bookmark_value>recognizing;equal numbers</bookmark_value>"
+msgstr "<bookmark_value>DELTA</bookmark_value><bookmark_value>reconocer;números equivalentes</bookmark_value>"
+
+#: 04060115.xhp#hd_id3150014.129.help.text
+msgid "DELTA"
+msgstr "DELTA"
+
+#: 04060115.xhp#par_id3148760.130.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_DELTA\">The result is TRUE (1) if both numbers, which are delivered as an argument, are equal, otherwise it is FALSE (0).</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DELTA\">El resultado es VERDADERO (1) si ambos argumentos numéricos son iguales; en caso contrario, es FALSO (0).</ahelp>"
+
+#: 04060115.xhp#hd_id3155435.131.help.text
+msgctxt "04060115.xhp#hd_id3155435.131.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060115.xhp#par_id3145247.132.help.text
+msgid "DELTA(Number1; Number2)"
+msgstr "DELTA(Número1; Número2)"
+
+#: 04060115.xhp#hd_id3149002.133.help.text
+msgctxt "04060115.xhp#hd_id3149002.133.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060115.xhp#par_id3151020.134.help.text
+msgid "<item type=\"input\">=DELTA(1;2)</item> returns 0."
+msgstr "<item type=\"input\">=DELTA(1;2)</item> devuelve 0."
+
+#: 04060115.xhp#bm_id3157971.help.text
+msgid "<bookmark_value>DEC2BIN function</bookmark_value><bookmark_value>converting;decimal numbers, into binary numbers</bookmark_value>"
+msgstr "<bookmark_value>DEC.A.BIN</bookmark_value><bookmark_value>convertir;números decimales, en números binarios</bookmark_value>"
+
+#: 04060115.xhp#hd_id3157971.55.help.text
+msgid "DEC2BIN"
+msgstr "DEC.A.BIN"
+
+#: 04060115.xhp#par_id3153043.56.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2BIN\"> The result is the binary number for the decimal number entered between -512 and 511.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2BIN\"> El resultado es el número binario que corresponda al número decimal, entre -512 y 511.</ahelp>"
+
+#: 04060115.xhp#hd_id3145349.57.help.text
+msgctxt "04060115.xhp#hd_id3145349.57.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060115.xhp#par_id3150569.58.help.text
+msgid "DEC2BIN(Number; Places)"
+msgstr "DEC.A.BIN(Número; Decimales)"
+
+#: 04060115.xhp#par_id3148768.59.help.text
+msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns a binary number with 10 characters. The most significant bit is the sign bit, the other 9 bits return the value."
+msgstr "<emph>Número</emph> es un número decimal. Si el número es negativo, la función devuelve un número binario con 10 caracteres. El bit más significativo es el bit de signo, los otros 9 bits devuelven el valor."
+
+#: 04060115.xhp#par_id3149537.60.help.text
+msgctxt "04060115.xhp#par_id3149537.60.help.text"
+msgid "<emph>Places</emph> means the number of places to be output."
+msgstr "<emph>Cifras</emph> significa el número de espacios totales."
+
+#: 04060115.xhp#hd_id3150265.61.help.text
+msgctxt "04060115.xhp#hd_id3150265.61.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060115.xhp#par_id3150662.62.help.text
+msgid "<item type=\"input\">=DEC2BIN(100;8)</item> returns 01100100."
+msgstr "<item type=\"input\">=DEC.A.BIN(100;8)</item> devuelve 01100100."
+
+#: 04060115.xhp#bm_id3149388.help.text
+msgid "<bookmark_value>DEC2HEX function</bookmark_value><bookmark_value>converting;decimal numbers, into hexadecimal numbers</bookmark_value>"
+msgstr "<bookmark_value>DEC.A.HEX</bookmark_value><bookmark_value>convertir;números decimales, en números hexadecimales</bookmark_value>"
+
+#: 04060115.xhp#hd_id3149388.71.help.text
+msgid "DEC2HEX"
+msgstr "DEC.A.HEX"
+
+#: 04060115.xhp#par_id3149030.72.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2HEX\">The result is the hexadecimal number for the decimal number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2HEX\">El resultado es el número hexadecimal que corresponda al número decimal introducido.</ahelp>"
+
+#: 04060115.xhp#hd_id3150691.73.help.text
+msgctxt "04060115.xhp#hd_id3150691.73.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060115.xhp#par_id3147535.74.help.text
+msgid "DEC2HEX(Number; Places)"
+msgstr "DEC.A.HEX(Número; Decimales)"
+
+#: 04060115.xhp#par_id3152820.75.help.text
+msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns a hexadecimal number with 10 characters (40 bits). The most significant bit is the sign bit, the other 39 bits return the value."
+msgstr "<emph>Número</emph> es un número decimal. Si el número es negativo, la función devuelve un número hexadecimal con 10 caracteres (40 bits). El bit más significativo es el bit de signo, los otros 39 bits devuelven el valor."
+
+#: 04060115.xhp#par_id3153221.76.help.text
+msgctxt "04060115.xhp#par_id3153221.76.help.text"
+msgid "<emph>Places</emph> means the number of places to be output."
+msgstr "<emph>Cifras</emph> significa el número de espacios totales."
+
+#: 04060115.xhp#hd_id3154869.77.help.text
+msgctxt "04060115.xhp#hd_id3154869.77.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060115.xhp#par_id3150476.78.help.text
+msgid "<item type=\"input\">=DEC2HEX(100;4)</item> returns 0064."
+msgstr "<item type=\"input\">=DEC.A.HEX(100;4)</item> devuelve 0064."
+
+#: 04060115.xhp#bm_id3154948.help.text
+msgid "<bookmark_value>DEC2OCT function</bookmark_value><bookmark_value>converting;decimal numbers, into octal numbers</bookmark_value>"
+msgstr "<bookmark_value>DEC.A.OCT</bookmark_value><bookmark_value>convertir;números decimales, en números octales</bookmark_value>"
+
+#: 04060115.xhp#hd_id3154948.63.help.text
+msgid "DEC2OCT"
+msgstr "DEC.A.OCT"
+
+#: 04060115.xhp#par_id3153920.64.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2OCT\">The result is the octal number for the decimal number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2OCT\">El resultado es el número octal que corresponda al número decimal introducido.</ahelp>"
+
+#: 04060115.xhp#hd_id3153178.65.help.text
+msgctxt "04060115.xhp#hd_id3153178.65.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060115.xhp#par_id3148427.66.help.text
+msgid "DEC2OCT(Number; Places)"
+msgstr "DEC.A.OCT(Número;decimales)"
+
+#: 04060115.xhp#par_id3155991.67.help.text
+msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns an octal number with 10 characters (30 bits). The most significant bit is the sign bit, the other 29 bits return the value."
+msgstr "<emph>Número</emph> es un número decimal. Si el número es negativo, la función devuelve un número octal con 10 caracteres (30 bits). El bit más significativo es el bit de signo, los otros 29 bits devuelven el valor."
+
+#: 04060115.xhp#par_id3152587.68.help.text
+msgctxt "04060115.xhp#par_id3152587.68.help.text"
+msgid "<emph>Places</emph> means the number of places to be output."
+msgstr "<emph>Cifras</emph> significa el número de espacios totales."
+
+#: 04060115.xhp#hd_id3147482.69.help.text
+msgctxt "04060115.xhp#hd_id3147482.69.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060115.xhp#par_id3154317.70.help.text
+msgid "<item type=\"input\">=DEC2OCT(100;4)</item> returns 0144."
+msgstr "<item type=\"input\">=DEC.A.OCT(100;4)</item> devuelve 0144."
+
+#: 04060115.xhp#bm_id3083446.help.text
+msgid "<bookmark_value>ERF function</bookmark_value><bookmark_value>Gaussian error integral</bookmark_value>"
+msgstr "<bookmark_value>FUN.ERROR</bookmark_value><bookmark_value>error de la integral de Gauss</bookmark_value>"
+
+#: 04060115.xhp#hd_id3083446.135.help.text
+msgid "ERF"
+msgstr "FUN.ERROR"
+
+#: 04060115.xhp#par_id3150381.136.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_ERF\">Returns values of the Gaussian error integral.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ERF\">Devuelve los valores del error de la integral de Gauss.</ahelp>"
+
+#: 04060115.xhp#hd_id3152475.137.help.text
+msgctxt "04060115.xhp#hd_id3152475.137.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060115.xhp#par_id3163824.138.help.text
+msgid "ERF(LowerLimit; UpperLimit)"
+msgstr "FUN.ERROR(LímiteInferior; LímiteSuperior)"
+
+#: 04060115.xhp#par_id3149715.139.help.text
+msgid "<emph>LowerLimit</emph> is the lower limit of the integral."
+msgstr "<emph>LímiteInferior</emph> es el límite inferior de la integral."
+
+#: 04060115.xhp#par_id3156294.140.help.text
+msgid "<emph>UpperLimit</emph> is optional. It is the upper limit of the integral. If this value is missing, the calculation takes places between 0 and the lower limit."
+msgstr "<emph>LímiteSuperior</emph> es opcional. Este es el límite superior de la integral. Si este valor se pierde, el cálculo toma cifras entre 0 y el límite inferior."
+
+#: 04060115.xhp#hd_id3154819.141.help.text
+msgctxt "04060115.xhp#hd_id3154819.141.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060115.xhp#par_id3152974.142.help.text
+msgid "<item type=\"input\">=ERF(0;1)</item> returns 0.842701."
+msgstr "<item type=\"input\">=FUN.ERROR(0;1)</item> devuelve 0.842701."
+
+#: 04060115.xhp#bm_id3145082.help.text
+msgid "<bookmark_value>ERFC function</bookmark_value>"
+msgstr "<bookmark_value>FUN.ERROR.COMPL</bookmark_value>"
+
+#: 04060115.xhp#hd_id3145082.143.help.text
+msgid "ERFC"
+msgstr "FUN.ERROR.COMPL"
+
+#: 04060115.xhp#par_id3149453.144.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_ERFC\">Returns complementary values of the Gaussian error integral between x and infinity.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ERFC\">Devuelve los valores complementarios del error de la integral de Gauss entre x e infinito.</ahelp>"
+
+#: 04060115.xhp#hd_id3155839.145.help.text
+msgctxt "04060115.xhp#hd_id3155839.145.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060115.xhp#par_id3153220.146.help.text
+msgid "ERFC(LowerLimit)"
+msgstr "FUN.ERROR.COMPL(LímiteInferior)"
+
+#: 04060115.xhp#par_id3147620.147.help.text
+msgid "<emph>LowerLimit</emph> is the lower limit of the integral"
+msgstr "<emph>LímiteInferior</emph> es el límite inferior de la integral."
+
+#: 04060115.xhp#hd_id3146861.148.help.text
+msgctxt "04060115.xhp#hd_id3146861.148.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060115.xhp#par_id3156102.149.help.text
+msgid "<item type=\"input\">=ERFC(1)</item> returns 0.157299."
+msgstr "<item type=\"input\">=FUN.ERROR.COMPL(1)</item> devuelve 0.157299."
+
+#: 04060115.xhp#bm_id3152927.help.text
+msgid "<bookmark_value>GESTEP function</bookmark_value><bookmark_value>numbers;greater than or equal to</bookmark_value>"
+msgstr "<bookmark_value>MAYOR.O.IGUAL</bookmark_value><bookmark_value>números;mayor o igual que</bookmark_value>"
+
+#: 04060115.xhp#hd_id3152927.150.help.text
+msgid "GESTEP"
+msgstr "MAYOR.O.IGUAL"
+
+#: 04060115.xhp#par_id3150763.151.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_GESTEP\">The result is 1 if <item type=\"literal\">Number</item> is greater than or equal to <item type=\"literal\">Step</item>.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_GESTEP\">El resultado es 1 si el<item type=\"literal\">Número</item> es mayor o igual al<item type=\"literal\">Paso</item>.</ahelp>"
+
+#: 04060115.xhp#hd_id3150879.152.help.text
+msgctxt "04060115.xhp#hd_id3150879.152.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060115.xhp#par_id3145212.153.help.text
+msgid "GESTEP(Number; Step)"
+msgstr "MAYOR.O.IGUAL(número; valor umbral)"
+
+#: 04060115.xhp#hd_id3153275.154.help.text
+msgctxt "04060115.xhp#hd_id3153275.154.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060115.xhp#par_id3156132.155.help.text
+msgid "<item type=\"input\">=GESTEP(5;1)</item> returns 1."
+msgstr "<item type=\"input\">=MAYOR.O.IGUAL(5;1)</item> devuelve 1."
+
+#: 04060115.xhp#bm_id3147276.help.text
+msgid "<bookmark_value>HEX2BIN function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into binary numbers</bookmark_value>"
+msgstr "<bookmark_value>HEX.A.BIN</bookmark_value><bookmark_value>convertir;números hexadecimales, en números binarios</bookmark_value>"
+
+#: 04060115.xhp#hd_id3147276.79.help.text
+msgid "HEX2BIN"
+msgstr "HEX.A.BIN"
+
+#: 04060115.xhp#par_id3150258.80.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2BIN\">The result is the binary number for the hexadecimal number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2BIN\">El resultado es el número binario que corresponda al número hexadecimal introducido.</ahelp>"
+
+#: 04060115.xhp#hd_id3156117.81.help.text
+msgctxt "04060115.xhp#hd_id3156117.81.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060115.xhp#par_id3155847.82.help.text
+msgid "HEX2BIN(Number; Places)"
+msgstr "HEX.A.BIN(Número; Decimales)"
+
+#: 04060115.xhp#par_id3152810.83.help.text
+msgctxt "04060115.xhp#par_id3152810.83.help.text"
+msgid "<emph>Number</emph> is a hexadecimal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgstr "<emph>Número</emph> es un número hexadecimal. El número puede tener un máximo de 10 cifras. El bit más significativo es el bit de signo, los siguientes bits devuelven el valor. Los números negativos se registran como dos del complemento."
+
+#: 04060115.xhp#par_id3153758.84.help.text
+msgctxt "04060115.xhp#par_id3153758.84.help.text"
+msgid "<emph>Places</emph> is the number of places to be output."
+msgstr "<emph>Cifras</emph> es el número de espacios totales."
+
+#: 04060115.xhp#hd_id3154052.85.help.text
+msgctxt "04060115.xhp#hd_id3154052.85.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060115.xhp#par_id3156002.86.help.text
+msgid "<item type=\"input\">=HEX2BIN(64;8)</item> returns 01100100."
+msgstr "<item type=\"input\">=HEX.A.BIN(64;8)</item> devuelve 01100100."
+
+#: 04060115.xhp#bm_id3154742.help.text
+msgid "<bookmark_value>HEX2DEC function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into decimal numbers</bookmark_value>"
+msgstr "<bookmark_value>HEX.A.DEC</bookmark_value><bookmark_value>convertir;números hexadecimales, en números decimales</bookmark_value>"
+
+#: 04060115.xhp#hd_id3154742.87.help.text
+msgid "HEX2DEC"
+msgstr "HEX.A.DEC"
+
+#: 04060115.xhp#par_id3153626.88.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2DEC\">The result is the decimal number for the hexadecimal number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2DEC\">El resultado es el número decimal que corresponda al número hexadecimal introducido.</ahelp>"
+
+#: 04060115.xhp#hd_id3143233.89.help.text
+msgctxt "04060115.xhp#hd_id3143233.89.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060115.xhp#par_id3149293.90.help.text
+msgid "HEX2DEC(Number)"
+msgstr "HEX.A.DEC(Número)"
+
+#: 04060115.xhp#par_id3159176.91.help.text
+msgctxt "04060115.xhp#par_id3159176.91.help.text"
+msgid "<emph>Number</emph> is a hexadecimal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgstr "<emph>Número</emph> es un número hexadecimal. El número puede tener un máximo de 10 cifras. El bit más significativo es el bit de signo, los siguientes bits devuelven el valor. Los números negativos se registran como dos del complemento."
+
+#: 04060115.xhp#hd_id3154304.92.help.text
+msgctxt "04060115.xhp#hd_id3154304.92.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060115.xhp#par_id3146093.93.help.text
+msgid "<item type=\"input\">=HEX2DEC(64)</item> returns 100."
+msgstr "<item type=\"input\">=HEX.A.DEC(64)</item> devuelve 100."
+
+#: 04060115.xhp#bm_id3149750.help.text
+msgid "<bookmark_value>HEX2OCT function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into octal numbers</bookmark_value>"
+msgstr "<bookmark_value>HEX.A.OCT</bookmark_value><bookmark_value>convertir;números hexadecimales, en números octales</bookmark_value>"
+
+#: 04060115.xhp#hd_id3149750.94.help.text
+msgid "HEX2OCT"
+msgstr "HEX.A.OCT"
+
+#: 04060115.xhp#par_id3153983.95.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2OCT\">The result is the octal number for the hexadecimal number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2OCT\">El resultado es el número octal que corresponda al número hexadecimal introducido.</ahelp>"
+
+#: 04060115.xhp#hd_id3145660.96.help.text
+msgctxt "04060115.xhp#hd_id3145660.96.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060115.xhp#par_id3151170.97.help.text
+msgid "HEX2OCT(Number; Places)"
+msgstr "HEX.A.OCT(Número; Decimales)"
+
+#: 04060115.xhp#par_id3152795.98.help.text
+msgctxt "04060115.xhp#par_id3152795.98.help.text"
+msgid "<emph>Number</emph> is a hexadecimal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgstr "<emph>Número</emph> es un número hexadecimal. El número puede tener un máximo de 10 cifras. El bit más significativo es el bit de signo, los siguientes bits devuelven el valor. Los números negativos se registran como dos del complemento."
+
+#: 04060115.xhp#par_id3149204.99.help.text
+msgctxt "04060115.xhp#par_id3149204.99.help.text"
+msgid "<emph>Places</emph> is the number of places to be output."
+msgstr "<emph>Cifras</emph> es el número de espacios totales."
+
+#: 04060115.xhp#hd_id3153901.100.help.text
+msgctxt "04060115.xhp#hd_id3153901.100.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060115.xhp#par_id3159341.101.help.text
+msgid "<item type=\"input\">=HEX2OCT(64;4)</item> returns 0144."
+msgstr "<item type=\"input\">=HEX.A.OCT(64;4)</item> devuelve 0144."
+
+#: 05110000.xhp#tit.help.text
+msgid "AutoFormat"
+msgstr "Formateado automático"
+
+#: 05110000.xhp#hd_id3149666.1.help.text
+msgid "<variable id=\"autoformat\"><link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">AutoFormat</link></variable>"
+msgstr "<variable id=\"autoformat\"><link href=\"text/scalc/01/05110000.xhp\" name=\"Formateado automático\">Formateado automático</link></variable>"
+
+#: 05110000.xhp#par_id3145367.2.help.text
+msgid "<variable id=\"autoformattext\"><ahelp hid=\".\">Use this command to apply an AutoFormat to a selected sheet area or to define your own AutoFormats.</ahelp></variable>"
+msgstr "<variable id=\"autoformattext\"><ahelp hid=\".\">Utilice este comando para aplicar un formato automático a un área seleccionada de la hoja o para definir sus propios formatos automáticos.</ahelp></variable>"
+
+#: 05110000.xhp#hd_id3148455.3.help.text
+msgid "Format"
+msgstr "Formato"
+
+#: 05110000.xhp#par_id3145799.4.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_AUTOFORMAT:LB_FORMAT\">Choose a predefined AutoFormat to apply to a selected area in your sheet.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_AUTOFORMAT:LB_FORMAT\">Elija un formato automático predefinido para aplicar a un área seleccionada en la hoja.</ahelp>"
+
+#: 05110000.xhp#hd_id3149410.5.help.text
+msgctxt "05110000.xhp#hd_id3149410.5.help.text"
+msgid "Add"
+msgstr "Agregar"
+
+#: 05110000.xhp#par_id3154017.6.help.text
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_AUTOFORMAT:BTN_ADD\">Allows you to add the current formatting of a range of at least 4 x 4 cells to the list of predefined AutoFormats.</ahelp> The <link href=\"text/shared/01/05150101.xhp\" name=\"Add AutoFormat\">Add AutoFormat</link> dialog then appears."
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_AUTOFORMAT:BTN_ADD\">Permite agregar el formato actual de un área de un mínimo de 4 x 4 celdas a la lista de formatos automáticos predefinidos.</ahelp> Aparece el diálogo <link href=\"text/shared/01/05150101.xhp\" name=\"Agregar Formateado automático\">Agregar Formateado automático</link>."
+
+#: 05110000.xhp#par_id3153708.29.help.text
+msgid "<ahelp hid=\"HID_SC_AUTOFMT_NAME\">Enter a name and click <emph>OK</emph>. </ahelp>"
+msgstr "<ahelp hid=\"HID_SC_AUTOFMT_NAME\">Introduzca un nombre y haga clic en <emph>Aceptar</emph>. </ahelp>"
+
+#: 05110000.xhp#hd_id3150044.7.help.text
+msgctxt "05110000.xhp#hd_id3150044.7.help.text"
+msgid "More"
+msgstr "Más"
+
+#: 05110000.xhp#par_id3146920.8.help.text
+msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_AUTOFORMAT:BTN_MORE\">Opens the <emph>Formatting</emph> section, which displays the formatting overrides that can be applied to the spreadsheet. Deselecting an option keeps the format of the current spreadsheet for that format type.</ahelp>"
+msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_AUTOFORMAT:BTN_MORE\">Abre la sección <emph>Formato</emph>, en la que se muestran las opciones de formato que se pueden aplicar en la hoja de cálculo. Al deseleccionar una opción se conserva el formato actual de la hoja de cálculo para ese tipo de formato.</ahelp>"
+
+#: 05110000.xhp#hd_id3155961.9.help.text
+msgid "Formatting"
+msgstr "Formato"
+
+#: 05110000.xhp#par_id3153965.10.help.text
+msgid "In this section you can select or deselect the available formatting options. If you want to keep any of the settings currently in your spreadsheet, deselect the corresponding option."
+msgstr "En esta sección se pueden seleccionar y deseleccionar las opciones de formato disponibles. Si desea conservar alguno de los elementos de formato actuales de la hoja de cálculo, deseleccione la opción correspondiente."
+
+#: 05110000.xhp#hd_id3154021.11.help.text
+msgid "Number format"
+msgstr "Formato de números"
+
+#: 05110000.xhp#par_id3159239.12.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_NUMFORMAT\">When marked, specifies that you want to retain the number format of the selected format.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_NUMFORMAT\">La opción marcada especifica que se desea conservar el formato numérico del formato seleccionado.</ahelp>"
+
+#: 05110000.xhp#hd_id3149530.13.help.text
+msgid "Borders"
+msgstr "Borde"
+
+#: 05110000.xhp#par_id3145259.14.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_BORDER\">When marked, specifies that you want to retain the border of the selected format.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_BORDER\">La opción marcada especifica que se desea conservar el formato de bordes del formato seleccionado.</ahelp>"
+
+#: 05110000.xhp#hd_id3154657.15.help.text
+msgid "Font"
+msgstr "Fuente"
+
+#: 05110000.xhp#par_id3152990.16.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_FONT\">When marked, specifies that you want to retain the font of the selected format.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_FONT\">La opción marcada especifica que se desea conservar el tipo de letra del formato seleccionado.</ahelp>"
+
+#: 05110000.xhp#hd_id3155379.17.help.text
+msgid "Pattern"
+msgstr "Modelo"
+
+#: 05110000.xhp#par_id3150368.18.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_PATTERN\">When marked, specifies that you want to retain the pattern of the selected format.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_PATTERN\">La opción marcada especifica que se desea conservar el modelo del formato seleccionado.</ahelp>"
+
+#: 05110000.xhp#hd_id3146115.19.help.text
+msgid "Alignment"
+msgstr "Alineación"
+
+#: 05110000.xhp#par_id3156445.20.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ALIGNMENT\">When marked, specifies that you want to retain the alignment of the selected format.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ALIGNMENT\">La opción marcada especifica que se desea conservar el formato de alineación del formato seleccionado.</ahelp>"
+
+#: 05110000.xhp#hd_id3155811.21.help.text
+msgid "AutoFit width and height"
+msgstr "Ajustar ancho/alto"
+
+#: 05110000.xhp#par_id3148703.22.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ADJUST\">When marked, specifies that you want to retain the width and height of the selected cells of the selected format.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ADJUST\">La opción marcada especifica que se desea conservar la altura y la anchura de las celdas seleccionadas del formato elegido.</ahelp>"
+
+#: 05110000.xhp#hd_id3159223.26.help.text
+msgid "Rename"
+msgstr "Cambiar nombre"
+
+#: 05110000.xhp#par_id3153064.27.help.text
+msgid "<ahelp hid=\"HID_SC_RENAME_AUTOFMT\">Opens a dialog where you can change the specification of the selected AutoFormat.</ahelp> The button is only visible if you clicked the <emph>More</emph> button."
+msgstr "<ahelp hid=\"HID_SC_RENAME_AUTOFMT\">Abre un diálogo que permite modificar la especificación del Formateado automático seleccionado.</ahelp> El botón sólo es visible después de hacer clic en <emph>Opciones</emph>."
+
+#: 05110000.xhp#par_id3153912.28.help.text
+msgid "The <emph>Rename AutoFormat</emph> dialog opens.<ahelp hid=\"HID_SC_REN_AFMT_NAME\"> Enter the new name of the AutoFormat here.</ahelp>"
+msgstr "Se abre el diálogo <emph>Cambiar nombre del Formateado automático</emph>.<ahelp hid=\"HID_SC_REN_AFMT_NAME\"> Escriba el nombre nuevo del Formateado automático.</ahelp>"
+
+#: 05110000.xhp#hd_id3155264.23.help.text
+msgctxt "05110000.xhp#hd_id3155264.23.help.text"
+msgid "More"
+msgstr "Opciones <<"
+
+#: 05110000.xhp#par_id3159094.24.help.text
+msgid "Closes the <emph>Formatting</emph> options section, if it is currently open."
+msgstr "Si está abierta, cierra la sección de opciones de <emph>Formato</emph>."
+
+#: 12120300.xhp#tit.help.text
+msgid "Error Alert"
+msgstr "Alerta de errores"
+
+#: 12120300.xhp#hd_id3153821.1.help.text
+msgid "<link href=\"text/scalc/01/12120300.xhp\" name=\"Error Alert\">Error Alert</link>"
+msgstr "<link href=\"text/scalc/01/12120300.xhp\" name=\"Alerta de errores\">Alerta de errores</link>"
+
+#: 12120300.xhp#par_id3153379.2.help.text
+msgid "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_ERROR\">Define the error message that is displayed when invalid data is entered in a cell.</ahelp>"
+msgstr "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_ERROR\">Defina el mensaje de error que se deba mostrar al introducir datos incorrectos en una celda.</ahelp>"
+
+#: 12120300.xhp#par_id3154138.25.help.text
+msgid "You can also start a macro with an error message. A sample macro is provided at the end of this page."
+msgstr "También se puede ejecutar una macro con un mensaje de error. Al final de esta página se muestra una macro de ejemplo."
+
+#: 12120300.xhp#hd_id3156280.3.help.text
+msgid "Show error message when invalid values are entered."
+msgstr "Mostrar mensaje de error al entrar valores incorrectos"
+
+#: 12120300.xhp#par_id3150768.4.help.text
+msgid "<ahelp hid=\".\">Displays the error message that you enter in the <emph>Contents</emph> area when invalid data is entered in a cell.</ahelp> If enabled, the message is displayed to prevent an invalid entry."
+msgstr "<ahelp hid=\".\">Muestra el mensaje de error que se introduce en la sección <emph>Contenido</emph> al ingresar datos inválidos en una celda.</ahelp> El mensaje se muestra para prevenir el ingreso de datos inválidos cuando está habilitada esta opción."
+
+#: 12120300.xhp#par_id3146984.5.help.text
+msgid "In both cases, if you select \"Stop\", the invalid entry is deleted and the previous value is reentered in the cell. The same applies if you close the \"Warning\" and \"Information\" dialogs by clicking the <emph>Cancel </emph>button. If you close the dialogs with the <emph>OK</emph> button, the invalid entry is not deleted."
+msgstr "En ambos casos, si selecciona la opción \"Detener\" la entrada incorrecta se borra y se restablece en la celda el valor anterior. Lo mismo sucede si cierra los diálogos \"Advertencia\" e \"Información\" pulsando el botón <emph>Cancelar</emph>. Si cierra los diálogos con el botón <emph>Aceptar</emph>, la entrada incorrecta no se borra."
+
+#: 12120300.xhp#hd_id3152460.6.help.text
+msgctxt "12120300.xhp#hd_id3152460.6.help.text"
+msgid "Contents"
+msgstr "Contenido"
+
+#: 12120300.xhp#hd_id3148646.8.help.text
+msgid "Action"
+msgstr "Acción"
+
+#: 12120300.xhp#par_id3151115.9.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_ERROR:LB_ACTION\">Select the action that you want to occur when invalid data is entered in a cell.</ahelp> The \"Stop\" action rejects the invalid entry and displays a dialog that you have to close by clicking <emph>OK</emph>. The \"Warning\" and \"Information\" actions display a dialog that can be closed by clicking <emph>OK</emph> or <emph>Cancel</emph>. The invalid entry is only rejected when you click <emph>Cancel</emph>."
+msgstr "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_ERROR:LB_ACTION\">Seleccione la acción que desee que tenga lugar al introducir datos incorrectos en una celda.</ahelp> La acción \"Detener\" rechaza la entrada incorrecta y muestra un diálogo que se debe cerrar pulsando <emph>Aceptar</emph>. Las acciones \"Advertencia\" e \"Información\" muestran un diálogo que se puede cerrar pulsando <emph>Aceptar</emph> o <emph>Cancelar</emph>. La entrada incorrecta sólo se rechaza si se hace clic en <emph>Cancelar</emph>."
+
+#: 12120300.xhp#hd_id3156441.10.help.text
+msgctxt "12120300.xhp#hd_id3156441.10.help.text"
+msgid "Browse"
+msgstr "Examinar..."
+
+#: 12120300.xhp#par_id3153160.11.help.text
+msgid "<ahelp hid=\"SC:PUSHBUTTON:TP_VALIDATION_ERROR:BTN_SEARCH\">Opens the <link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link> dialog where you can select the macro that is executed when invalid data is entered in a cell. The macro is executed after the error message is displayed.</ahelp>"
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:TP_VALIDATION_ERROR:BTN_SEARCH\">Abre el diálogo <link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link>, donde puede seleccionar la macro que se ejecutará al introducir datos incorrectos en una celda. La macro se ejecuta después de mostrar el mensaje de error.</ahelp>"
+
+#: 12120300.xhp#hd_id3153876.12.help.text
+msgctxt "12120300.xhp#hd_id3153876.12.help.text"
+msgid "Title"
+msgstr "Título"
+
+#: 12120300.xhp#par_id3149410.13.help.text
+msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_ERROR:EDT_TITLE\">Enter the title of the macro or the error message that you want to display when invalid data is entered in a cell.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_ERROR:EDT_TITLE\">Escriba el título de la macro o el mensaje de error que desea que se muestre al introducir datos incorrectos en una celda.</ahelp>"
+
+#: 12120300.xhp#hd_id3154510.14.help.text
+msgid "Error message"
+msgstr "Mensaje de error"
+
+#: 12120300.xhp#par_id3149122.15.help.text
+msgid "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_ERROR:EDT_ERROR\">Enter the message that you want to display when invalid data is entered in a cell.</ahelp>"
+msgstr "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_ERROR:EDT_ERROR\">Escriba el mensaje que desea que se muestre al introducir datos incorrectos en una celda.</ahelp>"
+
+#: 12120300.xhp#par_id3150752.16.help.text
+msgid "<emph>Sample macro:</emph>"
+msgstr "<emph>Macro de ejemplo:</emph>"
+
+#: func_time.xhp#tit.help.text
+msgid "TIME "
+msgstr "HORA"
+
+#: func_time.xhp#bm_id3154073.help.text
+msgid "<bookmark_value>TIME function</bookmark_value>"
+msgstr "<bookmark_value>HORA</bookmark_value>"
+
+#: func_time.xhp#hd_id3154073.149.help.text
+msgid "<variable id=\"time\"><link href=\"text/scalc/01/func_time.xhp\">TIME</link></variable>"
+msgstr "<variable id=\"time\"><link href=\"text/scalc/01/func_time.xhp\">HORA</link></variable>"
+
+#: func_time.xhp#par_id3145762.150.help.text
+msgid "<ahelp hid=\"HID_FUNC_ZEIT\">TIME returns the current time value from values for hours, minutes and seconds.</ahelp> This function can be used to convert a time based on these three elements to a decimal time value."
+msgstr "<ahelp hid=\"HID_FUNC_ZEIT\">HORA devuelve el valor de hora actual a partir de los valores de horas, minutos y segundos.</ahelp> Esta función se puede utilizar para convertir una hora en un valor de tiempo decimal basándose en estos tres elementos."
+
+#: func_time.xhp#hd_id3155550.151.help.text
+msgctxt "func_time.xhp#hd_id3155550.151.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: func_time.xhp#par_id3154584.152.help.text
+msgid "TIME(Hour; Minute; Second)"
+msgstr "TIEMPO(Hora; Minuto; Segundo)"
+
+#: func_time.xhp#par_id3152904.153.help.text
+msgid "Use an integer to set the <emph>Hour</emph>."
+msgstr "Utilice un entero para configurar la <emph>Hora</emph>."
+
+#: func_time.xhp#par_id3151346.154.help.text
+msgid "Use an integer to set the <emph>Minute</emph>."
+msgstr "Utilice un entero para configurar el <emph>Minuto</emph>."
+
+#: func_time.xhp#par_id3151366.155.help.text
+msgid "Use an integer to set the <emph>Second</emph>."
+msgstr "Utilice un entero para configurar el <emph>Segundo</emph>."
+
+#: func_time.xhp#hd_id3145577.156.help.text
+msgctxt "func_time.xhp#hd_id3145577.156.help.text"
+msgid "Examples"
+msgstr "Ejemplos"
+
+#: func_time.xhp#par_id3156076.157.help.text
+msgid "<item type=\"input\">=TIME(0;0;0)</item> returns 00:00:00"
+msgstr "<item type=\"input\">=HORA(0;0;0)</item> devuelve 00:00:00"
+
+#: func_time.xhp#par_id3156090.158.help.text
+msgid "<item type=\"input\">=TIME(4;20;4)</item> returns 04:20:04"
+msgstr "<item type=\"input\">=HORA(4;20;4)</item> devuelve 04:20:04"
+
+#: 04060101.xhp#tit.help.text
+msgctxt "04060101.xhp#tit.help.text"
+msgid "Database Functions"
+msgstr "Funciones de bases de datos"
+
+#: 04060101.xhp#bm_id3148946.help.text
+msgid "<bookmark_value>Function Wizard; databases</bookmark_value> <bookmark_value>functions; database functions</bookmark_value> <bookmark_value>databases; functions in $[officename] Calc</bookmark_value>"
+msgstr "<bookmark_value>Asistente para funciones;bases de datos</bookmark_value><bookmark_value>funciones;funciones de bases de datos</bookmark_value><bookmark_value>bases de datos;funciones en $[officename] Calc</bookmark_value>"
+
+#: 04060101.xhp#hd_id3148946.1.help.text
+msgctxt "04060101.xhp#hd_id3148946.1.help.text"
+msgid "Database Functions"
+msgstr "Funciones de bases de datos"
+
+#: 04060101.xhp#par_id3145173.2.help.text
+msgid "<variable id=\"datenbanktext\">This section deals with functions used with data organized as one row of data for one record. </variable>"
+msgstr "<variable id=\"datenbanktext\">Esta sección trata de funciones utilizadas con datos organizados como una fila de datos para un registro. </variable>"
+
+#: 04060101.xhp#par_id3154016.186.help.text
+msgid "The Database category may be confused with a database integrated in $[officename]. However, there is no connection between a database in $[officename] and the Database category in $[officename] Calc."
+msgstr "La categoría de la Base de Datos se puede confundir con la base de datos integrada en $[officename]. Sin embargo, no existe conexión entre la base de datos en $[officename] y la categoría de Base de Datos en $[officename] Calc."
+
+#: 04060101.xhp#hd_id3150329.190.help.text
+msgid "Example Data:"
+msgstr "Datos de ejemplo:"
+
+#: 04060101.xhp#par_id3153713.191.help.text
+msgid "The following data will be used in some of the function description examples:"
+msgstr "En algunos de los ejemplos de descripción de las funciones se utilizarán los datos siguientes:"
+
+#: 04060101.xhp#par_id3155766.3.help.text
+msgid "The range A1:E10 lists the children invited to Joe's birthday party. The following information is given for each entry: column A shows the name, B the grade, then age in years, distance to school in meters and weight in kilograms."
+msgstr "El área A1:E10 contiene los niños invitados a la fiesta de cumpleaños de Joe. Cada entrada contiene la información siguiente: la columna A contiene el nombre; la columna B, el curso; a continuación están la edad en años, la distancia al colegio en metros y el peso en kilogramos."
+
+#: 04060101.xhp#par_id3145232.4.help.text
+msgctxt "04060101.xhp#par_id3145232.4.help.text"
+msgid "A"
+msgstr "<emph>A</emph>"
+
+#: 04060101.xhp#par_id3146316.5.help.text
+msgctxt "04060101.xhp#par_id3146316.5.help.text"
+msgid "B"
+msgstr "<emph>B</emph>"
+
+#: 04060101.xhp#par_id3150297.6.help.text
+msgctxt "04060101.xhp#par_id3150297.6.help.text"
+msgid "C"
+msgstr "<emph>C</emph>"
+
+#: 04060101.xhp#par_id3150344.7.help.text
+msgctxt "04060101.xhp#par_id3150344.7.help.text"
+msgid "D"
+msgstr "<emph>D</emph>"
+
+#: 04060101.xhp#par_id3150785.8.help.text
+msgctxt "04060101.xhp#par_id3150785.8.help.text"
+msgid "E"
+msgstr "<emph>E</emph>"
+
+#: 04060101.xhp#par_id3150090.9.help.text
+msgctxt "04060101.xhp#par_id3150090.9.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060101.xhp#par_id3152992.10.help.text
+msgctxt "04060101.xhp#par_id3152992.10.help.text"
+msgid "<item type=\"input\">Name</item>"
+msgstr "<item type=\"input\">Nombre</item>"
+
+#: 04060101.xhp#par_id3155532.11.help.text
+msgctxt "04060101.xhp#par_id3155532.11.help.text"
+msgid "<item type=\"input\">Grade</item>"
+msgstr "<item type=\"input\">Grado</item>"
+
+#: 04060101.xhp#par_id3156448.12.help.text
+msgctxt "04060101.xhp#par_id3156448.12.help.text"
+msgid "<item type=\"input\">Age</item>"
+msgstr "<item type=\"input\">Edad</item>"
+
+#: 04060101.xhp#par_id3154486.13.help.text
+msgctxt "04060101.xhp#par_id3154486.13.help.text"
+msgid "<item type=\"input\">Distance to School</item>"
+msgstr "<item type=\"input\">Distancia a la escuela</item>"
+
+#: 04060101.xhp#par_id3152899.14.help.text
+msgctxt "04060101.xhp#par_id3152899.14.help.text"
+msgid "<item type=\"input\">Weight</item>"
+msgstr "<item type=\"input\">Peso</item>"
+
+#: 04060101.xhp#par_id3153816.15.help.text
+msgctxt "04060101.xhp#par_id3153816.15.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060101.xhp#par_id3151240.16.help.text
+msgid "<item type=\"input\">Andy</item>"
+msgstr "<item type=\"input\">Andy</item>"
+
+#: 04060101.xhp#par_id3156016.17.help.text
+msgctxt "04060101.xhp#par_id3156016.17.help.text"
+msgid "<item type=\"input\">3</item>"
+msgstr "<item type=\"input\">3</item>"
+
+#: 04060101.xhp#par_id3145073.18.help.text
+msgctxt "04060101.xhp#par_id3145073.18.help.text"
+msgid "<item type=\"input\">9</item>"
+msgstr "<item type=\"input\">9</item>"
+
+#: 04060101.xhp#par_id3154956.19.help.text
+msgid "<item type=\"input\">150</item>"
+msgstr "<item type=\"input\">150</item>"
+
+#: 04060101.xhp#par_id3153976.20.help.text
+msgid "<item type=\"input\">40</item>"
+msgstr "<item type=\"input\">40</item>"
+
+#: 04060101.xhp#par_id3150894.21.help.text
+msgctxt "04060101.xhp#par_id3150894.21.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060101.xhp#par_id3152870.22.help.text
+msgid "<item type=\"input\">Betty</item>"
+msgstr "<item type=\"input\">Betty</item>"
+
+#: 04060101.xhp#par_id3149692.23.help.text
+msgctxt "04060101.xhp#par_id3149692.23.help.text"
+msgid "<item type=\"input\">4</item>"
+msgstr "<item type=\"input\">4</item>"
+
+#: 04060101.xhp#par_id3154652.24.help.text
+msgctxt "04060101.xhp#par_id3154652.24.help.text"
+msgid "<item type=\"input\">10</item>"
+msgstr "<item type=\"input\">10</item>"
+
+#: 04060101.xhp#par_id3149381.25.help.text
+msgctxt "04060101.xhp#par_id3149381.25.help.text"
+msgid "<item type=\"input\">1000</item>"
+msgstr "<item type=\"input\">1000</item>"
+
+#: 04060101.xhp#par_id3153812.26.help.text
+msgctxt "04060101.xhp#par_id3153812.26.help.text"
+msgid "<item type=\"input\">42</item>"
+msgstr "<item type=\"input\">42</item>"
+
+#: 04060101.xhp#par_id3146965.27.help.text
+msgctxt "04060101.xhp#par_id3146965.27.help.text"
+msgid "4"
+msgstr "4"
+
+#: 04060101.xhp#par_id3155596.28.help.text
+msgid "<item type=\"input\">Charles</item>"
+msgstr "<item type=\"input\">Carlos</item>"
+
+#: 04060101.xhp#par_id3147244.29.help.text
+msgctxt "04060101.xhp#par_id3147244.29.help.text"
+msgid "<item type=\"input\">3</item>"
+msgstr "<item type=\"input\">3</item>"
+
+#: 04060101.xhp#par_id3149871.30.help.text
+msgctxt "04060101.xhp#par_id3149871.30.help.text"
+msgid "<item type=\"input\">10</item>"
+msgstr "<item type=\"input\">10</item>"
+
+#: 04060101.xhp#par_id3155752.31.help.text
+msgid "<item type=\"input\">300</item>"
+msgstr "<item type=\"input\">300</item>"
+
+#: 04060101.xhp#par_id3149052.32.help.text
+msgid "<item type=\"input\">51</item>"
+msgstr "<item type=\"input\">51</item>"
+
+#: 04060101.xhp#par_id3146097.33.help.text
+msgctxt "04060101.xhp#par_id3146097.33.help.text"
+msgid "5"
+msgstr "5"
+
+#: 04060101.xhp#par_id3147296.34.help.text
+msgid "<item type=\"input\">Daniel</item>"
+msgstr "<item type=\"input\">Daniel</item>"
+
+#: 04060101.xhp#par_id3150393.35.help.text
+msgctxt "04060101.xhp#par_id3150393.35.help.text"
+msgid "<item type=\"input\">5</item>"
+msgstr "<item type=\"input\">5</item>"
+
+#: 04060101.xhp#par_id3145236.36.help.text
+msgctxt "04060101.xhp#par_id3145236.36.help.text"
+msgid "<item type=\"input\">11</item>"
+msgstr "<item type=\"input\">11</item>"
+
+#: 04060101.xhp#par_id3150534.37.help.text
+msgctxt "04060101.xhp#par_id3150534.37.help.text"
+msgid "<item type=\"input\">1200</item>"
+msgstr "<item type=\"input\">1200</item>"
+
+#: 04060101.xhp#par_id3150375.38.help.text
+msgid "<item type=\"input\">48</item>"
+msgstr "<item type=\"input\">48</item>"
+
+#: 04060101.xhp#par_id3159121.39.help.text
+msgctxt "04060101.xhp#par_id3159121.39.help.text"
+msgid "6"
+msgstr "6"
+
+#: 04060101.xhp#par_id3150456.40.help.text
+msgid "<item type=\"input\">Eva</item>"
+msgstr "<item type=\"input\">Eva</item>"
+
+#: 04060101.xhp#par_id3146886.41.help.text
+msgctxt "04060101.xhp#par_id3146886.41.help.text"
+msgid "<item type=\"input\">2</item>"
+msgstr "<item type=\"input\">2</item>"
+
+#: 04060101.xhp#par_id3149945.42.help.text
+msgctxt "04060101.xhp#par_id3149945.42.help.text"
+msgid "<item type=\"input\">8</item>"
+msgstr "<item type=\"input\">8</item>"
+
+#: 04060101.xhp#par_id3157904.43.help.text
+msgid "<item type=\"input\">650</item>"
+msgstr "<item type=\"input\">650</item>"
+
+#: 04060101.xhp#par_id3149352.44.help.text
+msgctxt "04060101.xhp#par_id3149352.44.help.text"
+msgid "<item type=\"input\">33</item>"
+msgstr "<item type=\"input\">33</item>"
+
+#: 04060101.xhp#par_id3150028.45.help.text
+msgctxt "04060101.xhp#par_id3150028.45.help.text"
+msgid "7"
+msgstr "7"
+
+#: 04060101.xhp#par_id3145826.46.help.text
+msgid "<item type=\"input\">F</item><item type=\"input\">rank</item>"
+msgstr "<item type=\"input\">F</item><item type=\"input\">rango</item>"
+
+#: 04060101.xhp#par_id3150743.47.help.text
+msgctxt "04060101.xhp#par_id3150743.47.help.text"
+msgid "<item type=\"input\">2</item>"
+msgstr "<item type=\"input\">2</item>"
+
+#: 04060101.xhp#par_id3154844.48.help.text
+msgctxt "04060101.xhp#par_id3154844.48.help.text"
+msgid "<item type=\"input\">7</item>"
+msgstr "<item type=\"input\">7</item>"
+
+#: 04060101.xhp#par_id3148435.49.help.text
+msgid "<item type=\"input\">3</item><item type=\"input\">00</item>"
+msgstr "<item type=\"input\">3</item><item type=\"input\">00</item>"
+
+#: 04060101.xhp#par_id3148882.50.help.text
+msgid "<item type=\"input\">4</item><item type=\"input\">2</item>"
+msgstr "<item type=\"input\">4</item><item type=\"input\">2</item>"
+
+#: 04060101.xhp#par_id3150140.51.help.text
+msgctxt "04060101.xhp#par_id3150140.51.help.text"
+msgid "8"
+msgstr "8"
+
+#: 04060101.xhp#par_id3146137.52.help.text
+msgid "<item type=\"input\">Greta</item>"
+msgstr "<item type=\"input\">Greta</item>"
+
+#: 04060101.xhp#par_id3148739.53.help.text
+msgctxt "04060101.xhp#par_id3148739.53.help.text"
+msgid "<item type=\"input\">1</item>"
+msgstr "<item type=\"input\">1</item>"
+
+#: 04060101.xhp#par_id3148583.54.help.text
+msgctxt "04060101.xhp#par_id3148583.54.help.text"
+msgid "<item type=\"input\">7</item>"
+msgstr "<item type=\"input\">7</item>"
+
+#: 04060101.xhp#par_id3154556.55.help.text
+msgid "<item type=\"input\">200</item>"
+msgstr "<item type=\"input\">200</item>"
+
+#: 04060101.xhp#par_id3155255.56.help.text
+msgid "<item type=\"input\">36</item>"
+msgstr "<item type=\"input\">36</item>"
+
+#: 04060101.xhp#par_id3145141.57.help.text
+msgctxt "04060101.xhp#par_id3145141.57.help.text"
+msgid "9"
+msgstr "9"
+
+#: 04060101.xhp#par_id3153078.58.help.text
+msgid "<item type=\"input\">Harry</item>"
+msgstr "<item type=\"input\">Harry</item>"
+
+#: 04060101.xhp#par_id3149955.59.help.text
+msgctxt "04060101.xhp#par_id3149955.59.help.text"
+msgid "<item type=\"input\">3</item>"
+msgstr "<item type=\"input\">3</item>"
+
+#: 04060101.xhp#par_id3150005.60.help.text
+msgctxt "04060101.xhp#par_id3150005.60.help.text"
+msgid "<item type=\"input\">9</item>"
+msgstr "<item type=\"input\">9</item>"
+
+#: 04060101.xhp#par_id3155951.61.help.text
+msgctxt "04060101.xhp#par_id3155951.61.help.text"
+msgid "<item type=\"input\">1200</item>"
+msgstr "<item type=\"input\">1200</item>"
+
+#: 04060101.xhp#par_id3145169.62.help.text
+msgid "<item type=\"input\">44</item>"
+msgstr "<item type=\"input\">44</item>"
+
+#: 04060101.xhp#par_id3153571.63.help.text
+msgctxt "04060101.xhp#par_id3153571.63.help.text"
+msgid "10"
+msgstr "10"
+
+#: 04060101.xhp#par_id3148761.64.help.text
+msgid "<item type=\"input\">Irene</item>"
+msgstr "<item type=\"input\">Irene</item>"
+
+#: 04060101.xhp#par_id3149877.65.help.text
+msgctxt "04060101.xhp#par_id3149877.65.help.text"
+msgid "<item type=\"input\">2</item>"
+msgstr "<item type=\"input\">2</item>"
+
+#: 04060101.xhp#par_id3154327.66.help.text
+msgctxt "04060101.xhp#par_id3154327.66.help.text"
+msgid "<item type=\"input\">8</item>"
+msgstr "<item type=\"input\">8</item>"
+
+#: 04060101.xhp#par_id3155435.67.help.text
+msgctxt "04060101.xhp#par_id3155435.67.help.text"
+msgid "<item type=\"input\">1000</item>"
+msgstr "<item type=\"input\">1000</item>"
+
+#: 04060101.xhp#par_id3145353.68.help.text
+msgctxt "04060101.xhp#par_id3145353.68.help.text"
+msgid "<item type=\"input\">42</item>"
+msgstr "<item type=\"input\">42</item>"
+
+#: 04060101.xhp#par_id3150662.69.help.text
+msgctxt "04060101.xhp#par_id3150662.69.help.text"
+msgid "11"
+msgstr "11"
+
+#: 04060101.xhp#par_id3150568.70.help.text
+msgctxt "04060101.xhp#par_id3150568.70.help.text"
+msgid "12"
+msgstr "12"
+
+#: 04060101.xhp#par_id3149393.71.help.text
+msgctxt "04060101.xhp#par_id3149393.71.help.text"
+msgid "13"
+msgstr "13"
+
+#: 04060101.xhp#par_id3153544.72.help.text
+msgctxt "04060101.xhp#par_id3153544.72.help.text"
+msgid "<item type=\"input\">Name</item>"
+msgstr "<item type=\"input\">Nombre</item>"
+
+#: 04060101.xhp#par_id3158414.73.help.text
+msgctxt "04060101.xhp#par_id3158414.73.help.text"
+msgid "<item type=\"input\">Grade</item>"
+msgstr "<item type=\"input\">Grado</item>"
+
+#: 04060101.xhp#par_id3152820.74.help.text
+msgctxt "04060101.xhp#par_id3152820.74.help.text"
+msgid "<item type=\"input\">Age</item>"
+msgstr "<item type=\"input\">Edad</item>"
+
+#: 04060101.xhp#par_id3154866.75.help.text
+msgctxt "04060101.xhp#par_id3154866.75.help.text"
+msgid "<item type=\"input\">Distance to School</item>"
+msgstr "<item type=\"input\">Distancia a la Escuela</item>"
+
+#: 04060101.xhp#par_id3150471.76.help.text
+msgctxt "04060101.xhp#par_id3150471.76.help.text"
+msgid "<item type=\"input\">Weight</item>"
+msgstr "<item type=\"input\">Peso</item>"
+
+#: 04060101.xhp#par_id3153920.77.help.text
+msgctxt "04060101.xhp#par_id3153920.77.help.text"
+msgid "14"
+msgstr "14"
+
+#: 04060101.xhp#par_id3148429.78.help.text
+msgid "<item type=\"input\">>600</item>"
+msgstr "<item type=\"input\">>600</item>"
+
+#: 04060101.xhp#par_id3152588.79.help.text
+msgctxt "04060101.xhp#par_id3152588.79.help.text"
+msgid "15"
+msgstr "15"
+
+#: 04060101.xhp#par_id3083286.80.help.text
+msgctxt "04060101.xhp#par_id3083286.80.help.text"
+msgid "16"
+msgstr "16"
+
+#: 04060101.xhp#par_id3163823.81.help.text
+msgid "<item type=\"input\">DCOUNT</item>"
+msgstr "<item type=\"input\">BDCONTAR</item>"
+
+#: 04060101.xhp#par_id3145083.82.help.text
+msgctxt "04060101.xhp#par_id3145083.82.help.text"
+msgid "<item type=\"input\">5</item>"
+msgstr "<item type=\"input\">5</item>"
+
+#: 04060101.xhp#par_id3149282.83.help.text
+msgid "The formula in cell B16 is =DCOUNT(A1:E10;0;A13:E14)"
+msgstr "La fórmula de la celda B16 es =BDCONTAR(A1:E10;0;A13:E14)"
+
+#: 04060101.xhp#hd_id3150962.192.help.text
+msgid "Database Function Parameters:"
+msgstr "Parámetros de las funciones de base de datos:"
+
+#: 04060101.xhp#par_id3155837.84.help.text
+msgid "The following items are the parameter definitions for all database functions:"
+msgstr "Los siguientes items son los definiciones de parámetros para todos los funciones de bases de datos. "
+
+#: 04060101.xhp#par_id3149453.85.help.text
+msgid "<emph>Database</emph> is the cell range defining the database."
+msgstr "<emph>Base de datos</emph> es el área de celdas que define la base de datos."
+
+#: 04060101.xhp#par_id3151272.86.help.text
+msgid "<emph>DatabaseField</emph> specifies the column where the function operates on after the search criteria of the first parameter is applied and the data rows are selected. It is not related to the search criteria itself. Use the number 0 to specify the whole data range. <variable id=\"quotes\">To reference a column by means of the column header name, place quotation marks around the header name. </variable>"
+msgstr "<emph>Campo de Base de Datos </emph> especifica la columna en donde opera la función luego de que se aplica el criterio de búsqueda del primer parámetro y las filas son seleccionadas. Esto no se relaciona con el criterio de búsqueda por sí mismo. Use el número 0 para especificar todo un rango de datos. <variable id=\"quotes\"> Para referenciar una columna por el nombre del encabezado, coloque la marca de quotation cerca del nombre del encabezado . </variable>"
+
+#: 04060101.xhp#par_id3147083.87.help.text
+msgid "<emph>SearchCriteria</emph> is the cell range containing search criteria. If you write several criteria in one row they are connected by AND. If you write the criteria in different rows they are connected by OR. Empty cells in the search criteria range will be ignored."
+msgstr "<emph>Criterio de Búsqueda</emph> es el rango de celda que contiene un criterio de búsqueda. Si escribe varios criterios en una fila, se pueden juntar usando Y.Si escribe el criterio en filas diferentes ellos se conectan con un O. Las celdas vacías en un criterio de búsqueda se ignorarán ."
+
+#: 04060101.xhp#par_id3151188.188.help.text
+msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\" name=\"Spreadsheet - Calculate\">%PRODUCTNAME Calc - Calculate</link> to define how $[officename] Calc acts when searching for identical entries."
+msgstr "Puede elegirse <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\" name=\"Hojas de cálculo - Calcular\">%PRODUCTNAME Calc - Calcular</link> para definir cómo se comportará $[officename] Calc al buscar elementos idénticos."
+
+#: 04060101.xhp#par_id3882869.help.text
+msgid "See also the Wiki page about <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Conditional_Counting_and_Summation\">Conditional Counting and Summation</link>."
+msgstr ""
+
+#: 04060101.xhp#bm_id3150882.help.text
+msgid "<bookmark_value>DCOUNT function</bookmark_value> <bookmark_value>counting rows;with numeric values</bookmark_value>"
+msgstr "<bookmark_value>función BDCONTAR</bookmark_value><bookmark_value>contar filas;con valores numéricos</bookmark_value>"
+
+#: 04060101.xhp#hd_id3150882.88.help.text
+msgid "DCOUNT"
+msgstr "BDCONTAR"
+
+#: 04060101.xhp#par_id3156133.89.help.text
+msgid "<ahelp hid=\"HID_FUNC_DBANZAHL\">DCOUNT counts the number of rows (records) in a database that match the specified search criteria and contain numerical values.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DBANZAHL\">BDCONTAR cuenta el número de filas (registros) de una base de datos que coinciden con las condiciones de búsqueda especificadas y contienen valores numéricos.</ahelp>"
+
+#: 04060101.xhp#hd_id3156099.90.help.text
+msgctxt "04060101.xhp#hd_id3156099.90.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060101.xhp#par_id3153218.91.help.text
+msgid "DCOUNT(Database; DatabaseField; SearchCriteria)"
+msgstr "BDCONTAR(Base de datos; Campo Base de Datos; Búsqueda Avanzada)"
+
+#: 04060101.xhp#par_id3153273.187.help.text
+msgid "For the DatabaseField parameter you can enter a cell to specify the column, or enter the number 0 for the entire database. The parameter cannot be empty. <embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
+msgstr "Para el parámetro Campo Base de Datos, puede ingresar una celda que especifique la columna, o introduzca el numero 0 para toda la base de datos. El parámetro no puede estar vacío.<embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
+
+#: 04060101.xhp#hd_id3154743.92.help.text
+msgctxt "04060101.xhp#hd_id3154743.92.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060101.xhp#par_id3153623.93.help.text
+msgid "In the example above (scroll up, please), we want to know how many children have to travel more than 600 meters to school. The result is to be stored in cell B16. Set the cursor in cell B16. Enter the formula <item type=\"input\">=DCOUNT(A1:E10;0;A13:E14)</item> in B16. The <emph>Function Wizard</emph> helps you to input ranges."
+msgstr "En el ejemplo de arriba (desplácese hacia arriba por favor ), nosotros queremos saber cuantos niños deben viajar más de 600 metros a la escuela. El resultado se almacena en la celda B16. Coloque el cursor en la celda B16. Ingrese la fórmula <item type=\"input\">=BDCONTA(A1:E10;0;A13:E14)</item> en B16. El <emph>Asistente para Funciones</emph> le ayudará a ingresar los rangos ."
+
+#: 04060101.xhp#par_id3149142.94.help.text
+msgid "<emph>Database</emph> is the range of data to be evaluated, including its headers: in this case A1:E10. <emph>DatabaseField</emph> specifies the column for the search criteria: in this case, the whole database. <emph>SearchCriteria</emph> is the range where you can enter the search parameters: in this case, A13:E14."
+msgstr "<emph>Base de Datos</emph> es el rango de datos a ser evaluado, incluyendo sus encabezados: en este caso A1:E10. <emph>CampoBasedeDatos</emph> especifique la columna para el criterio de búsqueda. : en éste caso, toda la base de datos . <emph>CriteriodeBúsqueda</emph> es el rango donde puede ingresar los parámetros de búsqueda : en este caso, A13:E14."
+
+#: 04060101.xhp#par_id3145652.95.help.text
+msgid "To learn how many children in second grade are over 7 years of age, delete the entry >600 in cell D14 and enter <item type=\"input\">2</item> in cell B14 under Grade, and enter <item type=\"input\">>7</item> in cell C14 to the right. The result is 2. Two children are in second grade and over 7 years of age. As both criteria are in the same row, they are connected by AND."
+msgstr "Para saber cuántos niños del segundo año tienen más de 7 años, borre la entrada >600 de la celda D14 y escriba en la celda B14 debajo de Nivel; a continuación, escriba en la celda C14 a la derecha. El resultado es 2. Dos niños están en segundo año y su edad es mayor que 7. Como ambos criterios están en la misma fila, se conectan por un Y . "
+
+#: 04060101.xhp#bm_id3156123.help.text
+msgid "<bookmark_value>DCOUNTA function</bookmark_value> <bookmark_value>records;counting in Calc databases</bookmark_value> <bookmark_value>counting rows;with numeric or alphanumeric values</bookmark_value>"
+msgstr "<bookmark_value>función BDCONTARA</bookmark_value><bookmark_value>registros;contar en bases de datos de Calc</bookmark_value><bookmark_value>contar filas;con valores numéricos o alfanuméricos</bookmark_value>"
+
+#: 04060101.xhp#hd_id3156123.97.help.text
+msgid "DCOUNTA"
+msgstr "BDCONTARA"
+
+#: 04060101.xhp#par_id3156110.98.help.text
+msgid "<ahelp hid=\"HID_FUNC_DBANZAHL2\">DCOUNTA counts the number of rows (records) in a database that match the specified search conditions, and contain numeric or alphanumeric values.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DBANZAHL2\">BDCONTARA cuenta el número de filas (registros) de una base de datos que coinciden con las condiciones de búsqueda especificadas y que contienen valores numéricos o alfanuméricos.</ahelp>"
+
+#: 04060101.xhp#hd_id3143228.99.help.text
+msgctxt "04060101.xhp#hd_id3143228.99.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060101.xhp#par_id3146893.100.help.text
+msgid "DCOUNTA(Database; DatabaseField; SearchCriteria)"
+msgstr "DCOUNTA(Base de Datos; Campo Base de Datos; Búsqueda Avanzada)"
+
+#: 04060101.xhp#hd_id3149751.101.help.text
+msgctxt "04060101.xhp#hd_id3149751.101.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060101.xhp#par_id3153982.102.help.text
+msgid "In the example above (scroll up, please), you can search for the number of children whose name starts with an E or a subsequent letter. Edit the formula in B16 to read <item type=\"input\">=DCOUNTA(A1:E10;\"Name\";A13:E14)</item>. Delete the old search criteria and enter <item type=\"input\">>=E</item> under Name in field A14. The result is 5. If you now delete all number values for Greta in row 8, the result changes to 4. Row 8 is no longer included in the count because it does not contain any values. The name Greta is text, not a value. Note that the DatabaseField parameter must point to a column that can contain values."
+msgstr "En el ejemplo arriba (Mueva hacia arriba, por favor), usted quiere buscar el numero de niños cuyo nombre comienza con E o una letra subsecuente. Edite la formula en B16 para leer <item type=\"input\">=DCOUNTA(A1:E10;\"Name\";A13:E14)</item>. Elimine la antigua criterio de búsqueda e introduzca <item type=\"input\">>=E</item> bajo el Nombre en el campo A14. El resultado es 5. Ahora, si usted elimina todos los valores numéricos para Greta en la fila 8, el resultado cambiara a 4. La fila 8 no sera incluida en la cuenta porque no contiene ningún valor numérico. El nombre Greta es texto, no un valor. Nótese que el Campo Base de Datos debe apuntar a alguna columna que contenga valores numéricos."
+
+#: 04060101.xhp#bm_id3147256.help.text
+msgid "<bookmark_value>DGET function</bookmark_value> <bookmark_value>cell contents;searching in Calc databases</bookmark_value> <bookmark_value>searching;cell contents in Calc databases</bookmark_value>"
+msgstr "<bookmark_value>función BDEXTRAER</bookmark_value><bookmark_value>contenidos de celda;buscar en bases de datos de Calc</bookmark_value><bookmark_value>buscar; en contenidos de celda en base de datos de Calc</bookmark_value>"
+
+#: 04060101.xhp#hd_id3147256.104.help.text
+msgid "DGET"
+msgstr "BDEXTRAER"
+
+#: 04060101.xhp#par_id3152801.105.help.text
+msgid "<ahelp hid=\"HID_FUNC_DBAUSZUG\">DGET returns the contents of the referenced cell in a database which matches the specified search criteria.</ahelp> In case of an error, the function returns either #VALUE! for no row found, or Err502 for more than one cell found."
+msgstr "<ahelp hid=\"HID_FUNC_DBAUSZUG\">BDEXTRAER devuelve el contenido de la celda a la que se hace referencia en una base de datos que coincide con los criterios de búsqueda especificados.</ahelp> Si se detecta un error, la función devuelve #VALOR! si no se encuentra ninguna fila, o Err502 si se encuentra más de una celda."
+
+#: 04060101.xhp#hd_id3159344.106.help.text
+msgctxt "04060101.xhp#hd_id3159344.106.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060101.xhp#par_id3154696.107.help.text
+msgid "DGET(Database; DatabaseField; SearchCriteria)"
+msgstr "BDEXTRAER(Base de Datos; Campo de la Base de Datos; Criterios de búsqueda)"
+
+#: 04060101.xhp#hd_id3153909.108.help.text
+msgctxt "04060101.xhp#hd_id3153909.108.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060101.xhp#par_id3155388.109.help.text
+msgid "In the above example (scroll up, please), we want to determine what grade a child is in, whose name was entered in cell A14. The formula is entered in cell B16 and differs slightly from the earlier examples because only one column (one database field) can be entered for <emph>DatabaseField</emph>. Enter the following formula:"
+msgstr "En el ejemplo de arriba (Mueva hacia arriba, por favor), queremos determinar en que grado esta cada niño, cuyo nombre fue introducido en la celda A14. La formula esta en la celda B14 y difiere ligeramente de los ejemplos anteriores porque solo se utilizara una columna (un campo de base de datos) para <emph>Campo Base de Datos</emph>. Ingrese la siguiente formula:"
+
+#: 04060101.xhp#par_id3153096.110.help.text
+msgid "<item type=\"input\">=DGET(A1:E10;\"Grade\";A13:E14)</item>"
+msgstr "<item type=\"input\">=BDEXTRAER(A1:E10;\"Grado\";A13:E14)</item>"
+
+#: 04060101.xhp#par_id3150524.111.help.text
+msgid "Enter the name <item type=\"input\">Frank</item> in A14, and you see the result 2. Frank is in second grade. Enter <item type=\"input\">\"Age\"</item> instead of \"Grade\" and you will get Frank's age."
+msgstr "Coloque el nombre <item type=\"input\">Frank</item> en la celda A14, y vera que el resultado es 2. Frank esta en el segundo grado. Coloque <item type=\"input\">\"Edad\"</item> en ves de \"Grado\" y obtendrá la edad de Frank."
+
+#: 04060101.xhp#par_id3148833.112.help.text
+msgid "Or enter the value <item type=\"input\">11</item> in cell C14 only, and delete the other entries in this row. Edit the formula in B16 as follows:"
+msgstr "O coloque el numero <item type=\"input\">11</item> solo en la celda C14, y elimine el resto de las entradas en esa fila, Edite la formula en la celda B14 como a continuación:"
+
+#: 04060101.xhp#par_id3149912.113.help.text
+msgid "<item type=\"input\">=DGET(A1:E10;\"Name\";A13:E14)</item>"
+msgstr "<item type=\"input\">=BDEXTRAER(A1:E10;\"Nombre\";A13:E14)</item>"
+
+#: 04060101.xhp#par_id3148813.114.help.text
+msgid "Instead of the grade, the name is queried. The answer appears at once: Daniel is the only child aged 11."
+msgstr "El sistema busca ahora por nombre y no por clase. El resultado se muestra inmediatamente: Daniel es el único niño de 11 años."
+
+#: 04060101.xhp#bm_id3149766.help.text
+msgid "<bookmark_value>DMAX function</bookmark_value> <bookmark_value>maximum values in Calc databases</bookmark_value> <bookmark_value>searching;maximum values in columns</bookmark_value>"
+msgstr "<bookmark_value>función BDMAX</bookmark_value><bookmark_value>valores máximos en bases de datos de Calc</bookmark_value><bookmark_value>buscar;valores máximos en columnas</bookmark_value>"
+
+#: 04060101.xhp#hd_id3149766.115.help.text
+msgid "DMAX"
+msgstr "BDMAX"
+
+#: 04060101.xhp#par_id3154903.116.help.text
+msgid "<ahelp hid=\"HID_FUNC_DBMAX\">DMAX returns the maximum content of a cell (field) in a database (all records) that matches the specified search conditions.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DBMAX\">BDMAX devuelve el contenido máximo de una celda (campo) de una base de datos (todos los registros) que coincida con el valor buscado especificado.</ahelp>"
+
+#: 04060101.xhp#hd_id3150771.117.help.text
+msgctxt "04060101.xhp#hd_id3150771.117.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060101.xhp#par_id3159157.118.help.text
+msgid "DMAX(Database; DatabaseField; SearchCriteria)"
+msgstr "BDMAX(Base de Datos; Campo Base de Datos; Criterio de Búsqueda)"
+
+#: 04060101.xhp#hd_id3145420.119.help.text
+msgctxt "04060101.xhp#hd_id3145420.119.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060101.xhp#par_id3148442.120.help.text
+msgid "To find out how much the heaviest child in each grade weighed in the above example (scroll up, please), enter the following formula in B16:"
+msgstr "Para averiguar cuánto pesaba el niño más pesado de cada curso en el ejemplo anterior, escriba la siguiente fórmula en B16:"
+
+#: 04060101.xhp#par_id3148804.121.help.text
+msgid "<item type=\"input\">=DMAX(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr "<item type=\"input\">=BDMAX(A1:E10;\"Peso\";A13:E14)</item>"
+
+#: 04060101.xhp#par_id3150510.122.help.text
+msgid "Under Grade, enter <item type=\"input\">1, 2, 3,</item> and so on, one after the other. After entering a grade number, the weight of the heaviest child in that grade appears."
+msgstr "Bajo el Grado, coloque <item type=\"input\">1, 2, 3,</item> y así sucesivamente, uno tras otro, Después de introducir un numero de grado, el peso del niño mas pesado en ese grado aparecerá."
+
+#: 04060101.xhp#bm_id3159141.help.text
+msgid "<bookmark_value>DMIN function</bookmark_value> <bookmark_value>minimum values in Calc databases</bookmark_value> <bookmark_value>searching;minimum values in columns</bookmark_value>"
+msgstr "<bookmark_value>funciónBDMIN</bookmark_value><bookmark_value>valores mínimos en bases de datos de Calc</bookmark_value><bookmark_value>buscar;valores mínimos en columnas</bookmark_value>"
+
+#: 04060101.xhp#hd_id3159141.123.help.text
+msgid "DMIN"
+msgstr "BDMIN"
+
+#: 04060101.xhp#par_id3154261.124.help.text
+msgid "<ahelp hid=\"HID_FUNC_DBMIN\">DMIN returns the minimum content of a cell (field) in a database that matches the specified search criteria.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DBMIN\">BDMIN devuelve el contenido mínimo de una celda (campo) de una base de datos que coincida con el valor buscado especificado.</ahelp>"
+
+#: 04060101.xhp#hd_id3147238.125.help.text
+msgctxt "04060101.xhp#hd_id3147238.125.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060101.xhp#par_id3148479.126.help.text
+msgid "DMIN(Database; DatabaseField; SearchCriteria)"
+msgstr "BDMIN(Base de Datos; Campo Base de Datos; Búsqueda por Criterios)"
+
+#: 04060101.xhp#hd_id3151050.127.help.text
+msgctxt "04060101.xhp#hd_id3151050.127.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060101.xhp#par_id3148925.128.help.text
+msgid "To find the shortest distance to school for the children in each grade in the above example (scroll up, please), enter the following formula in B16:"
+msgstr "Para averiguar la distancia más corta a la escuela para los niños de cada curso en el ejemplo anterior, escriba la siguiente fórmula en B16:"
+
+#: 04060101.xhp#par_id3149161.129.help.text
+msgid "<item type=\"input\">=DMIN(A1:E10;\"Distance to School\";A13:E14)</item>"
+msgstr "<item type=\"input\">=BDMIN(A1:E10;\"Distancia a la Escuela\";A13:E14)</item>"
+
+#: 04060101.xhp#par_id3148917.130.help.text
+msgid "In row 14, under Grade, enter <item type=\"input\">1, 2, 3,</item> and so on, one after the other. The shortest distance to school for each grade appears."
+msgstr "En la fila 14, bajo el Grado, coloque <item type=\"input\">1, 2, 3,</item> y así sucesivamente, uno tras otro. La distancia mas corta a la escuela para cada grado aparecerá."
+
+#: 04060101.xhp#bm_id3154274.help.text
+msgid "<bookmark_value>DAVERAGE function</bookmark_value> <bookmark_value>averages; in Calc databases</bookmark_value> <bookmark_value>calculating;averages in Calc databases</bookmark_value>"
+msgstr "<bookmark_value>función BDPROMEDIO</bookmark_value><bookmark_value>promedios; en bases de datos de Calc</bookmark_value><bookmark_value>calcular;promedios en bases de datos de Calc</bookmark_value>"
+
+#: 04060101.xhp#hd_id3154274.131.help.text
+msgid "DAVERAGE"
+msgstr "BDPROMEDIO"
+
+#: 04060101.xhp#par_id3166453.132.help.text
+msgid "<ahelp hid=\"HID_FUNC_DBMITTELWERT\">DAVERAGE returns the average of the values of all cells (fields) in all rows (database records) that match the specified search criteria.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DBMITTELWERT\">BDPROMEDIO devuelve el promedio de los valores de todas las celdas (campos) en todas las filas (registros de bases de datos) que coinciden con los criterios de búsqueda especificados.</ahelp>"
+
+#: 04060101.xhp#hd_id3146955.133.help.text
+msgctxt "04060101.xhp#hd_id3146955.133.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060101.xhp#par_id3150710.134.help.text
+msgid "DAVERAGE(Database; DatabaseField; SearchCriteria)"
+msgstr "BDPROMEDIO(Base de Datos; Campo de Base de Datos; Búsqueda por Criterios)"
+
+#: 04060101.xhp#hd_id3152943.135.help.text
+msgctxt "04060101.xhp#hd_id3152943.135.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060101.xhp#par_id3149104.136.help.text
+msgid "To find the average weight of all children of the same age in the above example (scroll up, please), enter the following formula in B16:"
+msgstr "Para averiguar el peso medio de todos los niños de la misma edad en el ejemplo anterior, escriba la siguiente fórmula en B16:"
+
+#: 04060101.xhp#par_id3153688.137.help.text
+msgid "<item type=\"input\">=DAVERAGE(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr "<item type=\"input\">=BDPROMEDIO(A1:E10;\"Peso\";A13:E14)</item>"
+
+#: 04060101.xhp#par_id3155587.138.help.text
+msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The average weight of all children of the same age appears."
+msgstr "En la fila 14, de bajo de Edad, introduzca <item type=\"input\">7, 8, 9,</item> y así sucesivamente, uno tras otro. Aparecerá el promedio de peso de todos los niños de la misma edad."
+
+#: 04060101.xhp#bm_id3159269.help.text
+msgid "<bookmark_value>DPRODUCT function</bookmark_value> <bookmark_value>multiplying;cell contents in Calc databases</bookmark_value>"
+msgstr "<bookmark_value>función BDPRODUCTO</bookmark_value><bookmark_value>multiplicar;contenido de celdas en bases de datos de Calc</bookmark_value>"
+
+#: 04060101.xhp#hd_id3159269.139.help.text
+msgid "DPRODUCT"
+msgstr "BDPRODUCTO"
+
+#: 04060101.xhp#par_id3152879.140.help.text
+msgid "<ahelp hid=\"HID_FUNC_DBPRODUKT\">DPRODUCT multiplies all cells of a data range where the cell contents match the search criteria.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DBPRODUKT\">BDPRODUCTO multiplica todas las celdas de un área de datos cuyo contenido coincida con los criterios de búsqueda.</ahelp>"
+
+#: 04060101.xhp#hd_id3149966.141.help.text
+msgctxt "04060101.xhp#hd_id3149966.141.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060101.xhp#par_id3154854.142.help.text
+msgid "DPRODUCT(Database; DatabaseField; SearchCriteria)"
+msgstr "DPRODUCT(Base de Datos; Campo Base de Datos; Criterios de Búsqueda)"
+
+#: 04060101.xhp#hd_id3149802.143.help.text
+msgctxt "04060101.xhp#hd_id3149802.143.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060101.xhp#par_id3148986.144.help.text
+msgid "With the birthday party example above (scroll up, please), there is no meaningful application of this function."
+msgstr "El ejemplo de la fiesta de cumpleaños no permite ninguna aplicación significativa de esta función."
+
+#: 04060101.xhp#bm_id3148462.help.text
+msgid "<bookmark_value>DSTDEV function</bookmark_value> <bookmark_value>standard deviations in databases;based on a sample</bookmark_value>"
+msgstr "<bookmark_value>función DESVEST</bookmark_value><bookmark_value>desviación estándar en bases de datos;basadas en un ejemplo</bookmark_value>"
+
+#: 04060101.xhp#hd_id3148462.145.help.text
+msgid "DSTDEV"
+msgstr "BDDESVEST"
+
+#: 04060101.xhp#par_id3154605.146.help.text
+msgid "<ahelp hid=\"HID_FUNC_DBSTDABW\">DSTDEV calculates the standard deviation of a population based on a sample, using the numbers in a database column that match the given conditions.</ahelp> The records are treated as a sample of data. That means that the children in the example represent a cross section of all children. Note that a representative result can not be obtained from a sample of less than one thousand."
+msgstr "<ahelp hid=\"HID_FUNC_DBSTDABW\">BDDESVEST calcula la desviación estándar de una población a partir de una muestra, mediante el uso de las cifras de una columna de la base de datos que cumplen las condiciones especificadas.</ahelp> Los registros se tratan como una muestra de los datos. Es decir, los niños del ejemplo representan una sección transversal de todos los niños. Tenga en cuenta que con una muestra inferior a menos de mil individuos no es posible obtener un resultado representativo."
+
+#: 04060101.xhp#hd_id3149427.147.help.text
+msgctxt "04060101.xhp#hd_id3149427.147.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060101.xhp#par_id3148661.148.help.text
+msgid "DSTDEV(Database; DatabaseField; SearchCriteria)"
+msgstr "BDDSTDEV(Base de Datos; Campo Base de Datos; Búsqueda por Criterios)"
+
+#: 04060101.xhp#hd_id3153945.149.help.text
+msgctxt "04060101.xhp#hd_id3153945.149.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060101.xhp#par_id3149934.150.help.text
+msgid "To find the standard deviation of the weight for all children of the same age in the example (scroll up, please), enter the following formula in B16:"
+msgstr "Para averiguar la desviación estándar del peso de todos los niños de la misma edad en el ejemplo anterior, escriba la siguiente fórmula en B16:"
+
+#: 04060101.xhp#par_id3150630.151.help.text
+msgid "<item type=\"input\">=DSTDEV(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr "<item type=\"input\">=BDDESVEST(A1:E10;\"Peso\";A13:E14)</item>"
+
+#: 04060101.xhp#par_id3153536.152.help.text
+msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The result shown is the standard deviation of the weight of all children of this age."
+msgstr "En la fila 14, abajo del Año, introduzca <item type=\"input\">7, 8, 9,</item> y así sucesivamente, uno tras otro. Se mostrara como resultado la desviación estándar del peso de todos los niños de esa edad."
+
+#: 04060101.xhp#bm_id3150429.help.text
+msgid "<bookmark_value>DSTDEVP function</bookmark_value> <bookmark_value>standard deviations in databases;based on populations</bookmark_value>"
+msgstr "<bookmark_value>función BDDESVESTP</bookmark_value><bookmark_value>desviación estándar en bases de datos;basadas en población</bookmark_value>"
+
+#: 04060101.xhp#hd_id3150429.153.help.text
+msgid "DSTDEVP"
+msgstr "BDDESVESTP"
+
+#: 04060101.xhp#par_id3145598.154.help.text
+msgid "<ahelp hid=\"HID_FUNC_DBSTDABWN\">DSTDEVP calculates the standard deviation of a population based on all cells of a data range which match the search criteria.</ahelp> The records from the example are treated as the whole population."
+msgstr "<ahelp hid=\"HID_FUNC_DBSTDABWN\">BDDESVESTP calcula la desviación estándar de una población a partir de todas las celdas de un área de datos que cumplan los criterios de búsqueda.</ahelp> Los registros del ejemplo se tratan como la población total."
+
+#: 04060101.xhp#hd_id3145307.155.help.text
+msgctxt "04060101.xhp#hd_id3145307.155.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060101.xhp#par_id3149484.156.help.text
+msgid "DSTDEVP(Database; DatabaseField; SearchCriteria)"
+msgstr "BDDESVESTP(Base de Datos; Campo Base de Datos; Búsqueda por Criterios)"
+
+#: 04060101.xhp#hd_id3153322.157.help.text
+msgctxt "04060101.xhp#hd_id3153322.157.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060101.xhp#par_id3155431.158.help.text
+msgid "To find the standard deviation of the weight for all children of the same age at Joe's birthday party (scroll up, please), enter the following formula in B16:"
+msgstr "Para averiguar la desviación estándar del peso de todos los niños de la misma edad en el cumpleaños de Luis, escriba la siguiente fórmula en B16:"
+
+#: 04060101.xhp#par_id3148411.159.help.text
+msgid "<item type=\"input\">=DSTDEVP(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr "<item type=\"input\">=BDDESVESTP(A1:E10;\"Peso\";A13:E14)</item>"
+
+#: 04060101.xhp#par_id3143271.160.help.text
+msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The result is the standard deviation of the weight for all same-aged children whose weight was checked."
+msgstr "En la fila 14, debajo de la edad, escriba <item type=\"input\">7, 8, 9,</item> y así sucesivamente, uno tras otro. El resultado será la desviación estándar de todos los niños de la misma edad cuyo peso se ha verificado. "
+
+#: 04060101.xhp#bm_id3154794.help.text
+msgid "<bookmark_value>DSUM function</bookmark_value> <bookmark_value>calculating;sums in Calc databases</bookmark_value> <bookmark_value>sums;cells in Calc databases</bookmark_value>"
+msgstr "<bookmark_value>función BDSUMA</bookmark_value><bookmark_value>calcular;sumas en bases de datos de Calc</bookmark_value><bookmark_value>sumas;celdas en bases de datos de Calc</bookmark_value>"
+
+#: 04060101.xhp#hd_id3154794.161.help.text
+msgid "DSUM"
+msgstr "BDSUMA"
+
+#: 04060101.xhp#par_id3149591.162.help.text
+msgid "<ahelp hid=\"HID_FUNC_DBSUMME\">DSUM returns the total of all cells in a database field in all rows (records) that match the specified search criteria.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DBSUMME\">BDSUMA devuelve el total de todas las celdas en un campo de base de datos en todas las filas (registros) que cumplan los criterios de búsqueda especificados.</ahelp>"
+
+#: 04060101.xhp#hd_id3146128.163.help.text
+msgctxt "04060101.xhp#hd_id3146128.163.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060101.xhp#par_id3150989.164.help.text
+msgid "DSUM(Database; DatabaseField; SearchCriteria)"
+msgstr "BDSUM(Base de Datos; Campo Base de Datos; Búsqueda por Criterios)"
+
+#: 04060101.xhp#hd_id3159079.165.help.text
+msgctxt "04060101.xhp#hd_id3159079.165.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060101.xhp#par_id3152766.166.help.text
+msgid "To find the length of the combined distance to school of all children at Joe's birthday party (scroll up, please) who are in second grade, enter the following formula in B16:"
+msgstr "Para averiguar la distancia a la escuela total combinada para todos los niños de la fiesta de cumpleaños de Luis que están en segundo curso, escriba la siguiente fórmula en B16:"
+
+#: 04060101.xhp#par_id3151312.167.help.text
+msgid "<item type=\"input\">=DSUM(A1:E10;\"Distance to School\";A13:E14)</item>"
+msgstr "<item type=\"input\">=BDSUMA(A1:E10;\"Distancia a la escuela\";A13:E14)</item>"
+
+#: 04060101.xhp#par_id3150596.168.help.text
+msgid "Enter <item type=\"input\">2</item> in row 14 under Grade. The sum (1950) of the distances to school of all the children who are in second grade is displayed."
+msgstr "Ingresa <item type=\"input\">2</item> en la fila 14 debajo de Grado. La suma (1950) de la distancia de la escuela de todos los niños que van en segundo grado se desplegará."
+
+#: 04060101.xhp#bm_id3155614.help.text
+msgid "<bookmark_value>DVAR function</bookmark_value> <bookmark_value>variances;based on samples</bookmark_value>"
+msgstr "<bookmark_value>función BDSUMA</bookmark_value><bookmark_value>varianzas;basadas en ejemplos</bookmark_value>"
+
+#: 04060101.xhp#hd_id3155614.170.help.text
+msgid "DVAR"
+msgstr "BDVAR"
+
+#: 04060101.xhp#par_id3154418.171.help.text
+msgid "<ahelp hid=\"HID_FUNC_DBVARIANZ\">DVAR returns the variance of all cells of a database field in all records that match the specified search criteria.</ahelp> The records from the example are treated as a sample of data. A representative result cannot be obtained from a sample population of less than one thousand."
+msgstr "<ahelp hid=\"HID_FUNC_DBVARIANZ\">BDVAR devuelve la variancia para todas las celdas de un campo de base de datos en todos los registros que cumplan los criterios de búsqueda especificados.</ahelp> Los registros del ejemplo se tratan como una muestra de los datos. Tenga en cuenta que con una muestra inferior a mil individuos no es posible obtener un resultado representativo."
+
+#: 04060101.xhp#hd_id3154825.172.help.text
+msgctxt "04060101.xhp#hd_id3154825.172.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060101.xhp#par_id3156138.173.help.text
+msgid "DVAR(Database; DatabaseField; SearchCriteria)"
+msgstr "BDVAR(Base de Datos; Campo de la Base de Datos; Criterios de búsqueda)"
+
+#: 04060101.xhp#hd_id3151257.174.help.text
+msgctxt "04060101.xhp#hd_id3151257.174.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060101.xhp#par_id3153701.175.help.text
+msgid "To find the variance of the weight of all children of the same age of the above example (scroll up, please), enter the following formula in B16:"
+msgstr "Para averiguar la varianza del peso de todos los niños de la misma edad en el ejemplo anterior, escriba la siguiente fórmula en B16:"
+
+#: 04060101.xhp#par_id3153676.176.help.text
+msgid "<item type=\"input\">=DVAR(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr "<item type=\"input\">=BDVAR(A1:E10;\"Peso\";A13:E14)</item>"
+
+#: 04060101.xhp#par_id3153798.177.help.text
+msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. You will see as a result the variance of the weight values for all children of this age."
+msgstr "En la fila 14, debajo de Edad, ingresa <item type=\"input\">7, 8, 9,</item> y así, una despues de la otra. Lo veras como un resultado de la varianza de los valores de peso para todos los niños de la misma edad."
+
+#: 04060101.xhp#bm_id3153880.help.text
+msgid "<bookmark_value>DVARP function</bookmark_value> <bookmark_value>variances;based on populations</bookmark_value>"
+msgstr "<bookmark_value>función BDVARP</bookmark_value><bookmark_value>varianzas;basadas en poblaciones</bookmark_value>"
+
+#: 04060101.xhp#hd_id3153880.178.help.text
+msgid "DVARP"
+msgstr "BDVARP"
+
+#: 04060101.xhp#par_id3155119.179.help.text
+msgid "<ahelp hid=\"HID_FUNC_DBVARIANZEN\">DVARP calculates the variance of all cell values in a database field in all records that match the specified search criteria.</ahelp> The records are from the example are treated as an entire population."
+msgstr "<ahelp hid=\"HID_FUNC_DBVARIANZEN\">BDVARP calcula la variancia para todas las celdas de un campo de base de datos en todos los registros que cumplen los criterios de búsqueda especificados.</ahelp> Los registros del ejemplo se tratan como la población total."
+
+#: 04060101.xhp#hd_id3145774.180.help.text
+msgctxt "04060101.xhp#hd_id3145774.180.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060101.xhp#par_id3153776.181.help.text
+msgid "DVARP(Database; DatabaseField; SearchCriteria)"
+msgstr "BDVARP(Base de Datos; Campo de la Base de Datos; Criterios de búsqueda)"
+
+#: 04060101.xhp#hd_id3151110.182.help.text
+msgctxt "04060101.xhp#hd_id3151110.182.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060101.xhp#par_id3147099.183.help.text
+msgid "To find the variance of the weight for all children of the same age at Joe's birthday party (scroll up, please), enter the following formula in B16:"
+msgstr "Para averiguar la varianza del peso promedio de todos los niños de la misma edad en el cumpleaños de Luis, escriba la siguiente fórmula en B16:"
+
+#: 04060101.xhp#par_id3147322.184.help.text
+msgid "<item type=\"input\">=DVARP(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr "<item type=\"input\">=BDVARP(A1:E10;\"Peso\";A13:E14)</item>"
+
+#: 04060101.xhp#par_id3146902.185.help.text
+msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The variance of the weight values for all children of this age attending Joe's birthday party appears."
+msgstr "En la fila 14, bajo Edad, ingresa <item type=\"input\">7, 8, 9,</item> y así, una después de la otra. La varianza de los valores de peso para todos los niños de esta edad asistiendo al cumpleaños de Joe aparecerán."
+
+#: 06030900.xhp#tit.help.text
+msgid "Refresh Traces"
+msgstr "Actualizar rastros"
+
+#: 06030900.xhp#bm_id3152349.help.text
+msgid "<bookmark_value>cells; refreshing traces</bookmark_value><bookmark_value>traces; refreshing</bookmark_value><bookmark_value>updating;traces</bookmark_value>"
+msgstr "<bookmark_value>celdas; actualizar rastros</bookmark_value><bookmark_value>rastros; actualizar</bookmark_value><bookmark_value>actualizar;rastros</bookmark_value>"
+
+#: 06030900.xhp#hd_id3152349.1.help.text
+msgid "<link href=\"text/scalc/01/06030900.xhp\" name=\"Refresh Traces\">Refresh Traces</link>"
+msgstr "<link href=\"text/scalc/01/06030900.xhp\" name=\"Actualizar rastros\">Actualizar rastros</link>"
+
+#: 06030900.xhp#par_id3148947.2.help.text
+msgid "<ahelp hid=\".uno:RefreshArrows\">Redraws all traces in the sheet. Formulas modified when traces are redrawn are taken into account.</ahelp>"
+msgstr "<ahelp hid=\".uno:RefreshArrows\">Redibuja todas las flechas de rastreo de la hoja. Se tienen en cuenta las fórmulas modificadas mientras se redibujan las flechas de rastreo.</ahelp>"
+
+#: 06030900.xhp#par_id3148798.3.help.text
+msgid "Detective arrows in the document are updated under the following circumstances:"
+msgstr "Las flechas del Detective en el documento se actualizan en las circunstancias siguientes:"
+
+#: 06030900.xhp#par_id3153192.4.help.text
+msgid "Starting <emph>Tools - Detective - Update Refresh Traces</emph>"
+msgstr "Activación de <emph>Herramientas - Detective - Actualizar rastros</emph>."
+
+#: 06030900.xhp#par_id3151041.5.help.text
+msgid "If <emph>Tools - Detective - Update Automatically</emph> is turned on, every time formulas are changed in the document."
+msgstr "Si se activa <emph>Herramientas - Detective - Actualizar automáticamente</emph>, en cada modificación de fórmulas del documento."
+
+#: func_datedif.xhp#tit.help.text
+msgid "DATEDIF"
+msgstr ""
+
+#: func_datedif.xhp#bm_id3155511.help.text
+#, fuzzy
+msgid "<bookmark_value>DATEDIF function</bookmark_value>"
+msgstr "<bookmark_value>FECHA</bookmark_value>"
+
+#: func_datedif.xhp#hd_id3155511.help.text
+msgid "<variable id=\"datedif\"><link href=\"text/scalc/01/func_datedif.xhp\">DATEDIF</link></variable>"
+msgstr ""
+
+#: func_datedif.xhp#par_id3153551.help.text
+msgid "<ahelp hid=\"HID_FUNC_DATUM\">This function returns the number of whole days, months or years between Start date and End date.</ahelp>"
+msgstr ""
+
+#: func_datedif.xhp#hd_id3148590.help.text
+msgctxt "func_datedif.xhp#hd_id3148590.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: func_datedif.xhp#par_id3150474.help.text
+msgid "DATEDIF(Start date; End date; Interval)"
+msgstr ""
+
+#: func_datedif.xhp#par_id3152815.help.text
+msgid "<emph>Start date</emph> is the date from when the calculation is carried out."
+msgstr ""
+
+#: func_datedif.xhp#par_id3155817.help.text
+msgid "<emph>End date</emph> is the date until the calculation is carried out. End date must be later, than Start date."
+msgstr ""
+
+#: func_datedif.xhp#par_id3153183.help.text
+msgid "<emph>Interval</emph> is a string, accepted values are \"d\", \"m\", \"y\", \"ym\", \"md\" or \"yd\"."
+msgstr ""
+
+#: func_datedif.xhp#par_id5735953.help.text
+msgid "Value for \"Interval\""
+msgstr ""
+
+#: func_datedif.xhp#par_id8360850.help.text
+msgctxt "func_datedif.xhp#par_id8360850.help.text"
+msgid "Return value"
+msgstr "Valor de devolución"
+
+#: func_datedif.xhp#par_id9648731.help.text
+msgid "\"d\""
+msgstr ""
+
+#: func_datedif.xhp#par_id908841.help.text
+msgid "Number of whole days between Start date and End date."
+msgstr ""
+
+#: func_datedif.xhp#par_id8193914.help.text
+msgid "\"m\""
+msgstr ""
+
+#: func_datedif.xhp#par_id9841608.help.text
+msgid "Number of whole months between Start date and End date."
+msgstr ""
+
+#: func_datedif.xhp#par_id2701803.help.text
+msgid "\"y\""
+msgstr ""
+
+#: func_datedif.xhp#par_id2136295.help.text
+msgid "Number of whole years between Start date and End date."
+msgstr ""
+
+#: func_datedif.xhp#par_id9200109.help.text
+msgid "\"ym\""
+msgstr ""
+
+#: func_datedif.xhp#par_id4186223.help.text
+msgid "Number of whole months when subtracting years from the difference of Start date and End date."
+msgstr ""
+
+#: func_datedif.xhp#par_id5766472.help.text
+msgid "\"md\""
+msgstr ""
+
+#: func_datedif.xhp#par_id1491134.help.text
+msgid "Number of whole days when subtracting years and months from the difference of Start date and End date."
+msgstr ""
+
+#: func_datedif.xhp#par_id5866472.help.text
+msgid "\"yd\""
+msgstr ""
+
+#: func_datedif.xhp#par_id1591134.help.text
+msgid "Number of whole days when subtracting years from the difference of Start date and End date."
+msgstr ""
+
+#: func_datedif.xhp#hd_id3147477.help.text
+msgctxt "func_datedif.xhp#hd_id3147477.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: func_datedif.xhp#par_id3152589.help.text
+msgid "Birthday calculation. A man was born on 1974-04-17. Today is 2012-06-13."
+msgstr ""
+
+#: func_datedif.xhp#par_id3252589.help.text
+msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"y\")</item> yields 38. <item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"ym\")</item> yields 1. <item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"md\")</item> yields 27. So he is 38 years, 1 month and 27 days old."
+msgstr ""
+
+#: func_datedif.xhp#par_id3352589.help.text
+msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"m\")</item> yields 457, he has been living for 457 months."
+msgstr ""
+
+#: func_datedif.xhp#par_id3452589.help.text
+msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"d\")</item> yields 13937, he has been living for 13937 days."
+msgstr ""
+
+#: func_datedif.xhp#par_id3752589.help.text
+msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"yd\")</item> yields 57, his birthday was 57 days ago."
+msgstr ""
+
+#: 12120000.xhp#tit.help.text
+msgctxt "12120000.xhp#tit.help.text"
+msgid "Validity"
+msgstr "Validez"
+
+#: 12120000.xhp#hd_id3156347.1.help.text
+msgctxt "12120000.xhp#hd_id3156347.1.help.text"
+msgid "Validity"
+msgstr "Validez"
+
+#: 12120000.xhp#par_id3153252.2.help.text
+msgid "<variable id=\"gueltigkeit\"><ahelp hid=\".uno:Validation\">Defines what data is valid for a selected cell or cell range.</ahelp></variable>"
+msgstr "<variable id=\"gueltigkeit\"><ahelp hid=\".uno:Validation\">Define los datos que son válidos para la celda o el área de celdas seleccionadas.</ahelp></variable>"
+
+#: 12120000.xhp#par_idN105D1.help.text
+msgid "You can also insert a list box from the Controls toolbar and link the list box to a cell. This way you can specify the valid values on the <link href=\"text/shared/02/01170102.xhp\">Data</link> page of the list box properties window."
+msgstr "También se puede insertar un cuadro de lista desde la barra de herramientas Campos de control y vincularlo con una celda. De esta forma, se pueden especificar los valores correctos en la pestaña <link href=\"text/shared/02/01170102.xhp\">Datos</link> de la ventana de propiedades del cuadro de lista."
+
+#: 12090400.xhp#tit.help.text
+msgctxt "12090400.xhp#tit.help.text"
+msgid "Grouping"
+msgstr "Agrupación"
+
+#: 12090400.xhp#par_idN1054D.help.text
+msgctxt "12090400.xhp#par_idN1054D.help.text"
+msgid "Grouping"
+msgstr "Agrupación"
+
+#: 12090400.xhp#par_idN10551.help.text
+#, fuzzy
+msgid "Grouping pivot tables displays the <emph>Grouping</emph> dialog for either values or dates."
+msgstr "La agrupación de tablas del Piloto de datos muestra el diálogo <emph>Agrupación</emph> para los valores o las fechas."
+
+#: 12090400.xhp#par_idN10568.help.text
+msgctxt "12090400.xhp#par_idN10568.help.text"
+msgid "Start"
+msgstr "Inicio"
+
+#: 12090400.xhp#par_idN1056C.help.text
+msgid "Specifies the start of the grouping."
+msgstr "Especifica el inicio de la agrupación."
+
+#: 12090400.xhp#par_idN1056F.help.text
+msgctxt "12090400.xhp#par_idN1056F.help.text"
+msgid "Automatically"
+msgstr "Automáticamente"
+
+#: 12090400.xhp#par_idN10573.help.text
+msgid "Specifies whether to start grouping at the smallest value."
+msgstr "Especifica si se debe iniciar la agrupación en el valor mínimo."
+
+#: 12090400.xhp#par_idN10576.help.text
+msgctxt "12090400.xhp#par_idN10576.help.text"
+msgid "Manually at"
+msgstr "Manualmente en"
+
+#: 12090400.xhp#par_idN1057A.help.text
+msgid "Specifies whether to enter the start value for grouping yourself."
+msgstr "Especifica si se va a introducir manualmente el valor de inicio para la agrupación."
+
+#: 12090400.xhp#par_idN1057D.help.text
+msgctxt "12090400.xhp#par_idN1057D.help.text"
+msgid "End"
+msgstr "Fin"
+
+#: 12090400.xhp#par_idN10581.help.text
+msgid "Specifies the end of the grouping."
+msgstr "Especifica el fin de la agrupación."
+
+#: 12090400.xhp#par_idN10584.help.text
+msgctxt "12090400.xhp#par_idN10584.help.text"
+msgid "Automatically"
+msgstr "Automáticamente"
+
+#: 12090400.xhp#par_idN10588.help.text
+msgid "Specifies whether to end grouping at the largest value."
+msgstr "Especifica si se debe finalizar la agrupación en el valor máximo."
+
+#: 12090400.xhp#par_idN1058B.help.text
+msgctxt "12090400.xhp#par_idN1058B.help.text"
+msgid "Manually at"
+msgstr "Manualmente en"
+
+#: 12090400.xhp#par_idN1058F.help.text
+msgid "Specifies whether to enter the end value for grouping yourself."
+msgstr "Especifica si se va a introducir manualmente el valor de fin para la agrupación."
+
+#: 12090400.xhp#par_idN10592.help.text
+msgctxt "12090400.xhp#par_idN10592.help.text"
+msgid "Group by"
+msgstr "Agrupar por"
+
+#: 12090400.xhp#par_idN10596.help.text
+msgid "Specifies the value range by which every group's limits are calculated."
+msgstr "Especifica el rango de valores en función del cual se calculan los límites de cada grupo."
+
+#: 12090400.xhp#par_idN10599.help.text
+msgid "Number of days"
+msgstr "Número de días"
+
+#: 12090400.xhp#par_idN1059D.help.text
+msgid "In the case of grouping date values, specifies the number of days to group by."
+msgstr "En caso de agrupar valores de fechas, especifica el número de días por el que se debe agrupar."
+
+#: 12090400.xhp#par_idN105A0.help.text
+msgid "Intervals"
+msgstr "Intervalos"
+
+#: 12090400.xhp#par_idN105A4.help.text
+msgid "In the case of grouping date values, specifies the intervals to group by."
+msgstr "En caso de agrupar valores de fechas, especifica los intervalos por los que se debe agrupar."
+
+#: 12090400.xhp#par_idN105B2.help.text
+msgid "<embedvar href=\"text/scalc/guide/datapilot_grouping.xhp#datapilot_grouping\"/>"
+msgstr "<embedvar href=\"text/scalc/guide/datapilot_grouping.xhp#datapilot_grouping\"/>"
+
+#: 12090101.xhp#tit.help.text
+msgctxt "12090101.xhp#tit.help.text"
+msgid "Select Data Source"
+msgstr "Seleccionar origen de datos"
+
+#: 12090101.xhp#hd_id3143268.1.help.text
+msgctxt "12090101.xhp#hd_id3143268.1.help.text"
+msgid "Select Data Source"
+msgstr "Seleccionar fuente de datos"
+
+#: 12090101.xhp#par_id3148552.2.help.text
+msgid "Select the database and the table or query containing the data that you want to use."
+msgstr "Seleccione la base de datos y la tabla o consulta que contiene los datos que desea utilizar."
+
+#: 12090101.xhp#hd_id3154140.3.help.text
+msgctxt "12090101.xhp#hd_id3154140.3.help.text"
+msgid "Selection"
+msgstr "Selección"
+
+#: 12090101.xhp#par_id3125863.4.help.text
+msgid "<ahelp hid=\".\">You can only select databases that are registered in %PRODUCTNAME.</ahelp> To register a data source, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Base - Databases</emph>."
+msgstr "<ahelp hid=\".\">Solamente se pueden seleccionar las bases de datos que están registradas en %PRODUCTNAME.</ahelp> Para registrar un origen de datos, elija <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias </caseinline><defaultinline> Herramientas -Opciones</defaultinline></switchinline> - %PRODUCTNAME Base - Bases de datos</emph>."
+
+#: 12090101.xhp#hd_id3151041.5.help.text
+msgid "Database"
+msgstr "Base de datos"
+
+#: 12090101.xhp#par_id3156424.6.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_DATABASE\">Select the database that contains the data source that you want to use.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_DATABASE\">Seleccione la base de datos que contiene el origen de datos que desea utilizar.</ahelp>"
+
+#: 12090101.xhp#hd_id3145364.7.help.text
+msgid "Data source"
+msgstr "Fuente de datos"
+
+#: 12090101.xhp#par_id3149260.8.help.text
+msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DAPIDATA:CB_OBJECT\">Select the data source that you want to use.</ahelp>"
+msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DAPIDATA:CB_OBJECT\">Seleccione el origen de datos que desee usar.</ahelp>"
+
+#: 12090101.xhp#hd_id3147428.9.help.text
+msgctxt "12090101.xhp#hd_id3147428.9.help.text"
+msgid "Type"
+msgstr "Tipo"
+
+#: 12090101.xhp#par_id3150010.10.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_OBJTYPE\">Click the source type of for the selected data source.</ahelp> You can choose from four source types: \"Table\", \"Query\" and \"SQL\" or SQL (Native)."
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_OBJTYPE\">Haga clic en el tipo del origen de datos seleccionado.</ahelp> Puede elegir entre cuatro tipos de origen: \"Tablas\", \"Consultas\" y \"SQL\" o SQL (Nativo)."
+
+#: 12090101.xhp#par_id3147348.11.help.text
+#, fuzzy
+msgctxt "12090101.xhp#par_id3147348.11.help.text"
+msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
+msgstr "<link href=\"text/scalc/01/12090102.xhp\" name=\"Diálogo Piloto de datos\">Diálogo Piloto de datos</link>"
+
+#: 12010100.xhp#tit.help.text
+msgctxt "12010100.xhp#tit.help.text"
+msgid "Options"
+msgstr "Opciones"
+
+#: 12010100.xhp#hd_id3154760.1.help.text
+msgctxt "12010100.xhp#hd_id3154760.1.help.text"
+msgid "Options"
+msgstr "Opciones"
+
+#: 12010100.xhp#hd_id3153379.3.help.text
+msgctxt "12010100.xhp#hd_id3153379.3.help.text"
+msgid "Contains column labels"
+msgstr "Contiene etiquetas de columnas"
+
+#: 12010100.xhp#par_id3148798.4.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_HEADER\" visibility=\"visible\">Selected cell ranges contains labels.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_HEADER\" visibility=\"visible\">Las áreas de celdas seleccionadas contienen etiquetas.</ahelp>"
+
+#: 12010100.xhp#hd_id3153970.5.help.text
+msgid "Insert or delete cells"
+msgstr "Insertar o eliminar celdas"
+
+#: 12010100.xhp#par_id3154684.6.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_SIZE\" visibility=\"visible\">Automatically inserts new rows and columns into the database range in your document when new records are added to the database.</ahelp> To manually update the database range, choose <emph>Data - Refresh</emph> <emph>Range</emph>."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_SIZE\" visibility=\"visible\">Inserta automáticamente nuevas filas y columnas en el área de base de datos del documento al agregar registros nuevos a la base de datos.</ahelp> Para actualizar manualmente el área de base de datos seleccione <emph>Datos - Actualizar área</emph>."
+
+#: 12010100.xhp#hd_id3153768.7.help.text
+msgid "Keep formatting"
+msgstr "Conservar el formato"
+
+#: 12010100.xhp#par_id3147435.8.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_FORMAT\" visibility=\"visible\">Applies the existing cell format of headers and first data row to the whole database range.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_FORMAT\" visibility=\"visible\">Aplica el formato existente de las celdas de los encabezamientos y las primeras filas de datos a todo el rango de la base de datos.</ahelp>"
+
+#: 12010100.xhp#hd_id3155856.9.help.text
+msgid "Don't save imported data"
+msgstr "No guardar los datos importados"
+
+#: 12010100.xhp#par_id3153363.10.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_STRIPDATA\" visibility=\"visible\">Only saves a reference to the database, and not the contents of the cells.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_STRIPDATA\" visibility=\"visible\">Guarda únicamente una referencia a la base de datos, pero no el contenido de las celdas.</ahelp>"
+
+#: 12010100.xhp#hd_id3147428.11.help.text
+msgid "Source:"
+msgstr "Fuente:"
+
+#: 12010100.xhp#par_id3148576.12.help.text
+msgid "Displays information about the current database source and any existing operators."
+msgstr "Muestra información acerca de la fuente de la base de datos actual y los operadores existentes."
+
+#: 12010100.xhp#hd_id3146976.13.help.text
+msgctxt "12010100.xhp#hd_id3146976.13.help.text"
+msgid "More <<"
+msgstr "Opciones <<"
+
+#: 12010100.xhp#par_id3149664.14.help.text
+msgctxt "12010100.xhp#par_id3149664.14.help.text"
+msgid "Hides the additional options."
+msgstr "Oculta las opciones adicionales."
+
+#: 12010000.xhp#tit.help.text
+msgctxt "12010000.xhp#tit.help.text"
+msgid "Define Database Range"
+msgstr "Definir área de base de datos"
+
+#: 12010000.xhp#hd_id3157909.1.help.text
+msgctxt "12010000.xhp#hd_id3157909.1.help.text"
+msgid "Define Database Range"
+msgstr "Definir área de base de datos"
+
+#: 12010000.xhp#par_id3155922.2.help.text
+msgid "<variable id=\"bereichtext\"><ahelp hid=\".uno:DefineDBName\">Defines a database range based on the selected cells in your sheet.</ahelp></variable>"
+msgstr "<variable id=\"bereichtext\"><ahelp hid=\".uno:DefineDBName\">Define un área de base de datos en las celdas seleccionadas de la hoja.</ahelp></variable>"
+
+#: 12010000.xhp#par_id3149456.5.help.text
+msgid "You can only select a rectangular cell range."
+msgstr "Sólo se puede seleccionar un área rectangular."
+
+#: 12010000.xhp#hd_id3156422.3.help.text
+msgctxt "12010000.xhp#hd_id3156422.3.help.text"
+msgid "Name"
+msgstr "Nombre"
+
+#: 12010000.xhp#par_id3150770.4.help.text
+msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DBNAMES:ED_NAME\">Enter a name for the database range that you want to define, or select an existing name from the list.</ahelp>"
+msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DBNAMES:ED_NAME\">Escriba un nombre para el área de base de datos que desea definir o seleccione un nombre de la lista.</ahelp>"
+
+#: 12010000.xhp#hd_id3147228.6.help.text
+#, fuzzy
+msgctxt "12010000.xhp#hd_id3147228.6.help.text"
+msgid "Range"
+msgstr ""
+"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Área\n"
+"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Rango"
+
+#: 12010000.xhp#par_id3150441.7.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_DBNAMES:ED_DBAREA\">Displays the selected cell range.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_DBNAMES:ED_DBAREA\">Muestra el área de celdas seleccionada.</ahelp>"
+
+#: 12010000.xhp#hd_id3153188.10.help.text
+msgctxt "12010000.xhp#hd_id3153188.10.help.text"
+msgid "Add/Modify"
+msgstr "Agregar/Modificar"
+
+#: 12010000.xhp#par_id3153726.11.help.text
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_DBNAMES:BTN_ADD\">Adds the selected cell range to the database range list, or modifies an existing database range.</ahelp>"
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_DBNAMES:BTN_ADD\">Agrega el área de celdas seleccionada a la lista de áreas de base de datos, o modifica un área de base de datos existente.</ahelp>"
+
+#: 12010000.xhp#hd_id3150010.12.help.text
+msgctxt "12010000.xhp#hd_id3150010.12.help.text"
+msgid "More >>"
+msgstr "Opciones >>"
+
+#: 12010000.xhp#par_id3153144.13.help.text
+msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_DBNAMES:BTN_MORE\">Shows additional <link href=\"text/scalc/01/12010100.xhp\" name=\"options\">options</link>.</ahelp>"
+msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_DBNAMES:BTN_MORE\">Muestra <link href=\"text/scalc/01/12010100.xhp\" name=\"opciones\">opciones</link> adicionales.</ahelp>"
+
+#: func_weekday.xhp#tit.help.text
+msgid "WEEKDAY "
+msgstr "DÍASEM"
+
+#: func_weekday.xhp#bm_id3154925.help.text
+msgid "<bookmark_value>WEEKDAY function</bookmark_value>"
+msgstr "<bookmark_value>DÍASEM</bookmark_value>"
+
+#: func_weekday.xhp#hd_id3154925.136.help.text
+msgid "<variable id=\"weekday\"><link href=\"text/scalc/01/func_weekday.xhp\">WEEKDAY</link></variable>"
+msgstr "<variable id=\"weekday\"><link href=\"text/scalc/01/func_weekday.xhp\">DÍASEM</link></variable>"
+
+#: func_weekday.xhp#par_id3154228.137.help.text
+msgid "<ahelp hid=\"HID_FUNC_WOCHENTAG\">Returns the day of the week for the given date value.</ahelp> The day is returned as an integer between 1 (Sunday) and 7 (Saturday) if no type or type=1 is specified. If type=2, numbering begins at Monday=1; and if type=3 numbering begins at Monday=0."
+msgstr "<ahelp hid=\"HID_FUNC_WOCHENTAG\">Devuelve el día de la semana para el valor de la fecha dada. </ahelp> El día se regresa como un entero entre 1 (Domingo) y 7 (Sábado) si no hay tipo o el tipo=1 se especifica. Si el tipo=2, la numeración comienza en Lunes=1; y si el tipo=3 la numeración comienza en Lunes=0."
+
+#: func_weekday.xhp#hd_id3147217.138.help.text
+msgctxt "func_weekday.xhp#hd_id3147217.138.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: func_weekday.xhp#par_id3149033.139.help.text
+msgid "WEEKDAY(Number; Type)"
+msgstr "DÍASEM(número; tipo)"
+
+#: func_weekday.xhp#par_id3149046.140.help.text
+msgid "<emph>Number</emph>, as a date value, is a decimal for which the weekday is to be returned."
+msgstr "El <emph>número</emph>, como valor temporal, es un número decimal en función del cual debe calcularse el día de la semana."
+
+#: func_weekday.xhp#par_id3154394.141.help.text
+msgid "<emph>Type</emph> determines the type of calculation. For Type=1, the weekdays are counted starting from Sunday (this is the default even when the Type parameter is missing). For Type=2, the weekdays are counted starting from Monday=1. For Type=3, the weekdays are counted starting from Monday=0."
+msgstr "<emph>Tipo</emph> determina el tipo de calculo. Por Tipo=1, los días de la semana son contados desde el domingo (este es el predeterminado incluso cuando el parámetro es de tipo desconocido). Por Tipo=2, los días de la semana son contados iniciando desde Lunes=1. Por Tipo=3, los días de la semana son contados iniciando desde el Lunes=0."
+
+#: func_weekday.xhp#par_id3156188.142.help.text
+msgid "These values apply only to the standard date format that you select under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate</emph>."
+msgstr "Estos valores se aplican solo al formato de fecha estándar que se selecciona en <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline> Herramientas - Opciones</defaultinline></switchinline> - %PRODUCTNAME Calc - Calcular</emph>."
+
+#: func_weekday.xhp#hd_id3153836.143.help.text
+msgctxt "func_weekday.xhp#hd_id3153836.143.help.text"
+msgid "Examples"
+msgstr "Ejemplos"
+
+#: func_weekday.xhp#par_id3150317.144.help.text
+msgid "=WEEKDAY(\"2000-06-14\") returns 4 (the Type parameter is missing, therefore the standard count is used. The standard count starts with Sunday as day number 1. June 14, 2000 was a Wednesday and therefore day number 4)."
+msgstr "=DÍASEM(\"2000-06-14\") devuelve 4 (el tipo de parámetro es desconocido, por lo tanto, el estándar de contar se utiliza. El estándar de contar inicia con el domingo como día número 1. El 14 de Junio de 2000 fue un día miércoles y, por tanto, número 4)."
+
+#: func_weekday.xhp#par_id3153174.145.help.text
+msgid "=WEEKDAY(\"1996-07-24\";2) returns 3 (the Type parameter is 2, therefore Monday is day number 1. July 24, 1996 was a Wednesday and therefore day number 3)."
+msgstr "=DÍASEM(\"1996-07-24\";2) devuelve 3 (el tipo de parámetro es 2, por lo tanto el lunes es el día número 1. El 24 de julio de 1996 fue un miércoles, por lo tanto es un día número 3)."
+
+#: func_weekday.xhp#par_id3153525.146.help.text
+msgid "=WEEKDAY(\"1996-07-24\";1) returns 4 (the Type parameter is 1, therefore Sunday is day number 1. July 24, 1996 was a Wednesday and therefore day number 4)."
+msgstr "=DÍASEM(\"1996-07-24\";1) devuelve 4 (el tipo de parámetro es 1, el domingo es el día número 1. El 24 de julio de 1996 fue un miércoles, por lo tanto, el número de día es 4)."
+
+#: func_weekday.xhp#par_id3150575.147.help.text
+msgid "=WEEKDAY(NOW()) returns the number of the current day."
+msgstr "=DÍASEM(AHORA()) devuelve el número del día actual."
+
+#: func_weekday.xhp#par_id3150588.171.help.text
+msgid "To obtain a function indicating whether a day in A1 is a business day, use the IF and WEEKDAY functions as follows: <br/>IF(WEEKDAY(A1;2)<6;\"Business day\";\"Weekend\")"
+msgstr "Para obtener una función que indique si un día en A1 es laboral, utilice las funciones SI y DÍASEM del siguiente modo: SI(DÍASEM(A1;2)<6;\"Día laboral\";\"Fin de semana\")"
+
+#: 12050000.xhp#tit.help.text
+msgctxt "12050000.xhp#tit.help.text"
+msgid "Subtotals"
+msgstr "Subtotales"
+
+#: 12050000.xhp#hd_id3153822.1.help.text
+msgctxt "12050000.xhp#hd_id3153822.1.help.text"
+msgid "Subtotals"
+msgstr "Subtotales"
+
+#: 12050000.xhp#par_id3145119.2.help.text
+msgid "<variable id=\"teilergebnisse\"><ahelp hid=\".uno:DataSubTotals\" visibility=\"visible\">Calculates subtotals for the columns that you select.</ahelp></variable> $[officename] uses the SUM function to automatically calculate the subtotal and grand total values in a labeled range. You can also use other functions to perform the calculation. $[officename] automatically recognizes a defined database area when you place the cursor in it."
+msgstr "<variable id=\"teilergebnisse\"><ahelp hid=\".uno:DataSubTotals\" visibility=\"visible\">Calcula subtotales en las columnas seleccionadas.</ahelp></variable> $[officename] utiliza la función SUMA para calcular los valores de subtotales y totales en un área con etiqueta. También puede utilizar otras funciones para efectuar dicho cálculo. $[officename] reconoce automáticamente un área de base de datos definida al situar el cursor en ella."
+
+#: 12050000.xhp#par_id3153896.3.help.text
+msgid "For example, you can generate a sales summary for a certain postal code based on data from a client database."
+msgstr "Por ejemplo, se puede generar un resumen de ventas para un cierto código postal a partir de los datos de una base de datos de clientes."
+
+#: 12050000.xhp#hd_id3163708.4.help.text
+msgctxt "12050000.xhp#hd_id3163708.4.help.text"
+msgid "Delete"
+msgstr "Borrar"
+
+#: 12050000.xhp#par_id3154125.5.help.text
+msgid "Deletes the subtotal rows in the selected area."
+msgstr "Borra las filas de subtotales en el área seleccionada."
+
+#: 04010200.xhp#tit.help.text
+msgctxt "04010200.xhp#tit.help.text"
+msgid "Column Break"
+msgstr "Salto de columna"
+
+#: 04010200.xhp#bm_id3155923.help.text
+msgid "<bookmark_value>spreadsheets; inserting column breaks</bookmark_value><bookmark_value>column breaks; inserting</bookmark_value><bookmark_value>inserting; manual column breaks</bookmark_value><bookmark_value>manual column breaks</bookmark_value>"
+msgstr "<bookmark_value>hojas de cálculo;insertar saltos de columna</bookmark_value><bookmark_value>saltos de columna;insertar</bookmark_value><bookmark_value>insertar;saltos de columna manuales</bookmark_value><bookmark_value>saltos de columna manuales</bookmark_value>"
+
+#: 04010200.xhp#hd_id3155923.1.help.text
+msgid "<link href=\"text/scalc/01/04010200.xhp\" name=\"Column Break\">Column Break</link>"
+msgstr "<link href=\"text/scalc/01/04010200.xhp\" name=\"Column Break\">Salto de columna</link>"
+
+#: 04010200.xhp#par_id3150447.2.help.text
+msgid "<ahelp hid=\".uno:InsertColumnBreak\">Inserts a column break (vertical page break) to the left of the active cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertColumnBreak\">Inserta un salto de columna (salto de página vertical) a la izquierda de la celda activa.</ahelp>"
+
+#: 04010200.xhp#par_id3145171.3.help.text
+msgid "The manual column break is indicated by a dark blue vertical line."
+msgstr "Un salto de columna manual se reconoce por la presencia de una línea vertical azul oscura en la hoja."
+
+#: 05080100.xhp#tit.help.text
+msgid "Define"
+msgstr "Definir"
+
+#: 05080100.xhp#hd_id3145673.1.help.text
+msgid "<link href=\"text/scalc/01/05080100.xhp\" name=\"Define\">Define</link>"
+msgstr "<link href=\"text/scalc/01/05080100.xhp\" name=\"Definir\">Definir</link>"
+
+#: 05080100.xhp#par_id3153896.2.help.text
+msgid "<ahelp hid=\".uno:DefinePrintArea\">Defines an active cell or selected cell area as the print range.</ahelp>"
+msgstr "<ahelp hid=\".uno:DefinePrintArea\">Define una celda activa o el área de celdas seleccionada como intervalo de impresión.</ahelp>"
+
+#: func_today.xhp#tit.help.text
+msgid "TODAY"
+msgstr "HOY"
+
+#: func_today.xhp#bm_id3145659.help.text
+msgid "<bookmark_value>TODAY function</bookmark_value>"
+msgstr "<bookmark_value>HOY</bookmark_value>"
+
+#: func_today.xhp#hd_id3145659.29.help.text
+msgid "<variable id=\"today\"><link href=\"text/scalc/01/func_today.xhp\">TODAY</link></variable>"
+msgstr "<variable id=\"today\"><link href=\"text/scalc/01/func_today.xhp\">HOY</link></variable>"
+
+#: func_today.xhp#par_id3153759.30.help.text
+msgid "<ahelp hid=\"HID_FUNC_HEUTE\">Returns the current computer system date.</ahelp> The value is updated when you reopen the document or modify the values of the document."
+msgstr "<ahelp hid=\"HID_FUNC_HEUTE\">Devuelve la fecha actual del sistema.</ahelp> El valor se actualiza cuando se vuelve a abrir el documento o se modifican los valores de éste."
+
+#: func_today.xhp#hd_id3154051.31.help.text
+msgctxt "func_today.xhp#hd_id3154051.31.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: func_today.xhp#par_id3153154.32.help.text
+msgid "TODAY()"
+msgstr "HOY()"
+
+#: func_today.xhp#par_id3154741.33.help.text
+msgid " TODAY is a function without arguments."
+msgstr "HOY es una función sin argumentos. "
+
+#: func_today.xhp#hd_id3153627.34.help.text
+msgctxt "func_today.xhp#hd_id3153627.34.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: func_today.xhp#par_id3156106.35.help.text
+msgid "<item type=\"input\">TODAY()</item> returns the current computer system date."
+msgstr "<item type=\"input\">HOY()</item> devuelve la fecha actual del sistema operativo."
+
+#: 04060181.xhp#tit.help.text
+msgid "Statistical Functions Part One"
+msgstr "Funciones estadísticas, primera parte"
+
+#: 04060181.xhp#hd_id3146320.1.help.text
+msgid "<variable id=\"ae\"><link href=\"text/scalc/01/04060181.xhp\">Statistical Functions Part One</link></variable>"
+msgstr "<variable id=\"ae\"><link href=\"text/scalc/01/04060181.xhp\">Funciones estadísticas, primera parte</link></variable>"
+
+#: 04060181.xhp#bm_id3145632.help.text
+msgid "<bookmark_value>INTERCEPT function</bookmark_value> <bookmark_value>points of intersection</bookmark_value> <bookmark_value>intersections</bookmark_value>"
+msgstr "<bookmark_value>INTERSECCIÓN.EJE</bookmark_value> <bookmark_value>puntos de intersección</bookmark_value> <bookmark_value>intersecciones</bookmark_value>"
+
+#: 04060181.xhp#hd_id3145632.2.help.text
+msgid "INTERCEPT"
+msgstr "NTERSECCIÓN.EJE"
+
+#: 04060181.xhp#par_id3146887.3.help.text
+msgid "<ahelp hid=\"HID_FUNC_ACHSENABSCHNITT\">Calculates the point at which a line will intersect the y-values by using known x-values and y-values.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ACHSENABSCHNITT\">Calcula el punto de intersección de una línea con los valores y utilizando los valores x e y conocidos.</ahelp>"
+
+#: 04060181.xhp#hd_id3150374.4.help.text
+msgctxt "04060181.xhp#hd_id3150374.4.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060181.xhp#par_id3149718.5.help.text
+msgid "INTERCEPT(DataY; DataX)"
+msgstr "INTERSECCIÓN.EJE(DatosY; DatosX)"
+
+#: 04060181.xhp#par_id3149947.6.help.text
+msgid " <emph>DataY</emph> is the dependent set of observations or data."
+msgstr " <emph>DatosY</emph> es el conjunto dependiente de observaciones o datos."
+
+#: 04060181.xhp#par_id3147412.7.help.text
+msgid " <emph>DataX</emph> is the independent set of observations or data."
+msgstr " <emph>DatosX</emph> es el conjunto independiente de observaciones o datos."
+
+#: 04060181.xhp#par_id3152983.8.help.text
+msgid "Names, arrays or references containing numbers must be used here. Numbers can also be entered directly."
+msgstr "Se deben utilizar nombres, matrices o referencias que contengan números. También se pueden escribir números directamente."
+
+#: 04060181.xhp#hd_id3157906.9.help.text
+msgctxt "04060181.xhp#hd_id3157906.9.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060181.xhp#par_id3148728.10.help.text
+msgid "To calculate the intercept, use cells D3:D9 as the y value and C3:C9 as the x value from the example spreadsheet. Input will be as follows:"
+msgstr "Para calcular el eje de intersección se utilizan como valor Y las celdas D3:D9 y como valor X, las celdas C3:C9 de la hoja de ejemplo. La entrada queda como sigue:"
+
+#: 04060181.xhp#par_id3149013.11.help.text
+msgid " <item type=\"input\">=INTERCEPT(D3:D9;C3:C9)</item> = 2.15."
+msgstr " <item type=\"input\">=INTERSECCIÓN.EJE(D3:D9;C3:C9)</item> = 2,15."
+
+#: 04060181.xhp#bm_id3148437.help.text
+msgid "<bookmark_value>COUNT function</bookmark_value> <bookmark_value>numbers;counting</bookmark_value>"
+msgstr "<bookmark_value>CONTAR</bookmark_value> <bookmark_value>números;contar</bookmark_value>"
+
+#: 04060181.xhp#hd_id3148437.13.help.text
+msgctxt "04060181.xhp#hd_id3148437.13.help.text"
+msgid "COUNT"
+msgstr "CONTAR"
+
+#: 04060181.xhp#par_id3150700.14.help.text
+msgid "<ahelp hid=\"HID_FUNC_ANZAHL\">Counts how many numbers are in the list of arguments.</ahelp> Text entries are ignored."
+msgstr "<ahelp hid=\"HID_FUNC_ANZAHL\">Cuenta los números que hay en la lista de argumentos.</ahelp> No se toman en consideración las entradas de texto."
+
+#: 04060181.xhp#hd_id3153930.15.help.text
+msgctxt "04060181.xhp#hd_id3153930.15.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060181.xhp#par_id3148585.16.help.text
+msgid "COUNT(Value1; Value2; ... Value30)"
+msgstr "CONTAR(Valor1; Valor2; ... Valor30)"
+
+#: 04060181.xhp#par_id3155827.17.help.text
+msgid " <emph>Value1; Value2, ...</emph> are 1 to 30 values or ranges representing the values to be counted."
+msgstr " <emph>Valor 1; Valor 2...</emph> son valores o áreas del 1 al 30 que representan los valores que se van a contar."
+
+#: 04060181.xhp#hd_id3149254.18.help.text
+msgctxt "04060181.xhp#hd_id3149254.18.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060181.xhp#par_id3149953.19.help.text
+msgctxt "04060181.xhp#par_id3149953.19.help.text"
+msgid "The entries 2, 4, 6 and eight in the Value 1-4 fields are to be counted."
+msgstr "Las entradas 2, 4, 6 y 8 en el valor de los campos 1-4 han de ser contados."
+
+#: 04060181.xhp#par_id3154558.20.help.text
+msgid " <item type=\"input\">=COUNT(2;4;6;\"eight\")</item> = 3. The count of numbers is therefore 3."
+msgstr " <item type=\"input\">=CONTAR(2;4;6;\"ocho\")</item> = 3. La cantidad de números es por tanto 3."
+
+#: 04060181.xhp#bm_id3149729.help.text
+msgid "<bookmark_value>COUNTA function</bookmark_value> <bookmark_value>number of entries</bookmark_value>"
+msgstr "<bookmark_value>CONTARA</bookmark_value> <bookmark_value>número de entradas</bookmark_value>"
+
+#: 04060181.xhp#hd_id3149729.22.help.text
+msgctxt "04060181.xhp#hd_id3149729.22.help.text"
+msgid "COUNTA"
+msgstr "CONTARA"
+
+#: 04060181.xhp#par_id3150142.23.help.text
+msgid "<ahelp hid=\"HID_FUNC_ANZAHL2\">Counts how many values are in the list of arguments.</ahelp> Text entries are also counted, even when they contain an empty string of length 0. If an argument is an array or reference, empty cells within the array or reference are ignored."
+msgstr "<ahelp hid=\"HID_FUNC_ANZAHL2\">Cuenta los valores que hay en la lista de argumentos.</ahelp> Las entradas de texto también se cuentan, incluso si contienen una cadena vacía de longitud 0. Si un argumento es una matriz o referencia, se hace caso omiso de las celdas vacías que pudieran contener."
+
+#: 04060181.xhp#hd_id3148573.24.help.text
+msgctxt "04060181.xhp#hd_id3148573.24.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060181.xhp#par_id3153111.25.help.text
+msgid "COUNTA(Value1; Value2; ... Value30)"
+msgstr "CONTAR(Valor1; Valor2; ... Valor30)"
+
+#: 04060181.xhp#par_id3150001.26.help.text
+msgid " <emph>Value1; Value2, ...</emph> are 1 to 30 arguments representing the values to be counted."
+msgstr " <emph>Valor 1; Valor 2, ...</emph> son argumentos del 1 al 30 que representan los valores que se van a contar."
+
+#: 04060181.xhp#hd_id3150334.27.help.text
+msgctxt "04060181.xhp#hd_id3150334.27.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060181.xhp#par_id3154508.28.help.text
+msgctxt "04060181.xhp#par_id3154508.28.help.text"
+msgid "The entries 2, 4, 6 and eight in the Value 1-4 fields are to be counted."
+msgstr " Las entradas 2, 4, 6 y ocho en el valor de los campos 1-4 han de ser contados."
+
+#: 04060181.xhp#par_id3158000.29.help.text
+msgid " <item type=\"input\">=COUNTA(2;4;6;\"eight\")</item> = 4. The count of values is therefore 4."
+msgstr " <item type=\"input\">=CONTARA(2;4;6;\"ocho\")</item> = 4. La cantidad de valores es por tanto 4."
+
+#: 04060181.xhp#bm_id3150267.help.text
+msgid "<bookmark_value>B function</bookmark_value> <bookmark_value>probabilities of samples with binomial distribution</bookmark_value>"
+msgstr "<bookmark_value>B</bookmark_value> <bookmark_value>probabilidades de muestras con distribución binomial</bookmark_value>"
+
+#: 04060181.xhp#hd_id3150267.31.help.text
+msgctxt "04060181.xhp#hd_id3150267.31.help.text"
+msgid "B"
+msgstr "B"
+
+#: 04060181.xhp#par_id3156061.32.help.text
+msgid "<ahelp hid=\"HID_FUNC_B\">Returns the probability of a sample with binomial distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_B\">Devuelve la probabilidad de una muestra con distribución binomial.</ahelp>"
+
+#: 04060181.xhp#hd_id3150659.33.help.text
+msgctxt "04060181.xhp#hd_id3150659.33.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060181.xhp#par_id3148392.34.help.text
+msgid "B(Trials; SP; T1; T2)"
+msgstr "B(Ensayos; SP; T1; T2)"
+
+#: 04060181.xhp#par_id3149002.35.help.text
+msgctxt "04060181.xhp#par_id3149002.35.help.text"
+msgid " <emph>Trials</emph> is the number of independent trials."
+msgstr " <emph>Ensayos</emph> es el número de intentos independientes."
+
+#: 04060181.xhp#par_id3148875.36.help.text
+msgctxt "04060181.xhp#par_id3148875.36.help.text"
+msgid " <emph>SP</emph> is the probability of success on each trial."
+msgstr " <emph>prob_éxito</emph> es la probabilidad de éxito de cada intento."
+
+#: 04060181.xhp#par_id3145352.37.help.text
+msgid " <emph>T1</emph> defines the lower limit for the number of trials."
+msgstr " <emph>T1</emph> define el límite inferior para el número de intentos."
+
+#: 04060181.xhp#par_id3149538.38.help.text
+msgid " <emph>T2</emph> (optional) defines the upper limit for the number of trials."
+msgstr " <emph>T2</emph> (opcional) define el límite superior para el número de intentos."
+
+#: 04060181.xhp#hd_id3148768.39.help.text
+msgctxt "04060181.xhp#hd_id3148768.39.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060181.xhp#par_id3154633.40.help.text
+msgid "What is the probability with ten throws of the dice, that a six will come up exactly twice? The probability of a six (or any other number) is 1/6. The following formula combines these factors:"
+msgstr "¿Cuál debe ser la probabilidad si al tirar un dado 10 veces sale dos veces el seis? La probabilidad para un seis (o para cualquier otro número) es 1/6, luego el resultado es la siguiente fórmula:"
+
+#: 04060181.xhp#par_id3149393.41.help.text
+msgid " <item type=\"input\">=B(10;1/6;2)</item> returns a probability of 29%."
+msgstr " <item type=\"input\">=B(10;1/6;2)</item> devuelve una probabilidad del 29%."
+
+#: 04060181.xhp#bm_id3158416.help.text
+msgid "<bookmark_value>RSQ function</bookmark_value> <bookmark_value>determination coefficients</bookmark_value> <bookmark_value>regression analysis</bookmark_value>"
+msgstr "<bookmark_value>COEFICIENTE.R2</bookmark_value> <bookmark_value>coeficientes de determinación</bookmark_value> <bookmark_value>análisis de regresión</bookmark_value>"
+
+#: 04060181.xhp#hd_id3158416.43.help.text
+msgid "RSQ"
+msgstr "COEFICIENTE.R2"
+
+#: 04060181.xhp#par_id3154949.44.help.text
+msgid "<ahelp hid=\"HID_FUNC_BESTIMMTHEITSMASS\">Returns the square of the Pearson correlation coefficient based on the given values.</ahelp> RSQ (also called determination coefficient) is a measure for the accuracy of an adjustment and can be used to produce a regression analysis."
+msgstr "<ahelp hid=\"HID_FUNC_BESTIMMTHEITSMASS\">Calcula el cuadrado del coeficiente de correlación de Pearson según los valores especificados.</ahelp> El coeficiente R2, también conocido como coeficiente de determinación, es una medida para obtener un buen ajuste, que se puede utilizar para producir un análisis de regresión."
+
+#: 04060181.xhp#hd_id3152820.45.help.text
+msgctxt "04060181.xhp#hd_id3152820.45.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060181.xhp#par_id3155822.46.help.text
+msgid "RSQ(DataY; DataX)"
+msgstr "COEFICIENTE.R2(DatosY; DatosX)"
+
+#: 04060181.xhp#par_id3150470.47.help.text
+msgid " <emph>DataY</emph> is an array or range of data points."
+msgstr " <emph>DatosY</emph> es una matriz o área de puntos de datos."
+
+#: 04060181.xhp#par_id3153181.48.help.text
+msgid " <emph>DataX</emph> is an array or range of data points."
+msgstr " <emph>DatosX</emph> es una matriz o rango de puntos de datos."
+
+#: 04060181.xhp#hd_id3156258.49.help.text
+msgctxt "04060181.xhp#hd_id3156258.49.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060181.xhp#par_id3155991.50.help.text
+msgid " <item type=\"input\">=RSQ(A1:A20;B1:B20)</item> calculates the determination coefficient for both data sets in columns A and B."
+msgstr " <item type=\"input\">=COEFICIENTE.R2(A1:A20;B1:B20)</item> calcula el coeficiente de determinación para los conjuntos de datos en las columnas A y B."
+
+#: 04060181.xhp#bm_id3145620.help.text
+msgid "<bookmark_value>BETAINV function</bookmark_value> <bookmark_value>cumulative probability density function;inverse of</bookmark_value>"
+msgstr "<bookmark_value>DISTR.BETA.INV</bookmark_value> <bookmark_value>función de densidad de probabilidad acumulada;inverso de</bookmark_value>"
+
+#: 04060181.xhp#hd_id3145620.52.help.text
+msgid "BETAINV"
+msgstr "DISTR.BETA.INV"
+
+#: 04060181.xhp#par_id3149825.53.help.text
+msgid "<ahelp hid=\"HID_FUNC_BETAINV\">Returns the inverse of the cumulative beta probability density function.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_BETAINV\">Devuelve el inverso de la función de densidad de probabilidad beta acumulada.</ahelp>"
+
+#: 04060181.xhp#hd_id3152479.54.help.text
+msgctxt "04060181.xhp#hd_id3152479.54.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060181.xhp#par_id3156300.55.help.text
+msgid "BETAINV(Number; Alpha; Beta; Start; End)"
+msgstr "DISTR.BETA.INV(Número; Alpha; Beta; Inicio; Fin)"
+
+#: 04060181.xhp#par_id3149266.56.help.text
+msgctxt "04060181.xhp#par_id3149266.56.help.text"
+msgid " <emph>Number</emph> is the value between <emph>Start</emph> and <emph>End</emph> at which to evaluate the function."
+msgstr " <emph>Número</emph> es el valor entre <emph>Inicio</emph> y <emph>Fin</emph> en el que evaluar la función."
+
+#: 04060181.xhp#par_id3149710.57.help.text
+msgctxt "04060181.xhp#par_id3149710.57.help.text"
+msgid " <emph>Alpha</emph> is a parameter to the distribution."
+msgstr " <emph>Alfa</emph> es un parámetro para la distribución."
+
+#: 04060181.xhp#par_id3156306.58.help.text
+msgctxt "04060181.xhp#par_id3156306.58.help.text"
+msgid " <emph>Beta</emph> is a parameter to the distribution."
+msgstr " <emph>Beta</emph> es un parámetro para la distribución."
+
+#: 04060181.xhp#par_id3150960.59.help.text
+msgctxt "04060181.xhp#par_id3150960.59.help.text"
+msgid " <emph>Start</emph> (optional) is the lower bound for <emph>Number</emph>."
+msgstr " <emph>Inicio</emph> (opcional) es el límite inferior de <emph>Número</emph>."
+
+#: 04060181.xhp#par_id3151268.60.help.text
+msgctxt "04060181.xhp#par_id3151268.60.help.text"
+msgid " <emph>End</emph> (optional) is the upper bound for <emph>Number</emph>."
+msgstr " <emph>Fin</emph> (opcional) es el límite superior de <emph>Número</emph>."
+
+#: 04060181.xhp#par_idN109DF.help.text
+msgctxt "04060181.xhp#par_idN109DF.help.text"
+msgid " <embedvar href=\"text/scalc/00/00000004.xhp#optional\"/> "
+msgstr " <embedvar href=\"text/scalc/00/00000004.xhp#optional\"/> "
+
+#: 04060181.xhp#hd_id3147077.61.help.text
+msgctxt "04060181.xhp#hd_id3147077.61.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060181.xhp#par_id3146859.62.help.text
+msgid " <item type=\"input\">=BETAINV(0.5;5;10)</item> returns the value 0.33."
+msgstr " <item type=\"input\">=DISTR.BETA.INV(0,5;5;10)</item> devuelve el valor 0,33."
+
+#: 04060181.xhp#bm_id3156096.help.text
+msgid "<bookmark_value>BETADIST function</bookmark_value> <bookmark_value>cumulative probability density function;calculating</bookmark_value>"
+msgstr "<bookmark_value>DISTR.BETA</bookmark_value> <bookmark_value>función de densidad de probabilidad acumulada;calcular</bookmark_value>"
+
+#: 04060181.xhp#hd_id3156096.64.help.text
+msgid "BETADIST"
+msgstr "DISTR.BETA"
+
+#: 04060181.xhp#par_id3150880.65.help.text
+msgid "<ahelp hid=\"HID_FUNC_BETAVERT\">Returns the beta function.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_BETAVERT\">Devuelve la función beta.</ahelp>"
+
+#: 04060181.xhp#hd_id3150762.66.help.text
+msgctxt "04060181.xhp#hd_id3150762.66.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060181.xhp#par_id3147571.67.help.text
+msgid "BETADIST(Number; Alpha; Beta; Start; End; Cumulative)"
+msgstr "DISTR.BETA(Número; Alfa; Beta; Inicio; Fin;Acumulativa)"
+
+#: 04060181.xhp#par_id3156317.68.help.text
+msgctxt "04060181.xhp#par_id3156317.68.help.text"
+msgid " <emph>Number</emph> is the value between <emph>Start</emph> and <emph>End</emph> at which to evaluate the function."
+msgstr " <emph>Número</emph> es el valor entre <emph>Inicio</emph> y <emph>Fin</emph> en el que evaluar la función."
+
+#: 04060181.xhp#par_id3156107.69.help.text
+msgctxt "04060181.xhp#par_id3156107.69.help.text"
+msgid " <emph>Alpha</emph> is a parameter to the distribution."
+msgstr " <emph>Alfa</emph> es un parámetro para la distribución."
+
+#: 04060181.xhp#par_id3153619.70.help.text
+msgctxt "04060181.xhp#par_id3153619.70.help.text"
+msgid " <emph>Beta</emph> is a parameter to the distribution."
+msgstr " <emph>Beta</emph> es un parámetro para la distribución."
+
+#: 04060181.xhp#par_id3150254.71.help.text
+msgctxt "04060181.xhp#par_id3150254.71.help.text"
+msgid " <emph>Start</emph> (optional) is the lower bound for <emph>Number</emph>."
+msgstr " <emph>Inicio</emph> (opcional) es el límite inferior de <emph>Número</emph>."
+
+#: 04060181.xhp#par_id3149138.72.help.text
+msgctxt "04060181.xhp#par_id3149138.72.help.text"
+msgid " <emph>End</emph> (optional) is the upper bound for <emph>Number</emph>."
+msgstr " <emph>Fin</emph> (opcional) es el límite superior de <emph>Número</emph>."
+
+#: 04060181.xhp#par_id012020091254453.help.text
+msgid " <emph>Cumulative</emph> (optional) can be 0 or False to calculate the probability density function. It can be any other value or True or omitted to calculate the cumulative distribution function."
+msgstr " <emph>Acumulativa</emph> (opcional) puede ser 0 o Falso para calcular la función de densidad de probabilidad. Puede ser cualquier otro valor o Verdadero u omitirse para calcular la función de distribución acumulativa."
+
+#: 04060181.xhp#par_idN10AB3.help.text
+msgctxt "04060181.xhp#par_idN10AB3.help.text"
+msgid " <embedvar href=\"text/scalc/00/00000004.xhp#optional\"/> "
+msgstr " <embedvar href=\"text/scalc/00/00000004.xhp#optional\"/> "
+
+#: 04060181.xhp#hd_id3145649.73.help.text
+msgctxt "04060181.xhp#hd_id3145649.73.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060181.xhp#par_id3156118.74.help.text
+msgid " <item type=\"input\">=BETADIST(0.75;3;4)</item> returns the value 0.96"
+msgstr " <item type=\"input\">=DISTR.BETA(0,75;3;4)</item> devuelve el valor 0,96."
+
+#: 04060181.xhp#bm_id3143228.help.text
+msgid "<bookmark_value>BINOMDIST function</bookmark_value>"
+msgstr "<bookmark_value>DISTR.BINOM</bookmark_value>"
+
+#: 04060181.xhp#hd_id3143228.76.help.text
+msgid "BINOMDIST"
+msgstr "DISTR.BINOM"
+
+#: 04060181.xhp#par_id3146897.77.help.text
+msgid "<ahelp hid=\"HID_FUNC_BINOMVERT\">Returns the individual term binomial distribution probability.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_BINOMVERT\">Devuelve la probabilidad de distribución binomial de un término individual.</ahelp>"
+
+#: 04060181.xhp#hd_id3149289.78.help.text
+msgctxt "04060181.xhp#hd_id3149289.78.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060181.xhp#par_id3156009.79.help.text
+msgid "BINOMDIST(X; Trials; SP; C)"
+msgstr "DISTR.BINOM(X; Ensayos; SP; C)"
+
+#: 04060181.xhp#par_id3154304.80.help.text
+msgid " <emph>X</emph> is the number of successes in a set of trials."
+msgstr " <emph>X</emph> es el número de éxitos en un conjunto de pruebas."
+
+#: 04060181.xhp#par_id3147492.81.help.text
+msgctxt "04060181.xhp#par_id3147492.81.help.text"
+msgid " <emph>Trials</emph> is the number of independent trials."
+msgstr " <emph>Ensayos</emph> es el número de intentos independientes."
+
+#: 04060181.xhp#par_id3146085.82.help.text
+msgctxt "04060181.xhp#par_id3146085.82.help.text"
+msgid " <emph>SP</emph> is the probability of success on each trial."
+msgstr " <emph>prob_éxito</emph> es la probabilidad de éxito de cada intento."
+
+#: 04060181.xhp#par_id3149760.83.help.text
+msgid " <emph>C</emph> = 0 calculates the probability of a single event and <emph>C</emph> = 1 calculates the cumulative probability."
+msgstr " <emph>C</emph> = 0 calcula la probabilidad de un único evento y <emph>C</emph> = 1 calcula la probabilidad acumulativa."
+
+#: 04060181.xhp#hd_id3151171.84.help.text
+msgctxt "04060181.xhp#hd_id3151171.84.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060181.xhp#par_id3145666.85.help.text
+msgid " <item type=\"input\">=BINOMDIST(A1;12;0.5;0)</item> shows (if the values <item type=\"input\">0</item> to <item type=\"input\">12</item> are entered in A1) the probabilities for 12 flips of a coin that <emph>Heads</emph> will come up exactly the number of times entered in A1."
+msgstr " <item type=\"input\">=DISTR.BINOM(A1;12;0.5;0)</item> muestra (si se especifican los valores <item type=\"input\">0</item> a <item type=\"input\">12</item> en A1) la probabilidad que resulta de tirar 12 veces una moneda y que salga <emph>Cara</emph> exactamente el número de veces especificado en A1."
+
+#: 04060181.xhp#par_id3150120.86.help.text
+msgid " <item type=\"input\">=BINOMDIST(A1;12;0.5;1)</item> shows the cumulative probabilities for the same series. For example, if A1 = <item type=\"input\">4</item>, the cumulative probability of the series is 0, 1, 2, 3 or 4 times <emph>Heads</emph> (non-exclusive OR)."
+msgstr " <item type=\"input\">=DISTR.BINOM(A1;12;0.5;1)</item> muestra las probabilidades acumuladas para la misma serie. Por ejemplo, si A1 = <item type=\"input\">4</item>, la probabilidad acumulada de la serie es 0, 1, 2, 3 o 4 veces <emph>encabezado</emph> (lógica OR no exclusiva)."
+
+#: 04060181.xhp#bm_id0119200902432928.help.text
+msgid "<bookmark_value>CHISQINV function</bookmark_value>"
+msgstr "<bookmark_value>INV.CUAD.JI</bookmark_value>"
+
+#: 04060181.xhp#hd_id0119200902421451.help.text
+msgid "CHISQINV"
+msgstr "INV.CUAD.CHI"
+
+#: 04060181.xhp#par_id0119200902421449.help.text
+msgid "<ahelp hid=\".\">Returns the inverse of CHISQDIST.</ahelp>"
+msgstr "<ahelp hid=\".\">Devuelve el valor inverso de DISTR.CUAD.CHI.</ahelp>"
+
+#: 04060181.xhp#hd_id0119200902475241.help.text
+msgctxt "04060181.xhp#hd_id0119200902475241.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060181.xhp#par_id0119200902475286.help.text
+msgid " <emph>Probability</emph> is the probability value for which the inverse of the chi-square distribution is to be calculated."
+msgstr " <emph>Probabilidad</emph> es el valor del intervalo de probabilidad para el cual se debe calcular la distribución de cuadrado de chi inversa."
+
+#: 04060181.xhp#par_id0119200902475282.help.text
+msgctxt "04060181.xhp#par_id0119200902475282.help.text"
+msgid " <emph>Degrees Of Freedom</emph> is the degrees of freedom for the chi-square function."
+msgstr " <emph>Grados de libertad</emph> son los grados de libertad para la función cuadrado de chi."
+
+#: 04060181.xhp#bm_id3148835.help.text
+msgid "<bookmark_value>CHIINV function</bookmark_value>"
+msgstr "<bookmark_value>PRUEBA.CHI.INV</bookmark_value>"
+
+#: 04060181.xhp#hd_id3148835.88.help.text
+msgid "CHIINV"
+msgstr "PRUEBA.JI.INV"
+
+#: 04060181.xhp#par_id3149906.89.help.text
+msgid "<ahelp hid=\"HID_FUNC_CHIINV\">Returns the inverse of the one-tailed probability of the chi-squared distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_CHIINV\">Devuelve el inverso de la probabilidad de una cola de la distribución del cuadrado de ji.</ahelp>"
+
+#: 04060181.xhp#hd_id3159157.90.help.text
+msgctxt "04060181.xhp#hd_id3159157.90.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060181.xhp#par_id3150504.91.help.text
+msgid "CHIINV(Number; DegreesFreedom)"
+msgstr "PRUEBA.CHI.INV(Número; GradosdeLibertad)"
+
+#: 04060181.xhp#par_id3154898.92.help.text
+msgid " <emph>Number</emph> is the value of the error probability."
+msgstr " <emph>Número</emph> es el valor de la probabilidad de error."
+
+#: 04060181.xhp#par_id3154294.93.help.text
+msgid " <emph>DegreesFreedom</emph> is the degrees of freedom of the experiment."
+msgstr " <emph>GradosdeLibertad</emph> son los grados de libertad del experimento."
+
+#: 04060181.xhp#hd_id3154208.94.help.text
+msgctxt "04060181.xhp#hd_id3154208.94.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060181.xhp#par_id3150777.130.help.text
+msgid "A die is thrown 1020 times. The numbers on the die 1 through 6 come up 195, 151, 148, 189, 183 and 154 times (observation values). The hypothesis that the die is not fixed is to be tested."
+msgstr "Se tira un dado 1020 veces. Los números de las caras del 1 al 6 aparecen 195, 151, 148, 189, 183 y 154 veces (valores observados). Se debe verificar la hipótesis de si el dado es real."
+
+#: 04060181.xhp#par_id3153062.131.help.text
+msgid "The Chi square distribution of the random sample is determined by the formula given above. Since the expected value for a given number on the die for n throws is n times 1/6, thus 1020/6 = 170, the formula returns a Chi square value of 13.27."
+msgstr "La distribución del cuadrado de ji de la muestra se calcula con la fórmula anterior. Como el valor previsto para cada uno de los números de las caras en n dados n veces es 1/6, entonces 1020/6 = 170, la fórmula da un valor de cuadrado de ji de 13,27."
+
+#: 04060181.xhp#par_id3148806.132.help.text
+msgid "If the (observed) Chi square is greater than or equal to the (theoretical) Chi square CHIINV, the hypothesis will be discarded, since the deviation between theory and experiment is too great. If the observed Chi square is less that CHIINV, the hypothesis is confirmed with the indicated probability of error."
+msgstr "Si el cuadrado de ji (observado) es mayor o igual al cuadrado PRUEBA.JI.INV (teórico), entonces se descarta la hipótesis, pues la desviación entre teoría y práctica es demasiado grande. Si el cuadrado ji observado es inferior a PRUEBA.JI.INV, entonces la hipótesis cumple el intervalo de probabilidad de error dado."
+
+#: 04060181.xhp#par_id3149763.95.help.text
+msgid " <item type=\"input\">=CHIINV(0.05;5)</item> returns 11.07."
+msgstr " <item type=\"input\">=PRUEBA.CHI.INV(0.05;5)</item> devuelve 11,07."
+
+#: 04060181.xhp#par_id3159142.133.help.text
+msgid " <item type=\"input\">=CHIINV(0.02;5)</item> returns 13.39."
+msgstr " <item type=\"input\">=PRUEBA.CHI.INV(0.02;5)</item> devuelve 13,39."
+
+#: 04060181.xhp#par_id3158401.134.help.text
+msgid "If the probability of error is 5%, the die is not true. If the probability of error is 2%, there is no reason to believe it is fixed."
+msgstr "Con un intervalo de probabilidad de error del 5% el dado no es de verdad; si el intervalo de error es del 2% no hay razón para cuestionar su veracidad."
+
+#: 04060181.xhp#bm_id3154260.help.text
+msgid "<bookmark_value>CHITEST function</bookmark_value>"
+msgstr "<bookmark_value>PRUEBA.JI</bookmark_value>"
+
+#: 04060181.xhp#hd_id3154260.97.help.text
+msgid "CHITEST"
+msgstr "PRUEBA.JI"
+
+#: 04060181.xhp#par_id3151052.98.help.text
+msgid "<ahelp hid=\"HID_FUNC_CHITEST\">Returns the probability of a deviance from a random distribution of two test series based on the chi-squared test for independence.</ahelp> CHITEST returns the chi-squared distribution of the data."
+msgstr "<ahelp hid=\"HID_FUNC_CHITEST\">Devuelve la probabilidad de una desviación de una distribución aleatoria de dos series de prueba basándose en las pruebas del cuadrado de ji para la independencia.</ahelp> PRUEBA.JI devuelve la distribución del cuadrado de ji de los datos."
+
+#: 04060181.xhp#par_id3148925.135.help.text
+msgid "The probability determined by CHITEST can also be determined with CHIDIST, in which case the Chi square of the random sample must then be passed as a parameter instead of the data row."
+msgstr "El intervalo de probabilidad calculado mediante PRUEBA.JI también se puede determinar mediante DISTR.JI; en este caso en lugar de una serie de datos, el cuadrado de ji de la muestra se debe presentar como parámetro."
+
+#: 04060181.xhp#hd_id3154280.99.help.text
+msgctxt "04060181.xhp#hd_id3154280.99.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060181.xhp#par_id3149162.100.help.text
+msgid "CHITEST(DataB; DataE)"
+msgstr "PRUEBA.CHI(DatoB; DatoE)"
+
+#: 04060181.xhp#par_id3158421.101.help.text
+msgid " <emph>DataB</emph> is the array of the observations."
+msgstr " <emph>DatosB</emph> es la matriz de las observaciones."
+
+#: 04060181.xhp#par_id3166453.102.help.text
+msgid " <emph>DataE</emph> is the range of the expected values."
+msgstr " <emph>DatosE</emph> es el intervalo de valores esperados."
+
+#: 04060181.xhp#hd_id3146946.103.help.text
+msgctxt "04060181.xhp#hd_id3146946.103.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060181.xhp#par_id3154096.136.help.text
+msgid "Data_B (observed)"
+msgstr "A (observado)"
+
+#: 04060181.xhp#par_id3152948.137.help.text
+msgid "Data_E (expected)"
+msgstr "B (previsto)"
+
+#: 04060181.xhp#par_id3152876.138.help.text
+msgctxt "04060181.xhp#par_id3152876.138.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060181.xhp#par_id3159279.139.help.text
+msgid " <item type=\"input\">195</item> "
+msgstr " <item type=\"input\">195</item> "
+
+#: 04060181.xhp#par_id3149105.140.help.text
+msgctxt "04060181.xhp#par_id3149105.140.help.text"
+msgid " <item type=\"input\">170</item> "
+msgstr " <item type=\"input\">170</item> "
+
+#: 04060181.xhp#par_id3149922.141.help.text
+msgctxt "04060181.xhp#par_id3149922.141.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060181.xhp#par_id3148621.142.help.text
+msgid " <item type=\"input\">151</item> "
+msgstr " <item type=\"input\">151</item> "
+
+#: 04060181.xhp#par_id3148987.143.help.text
+msgctxt "04060181.xhp#par_id3148987.143.help.text"
+msgid " <item type=\"input\">170</item> "
+msgstr " <item type=\"input\">170</item> "
+
+#: 04060181.xhp#par_id3149417.144.help.text
+msgctxt "04060181.xhp#par_id3149417.144.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060181.xhp#par_id3148661.145.help.text
+msgid " <item type=\"input\">148</item> "
+msgstr " <item type=\"input\">148</item> "
+
+#: 04060181.xhp#par_id3151128.146.help.text
+msgctxt "04060181.xhp#par_id3151128.146.help.text"
+msgid " <item type=\"input\">170</item> "
+msgstr " <item type=\"input\">170</item> "
+
+#: 04060181.xhp#par_id3148467.147.help.text
+msgctxt "04060181.xhp#par_id3148467.147.help.text"
+msgid "4"
+msgstr "4"
+
+#: 04060181.xhp#par_id3149237.148.help.text
+msgid " <item type=\"input\">189</item> "
+msgstr " <item type=\"input\">189</item> "
+
+#: 04060181.xhp#par_id3145304.149.help.text
+msgctxt "04060181.xhp#par_id3145304.149.help.text"
+msgid " <item type=\"input\">170</item> "
+msgstr " <item type=\"input\">170</item> "
+
+#: 04060181.xhp#par_id3149927.150.help.text
+msgctxt "04060181.xhp#par_id3149927.150.help.text"
+msgid "5"
+msgstr "5"
+
+#: 04060181.xhp#par_id3150630.151.help.text
+msgid " <item type=\"input\">183</item> "
+msgstr " <item type=\"input\">183</item> "
+
+#: 04060181.xhp#par_id3150423.152.help.text
+msgctxt "04060181.xhp#par_id3150423.152.help.text"
+msgid " <item type=\"input\">170</item> "
+msgstr " <item type=\"input\">170</item> "
+
+#: 04060181.xhp#par_id3143275.153.help.text
+msgctxt "04060181.xhp#par_id3143275.153.help.text"
+msgid "6"
+msgstr "6"
+
+#: 04060181.xhp#par_id3144750.154.help.text
+msgid " <item type=\"input\">154</item> "
+msgstr " <item type=\"input\">154</item> "
+
+#: 04060181.xhp#par_id3153947.155.help.text
+msgctxt "04060181.xhp#par_id3153947.155.help.text"
+msgid " <item type=\"input\">170</item> "
+msgstr " <item type=\"input\">170</item> "
+
+#: 04060181.xhp#par_id3149481.104.help.text
+msgid " <item type=\"input\">=CHITEST(A1:A6;B1:B6)</item> equals 0.02. This is the probability which suffices the observed data of the theoretical Chi-square distribution."
+msgstr " <item type=\"input\">=PRUEBA.CHI(A1:A6;B1:B6)</item> es igual a 0,02. Es la probabilidad con la que se cumple la distribución teórica del cuadrado de chi."
+
+#: 04060181.xhp#bm_id3148690.help.text
+msgid "<bookmark_value>CHIDIST function</bookmark_value>"
+msgstr "<bookmark_value>DISTR.CHI</bookmark_value>"
+
+#: 04060181.xhp#hd_id3148690.106.help.text
+msgid "CHIDIST"
+msgstr "DISTR.JI"
+
+#: 04060181.xhp#par_id3156338.156.help.text
+msgid "<ahelp hid=\"HID_FUNC_CHIVERT\">Returns the probability value from the indicated Chi square that a hypothesis is confirmed.</ahelp> CHIDIST compares the Chi square value to be given for a random sample that is calculated from the sum of (observed value-expected value)^2/expected value for all values with the theoretical Chi square distribution and determines from this the probability of error for the hypothesis to be tested."
+msgstr "<ahelp hid=\"HID_FUNC_CHIVERT\">Calcula el valor de probabilidad para el cuadrado de ji indicado para la confirmación de una hipótesis.</ahelp> DISTR.JI compara el valor del cuadrado de ji de una muestra aleatoria, que se calcula a partir de la suma de (valor observado-valor previsto)^2/valor previsto en todos los valores con la distribución teórica del cuadrado de ji; origina el intervalo de probabilidad de error de la hipótesis que se debe demostrar."
+
+#: 04060181.xhp#par_id3151316.157.help.text
+msgid "The probability determined by CHIDIST can also be determined by CHITEST."
+msgstr "El intervalo de probabilidad calculado mediante DISTR.JI también se puede determinar mediante PRUEBA.JI; en este caso, en lugar del cuadrado de ji de la muestra, los datos observados y previstos se deben suministrar como parámetros."
+
+#: 04060181.xhp#hd_id3155123.108.help.text
+msgctxt "04060181.xhp#hd_id3155123.108.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060181.xhp#par_id3158439.109.help.text
+msgid "CHIDIST(Number; DegreesFreedom)"
+msgstr "DISTR.CHI(Número; GradosdeLibertad)"
+
+#: 04060181.xhp#par_id3148675.110.help.text
+msgid " <emph>Number</emph> is the chi-square value of the random sample used to determine the error probability."
+msgstr " <emph>Número</emph> es el valor de cuadrado de chi de la muestra aleatoria utilizada para determinar la probabilidad de error."
+
+#: 04060181.xhp#par_id3155615.111.help.text
+msgid " <emph>DegreesFreedom</emph> are the degrees of freedom of the experiment."
+msgstr " <emph>GradosdeLibertad</emph> son los grados de libertad del experimento."
+
+#: 04060181.xhp#hd_id3146787.112.help.text
+msgctxt "04060181.xhp#hd_id3146787.112.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060181.xhp#par_id3145774.113.help.text
+msgid " <item type=\"input\">=CHIDIST(13.27; 5)</item> equals 0.02."
+msgstr " <item type=\"input\">=DISTR.CHI(13,27; 5)</item> es igual a 0,02."
+
+#: 04060181.xhp#par_id3156141.158.help.text
+msgid "If the Chi square value of the random sample is 13.27 and if the experiment has 5 degrees of freedom, then the hypothesis is assured with a probability of error of 2%."
+msgstr "Si el valor del cuadrado de ji de la muestra asciende a 13,27 y el experimento tiene 5 grados libertad, entonces la hipótesis se cumple con un intervalo de probabilidad de error del 2%."
+
+#: 04060181.xhp#bm_id0119200902231887.help.text
+msgid "<bookmark_value>CHISQDIST function</bookmark_value><bookmark_value>chi-square distribution</bookmark_value>"
+msgstr "<bookmark_value>DISTR.CUAD.JI</bookmark_value><bookmark_value>distribución del cuadrado de ji</bookmark_value>"
+
+#: 04060181.xhp#hd_id0119200901583452.help.text
+msgid "CHISQDIST"
+msgstr "DISTR.CUAD.CHI"
+
+#: 04060181.xhp#par_id0119200901583471.help.text
+msgid "<ahelp hid=\".\">Returns the value of the probability density function or the cumulative distribution function for the chi-square distribution.</ahelp>"
+msgstr "<ahelp hid=\".\">Devuelve el valor de la función de densidad de probabilidad o la función de distribución acumulativa para la distribución del cuadrado de chi.</ahelp>"
+
+#: 04060181.xhp#hd_id0119200902395520.help.text
+msgctxt "04060181.xhp#hd_id0119200902395520.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060181.xhp#par_id0119200902395679.help.text
+msgid "CHISQDIST(Number; Degrees Of Freedom; Cumulative)"
+msgstr "DISTR.CUAD.CHI(Número; Grados de libertad; Acumulativa)"
+
+#: 04060181.xhp#par_id011920090239564.help.text
+msgid " <emph>Number</emph> is the number for which the function is to be calculated."
+msgstr " <emph>Número</emph> es el número para el que debe calcularse la función."
+
+#: 04060181.xhp#par_id0119200902395660.help.text
+msgctxt "04060181.xhp#par_id0119200902395660.help.text"
+msgid " <emph>Degrees Of Freedom</emph> is the degrees of freedom for the chi-square function."
+msgstr " <emph>Grados de libertad</emph> son los grados de libertad para la función cuadrado de chi."
+
+#: 04060181.xhp#par_id0119200902395623.help.text
+msgid " <emph>Cumulative</emph> (optional): 0 or False calculates the probability density function. Other values or True or omitted calculates the cumulative distribution function."
+msgstr " <emph>Acumulativa</emph> (opcional): 0 o Falso calcula la función de densidad de probabilidad. Otros valores o Verdadero u omitido calcula la función de distribución acumulativa."
+
+#: 04060181.xhp#bm_id3150603.help.text
+msgid "<bookmark_value>EXPONDIST function</bookmark_value> <bookmark_value>exponential distributions</bookmark_value>"
+msgstr "<bookmark_value>DISTR.EXP</bookmark_value> <bookmark_value>distribuciones exponenciales</bookmark_value>"
+
+#: 04060181.xhp#hd_id3150603.115.help.text
+msgid "EXPONDIST"
+msgstr "DISTR.EXP"
+
+#: 04060181.xhp#par_id3149563.116.help.text
+msgid "<ahelp hid=\"HID_FUNC_EXPONVERT\">Returns the exponential distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_EXPONVERT\">Devuelve la distribución exponencial.</ahelp>"
+
+#: 04060181.xhp#hd_id3153789.117.help.text
+msgctxt "04060181.xhp#hd_id3153789.117.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060181.xhp#par_id3150987.118.help.text
+msgid "EXPONDIST(Number; Lambda; C)"
+msgstr "DISTR.EXP(Número; Lambda; C)"
+
+#: 04060181.xhp#par_id3154663.119.help.text
+msgid " <emph>Number</emph> is the value of the function."
+msgstr " <emph>Número</emph> es el valor de la función."
+
+#: 04060181.xhp#par_id3154569.120.help.text
+msgid " <emph>Lambda</emph> is the parameter value."
+msgstr " <emph>Lambda</emph> es el valor del parámetro."
+
+#: 04060181.xhp#par_id3147332.121.help.text
+msgid " <emph>C</emph> is a logical value that determines the form of the function. <emph>C = 0</emph> calculates the density function, and <emph>C = 1</emph> calculates the distribution."
+msgstr " <emph>C</emph> es un valor lógico que determina la forma de la función. <emph>C = 0</emph> calcula la función de densidad y <emph>C = 1</emph> calcula la distribución."
+
+#: 04060181.xhp#hd_id3146133.122.help.text
+msgctxt "04060181.xhp#hd_id3146133.122.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060181.xhp#par_id3150357.123.help.text
+msgid " <item type=\"input\">=EXPONDIST(3;0.5;1)</item> returns 0.78."
+msgstr " <item type=\"input\">=DISTR.EXP(3;0.5;1)</item> devuelve 0,78."
+
+#: 04050100.xhp#tit.help.text
+msgid "Sheet from file"
+msgstr "Hoja desde archivo"
+
+#: 04050100.xhp#par_idN105C1.help.text
+msgid "<link href=\"text/scalc/01/04050100.xhp\">Sheet from file</link>"
+msgstr "<link href=\"text/scalc/01/04050100.xhp\">Hoja desde archivo</link>"
+
+#: 04050100.xhp#par_idN105D1.help.text
+msgid "<ahelp hid=\"26275\">Inserts a sheet from a different spreadsheet file.</ahelp>"
+msgstr "<ahelp hid=\"26275\">Inserta una hoja desde un archivo de hoja de cálculo distinto.</ahelp>"
+
+#: 04050100.xhp#par_idN105F7.help.text
+msgid "Use the <link href=\"text/shared/01/01020000.xhp\">File - Open</link> dialog to locate the spreadsheet."
+msgstr "Use the <link href=\"text/shared/01/01020000.xhp\">Archivo - Abrir</link> dialogo para ubicar la hoja de calculo."
+
+#: 04050100.xhp#par_idN10609.help.text
+msgid "In the <link href=\"text/scalc/01/04050000.xhp\">Insert Sheet</link> dialog, select the sheet that you want to insert."
+msgstr "En el diálogo <link href=\"text/scalc/01/04050000.xhp\">Insertar</link>, seleccione la hoja que desea insertar."
+
+#: 04060185.xhp#tit.help.text
+msgid "Statistical Functions Part Five"
+msgstr "Funciones estadísticas, quinta parte"
+
+#: 04060185.xhp#hd_id3147072.1.help.text
+msgid "<variable id=\"rz\"><link href=\"text/scalc/01/04060185.xhp\" name=\"Statistical Functions Part Five\">Statistical Functions Part Five</link></variable>"
+msgstr "<variable id=\"rz\"><link href=\"text/scalc/01/04060185.xhp\" name=\"Funciones estadísticas, quinta parte\">Funciones estadísticas, quinta parte</link></variable>"
+
+#: 04060185.xhp#bm_id3155071.help.text
+msgid "<bookmark_value>RANK function</bookmark_value> <bookmark_value>numbers;determining ranks</bookmark_value>"
+msgstr "<bookmark_value>JERARQUÍA</bookmark_value> <bookmark_value>números;determinar jerarquías</bookmark_value>"
+
+#: 04060185.xhp#hd_id3155071.2.help.text
+msgid "RANK"
+msgstr "JERARQUÍA"
+
+#: 04060185.xhp#par_id3153976.3.help.text
+msgid "<ahelp hid=\"HID_FUNC_RANG\">Returns the rank of a number in a sample.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_RANG\">Devuelve la jerarquía de un número en una muestra.</ahelp>"
+
+#: 04060185.xhp#hd_id3159206.4.help.text
+msgctxt "04060185.xhp#hd_id3159206.4.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060185.xhp#par_id3153250.5.help.text
+msgid "RANK(Value; Data; Type)"
+msgstr "JERARQUÍA(Número; Datos; Orden)"
+
+#: 04060185.xhp#par_id3154543.6.help.text
+msgid " <emph>Value</emph> is the value, whose rank is to be determined."
+msgstr " <emph>Valor</emph> es el valor, cuya jerarquía debe determinarse."
+
+#: 04060185.xhp#par_id3149130.7.help.text
+msgctxt "04060185.xhp#par_id3149130.7.help.text"
+msgid " <emph>Data</emph> is the array or range of data in the sample."
+msgstr " <emph>Datos</emph> es la matriz o rango de datos en la muestra."
+
+#: 04060185.xhp#par_id3150215.8.help.text
+msgid " <emph>Type</emph> (optional) is the sequence order."
+msgstr " <emph>Tipo</emph> (opcional) es el orden de la secuencia."
+
+#: 04060185.xhp#par_id9305398.help.text
+msgid "Type = 0 means descending from the last item of the array to the first (this is the default), "
+msgstr "Tipo = 0 significa descender del último elemento de la matriz al primero (predeterminado), "
+
+#: 04060185.xhp#par_id9996948.help.text
+msgid "Type = 1 means ascending from the first item of the range to the last."
+msgstr "Tipo = 1 significa ascender del primer elemento del rango al último."
+
+#: 04060185.xhp#hd_id3143223.9.help.text
+msgctxt "04060185.xhp#hd_id3143223.9.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060185.xhp#par_id3155919.10.help.text
+msgid " <item type=\"input\">=RANK(A10;A1:A50)</item> returns the ranking of the value in A10 in value range A1:A50. If <item type=\"literal\">Value</item> does not exist within the range an error message is displayed."
+msgstr " <item type=\"input\">=JERARQUÍA(A10;A1:A50)</item> devuelve la jerarquía del valor en A10 en el área de valores A1:A50. Si <item type=\"literal\">Valor</item> no existe en el área, se muestra un mensaje de error."
+
+#: 04060185.xhp#bm_id3153556.help.text
+msgid "<bookmark_value>SKEW function</bookmark_value>"
+msgstr "<bookmark_value>COEFICIENTE.ASIMETRIA</bookmark_value>"
+
+#: 04060185.xhp#hd_id3153556.12.help.text
+msgid "SKEW"
+msgstr "COEFICIENTE.ASIMETRIA"
+
+#: 04060185.xhp#par_id3153485.13.help.text
+msgid "<ahelp hid=\"HID_FUNC_SCHIEFE\">Returns the skewness of a distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SCHIEFE\">Devuelve el sesgo de una distribución.</ahelp>"
+
+#: 04060185.xhp#hd_id3154733.14.help.text
+msgctxt "04060185.xhp#hd_id3154733.14.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060185.xhp#par_id3151191.15.help.text
+msgid "SKEW(Number1; Number2; ...Number30)"
+msgstr "COEFICIENTE.ASIMETRIA(Número1; Número2; ...; Número30)"
+
+#: 04060185.xhp#par_id3155757.16.help.text
+msgid " <emph>Number1, Number2...Number30</emph> are numerical values or ranges."
+msgstr " <emph>Número1, Número2... Número30</emph> son los valores o rangos numéricos."
+
+#: 04060185.xhp#hd_id3153297.17.help.text
+msgctxt "04060185.xhp#hd_id3153297.17.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060185.xhp#par_id3145118.18.help.text
+msgid " <item type=\"input\">=SKEW(A1:A50)</item> calculates the value of skew for the data referenced."
+msgstr " <item type=\"input\">=COEFICIENTE.ASIMETRIA(A1:A50)</item> calcula el valor del coeficiente de asimetría de los datos referenciados."
+
+#: 04060185.xhp#bm_id3149051.help.text
+msgid "<bookmark_value>regression lines;FORECAST function</bookmark_value> <bookmark_value>extrapolations</bookmark_value> <bookmark_value>FORECAST function</bookmark_value>"
+msgstr "<bookmark_value>líneas de regresión;PRONÓSTICO</bookmark_value> <bookmark_value>extrapolaciones</bookmark_value> <bookmark_value>PRONÓSTICO</bookmark_value>"
+
+#: 04060185.xhp#hd_id3149051.20.help.text
+msgid "FORECAST"
+msgstr "PRONÓSTICO"
+
+#: 04060185.xhp#par_id3153290.21.help.text
+msgid "<ahelp hid=\"HID_FUNC_SCHAETZER\">Extrapolates future values based on existing x and y values.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SCHAETZER\">Extrapola valores futuros basados en los valores de x e y existentes.</ahelp>"
+
+#: 04060185.xhp#hd_id3151343.22.help.text
+msgctxt "04060185.xhp#hd_id3151343.22.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060185.xhp#par_id3147404.23.help.text
+msgid "FORECAST(Value; DataY; DataX)"
+msgstr "PRONÓSTICO(Valor; DatosY; DatosX)"
+
+#: 04060185.xhp#par_id3148743.24.help.text
+msgid " <emph>Value</emph> is the x value, for which the y value on the linear regression is to be returned."
+msgstr " <emph>Valor</emph> es el valor x, para el que se va a devolver el valor y en la regresión lineal."
+
+#: 04060185.xhp#par_id3146325.25.help.text
+msgid " <emph>DataY</emph> is the array or range of known y's."
+msgstr " <emph>DatosY</emph> es una matriz o rango de los datos Y conocidos."
+
+#: 04060185.xhp#par_id3150536.26.help.text
+msgid " <emph>DataX</emph> is the array or range of known x's."
+msgstr " <emph>DatosX</emph> es una matriz o rango de los datos x conocidos."
+
+#: 04060185.xhp#hd_id3147416.27.help.text
+msgctxt "04060185.xhp#hd_id3147416.27.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060185.xhp#par_id3157874.28.help.text
+msgid " <item type=\"input\">=FORECAST(50;A1:A50;B1;B50)</item> returns the Y value expected for the X value of 50 if the X and Y values in both references are linked by a linear trend."
+msgstr " <item type=\"input\">=PRONÓSTICO(50;A1:A50;B1;B50)</item> devuelve el valor Y esperado para el valor X de 50 si los valores X e Y en ambas referencias están asociados por una tendencia lineal."
+
+#: 04060185.xhp#bm_id3149143.help.text
+msgid "<bookmark_value>STDEV function</bookmark_value> <bookmark_value>standard deviations in statistics;based on a sample</bookmark_value>"
+msgstr "<bookmark_value>DESVEST</bookmark_value> <bookmark_value>desviación estándar en estadísticas;basadas en un ejemplo</bookmark_value>"
+
+#: 04060185.xhp#hd_id3149143.30.help.text
+msgctxt "04060185.xhp#hd_id3149143.30.help.text"
+msgid "STDEV"
+msgstr "DESVEST"
+
+#: 04060185.xhp#par_id3146888.31.help.text
+msgid "<ahelp hid=\"HID_FUNC_STABW\">Estimates the standard deviation based on a sample.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_STABW\">Realiza una estimación de la desviación estándar a partir de una muestra.</ahelp>"
+
+#: 04060185.xhp#hd_id3146815.32.help.text
+msgctxt "04060185.xhp#hd_id3146815.32.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060185.xhp#par_id3149946.33.help.text
+msgid "STDEV(Number1; Number2; ...Number30)"
+msgstr "DESVEST(Número1; Número2; ...; Número30)"
+
+#: 04060185.xhp#par_id3157904.34.help.text
+msgid " <emph>Number1, Number2, ... Number30</emph> are numerical values or ranges representing a sample based on an entire population."
+msgstr " <emph>Número1, Número2... Número30</emph> son valores numéricos o rangos que representan una muestra derivada de la población total."
+
+#: 04060185.xhp#hd_id3150650.35.help.text
+msgctxt "04060185.xhp#hd_id3150650.35.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060185.xhp#par_id3149434.36.help.text
+msgid " <item type=\"input\">=STDEV(A1:A50)</item> returns the estimated standard deviation based on the data referenced."
+msgstr " <item type=\"input\">=DESVEST(A1:A50)</item> calcula la desviación estándar estimada basada en los datos referenciados."
+
+#: 04060185.xhp#bm_id3144745.help.text
+msgid "<bookmark_value>STDEVA function</bookmark_value>"
+msgstr "<bookmark_value>DESVESTA</bookmark_value>"
+
+#: 04060185.xhp#hd_id3144745.186.help.text
+msgid "STDEVA"
+msgstr "DESVESTA"
+
+#: 04060185.xhp#par_id3151234.187.help.text
+msgid "<ahelp hid=\"HID_FUNC_STABWA\">Calculates the standard deviation of an estimation based on a sample.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_STABWA\">Calcula una estimación de la desviación estándar a partir de una muestra.</ahelp>"
+
+#: 04060185.xhp#hd_id3148884.188.help.text
+msgctxt "04060185.xhp#hd_id3148884.188.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060185.xhp#par_id3147422.189.help.text
+msgid "STDEVA(Value1;Value2;...Value30)"
+msgstr "DESVESTA(Valor1;Valor2;...Valor30)"
+
+#: 04060185.xhp#par_id3154547.190.help.text
+msgid " <emph>Value1, Value2, ...Value30</emph> are values or ranges representing a sample derived from an entire population. Text has the value 0."
+msgstr " <emph>Valor1, Valor2... Valor30</emph> son valores o rangos que representan una muestra obtenida a partir de toda una población. Al texto se asigna el valor 0."
+
+#: 04060185.xhp#hd_id3155829.191.help.text
+msgctxt "04060185.xhp#hd_id3155829.191.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060185.xhp#par_id3148581.192.help.text
+msgid " <item type=\"input\">=STDEVA(A1:A50)</item> returns the estimated standard deviation based on the data referenced."
+msgstr " <item type=\"input\">=DESVESTA(A1:A50)</item> calcula la desviación estándar estimada basada en los datos referenciados."
+
+#: 04060185.xhp#bm_id3149734.help.text
+msgid "<bookmark_value>STDEVP function</bookmark_value> <bookmark_value>standard deviations in statistics;based on a population</bookmark_value>"
+msgstr "<bookmark_value>DESVESTP</bookmark_value> <bookmark_value>desviación estándar en estadísticas;basadas en una población</bookmark_value>"
+
+#: 04060185.xhp#hd_id3149734.38.help.text
+msgctxt "04060185.xhp#hd_id3149734.38.help.text"
+msgid "STDEVP"
+msgstr "DESVESTP"
+
+#: 04060185.xhp#par_id3149187.39.help.text
+msgid "<ahelp hid=\"HID_FUNC_STABWN\">Calculates the standard deviation based on the entire population.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_STABWN\">Calcula la desviación estándar a partir de la población total.</ahelp>"
+
+#: 04060185.xhp#hd_id3154387.40.help.text
+msgctxt "04060185.xhp#hd_id3154387.40.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060185.xhp#par_id3154392.41.help.text
+msgid "STDEVP(Number1;Number2;...Number30)"
+msgstr "DESVESTP(Número1; Número2; ...; Número30)"
+
+#: 04060185.xhp#par_id3155261.42.help.text
+msgid " <emph>Number 1,Number 2,...Number 30</emph> are numerical values or ranges representing a sample based on an entire population."
+msgstr " <emph>Número 1,Número 2... Número 30</emph> son valores numéricos o áreas que representan una muestra derivada de la población total."
+
+#: 04060185.xhp#hd_id3145591.43.help.text
+msgctxt "04060185.xhp#hd_id3145591.43.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060185.xhp#par_id3153933.44.help.text
+msgid " <item type=\"input\">=STDEVP(A1:A50)</item> returns a standard deviation of the data referenced."
+msgstr " <item type=\"input\">=DESVESTP(A1:A50)</item> calcula la desviación estándar de los datos referenciados."
+
+#: 04060185.xhp#bm_id3154522.help.text
+msgid "<bookmark_value>STDEVPA function</bookmark_value>"
+msgstr "<bookmark_value>DESVESTPA</bookmark_value>"
+
+#: 04060185.xhp#hd_id3154522.194.help.text
+msgid "STDEVPA"
+msgstr "DESVESTPA"
+
+#: 04060185.xhp#par_id3149549.195.help.text
+msgid "<ahelp hid=\"HID_FUNC_STABWNA\">Calculates the standard deviation based on the entire population.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_STABWNA\">Calcula la desviación estándar a partir de la población total.</ahelp>"
+
+#: 04060185.xhp#hd_id3155950.196.help.text
+msgctxt "04060185.xhp#hd_id3155950.196.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060185.xhp#par_id3146851.197.help.text
+msgid "STDEVPA(Value1;Value2;...Value30)"
+msgstr "DESVESTPA(Valor1;Valor2;...Valor30)"
+
+#: 04060185.xhp#par_id3153109.198.help.text
+msgid " <emph>Value1,value2,...value30</emph> are values or ranges representing a sample derived from an entire population. Text has the value 0."
+msgstr " <emph>Valor1,Valor2... Valor30</emph> son valores o rangos que representan una muestra obtenida a partir de toda una población. Al texto se asigna el valor 0."
+
+#: 04060185.xhp#hd_id3154506.199.help.text
+msgctxt "04060185.xhp#hd_id3154506.199.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060185.xhp#par_id3145163.200.help.text
+msgid " <item type=\"input\">=STDEVPA(A1:A50)</item> returns the standard deviation of the data referenced."
+msgstr " <item type=\"input\">=DESVESTPA(A1:A50)</item> calcula la desviación estándar de los datos referenciados."
+
+#: 04060185.xhp#bm_id3155928.help.text
+msgid "<bookmark_value>STANDARDIZE function</bookmark_value> <bookmark_value>converting;random variables, into normalized values</bookmark_value>"
+msgstr "<bookmark_value>NORMALIZACIÓN</bookmark_value> <bookmark_value>convertir;variables aleatorias, en valores normalizados</bookmark_value>"
+
+#: 04060185.xhp#hd_id3155928.46.help.text
+msgid "STANDARDIZE"
+msgstr "NORMALIZACIÓN"
+
+#: 04060185.xhp#par_id3149883.47.help.text
+msgid "<ahelp hid=\"HID_FUNC_STANDARDISIERUNG\">Converts a random variable to a normalized value.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_STANDARDISIERUNG\">Convierte una variable aleatoria en un valor normalizado.</ahelp>"
+
+#: 04060185.xhp#hd_id3154330.48.help.text
+msgctxt "04060185.xhp#hd_id3154330.48.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060185.xhp#par_id3150132.49.help.text
+msgid "STANDARDIZE(Number; Mean; StDev)"
+msgstr "NORMALIZACIÓN(Número; Media; Desv_estándar)"
+
+#: 04060185.xhp#par_id3159139.50.help.text
+msgid " <emph>Number</emph> is the value to be standardized."
+msgstr " <emph>Número</emph> es el valor que se normalizará."
+
+#: 04060185.xhp#par_id3145241.51.help.text
+msgid " <emph>Mean</emph> is the arithmetic mean of the distribution."
+msgstr " <emph>Media</emph> es el valor medio aritmético de la distribución."
+
+#: 04060185.xhp#par_id3148874.52.help.text
+msgid " <emph>StDev</emph> is the standard deviation of the distribution."
+msgstr " <emph>Desv_estándar</emph> es la desviación estándar de la distribución."
+
+#: 04060185.xhp#hd_id3145351.53.help.text
+msgctxt "04060185.xhp#hd_id3145351.53.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060185.xhp#par_id3156067.54.help.text
+msgid " <item type=\"input\">=STANDARDIZE(11;10;1)</item> returns 1. The value 11 in a normal distribution with a mean of 10 and a standard deviation of 1 is as much above the mean of 10, as the value 1 is above the mean of the standard normal distribution."
+msgstr " <item type=\"input\">=NORMALIZACIÓN(11;10;1)</item> devuelve 1. El valor 11 en una distribución normal con una media de 10 y una desviación estándar de 1 está tan por encima de la media de 10 como el valor 1 está por encima de la media de la distribución normal estándar."
+
+#: 04060185.xhp#bm_id3157986.help.text
+msgid "<bookmark_value>NORMSINV function</bookmark_value> <bookmark_value>normal distribution;inverse of standard</bookmark_value>"
+msgstr "<bookmark_value>DISTR.NORM.ESTAND.INV</bookmark_value> <bookmark_value>distribución normal;inversa de la estándar</bookmark_value>"
+
+#: 04060185.xhp#hd_id3157986.56.help.text
+msgid "NORMSINV"
+msgstr "DISTR.NORM.ESTAND.INV"
+
+#: 04060185.xhp#par_id3151282.57.help.text
+msgid "<ahelp hid=\"HID_FUNC_STANDNORMINV\">Returns the inverse of the standard normal cumulative distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_STANDNORMINV\">Devuelve el inverso de la distribución normal predeterminada acumulativa.</ahelp>"
+
+#: 04060185.xhp#hd_id3153261.58.help.text
+msgctxt "04060185.xhp#hd_id3153261.58.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060185.xhp#par_id3154195.59.help.text
+msgid "NORMINV(Number)"
+msgstr "DISTR.NORM.ESTAND.INV(probabilidad)"
+
+#: 04060185.xhp#par_id3148772.60.help.text
+msgid " <emph>Number</emph> is the probability to which the inverse standard normal distribution is calculated."
+msgstr " <emph>Número</emph> es la probabilidad para la que se calcula la distribución normal estándar inversa."
+
+#: 04060185.xhp#hd_id3150934.61.help.text
+msgctxt "04060185.xhp#hd_id3150934.61.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060185.xhp#par_id3149030.62.help.text
+msgid " <item type=\"input\">=NORMSINV(0.908789)</item> returns 1.3333."
+msgstr " <item type=\"input\">=DISTR.NORM.ESTAND.INV(0,908789)</item> devuelve 1,3333."
+
+#: 04060185.xhp#bm_id3147538.help.text
+msgid "<bookmark_value>NORMSDIST function</bookmark_value> <bookmark_value>normal distribution;statistics</bookmark_value>"
+msgstr "<bookmark_value>DISTR.NORM.ESTAND</bookmark_value> <bookmark_value>distribución normal;estadísticas</bookmark_value>"
+
+#: 04060185.xhp#hd_id3147538.64.help.text
+msgid "NORMSDIST"
+msgstr "DISTR.NORM.ESTAND"
+
+#: 04060185.xhp#par_id3150474.65.help.text
+msgid "<ahelp hid=\"HID_FUNC_STANDNORMVERT\">Returns the standard normal cumulative distribution function. The distribution has a mean of zero and a standard deviation of one.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_STANDNORMVERT\">Calcula la función de distribución normal predeterminada acumulativa. La distribución tiene una media de cero y una desviación estándar de uno.</ahelp>"
+
+#: 04060185.xhp#par_id8652302.help.text
+msgctxt "04060185.xhp#par_id8652302.help.text"
+msgid "It is GAUSS(x)=NORMSDIST(x)-0.5"
+msgstr "Es GAUSS(x)=NORMSDIST(x)-0.5"
+
+#: 04060185.xhp#hd_id3155083.66.help.text
+msgctxt "04060185.xhp#hd_id3155083.66.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060185.xhp#par_id3158411.67.help.text
+msgid "NORMSDIST(Number)"
+msgstr "DISTR.NORM.ESTAND(z)"
+
+#: 04060185.xhp#par_id3154950.68.help.text
+msgid " <emph>Number</emph> is the value to which the standard normal cumulative distribution is calculated."
+msgstr " <emph>Número</emph> es el valor sobre el cual se calcula la distribución acumulativa normal estándar."
+
+#: 04060185.xhp#hd_id3153228.69.help.text
+msgctxt "04060185.xhp#hd_id3153228.69.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060185.xhp#par_id3155984.70.help.text
+msgid " <item type=\"input\">=NORMSDIST(1)</item> returns 0.84. The area below the standard normal distribution curve to the left of X value 1 is 84% of the total area."
+msgstr " <item type=\"input\">=DISTR.NORM.ESTAND(1)</item> devuelve 0,84. El área por debajo de la curva de distribución normal estándar a la izquierda del valor X 1 es el 84% del área total."
+
+#: 04060185.xhp#bm_id3152592.help.text
+msgid "<bookmark_value>SLOPE function</bookmark_value>"
+msgstr "<bookmark_value>PENDIENTE</bookmark_value>"
+
+#: 04060185.xhp#hd_id3152592.72.help.text
+msgid "SLOPE"
+msgstr "PENDIENTE"
+
+#: 04060185.xhp#par_id3150386.73.help.text
+msgid "<ahelp hid=\"HID_FUNC_STEIGUNG\">Returns the slope of the linear regression line.</ahelp> The slope is adapted to the data points set in the y and x values."
+msgstr "<ahelp hid=\"HID_FUNC_STEIGUNG\">Calcula la pendiente de la recta de regresión lineal.</ahelp> La pendiente se adapta a los puntos de datos definidos en los valores Y y en los valores X."
+
+#: 04060185.xhp#hd_id3154315.74.help.text
+msgctxt "04060185.xhp#hd_id3154315.74.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060185.xhp#par_id3149819.75.help.text
+msgid "SLOPE(DataY; DataX)"
+msgstr "PENDIENTE(DatosY; DatosX)"
+
+#: 04060185.xhp#par_id3083446.76.help.text
+msgctxt "04060185.xhp#par_id3083446.76.help.text"
+msgid " <emph>DataY</emph> is the array or matrix of Y data."
+msgstr " <emph>DatosY</emph> es una matriz o tabla de datos Y."
+
+#: 04060185.xhp#par_id3152375.77.help.text
+msgctxt "04060185.xhp#par_id3152375.77.help.text"
+msgid " <emph>DataX</emph> is the array or matrix of X data."
+msgstr " <emph>DatosX</emph> es una matriz o tabla de datos X."
+
+#: 04060185.xhp#hd_id3146061.78.help.text
+msgctxt "04060185.xhp#hd_id3146061.78.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060185.xhp#par_id3152480.79.help.text
+msgid " <item type=\"input\">=SLOPE(A1:A50;B1:B50)</item> "
+msgstr " <item type=\"input\">=PENDIENTE(A1:A50;B1:B50)</item> "
+
+#: 04060185.xhp#bm_id3155836.help.text
+msgid "<bookmark_value>STEYX function</bookmark_value> <bookmark_value>standard errors;statistical functions</bookmark_value>"
+msgstr "<bookmark_value>ERROR.TÍPICO.XY</bookmark_value> <bookmark_value>errores estándar;funciones estadísticas</bookmark_value>"
+
+#: 04060185.xhp#hd_id3155836.81.help.text
+msgid "STEYX"
+msgstr "ERROR.TÍPICO.XY"
+
+#: 04060185.xhp#par_id3149446.82.help.text
+msgid "<ahelp hid=\"HID_FUNC_STFEHLERYX\">Returns the standard error of the predicted y value for each x in the regression.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_STFEHLERYX\">Calcula el error típico de los valores Y calculados para todos los valores X de la regresión.</ahelp>"
+
+#: 04060185.xhp#hd_id3147562.83.help.text
+msgctxt "04060185.xhp#hd_id3147562.83.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060185.xhp#par_id3151267.84.help.text
+msgid "STEYX(DataY; DataX)"
+msgstr "ERROR.TÍPICO.XY(DatosY; DatosX)"
+
+#: 04060185.xhp#par_id3147313.85.help.text
+msgctxt "04060185.xhp#par_id3147313.85.help.text"
+msgid " <emph>DataY</emph> is the array or matrix of Y data."
+msgstr " <emph>DatosY</emph> es una matriz o tabla de datos Y."
+
+#: 04060185.xhp#par_id3156097.86.help.text
+msgctxt "04060185.xhp#par_id3156097.86.help.text"
+msgid " <emph>DataX</emph> is the array or matrix of X data."
+msgstr " <emph>DatosX</emph> es una matriz o tabla de datos X."
+
+#: 04060185.xhp#hd_id3145204.87.help.text
+msgctxt "04060185.xhp#hd_id3145204.87.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060185.xhp#par_id3156131.88.help.text
+msgid " <item type=\"input\">=STEXY(A1:A50;B1:B50)</item> "
+msgstr " <item type=\"input\">=ERROR.TÍPICO.XY(A1:A50;B1:B50)</item> "
+
+#: 04060185.xhp#bm_id3150873.help.text
+msgid "<bookmark_value>DEVSQ function</bookmark_value> <bookmark_value>sums;of squares of deviations</bookmark_value>"
+msgstr "<bookmark_value>DESVIA2</bookmark_value> <bookmark_value>sumas; de cuadrados de desviaciones</bookmark_value>"
+
+#: 04060185.xhp#hd_id3150873.90.help.text
+msgid "DEVSQ"
+msgstr "DESVIA2"
+
+#: 04060185.xhp#par_id3154748.91.help.text
+msgid "<ahelp hid=\"HID_FUNC_SUMQUADABW\">Returns the sum of squares of deviations based on a sample mean.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SUMQUADABW\">Efectúa la suma de las desviaciones cuadradas de datos a partir del valor medio de la muestra.</ahelp>"
+
+#: 04060185.xhp#hd_id3156121.92.help.text
+msgctxt "04060185.xhp#hd_id3156121.92.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060185.xhp#par_id3146790.93.help.text
+msgid "DEVSQ(Number1; Number2; ...Number30)"
+msgstr "DESVIA2(Número1; Número2; ...; Número30)"
+
+#: 04060185.xhp#par_id3155995.94.help.text
+msgid " <emph>Number1, Number2, ...Number30</emph> numerical values or ranges representing a sample. "
+msgstr " <emph>Número 1, Número 2... Número 30</emph> son valores numéricos o rangos que representan una muestra. "
+
+#: 04060185.xhp#hd_id3150254.95.help.text
+msgctxt "04060185.xhp#hd_id3150254.95.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060185.xhp#par_id3149136.96.help.text
+msgid " <item type=\"input\">=DEVSQ(A1:A50)</item> "
+msgstr " <item type=\"input\">=DESVIA2(A1:A50)</item> "
+
+#: 04060185.xhp#bm_id3149579.help.text
+msgid "<bookmark_value>TINV function</bookmark_value> <bookmark_value>inverse of t-distribution</bookmark_value>"
+msgstr "<bookmark_value>DISTR.T.INV</bookmark_value> <bookmark_value>inverso de distribución t</bookmark_value>"
+
+#: 04060185.xhp#hd_id3149579.98.help.text
+msgid "TINV"
+msgstr "DISTR.T.INV"
+
+#: 04060185.xhp#par_id3143232.99.help.text
+msgid "<ahelp hid=\"HID_FUNC_TINV\">Returns the inverse of the t-distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TINV\">Calcula el inverso de la distribución t.</ahelp>"
+
+#: 04060185.xhp#hd_id3155101.100.help.text
+msgctxt "04060185.xhp#hd_id3155101.100.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060185.xhp#par_id3149289.101.help.text
+msgid "TINV(Number; DegreesFreedom)"
+msgstr "DISTR.T.INV(Número; GradosdeLibertad)"
+
+#: 04060185.xhp#par_id3154070.102.help.text
+msgid " <emph>Number</emph> is the probability associated with the two-tailed t-distribution."
+msgstr " <emph>Número</emph> es la probabilidad asociada con la distribución t de dos colas."
+
+#: 04060185.xhp#par_id3155315.103.help.text
+msgctxt "04060185.xhp#par_id3155315.103.help.text"
+msgid " <emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
+msgstr " <emph>GradosdeLibertad</emph> es el número de grados de libertad de la distribución t."
+
+#: 04060185.xhp#hd_id3153885.104.help.text
+msgctxt "04060185.xhp#hd_id3153885.104.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060185.xhp#par_id3156010.105.help.text
+msgid " <item type=\"input\">=TINV(0.1;6)</item> returns 1.94"
+msgstr " <item type=\"input\">=DISTR.T.INV(0,1;6)</item> devuelve 1,94."
+
+#: 04060185.xhp#bm_id3154129.help.text
+msgid "<bookmark_value>TTEST function</bookmark_value>"
+msgstr "<bookmark_value>PRUEBA.T</bookmark_value>"
+
+#: 04060185.xhp#hd_id3154129.107.help.text
+msgid "TTEST"
+msgstr "PRUEBA.T"
+
+#: 04060185.xhp#par_id3159184.108.help.text
+msgid "<ahelp hid=\"HID_FUNC_TTEST\">Returns the probability associated with a Student's t-Test.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TTEST\">Calcula la probabilidad asociada con una prueba T de estudiante.</ahelp>"
+
+#: 04060185.xhp#hd_id3147257.109.help.text
+msgctxt "04060185.xhp#hd_id3147257.109.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060185.xhp#par_id3151175.110.help.text
+msgid "TTEST(Data1; Data2; Mode; Type)"
+msgstr "PRUEBA.T(Datos1; Datos2; Modo; Tipo)"
+
+#: 04060185.xhp#par_id3149202.111.help.text
+msgid " <emph>Data1</emph> is the dependent array or range of data for the first record."
+msgstr " <emph>Datos1</emph> es la matriz o rango dependiente de datos del primer registro."
+
+#: 04060185.xhp#par_id3145666.112.help.text
+msgid " <emph>Data2</emph> is the dependent array or range of data for the second record."
+msgstr " <emph>Datos2</emph> es la matriz o rango dependiente de datos del segundo registro."
+
+#: 04060185.xhp#par_id3153903.113.help.text
+msgid " <emph>Mode</emph> = 1 calculates the one-tailed test, <emph>Mode</emph> = 2 the two- tailed test."
+msgstr " <emph>Modo</emph> = 1 calcula una prueba de una cola, <emph>Modo</emph> = 2 calcula la prueba de dos colas."
+
+#: 04060185.xhp#par_id3155327.114.help.text
+msgid " <emph>Type</emph> is the kind of t-test to perform. Type 1 means paired. Type 2 means two samples, equal variance (homoscedastic). Type 3 means two samples, unequal variance (heteroscedastic)."
+msgstr " <emph>Tipo</emph> es un tipo de prueba t que se va a realizar. Tipo 1 significa pares. Tipo 2 significa dos muestras, igual varianza (homoscedástica). Tipo 3 significa dos muestras, varianza distinta (heteroscedástica)."
+
+#: 04060185.xhp#hd_id3159342.115.help.text
+msgctxt "04060185.xhp#hd_id3159342.115.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060185.xhp#par_id3150119.116.help.text
+msgid " <item type=\"input\">=TTEST(A1:A50;B1:B50;2;2)</item> "
+msgstr " <item type=\"input\">=PRUEBA.T(A1:A50;B1:B50;2;2)</item> "
+
+#: 04060185.xhp#bm_id3154930.help.text
+msgid "<bookmark_value>TDIST function</bookmark_value> <bookmark_value>t-distribution</bookmark_value>"
+msgstr "<bookmark_value>DISTR.T</bookmark_value> <bookmark_value>distribución t</bookmark_value>"
+
+#: 04060185.xhp#hd_id3154930.118.help.text
+msgid "TDIST"
+msgstr "DISTR.T"
+
+#: 04060185.xhp#par_id3153372.119.help.text
+msgid "<ahelp hid=\"HID_FUNC_TVERT\">Returns the t-distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TVERT\">Devuelve la probabilidad de una variable aleatoria siguiendo una distribución t de Student.</ahelp>"
+
+#: 04060185.xhp#hd_id3149911.120.help.text
+msgctxt "04060185.xhp#hd_id3149911.120.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060185.xhp#par_id3150521.121.help.text
+msgid "TDIST(Number; DegreesFreedom; Mode)"
+msgstr "DISTR.T(Número; GradosdeLibertad; Modo)"
+
+#: 04060185.xhp#par_id3146991.122.help.text
+msgid " <emph>Number</emph> is the value for which the t-distribution is calculated."
+msgstr " <emph>Número</emph> es el valor para el cual se calcula la distribución t."
+
+#: 04060185.xhp#par_id3148824.123.help.text
+msgctxt "04060185.xhp#par_id3148824.123.help.text"
+msgid " <emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
+msgstr " <emph>GradosdeLibertad</emph> es el número de grados de libertad de la distribución t."
+
+#: 04060185.xhp#par_id3149340.124.help.text
+msgid " <emph>Mode</emph> = 1 returns the one-tailed test, <emph>Mode</emph> = 2 returns the two-tailed test."
+msgstr " <emph>Modo</emph> = 1 devuelve una prueba de una cola, <emph>Modo</emph> = 2 devuelve la prueba de dos colas."
+
+#: 04060185.xhp#hd_id3159150.125.help.text
+msgctxt "04060185.xhp#hd_id3159150.125.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060185.xhp#par_id3149773.126.help.text
+msgid " <item type=\"input\">=TDIST(12;5;1)</item> "
+msgstr " <item type=\"input\">=DISTR.T(12;5;1)</item> "
+
+#: 04060185.xhp#bm_id3153828.help.text
+msgid "<bookmark_value>VAR function</bookmark_value> <bookmark_value>variances</bookmark_value>"
+msgstr "<bookmark_value>VAR </bookmark_value> <bookmark_value>varianzas</bookmark_value>"
+
+#: 04060185.xhp#hd_id3153828.128.help.text
+msgctxt "04060185.xhp#hd_id3153828.128.help.text"
+msgid "VAR"
+msgstr "VAR"
+
+#: 04060185.xhp#par_id3159165.129.help.text
+msgid "<ahelp hid=\"HID_FUNC_VARIANZ\">Estimates the variance based on a sample.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VARIANZ\">Realiza una estimación de la varianza a partir de una muestra.</ahelp>"
+
+#: 04060185.xhp#hd_id3154286.130.help.text
+msgctxt "04060185.xhp#hd_id3154286.130.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060185.xhp#par_id3153054.131.help.text
+msgid "VAR(Number1; Number2; ...Number30)"
+msgstr "VAR(Número1; Número2; ...; Número30)"
+
+#: 04060185.xhp#par_id3148938.132.help.text
+msgid " <emph>Number1, Number2, ...Number30</emph> are numerical values or ranges representing a sample based on an entire population."
+msgstr " <emph>Número 1, Número 2... Número 30</emph> son valores numéricos o áreas que representan una muestra derivada de la población total."
+
+#: 04060185.xhp#hd_id3147233.133.help.text
+msgctxt "04060185.xhp#hd_id3147233.133.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060185.xhp#par_id3153575.134.help.text
+msgid " <item type=\"input\">=VAR(A1:A50)</item> "
+msgstr " <item type=\"input\">=VAR(A1:A50)</item> "
+
+#: 04060185.xhp#bm_id3151045.help.text
+msgid "<bookmark_value>VARA function</bookmark_value>"
+msgstr "<bookmark_value>VARA</bookmark_value>"
+
+#: 04060185.xhp#hd_id3151045.202.help.text
+msgid "VARA"
+msgstr "VARA"
+
+#: 04060185.xhp#par_id3155122.203.help.text
+msgid "<ahelp hid=\"HID_FUNC_VARIANZA\">Estimates a variance based on a sample. The value of text is 0.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VARIANZA\">Realiza una estimación de la varianza a partir de una muestra. El valor del texto es 0.</ahelp>"
+
+#: 04060185.xhp#hd_id3149176.204.help.text
+msgctxt "04060185.xhp#hd_id3149176.204.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060185.xhp#par_id3149999.205.help.text
+msgid "VARA(Value1; Value2; ...Value30)"
+msgstr "VARA(Valor1; Valor2; ...Valor30)"
+
+#: 04060185.xhp#par_id3158421.206.help.text
+msgid " <emph>Value1, Value2,...Value30</emph> are values or ranges representing a sample derived from an entire population. Text has the value 0."
+msgstr " <emph>Valor1, Valor2... Valor30</emph> son valores o rangos que representan una muestra obtenida a partir de toda una población. Al texto se asigna el valor 0."
+
+#: 04060185.xhp#hd_id3149160.207.help.text
+msgctxt "04060185.xhp#hd_id3149160.207.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060185.xhp#par_id3154279.208.help.text
+msgid " <item type=\"input\">=VARA(A1:A50)</item> "
+msgstr " <item type=\"input\">=VARA(A1:A50)</item> "
+
+#: 04060185.xhp#bm_id3166441.help.text
+msgid "<bookmark_value>VARP function</bookmark_value>"
+msgstr "<bookmark_value>VARP</bookmark_value>"
+
+#: 04060185.xhp#hd_id3166441.136.help.text
+msgctxt "04060185.xhp#hd_id3166441.136.help.text"
+msgid "VARP"
+msgstr "VARP"
+
+#: 04060185.xhp#par_id3159199.137.help.text
+msgid "<ahelp hid=\"HID_FUNC_VARIANZEN\">Calculates a variance based on the entire population.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VARIANZEN\">Calcula la varianza a partir de la población total.</ahelp>"
+
+#: 04060185.xhp#hd_id3150706.138.help.text
+msgctxt "04060185.xhp#hd_id3150706.138.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060185.xhp#par_id3147282.139.help.text
+msgid "VARP(Number1; Number2; ...Number30)"
+msgstr "VARP(Número1; Número2; ...; Número30)"
+
+#: 04060185.xhp#par_id3149793.140.help.text
+msgid " <emph>Number1, Number2, ...Number30</emph> are numerical values or ranges representing an entire population."
+msgstr " <emph>Número 1, Número 2... Número 30</emph> son valores numéricos o rangos que representan una población entera."
+
+#: 04060185.xhp#hd_id3152939.141.help.text
+msgctxt "04060185.xhp#hd_id3152939.141.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060185.xhp#par_id3153385.142.help.text
+msgid " <item type=\"input\">=VARP(A1:A50)</item> "
+msgstr " <item type=\"input\">=VARP(A1:A50)</item> "
+
+#: 04060185.xhp#bm_id3153688.help.text
+msgid "<bookmark_value>VARPA function</bookmark_value>"
+msgstr "<bookmark_value>VARPA</bookmark_value>"
+
+#: 04060185.xhp#hd_id3153688.210.help.text
+msgid "VARPA"
+msgstr "VARPA"
+
+#: 04060185.xhp#par_id3149109.211.help.text
+msgid "<ahelp hid=\"HID_FUNC_VARIANZENA\">Calculates the variance based on the entire population. The value of text is 0.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VARIANZENA\">Calcula la varianza a partir de la población total. El valor del texto es 0.</ahelp>"
+
+#: 04060185.xhp#hd_id3152880.212.help.text
+msgctxt "04060185.xhp#hd_id3152880.212.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060185.xhp#par_id3149967.213.help.text
+msgid "VARPA(Value1; Value2; ...Value30)"
+msgstr "VARPA(Valor1; Valor2; ...Valor30)"
+
+#: 04060185.xhp#par_id3149920.214.help.text
+msgid " <emph>Value1,value2,...Value30</emph> are values or ranges representing an entire population."
+msgstr " <emph>Valor1,Valor2... Valor30</emph> son valores o rangos que representan toda una población."
+
+#: 04060185.xhp#hd_id3154862.215.help.text
+msgctxt "04060185.xhp#hd_id3154862.215.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060185.xhp#par_id3156203.216.help.text
+msgid " <item type=\"input\">=VARPA(A1:A50)</item> "
+msgstr " <item type=\"input\">=VARPA(A1:A50)</item> "
+
+#: 04060185.xhp#bm_id3154599.help.text
+msgid "<bookmark_value>PERMUT function</bookmark_value> <bookmark_value>number of permutations</bookmark_value>"
+msgstr "<bookmark_value>PERMUTACIONES</bookmark_value> <bookmark_value>número de permutaciones</bookmark_value>"
+
+#: 04060185.xhp#hd_id3154599.144.help.text
+msgid "PERMUT"
+msgstr "PERMUTACIONES"
+
+#: 04060185.xhp#par_id3154334.145.help.text
+msgid "<ahelp hid=\"HID_FUNC_VARIATIONEN\">Returns the number of permutations for a given number of objects.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VARIATIONEN\">Devuelve el número de permutaciones para un número determinado de objetos.</ahelp>"
+
+#: 04060185.xhp#hd_id3149422.146.help.text
+msgctxt "04060185.xhp#hd_id3149422.146.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060185.xhp#par_id3148466.147.help.text
+msgid "PERMUT(Count1; Count2)"
+msgstr "PERMUTACIONES(Contar1; Contar2)"
+
+#: 04060185.xhp#par_id3148656.148.help.text
+msgctxt "04060185.xhp#par_id3148656.148.help.text"
+msgid " <emph>Count1</emph> is the total number of objects."
+msgstr " <emph>Contar1</emph> es el número total de objetos."
+
+#: 04060185.xhp#par_id3150826.149.help.text
+msgctxt "04060185.xhp#par_id3150826.149.help.text"
+msgid " <emph>Count2</emph> is the number of objects in each permutation."
+msgstr " <emph>Contar2</emph> es el número de objetos en cada permutación."
+
+#: 04060185.xhp#hd_id3153351.150.help.text
+msgctxt "04060185.xhp#hd_id3153351.150.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060185.xhp#par_id3150424.151.help.text
+msgid " <item type=\"input\">=PERMUT(6;3)</item> returns 120. There are 120 different possibilities, to pick a sequence of 3 playing cards out of 6 playing cards."
+msgstr " <item type=\"input\">=PERMUTACIONES(6;3)</item> devuelve 120. Hay 120 posibilidades para elegir una secuencia de 3 cartas de juego entre 6 cartas."
+
+#: 04060185.xhp#bm_id3143276.help.text
+msgid "<bookmark_value>PERMUTATIONA function</bookmark_value>"
+msgstr "<bookmark_value>PERMUTACIONESA</bookmark_value>"
+
+#: 04060185.xhp#hd_id3143276.153.help.text
+msgid "PERMUTATIONA"
+msgstr "PERMUTACIONESA"
+
+#: 04060185.xhp#par_id3144759.154.help.text
+msgid "<ahelp hid=\"HID_FUNC_VARIATIONEN2\">Returns the number of permutations for a given number of objects (repetition allowed).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VARIATIONEN2\">Devuelve el número de permutaciones para un número determinado de objetos (se permite repetir).</ahelp>"
+
+#: 04060185.xhp#hd_id3145598.155.help.text
+msgctxt "04060185.xhp#hd_id3145598.155.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060185.xhp#par_id3149298.156.help.text
+msgid "PERMUTATIONA(Count1; Count2)"
+msgstr "PERMUTACIONESA(Contar1; Contar2)"
+
+#: 04060185.xhp#par_id3156139.157.help.text
+msgctxt "04060185.xhp#par_id3156139.157.help.text"
+msgid " <emph>Count1</emph> is the total number of objects."
+msgstr " <emph>Contar1</emph> es el número total de objetos."
+
+#: 04060185.xhp#par_id3149519.158.help.text
+msgctxt "04060185.xhp#par_id3149519.158.help.text"
+msgid " <emph>Count2</emph> is the number of objects in each permutation."
+msgstr " <emph>Contar2</emph> es el número de objetos en cada permutación."
+
+#: 04060185.xhp#hd_id3151382.159.help.text
+msgctxt "04060185.xhp#hd_id3151382.159.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060185.xhp#par_id3153949.160.help.text
+msgid "How often can 2 objects be selected from a total of 11 objects?"
+msgstr "¿Cuántas veces se pueden extraer 2 elementos de un conjunto de 11 elementos?"
+
+#: 04060185.xhp#par_id3149233.161.help.text
+msgid " <item type=\"input\">=PERMUTATIONA(11;2)</item> returns 121."
+msgstr " <item type=\"input\">=PERMUTACIONESA(11;2)</item> devuelve 121."
+
+#: 04060185.xhp#par_id3150622.162.help.text
+msgid " <item type=\"input\">=PERMUTATIONA(6;3)</item> returns 216. There are 216 different possibilities to put a sequence of 3 playing cards together out of six playing cards if every card is returned before the next one is drawn."
+msgstr " <item type=\"input\">=PERMUTACIONESA(6;3)</item> devuelve 216. Hay 216 posibilidades para colocar una secuencia de 3 cartas juntas de un total de 6 cartas en juego si todas las cartas se devuelven antes de extraer la siguiente."
+
+#: 04060185.xhp#bm_id3152952.help.text
+msgid "<bookmark_value>PROB function</bookmark_value>"
+msgstr "<bookmark_value>PROBABILIDAD</bookmark_value>"
+
+#: 04060185.xhp#hd_id3152952.164.help.text
+msgid "PROB"
+msgstr "PROBABILIDAD"
+
+#: 04060185.xhp#par_id3154110.165.help.text
+msgid "<ahelp hid=\"HID_FUNC_WAHRSCHBEREICH\">Returns the probability that values in a range are between two limits.</ahelp> If there is no <item type=\"literal\">End</item> value, this function calculates the probability based on the principle that the Data values are equal to the value of <item type=\"literal\">Start</item>."
+msgstr "<ahelp hid=\"HID_FUNC_WAHRSCHBEREICH\">Devuelve la probabilidad de que los valores están en un rango entre dos limites.</ahelp> Si no hay un valor <item type=\"literal\">Fin</item>, esta función calcula la probabilidad basada en el principio de que los valores de datos son iguales al valor de <item type=\"literal\">Inicio</item>"
+
+#: 04060185.xhp#hd_id3146810.166.help.text
+msgctxt "04060185.xhp#hd_id3146810.166.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060185.xhp#par_id3147330.167.help.text
+msgid "PROB(Data; Probability; Start; End)"
+msgstr "PROBABILIDAD(Datos; Probabilidad; Inicio; Fin)"
+
+#: 04060185.xhp#par_id3154573.168.help.text
+msgctxt "04060185.xhp#par_id3154573.168.help.text"
+msgid " <emph>Data</emph> is the array or range of data in the sample."
+msgstr " <emph>Datos</emph> es la matriz o rango de datos en la muestra."
+
+#: 04060185.xhp#par_id3156334.169.help.text
+msgid " <emph>Probability</emph> is the array or range of the corresponding probabilities."
+msgstr " <emph>Probabilidad</emph> es una matriz o rango de las probabilidades correspondientes."
+
+#: 04060185.xhp#par_id3151107.170.help.text
+msgid " <emph>Start</emph> is the start value of the interval whose probabilities are to be summed."
+msgstr " <emph>Inicio</emph> es el valor inicial del intervalo para el que se van a sumar las probabilidades."
+
+#: 04060185.xhp#par_id3153694.171.help.text
+msgid " <emph>End</emph> (optional) is the end value of the interval whose probabilities are to be summed. If this parameter is missing, the probability for the <emph>Start </emph>value is calculated."
+msgstr " <emph>Fin</emph> (opcional) es el valor final del intervalo para el que se van a sumar las probabilidades. Si falta este parámetro, se calcula la probabilidad del valor <emph>Inicio</emph>."
+
+#: 04060185.xhp#hd_id3147574.172.help.text
+msgctxt "04060185.xhp#hd_id3147574.172.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060185.xhp#par_id3153666.173.help.text
+msgid " <item type=\"input\">=PROB(A1:A50;B1:B50;50;60)</item> returns the probability with which a value within the range of A1:A50 is also within the limits between 50 and 60. Every value within the range of A1:A50 has a probability within the range of B1:B50."
+msgstr " <item type=\"input\">=PROB(A1:A50;B1:B50;50;60)</item> devuelve la probabilidad de que un valor dentro del área A1:A50 también se encuentre dentro de los límites entre 50 y 60. Todos los valores en el área de A1:A50 tienen una probabilidad en el área de B1:B50."
+
+#: 04060185.xhp#bm_id3150941.help.text
+msgid "<bookmark_value>WEIBULL function</bookmark_value>"
+msgstr "<bookmark_value>DIST.WEIBULL</bookmark_value>"
+
+#: 04060185.xhp#hd_id3150941.175.help.text
+msgid "WEIBULL"
+msgstr "DIST.WEIBULL"
+
+#: 04060185.xhp#par_id3154916.176.help.text
+msgid "<ahelp hid=\"HID_FUNC_WEIBULL\">Returns the values of the Weibull distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_WEIBULL\">Calcula los valores de distribución de Weibull.</ahelp>"
+
+#: 04060185.xhp#par_id0305200911372767.help.text
+msgid "The Weibull distribution is a continuous probability distribution, with parameters Alpha > 0 (shape) and Beta > 0 (scale). "
+msgstr "Weibull es una distribución de probabilidad continua con parámetros Alfa > 0 (forma) y Beta > 0 (escala). "
+
+#: 04060185.xhp#par_id0305200911372777.help.text
+msgid "If C is 0, WEIBULL calculates the probability density function."
+msgstr "Si C es 0, DIST.WEIBULL calcula la función de densidad de probabilidad."
+
+#: 04060185.xhp#par_id0305200911372743.help.text
+msgid "If C is 1, WEIBULL calculates the cumulative distribution function."
+msgstr "Si C es 1, DIST.WEIBULL calcula la función de distribución acumulativa."
+
+#: 04060185.xhp#hd_id3159393.177.help.text
+msgctxt "04060185.xhp#hd_id3159393.177.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060185.xhp#par_id3154478.178.help.text
+msgid "WEIBULL(Number; Alpha; Beta; C)"
+msgstr "DIST.WEIBULL(x; alfa ; beta ; acumulado)"
+
+#: 04060185.xhp#par_id3151317.179.help.text
+msgid " <emph>Number</emph> is the value at which to calculate the Weibull distribution."
+msgstr " <emph>Número</emph> es el valor en el que calcular la distribución Weibull."
+
+#: 04060185.xhp#par_id3158436.180.help.text
+msgid " <emph>Alpha </emph>is the shape parameter of the Weibull distribution."
+msgstr " <emph>Alfa</emph> es el parámetro de forma de la distribución Weibull."
+
+#: 04060185.xhp#par_id3154668.181.help.text
+msgid " <emph>Beta</emph> is the scale parameter of the Weibull distribution."
+msgstr " <emph>Beta</emph> es el parámetro de escala de la distribución Weibull."
+
+#: 04060185.xhp#par_id3154825.182.help.text
+msgid " <emph>C</emph> indicates the type of function."
+msgstr " <emph>C</emph> indica el tipo de función."
+
+#: 04060185.xhp#hd_id3153794.183.help.text
+msgctxt "04060185.xhp#hd_id3153794.183.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060185.xhp#par_id3146077.184.help.text
+msgid " <item type=\"input\">=WEIBULL(2;1;1;1)</item> returns 0.86."
+msgstr " <item type=\"input\">=DIST.WEIBULL(2;1;1;1)</item> devuelve 0,86."
+
+#: 04060185.xhp#par_id0305200911372899.help.text
+msgid "See also the <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_WEIBULL_function\">Wiki page</link>."
+msgstr ""
+
+#: 04070000.xhp#tit.help.text
+msgid "Names"
+msgstr "Nombres"
+
+#: 04070000.xhp#hd_id3153951.1.help.text
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
+msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Nombres\">Nombres</link>"
+
+#: 04070000.xhp#par_id3145801.2.help.text
+msgid "<ahelp hid=\".\">Allows you to name the different sections of your spreadsheet document.</ahelp> By naming the different sections, you can easily <link href=\"text/scalc/01/02110000.xhp\" name=\"navigate\">navigate</link> through the spreadsheet documents and find specific information."
+msgstr "<ahelp hid=\".\">Permite asignar un nombre a las distintas secciones del documento de hoja de cálculo.</ahelp> Al asignar un nombre a las distintas secciones, se puede <link href=\"text/scalc/01/02110000.xhp\" name=\"navegar\">navegar</link> fácilmente por los documentos de hoja de cálculo para buscar información concreta."
+
+#: 04070000.xhp#hd_id3153878.3.help.text
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Define\">Define</link>"
+msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Definir...\">Definir...</link>"
+
+#: 04070000.xhp#hd_id3146969.4.help.text
+msgid "<link href=\"text/scalc/01/04070200.xhp\" name=\"Insert\">Insert</link>"
+msgstr "<link href=\"text/scalc/01/04070200.xhp\" name=\"Pegar...\">Pegar...</link>"
+
+#: 04070000.xhp#hd_id3155764.5.help.text
+msgid "<link href=\"text/scalc/01/04070300.xhp\" name=\"Apply\">Apply</link>"
+msgstr "<link href=\"text/scalc/01/04070300.xhp\" name=\"Aplicar...\">Aplicar...</link>"
+
+#: 04070000.xhp#hd_id3156382.6.help.text
+msgid "<link href=\"text/scalc/01/04070400.xhp\" name=\"Labels\">Labels</link>"
+msgstr "<link href=\"text/scalc/01/04070400.xhp\" name=\"Etiquetas...\">Etiquetas...</link>"
+
+#: 03090000.xhp#tit.help.text
+msgid "Formula Bar"
+msgstr "Barra de fórmulas"
+
+#: 03090000.xhp#bm_id3147264.help.text
+msgid "<bookmark_value>formula bar;spreadsheets</bookmark_value><bookmark_value>spreadsheets; formula bar</bookmark_value>"
+msgstr "<bookmark_value>barra de fórmulas;hojas de cálculo</bookmark_value><bookmark_value>hojas de cálculo; barra de fórmulas</bookmark_value>"
+
+#: 03090000.xhp#hd_id3147264.1.help.text
+msgid "<link href=\"text/scalc/01/03090000.xhp\" name=\"Formula Bar\">Formula Bar</link>"
+msgstr "<link href=\"text/scalc/01/03090000.xhp\" name=\"Formula Bar\">Barra de fórmulas</link>"
+
+#: 03090000.xhp#par_id3156423.2.help.text
+msgid "<ahelp hid=\".uno:InputLineVisible\">Shows or hides the Formula Bar, which is used for entering and editing formulas.</ahelp> The Formula Bar is the most important tool when working with spreadsheets."
+msgstr "<ahelp hid=\".uno:InputLineVisible\">Muestra u oculta la barra de fórmulas, que se emplea para escribir y editar fórmulas.</ahelp> La barra de fórmulas es la herramienta más importante cuando se trabaja con hojas de cálculo."
+
+#: 03090000.xhp#par_id3154686.4.help.text
+msgid "To hide the Formula Bar, unmark the menu item."
+msgstr "Para ocultar la barra de fórmulas, anule la selección de este elemento de menú."
+
+#: 03090000.xhp#par_id3145787.3.help.text
+msgid "If the Formula Bar is hidden, you can still edit cells by activating the edit mode with F2. After editing cells, accept the changes by pressing Enter, or discard entries by pressing Esc. Esc is also used to exit the edit mode."
+msgstr "Aunque la barra de fórmulas esté oculta puede editar las celdas si activa el modo de edición pulsando F2. Una vez editadas las celdas, acepte los cambios pulsando Intro o rechácelos mediante Esc. Esc se utiliza también para salir del modo de edición."
+
+#: 04010100.xhp#tit.help.text
+msgctxt "04010100.xhp#tit.help.text"
+msgid "Row Break"
+msgstr "Salto de filas"
+
+#: 04010100.xhp#bm_id3153821.help.text
+msgid "<bookmark_value>sheets; inserting row breaks</bookmark_value><bookmark_value>row breaks; inserting</bookmark_value><bookmark_value>inserting; manual row breaks</bookmark_value><bookmark_value>manual row breaks</bookmark_value>"
+msgstr "<bookmark_value>hojas;insertar saltos de fila</bookmark_value><bookmark_value>saltos de fila;insertar</bookmark_value><bookmark_value>insertar;saltos de fila manuales</bookmark_value><bookmark_value>saltos de fila manuales</bookmark_value>"
+
+#: 04010100.xhp#hd_id3153821.1.help.text
+msgid "<link href=\"text/scalc/01/04010100.xhp\" name=\"Row Break\">Row Break</link>"
+msgstr "<link href=\"text/scalc/01/04010100.xhp\" name=\"Row Break\">Salto de fila</link>"
+
+#: 04010100.xhp#par_id3149656.2.help.text
+msgid "<ahelp hid=\".uno:InsertRowBreak\">Inserts a row break (horizontal page break) above the selected cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertRowBreak\">Inserta un salto de línea (salto de página horizontal) por encima de la celda seleccionada.</ahelp>"
+
+#: 04010100.xhp#par_id3156422.3.help.text
+msgid "The manual row break is indicated by a dark blue horizontal line."
+msgstr "La señal distintiva de los saltos de fila manuales consiste en una línea horizontal azul oscura en la hoja."
+
+#: 02190200.xhp#tit.help.text
+msgctxt "02190200.xhp#tit.help.text"
+msgid "Column Break"
+msgstr "Salto de columna"
+
+#: 02190200.xhp#bm_id3151384.help.text
+msgid "<bookmark_value>spreadsheets;deleting column breaks</bookmark_value><bookmark_value>deleting;manual column breaks</bookmark_value><bookmark_value>column breaks;deleting</bookmark_value>"
+msgstr "<bookmark_value>hojas de cálculo;eliminar saltos de columna</bookmark_value><bookmark_value>eliminar;salto manual de columna</bookmark_value><bookmark_value>saltos de columna;eliminando</bookmark_value>"
+
+#: 02190200.xhp#hd_id3151384.1.help.text
+msgid "<link href=\"text/scalc/01/02190200.xhp\" name=\"Column Break\">Column Break</link>"
+msgstr "<link href=\"text/scalc/01/02190200.xhp\" name=\"Column Break\">Salto de columna</link>"
+
+#: 02190200.xhp#par_id3154124.2.help.text
+msgid "<ahelp hid=\".uno:DeleteColumnbreak\">Removes a manual column break to the left of the active cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteColumnbreak\">Elimina un salto de columna manual situado a la izquierda de la celda activa.</ahelp>"
+
+#: 02190200.xhp#par_id3145173.3.help.text
+msgid "Position the cursor in the cell to the right of the column break indicated by a vertical line and choose <emph>Edit - Delete Manual Break - Column Break</emph>. The manual column break is removed."
+msgstr "Sitúe el cursor en la celda de la derecha del salto de columna indicado mediante una línea vertical y seleccione <emph>Editar - Borrar salto manual - Salto de columna</emph>. Se elimina el salto de columna manual."
+
+#: 02140000.xhp#tit.help.text
+msgid "Fill"
+msgstr "Rellenar"
+
+#: 02140000.xhp#bm_id8473769.help.text
+msgid "<bookmark_value>filling;selection lists</bookmark_value> <bookmark_value>selection lists;filling cells</bookmark_value>"
+msgstr "<bookmark_value>rellenar;lista de selección</bookmark_value><bookmark_value>listas de selección;rellenado de celdas</bookmark_value>"
+
+#: 02140000.xhp#hd_id3153876.1.help.text
+msgid "<link href=\"text/scalc/01/02140000.xhp\" name=\"Fill\">Fill</link>"
+msgstr "<link href=\"text/scalc/01/02140000.xhp\" name=\"Fill\">Relleno</link>"
+
+#: 02140000.xhp#par_id3156285.2.help.text
+msgid "<ahelp hid=\".\">Automatically fills cells with content.</ahelp>"
+msgstr "<ahelp hid=\".\">Inserta contenido en las celdas automáticamente.</ahelp>"
+
+#: 02140000.xhp#par_id3147343.9.help.text
+msgid "The $[officename] Calc context menus have <link href=\"text/scalc/01/02140000.xhp\" name=\"other options\">additional options</link> for filling the cells."
+msgstr "Los menús contextuales de $[officename] Calc cuentan con <link href=\"text/scalc/01/02140000.xhp\" name=\"other options\">opciones adicionales</link> para rellenar las celdas."
+
+#: 02140000.xhp#hd_id3149207.7.help.text
+msgid "<link href=\"text/scalc/01/02140500.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr "<link href=\"text/scalc/01/02140500.xhp\" name=\"Sheet\">Hoja</link>"
+
+#: 02140000.xhp#hd_id3155111.8.help.text
+msgid "<link href=\"text/scalc/01/02140600.xhp\" name=\"Rows\">Series</link>"
+msgstr "<link href=\"text/scalc/01/02140600.xhp\" name=\"Rows\">Series</link>"
+
+#: 02140000.xhp#par_id3152994.3.help.text
+msgid "<emph>Filling cells using context menus:</emph>"
+msgstr "<emph>Rellenar celdas mediante menús contextuales:</emph>"
+
+#: 02140000.xhp#par_id3145384.4.help.text
+msgid "Call the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> when positioned in a cell and choose <emph>Selection List</emph>."
+msgstr "Active el <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">menú contextual</link> de la celda y acceda a la entrada <emph>Lista de selección</emph>."
+
+#: 02140000.xhp#par_id3156450.5.help.text
+msgid "<ahelp hid=\".uno:DataSelect\">A list box containing all text found in the current column is displayed.</ahelp> The text is sorted alphabetically and multiple entries are listed only once."
+msgstr "<ahelp hid=\".uno:DataSelect\">Aparece un listado con todos los textos que contiene la columna actual.</ahelp> Los textos están ordenados alfabéticamente y las entradas repetidas sólo se incluyen una vez en la lista."
+
+#: 02140000.xhp#par_id3148699.6.help.text
+msgid "Click one of the listed entries to copy it to the cell."
+msgstr "Haga clic en una de las entradas de la lista para copiarla en la celda."
+
+#: 12090106.xhp#tit.help.text
+msgctxt "12090106.xhp#tit.help.text"
+msgid "Data Field Options"
+msgstr "Opciones de campo de datos"
+
+#: 12090106.xhp#bm_id711386.help.text
+#, fuzzy
+msgid "<bookmark_value>hiding;data fields, from calculations in pivot table</bookmark_value><bookmark_value>display options in pivot table</bookmark_value><bookmark_value>sorting;options in pivot table</bookmark_value><bookmark_value>data field options for pivot table</bookmark_value>"
+msgstr "<bookmark_value>ocultar;campos de datos, de cálculos en el Piloto de datos</bookmark_value><bookmark_value>mostrar opciones en el Piloto de datos</bookmark_value><bookmark_value>ordenar;opciones en el Piloto de datos</bookmark_value><bookmark_value>opciones del campo de datos para el Piloto de datos</bookmark_value>"
+
+#: 12090106.xhp#par_idN10542.help.text
+msgctxt "12090106.xhp#par_idN10542.help.text"
+msgid "Data Field Options"
+msgstr "Opciones de campo de datos"
+
+#: 12090106.xhp#par_idN10546.help.text
+#, fuzzy
+msgid "You can specify additional options for column, row, and page data fields in the <link href=\"text/scalc/01/12090105.xhp\">pivot table</link>."
+msgstr "Puede especificar opciones adicionales para los campos de datos de columna, fila y página en el <link href=\"text/scalc/01/12090105.xhp\">Piloto de datos</link>."
+
+#: 12090106.xhp#par_idN10557.help.text
+msgctxt "12090106.xhp#par_idN10557.help.text"
+msgid "Sort by"
+msgstr "Ordenar por"
+
+#: 12090106.xhp#par_idN1055B.help.text
+msgid "<ahelp hid=\"1495387653\">Select the data field that you want to sort columns or rows by.</ahelp>"
+msgstr "<ahelp hid=\"1495387653\">Seleccione el campo de datos que desee utilizar para ordenar las columnas o filas.</ahelp>"
+
+#: 12090106.xhp#par_idN1055E.help.text
+msgctxt "12090106.xhp#par_idN1055E.help.text"
+msgid "Ascending"
+msgstr "Ascendente"
+
+#: 12090106.xhp#par_idN10562.help.text
+msgid "<ahelp hid=\"1495384580\">Sorts the values from the lowest value to the highest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
+msgstr "<ahelp hid=\"1495384580\">Ordena los valores del mas bajo al mas alto. Si el campo seleccionado es el campo en el cual el diálogo debe ser abierto, los elementos son ordenados por nombre.Si los campos de datos son seleccionados, los elementos son ordenados por el valor devuelto de los campos de datos seleccionados.</ahelp>"
+
+#: 12090106.xhp#par_idN10565.help.text
+msgctxt "12090106.xhp#par_idN10565.help.text"
+msgid "Descending"
+msgstr "Descendente"
+
+#: 12090106.xhp#par_idN10569.help.text
+msgid "<ahelp hid=\"1495384581\">Sorts the values descending from the highest value to the lowest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
+msgstr "<ahelp hid=\"1495384581\">Ordena los valores del mas bajo al mas alto. Si el campo seleccionado es el campo en el cual el diálogo debe ser abierto, los elementos son ordenados por nombre.Si los campos de datos son seleccionados, los elementos son ordenados por el valor devuelto de los campos de datos seleccionados.</ahelp>"
+
+#: 12090106.xhp#par_idN1056C.help.text
+msgid "Manual"
+msgstr "Manual"
+
+#: 12090106.xhp#par_idN10570.help.text
+msgid "<ahelp hid=\"1495384582\">Sorts values alphabetically.</ahelp>"
+msgstr "<ahelp hid=\"1495384582\">Ordenar valores alfabeticamente.</ahelp>"
+
+#: 12090106.xhp#par_idN10585.help.text
+msgid "Display options"
+msgstr "Mostrar opciones"
+
+#: 12090106.xhp#par_idN10589.help.text
+msgid "You can specify the display options for all row fields except for the last, innermost row field."
+msgstr "Puede especificar las opciones que se mostrarán para todos los campos de filas excepto para el último y más interno."
+
+#: 12090106.xhp#par_idN1058C.help.text
+msgctxt "12090106.xhp#par_idN1058C.help.text"
+msgid "Layout"
+msgstr "Diseño"
+
+#: 12090106.xhp#par_idN10590.help.text
+msgid "<ahelp hid=\"1495387654\">Select the layout mode for the field in the list box.</ahelp>"
+msgstr "<ahelp hid=\"1495387654\">Seleccione el modo de diseño para el campo en el cuadro de lista.</ahelp>"
+
+#: 12090106.xhp#par_idN10593.help.text
+msgid "Empty line after each item"
+msgstr "Línea vacía después de cada elemento"
+
+#: 12090106.xhp#par_idN10597.help.text
+#, fuzzy
+msgid "<ahelp hid=\"1495385090\">Adds an empty row after the data for each item in the pivot table.</ahelp>"
+msgstr "<ahelp hid=\"1495385090\">Agrega una fila vacía después de los datos para cada elemento de la tabla del Piloto de datos.</ahelp>"
+
+#: 12090106.xhp#par_idN1059A.help.text
+msgid "Show automatically"
+msgstr "Mostrar automáticamente"
+
+#: 12090106.xhp#par_idN1059E.help.text
+msgid "Displays the top or bottom nn items when you sort by a specified field."
+msgstr "Muestra los elementos nn superiores o inferiores cuando se ordena por un campo específico."
+
+#: 12090106.xhp#par_idN105A1.help.text
+msgctxt "12090106.xhp#par_idN105A1.help.text"
+msgid "Show"
+msgstr "Mostrar"
+
+#: 12090106.xhp#par_idN105A5.help.text
+msgid "<ahelp hid=\"1495385091\">Turns on the automatic show feature.</ahelp>"
+msgstr "<ahelp hid=\"1495385091\">Activa la función de visualización automática.</ahelp>"
+
+#: 12090106.xhp#par_idN105A8.help.text
+msgid "items"
+msgstr "elementos"
+
+#: 12090106.xhp#par_idN105AC.help.text
+msgid "<ahelp hid=\"1495390209\">Enter the maximum number of items that you want to show automatically.</ahelp>"
+msgstr "<ahelp hid=\"1495390209\">Escriba el número máximo de elementos que desee mostrar automáticamente.</ahelp>"
+
+#: 12090106.xhp#par_idN105AF.help.text
+msgid "From"
+msgstr "De"
+
+#: 12090106.xhp#par_idN105B3.help.text
+msgid "<ahelp hid=\"1495387655\">Shows the top or bottom items in the specified sort order.</ahelp>"
+msgstr "<ahelp hid=\"1495387655\">Muestra los elementos superiores o inferiores en el orden de clasificación especificado.</ahelp>"
+
+#: 12090106.xhp#par_idN105B6.help.text
+msgid "Using field"
+msgstr "Usando campo"
+
+#: 12090106.xhp#par_idN105BA.help.text
+msgid "<ahelp hid=\"1495387656\">Select the data field that you want to sort the data by.</ahelp>"
+msgstr "<ahelp hid=\"1495387656\">Seleccione el campo de datos que desee utilizar para ordenar los datos.</ahelp>"
+
+#: 12090106.xhp#par_idN105BD.help.text
+msgid "Hide items"
+msgstr "Ocultar elementos"
+
+#: 12090106.xhp#par_idN105C1.help.text
+msgid "<ahelp hid=\"59010\">Select the items that you want to hide from the calculations.</ahelp>"
+msgstr "<ahelp hid=\"59010\">Seleccione los elementos que desee ocultar para los cálculos.</ahelp>"
+
+#: 12090106.xhp#par_idN105C4.help.text
+msgid "Hierarchy"
+msgstr "Jerarquía"
+
+#: 12090106.xhp#par_idN105C8.help.text
+#, fuzzy
+msgid "<ahelp hid=\"1495387657\">Select the hierarchy that you want to use. The pivot table must be based on an external source data that contains data hierarchies.</ahelp>"
+msgstr "<ahelp hid=\"1495387657\">Seleccione la jerarquía que desee utilizar. El Piloto de datos debe basarse en datos de origen externo que contengan jerarquías de datos.</ahelp>"
+
+#: 04070200.xhp#tit.help.text
+msgctxt "04070200.xhp#tit.help.text"
+msgid "Insert Name"
+msgstr "Insertar nombre"
+
+#: 04070200.xhp#bm_id3153195.help.text
+msgid "<bookmark_value>cell ranges; inserting named ranges</bookmark_value><bookmark_value>inserting; cell ranges</bookmark_value>"
+msgstr "<bookmark_value>áreas de celda;insertar áreas con nombre</bookmark_value><bookmark_value>insertar;áreas de celda</bookmark_value>"
+
+#: 04070200.xhp#hd_id3153195.1.help.text
+msgctxt "04070200.xhp#hd_id3153195.1.help.text"
+msgid "Insert Name"
+msgstr "Insertar nombre"
+
+#: 04070200.xhp#par_id3150011.2.help.text
+msgid "<variable id=\"nameneinfuegentext\"><ahelp hid=\".uno:InsertName\">Inserts a defined named cell range at the current cursor's position.</ahelp></variable>"
+msgstr "<variable id=\"nameneinfuegentext\"><ahelp hid=\".uno:InsertName\">Inserta un área de celdas con nombre en la posición actual del cursor.</ahelp></variable>"
+
+#: 04070200.xhp#par_id3149412.7.help.text
+msgid "You can only insert a cell area after having defined a name for the area."
+msgstr "Sólo se puede insertar un nombre si previamente se ha definido el nombre del área."
+
+#: 04070200.xhp#hd_id3153160.3.help.text
+msgid "Insert name "
+msgstr "Insertar nombre"
+
+#: 04070200.xhp#par_id3154944.4.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NAMES_PASTE:LB_ENTRYLIST\">Lists all defined cell areas. Double-click an entry to insert the named area into the active sheet at the current cursor position.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NAMES_PASTE:LB_ENTRYLIST\">Lista todas las áreas de celda definidas. Haga doble clic en una entrada para insertar el área indicada en la hoja activa en la posición actual del cursor.</ahelp>"
+
+#: 04070200.xhp#hd_id3153418.5.help.text
+msgid "Insert All"
+msgstr "Insertar todo"
+
+#: 04070200.xhp#par_id3155066.6.help.text
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_NAMES_PASTE:BTN_ADD\">Inserts a list of all named areas and the corresponding cell references at the current cursor position.</ahelp>"
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_NAMES_PASTE:BTN_ADD\">Inserta una lista de todas las áreas con nombre y las referencias de celda correspondientes en la posición actual del cursor.</ahelp>"
+
+#: 12120200.xhp#tit.help.text
+msgid "Input Help"
+msgstr "Ayuda de entrada"
+
+#: 12120200.xhp#hd_id3156280.1.help.text
+msgid "<link href=\"text/scalc/01/12120200.xhp\" name=\"Input Help\">Input Help</link>"
+msgstr "<link href=\"text/scalc/01/12120200.xhp\" name=\"Ayuda de entrada\">Ayuda de entrada</link>"
+
+#: 12120200.xhp#par_id3147229.2.help.text
+msgid "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_INPUTHELP\">Enter the message that you want to display when the cell or cell range is selected in the sheet.</ahelp>"
+msgstr "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_INPUTHELP\">Escriba el mensaje que desea que se muestre al seleccionar la celda o área de celdas en la hoja.</ahelp>"
+
+#: 12120200.xhp#hd_id3146986.3.help.text
+msgid "Show input help when cell is selected"
+msgstr "Mostrar Ayuda de entrada al seleccionar una celda"
+
+#: 12120200.xhp#par_id3153363.4.help.text
+msgid "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_INPUTHELP:TSB_HELP\">Displays the message that you enter in the <emph>Contents</emph> box when the cell or cell range is selected in the sheet.</ahelp>"
+msgstr "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_INPUTHELP:TSB_HELP\">Muestra el mensaje escrito en el cuadro <emph>Contenido</emph> cuando se selecciona en la hoja la celda o el área de celdas.</ahelp>"
+
+#: 12120200.xhp#par_id3154730.5.help.text
+msgid "If you enter text in the <emph>Contents</emph> box of this dialog, and then select and clear this check box, the text will be lost."
+msgstr "Si escribe un texto en el cuadro <emph>Contenido</emph> de este diálogo y a continuación selecciona y deselecciona esta casilla de verificación, el texto se perderá."
+
+#: 12120200.xhp#hd_id3147394.6.help.text
+msgctxt "12120200.xhp#hd_id3147394.6.help.text"
+msgid "Contents"
+msgstr "Contenido"
+
+#: 12120200.xhp#hd_id3149582.8.help.text
+msgctxt "12120200.xhp#hd_id3149582.8.help.text"
+msgid "Title"
+msgstr "Título"
+
+#: 12120200.xhp#par_id3149400.9.help.text
+msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_INPUTHELP:EDT_TITLE\">Enter the title that you want to display when the cell or cell range is selected.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_INPUTHELP:EDT_TITLE\">Escriba el título que desea que se muestre al seleccionar la celda o el área de celdas.</ahelp>"
+
+#: 12120200.xhp#hd_id3149121.10.help.text
+msgid "Input help"
+msgstr "Ayuda de entrada"
+
+#: 12120200.xhp#par_id3150752.11.help.text
+msgid "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_INPUTHELP:EDT_INPUTHELP\">Enter the message that you want to display when the cell or cell range is selected.</ahelp>"
+msgstr "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_INPUTHELP:EDT_INPUTHELP\">Escriba el mensaje que desea que se muestre al seleccionar la celda o el área de celdas.</ahelp>"
+
+#: 02210000.xhp#tit.help.text
+msgctxt "02210000.xhp#tit.help.text"
+msgid "Selecting Sheets"
+msgstr "Seleccionar hojas"
+
+#: 02210000.xhp#hd_id3156023.5.help.text
+msgctxt "02210000.xhp#hd_id3156023.5.help.text"
+msgid "Selecting Sheets"
+msgstr "Seleccionar hojas"
+
+#: 02210000.xhp#par_id3147265.1.help.text
+msgid "<variable id=\"tabellenauswaehlen\"><ahelp hid=\".uno:SelectTables\" visibility=\"visible\">Selects multiple sheets.</ahelp></variable>"
+msgstr "<variable id=\"tabellenauswaehlen\"><ahelp hid=\".uno:SelectTables\" visibility=\"visible\">Selecciona múltiples hojas.</ahelp></variable>"
+
+#: 02210000.xhp#hd_id3125863.2.help.text
+msgid "Selected Sheets"
+msgstr "Hojas seleccionadas"
+
+#: 02210000.xhp#par_id3153969.3.help.text
+msgid "<ahelp hid=\"HID_SELECTTABLES\" visibility=\"visible\">Lists the sheets in the current document. To select a sheet, press the up or down arrow keys to move to a sheet in the list. To add a sheet to the selection, hold down Ctrl (Mac: Command) while pressing the arrow keys and then press Spacebar. To select a range of sheets, hold down Shift and press the arrow keys. </ahelp>"
+msgstr "<ahelp hid=\"HID_SELECTTABLES\" visibility=\"visible\">Enumera las hojas del documento actual. Para seleccionar una hoja, pulse las telas de flecha arriba o abajo para desplazarse a una de las hojas de la lista. Para agregar una hoja a la selección, mantenga pulsada la tecla Ctrl mientras pulsa las teclas de cursor y, a continuación, pulse la barra espaciadora. Para seleccionar un intervalo de hojas, mantenga pulsada Mayús y pulse las teclas de cursor. </ahelp>"
+
+#: 02140400.xhp#tit.help.text
+msgctxt "02140400.xhp#tit.help.text"
+msgid "Left"
+msgstr "Izquierda"
+
+#: 02140400.xhp#hd_id3153896.1.help.text
+msgid "<link href=\"text/scalc/01/02140400.xhp\" name=\"Left\">Left</link>"
+msgstr "<link href=\"text/scalc/01/02140400.xhp\" name=\"Left\">Izquierda</link>"
+
+#: 02140400.xhp#par_id3150793.2.help.text
+msgid "<ahelp hid=\".uno:FillLeft\" visibility=\"visible\">Fills a selected range of at least two columns with the contents of the far right cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:FillLeft\" visibility=\"visible\">Rellena un área seleccionada con un mínimo de dos columnas con el contenido de la celda situada más a la derecha.</ahelp>"
+
+#: 02140400.xhp#par_id3156280.3.help.text
+msgid "If a selected range has only one row, the content of the far right cell is copied into all other cells of the range. If several rows are selected, the far right cells are copied into the cells to the left."
+msgstr "Si se selecciona un área de una sola fila, el contenido de la celda del extremo derecho se copia en el resto de celdas del área. Si se seleccionan varias filas, las celdas del extremo derecho se copian en las celdas de su izquierda."
+
+#: 12090100.xhp#tit.help.text
+msgctxt "12090100.xhp#tit.help.text"
+msgid "Select Source"
+msgstr "Seleccionar origen"
+
+#: 12090100.xhp#hd_id3153663.1.help.text
+msgctxt "12090100.xhp#hd_id3153663.1.help.text"
+msgid "Select Source"
+msgstr "Seleccionar fuente"
+
+#: 12090100.xhp#par_id3145119.2.help.text
+#, fuzzy
+msgid "<ahelp hid=\".uno:DataDataPilotRun\">Opens a dialog where you can select the source for your pivot table, and then create your table.</ahelp>"
+msgstr "<ahelp hid=\".uno:DataDataPilotRun\">Abre un diálogo que permite seleccionar el origen de la tabla del Piloto de datos y, a continuación, crear la tabla.</ahelp>"
+
+#: 12090100.xhp#hd_id3154760.5.help.text
+msgctxt "12090100.xhp#hd_id3154760.5.help.text"
+msgid "Selection"
+msgstr "Selección"
+
+#: 12090100.xhp#par_id3150543.6.help.text
+#, fuzzy
+msgid "Select a data source for the pivot table."
+msgstr "Seleccione una fuente de datos para la tabla del Piloto de datos."
+
+#: 12090100.xhp#hd_id3148799.7.help.text
+msgid "Current Selection"
+msgstr "Selección actual"
+
+#: 12090100.xhp#par_id3125865.8.help.text
+#, fuzzy
+msgid "<ahelp hid=\".\">Uses the selected cells as the data source for the pivot table.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DAPITYPE:BTN_SELECTION\">Utiliza las celdas seleccionadas como origen de datos para la tabla del Piloto de datos.</ahelp>"
+
+#: 12090100.xhp#par_id3150011.13.help.text
+#, fuzzy
+msgid "The data columns in the pivot table use the same number format as the first data row in the current selection."
+msgstr "Las columnas de datos de la tabla del Piloto de datos utilizan el mismo formato que la primera fila de datos de la selección actual."
+
+#: 12090100.xhp#hd_id3147348.9.help.text
+msgid "Data source registered in $[officename]"
+msgstr "Fuente de datos registrada en $[officename]"
+
+#: 12090100.xhp#par_id3145271.10.help.text
+#, fuzzy
+msgid "<ahelp hid=\".\">Uses a table or query in a database that is registered in $[officename] as the data source for the pivot table.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DAPITYPE:BTN_DATABASE\">Utiliza una tabla o consulta de una base de datos registrada en $[officename] como origen de datos de la tabla del Piloto de datos.</ahelp>"
+
+#: 12090100.xhp#hd_id3146119.11.help.text
+msgid "External source/interface"
+msgstr "Fuente externa/interfaz"
+
+#: 12090100.xhp#par_id3145647.12.help.text
+#, fuzzy
+msgid "<ahelp hid=\".\">Opens the <emph>External Source</emph> dialog where you can select the OLAP data source for the pivot table.</ahelp>"
+msgstr "<ahelp hid=\".\">Abre el diálogo<emph>Autoformatear</emph>,donde puede seleccionar un diseño predefinido para la tabla.</ahelp>"
+
+#: 12090100.xhp#par_idN10670.help.text
+#, fuzzy
+msgctxt "12090100.xhp#par_idN10670.help.text"
+msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
+msgstr "<link href=\"text/scalc/01/12090102.xhp\" name=\"Diálogo Piloto de datos\">Diálogo Piloto de datos</link>"
+
+#: 12050200.xhp#tit.help.text
+msgctxt "12050200.xhp#tit.help.text"
+msgid "Options"
+msgstr "Opciones"
+
+#: 12050200.xhp#bm_id3154758.help.text
+msgid "<bookmark_value>subtotals; sorting options</bookmark_value>"
+msgstr "<bookmark_value>calcular;subtotales</bookmark_value><bookmark_value>subtotales;opciones de ordenación</bookmark_value><bookmark_value>opciones;cálculo de subtotales</bookmark_value>"
+
+#: 12050200.xhp#hd_id3154758.1.help.text
+msgid "<link href=\"text/scalc/01/12050200.xhp\" name=\"Options\">Options</link>"
+msgstr "<link href=\"text/scalc/01/12050200.xhp\" name=\"Opciones\">Opciones</link>"
+
+#: 12050200.xhp#par_id3154124.2.help.text
+msgid "<ahelp hid=\"HID_SCPAGE_SUBT_OPTIONS\">Specify the settings for calculating and presenting subtotals.</ahelp>"
+msgstr "<ahelp hid=\"HID_SCPAGE_SUBT_OPTIONS\">Especifique la configuración para calcular y mostrar subtotales.</ahelp>"
+
+#: 12050200.xhp#hd_id3156422.3.help.text
+msgid "Page break between groups"
+msgstr "Nueva página entre grupos"
+
+#: 12050200.xhp#par_id3147317.4.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_PAGEBREAK\">Inserts a new page after each group of subtotaled data.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_PAGEBREAK\">Inserta una página nueva después de cada grupo de datos cuyo subtotal se ha calculado.</ahelp>"
+
+#: 12050200.xhp#hd_id3146985.5.help.text
+#, fuzzy
+msgctxt "12050200.xhp#hd_id3146985.5.help.text"
+msgid "Case sensitive"
+msgstr "Mayúsculas/minúsculas"
+
+#: 12050200.xhp#par_id3153190.6.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_CASE\">Recalculates subtotals when you change the case of a data label.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_CASE\">Recalcula los subtotales al cambiar la combinación de mayúsculas y minúsculas de una etiqueta de datos.</ahelp>"
+
+#: 12050200.xhp#hd_id3151119.7.help.text
+msgid "Pre-sort area according to groups"
+msgstr "Ordenar primero el área por grupos"
+
+#: 12050200.xhp#par_id3149664.8.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_SORT\">Sorts the area that you selected in the <emph>Group by</emph> box of the Group tabs according to the columns that you selected.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_SORT\">Ordena el área seleccionada en el cuadro <emph>Agrupar por</emph> de las pestañas del Grupo, en función de las columnas seleccionadas.</ahelp>"
+
+#: 12050200.xhp#hd_id3153951.9.help.text
+msgctxt "12050200.xhp#hd_id3153951.9.help.text"
+msgid "Sort"
+msgstr "Ordenar"
+
+#: 12050200.xhp#hd_id3145252.11.help.text
+msgid "Include formats"
+msgstr "Incluir formatos"
+
+#: 12050200.xhp#par_id3147125.12.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_FORMATS\">Considers formatting attributes when sorting.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_FORMATS\">Tiene en cuenta los atributos de formato al ordenar.</ahelp>"
+
+#: 12050200.xhp#hd_id3155418.13.help.text
+msgid "Custom sort order"
+msgstr "Orden de clasificación definido por el usuario"
+
+#: 12050200.xhp#par_id3149400.14.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SUBT_OPTIONS:LB_USERDEF\">Uses a custom sorting order that you defined in the Options dialog box at <emph>%PRODUCTNAME Calc - Sort Lists</emph>.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SUBT_OPTIONS:LB_USERDEF\">Usa un orden de clasificación personalizado, que se haya definido en el cuadro de diálogo \"Opciones\" en <emph>%PRODUCTNAME Calc - Listas ordenadas</emph>.</ahelp>"
+
+#: 12050200.xhp#hd_id3149121.15.help.text
+msgctxt "12050200.xhp#hd_id3149121.15.help.text"
+msgid "Ascending"
+msgstr "Ascendente"
+
+#: 12050200.xhp#par_id3155068.16.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_ASCENDING\">Sorts beginning with the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on Tools - Options - Language settings - Languages."
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_ASCENDING\">El ordenamiento comienza con el valor más bajo. Se pueden definir las reglas de ordenamiento en Datos - Ordenar - Opciones.</ahelp> Se pueden definir las opciones predeterminadas en Herramientas - Opciones - Configuración de idioma - Idiomas."
+
+#: 12050200.xhp#hd_id3155443.17.help.text
+msgctxt "12050200.xhp#hd_id3155443.17.help.text"
+msgid "Descending"
+msgstr "Descendente"
+
+#: 12050200.xhp#par_id3153766.18.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_DESCENDING\">Sorts beginning with the highest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on Tools - Options - Language settings - Languages."
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_DESCENDING\">El ordenamiento comienza con el valor más alto. Se pueden definir los criterios del ordenamiento en Datos - Ordenar - Opciones.</ahelp> Se pueden definir las opciones predeterminadas en Herramientas - Opciones - Configuración de idioma - Idiomas."
+
+#: 05070500.xhp#tit.help.text
+msgctxt "05070500.xhp#tit.help.text"
+msgid "Sheet"
+msgstr "Hoja"
+
+#: 05070500.xhp#bm_id3150542.help.text
+msgid "<bookmark_value>pages; order when printing</bookmark_value><bookmark_value>printing; page order</bookmark_value>"
+msgstr "<bookmark_value>páginas;orden al imprimir</bookmark_value><bookmark_value>imprimir;orden de páginas</bookmark_value>"
+
+#: 05070500.xhp#hd_id3156329.1.help.text
+msgid "<link href=\"text/scalc/01/05070500.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr "<link href=\"text/scalc/01/05070500.xhp\" name=\"Hoja\">Hoja</link>"
+
+#: 05070500.xhp#par_id3151384.2.help.text
+msgid "<ahelp hid=\"HID_SCPAGE_TABLE\">Specifies the elements to be included in the printout of all sheets with the current Page Style. Additionally, you can set the print order, the first page number, and the page scale.</ahelp>"
+msgstr "<ahelp hid=\"HID_SCPAGE_TABLE\">Especifica los elementos que se deben incluir en la impresión de todas las hojas con el Estilo de página actual. Asimismo, permite configurar el orden de impresión, el número de la primera página y la escala de página.</ahelp>"
+
+#: 05070500.xhp#hd_id3150542.3.help.text
+msgctxt "05070500.xhp#hd_id3150542.3.help.text"
+msgid "Print"
+msgstr "Imprimir"
+
+#: 05070500.xhp#par_id3125863.4.help.text
+msgid "Defines which elements of the spreadsheet are to be printed."
+msgstr "En esta área se definen los objetos que se van a imprimir."
+
+#: 05070500.xhp#hd_id3151041.5.help.text
+msgid "Column and row headers"
+msgstr "Títulos de filas y de columnas"
+
+#: 05070500.xhp#par_id3147228.6.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_HEADER\">Specifies whether you want the column and row headers to be printed.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_HEADER\">Especifica si desea que se impriman los encabezados de columna y de fila.</ahelp>"
+
+#: 05070500.xhp#hd_id3150439.7.help.text
+msgid "Grid"
+msgstr "INDEX>Hoja de cálculo; imprimir cuadrícula Cuadrícula"
+
+#: 05070500.xhp#par_id3147436.8.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_GRID\">Prints out the borders of the individual cells as a grid.</ahelp> For the view on screen, make your choice under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"View\"><emph>View</emph></link> - <emph>Grid lines</emph>."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_GRID\">Imprime los bordes de las celdas individuales como una cuadrícula.</ahelp> Para la vista en pantalla, se selecciona en <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias </caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - %PRODUCTNAME Calc</emph> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Ver\"><emph>Ver</emph></link> - <emph>Líneas de la cuadrícula</emph>."
+
+#: 05070500.xhp#hd_id3145750.9.help.text
+msgctxt "05070500.xhp#hd_id3145750.9.help.text"
+msgid "Comments"
+msgstr "Comentarios"
+
+#: 05070500.xhp#par_id3150010.10.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_NOTES\">Prints the comments defined in your spreadsheet.</ahelp> They will be printed on a separate page, along with the corresponding cell reference."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_NOTES\">Imprime los comentarios definidos en la hoja de cálculo.</ahelp> Dichos comentarios se imprimirán en una página diferente, junto con la referencia a la celda correspondiente."
+
+#: 05070500.xhp#hd_id3154944.11.help.text
+msgid "Objects/graphics"
+msgstr "Objetos/Imágenes"
+
+#: 05070500.xhp#par_id3149581.12.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_OBJECTS\">Includes all inserted objects (if printable) and graphics with the printed document.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_OBJECTS\">Incluye en el documento impreso todos los objetos insertados (si son imprimibles) y las imágenes.</ahelp>"
+
+#: 05070500.xhp#hd_id3149377.13.help.text
+msgid "Charts"
+msgstr "Diagramas"
+
+#: 05070500.xhp#par_id3148455.14.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_CHARTS\">Prints the charts that have been inserted into your spreadsheet.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_CHARTS\">Imprime los diagramas insertados en la hoja de cálculo.</ahelp>"
+
+#: 05070500.xhp#hd_id3153418.15.help.text
+msgid "Drawing Objects"
+msgstr "Objetos de dibujo"
+
+#: 05070500.xhp#par_id3149122.16.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_DRAWINGS\">Includes all drawing objects in the printed document.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_DRAWINGS\">Incluye en el documento impreso todos los objetos de dibujo.</ahelp>"
+
+#: 05070500.xhp#hd_id3150330.17.help.text
+msgctxt "05070500.xhp#hd_id3150330.17.help.text"
+msgid "Formulas"
+msgstr "Fórmulas"
+
+#: 05070500.xhp#par_id3153715.18.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_FORMULAS\">Prints the formulas contained in the cells, instead of the results.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_FORMULAS\">Imprime las fórmulas contenidas en las celdas, en lugar de los resultados.</ahelp>"
+
+#: 05070500.xhp#hd_id3156385.19.help.text
+msgid "Zero Values"
+msgstr "Valores cero"
+
+#: 05070500.xhp#par_id3149258.20.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_NULLVALS\">Specifies that cells with a zero value are printed.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_NULLVALS\">Especifica que se impriman las celdas que contengan el valor cero.</ahelp>"
+
+#: 05070500.xhp#hd_id3154022.21.help.text
+msgid "Page Order"
+msgstr "Orden de páginas"
+
+#: 05070500.xhp#par_id3166423.22.help.text
+msgid "Defines the order in which data in a sheet is numbered and printed when it does not fit on one printed page."
+msgstr "Define el orden en el que se numeran e imprimen los datos de una hoja si éstos no caben en una única página impresa."
+
+#: 05070500.xhp#hd_id3152580.23.help.text
+msgid "Top to bottom, then right"
+msgstr "De arriba hacia abajo, después hacia la derecha"
+
+#: 05070500.xhp#par_id3150205.24.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_TABLE:BTN_TOPDOWN\">Prints vertically from the left column to the bottom of the sheet.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_TABLE:BTN_TOPDOWN\">Imprime verticalmente desde la columna de la izquierda hasta la parte inferior de la hoja.</ahelp>"
+
+#: 05070500.xhp#hd_id3150786.25.help.text
+msgid "Left to right, then down"
+msgstr "De izquierda a derecha, después hacia abajo"
+
+#: 05070500.xhp#par_id3154657.26.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_TABLE:BTN_LEFTRIGHT\">Prints horizontally from the top row of the sheet to the right column.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_TABLE:BTN_LEFTRIGHT\">Imprime horizontalmente, desde la fila superior de la hoja hasta la columna derecha.</ahelp>"
+
+#: 05070500.xhp#hd_id3150887.27.help.text
+msgid "First page number"
+msgstr "Primer núm. de página"
+
+#: 05070500.xhp#par_id3155378.28.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_PAGENO\">Select this option if you want the first page to start with a number other than 1.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_PAGENO\">Seleccione esta opción si desea que la primera página empiece por un número distinto de 1.</ahelp>"
+
+#: 05070500.xhp#par_id3145389.35.help.text
+msgid "<ahelp hid=\"SC:NUMERICFIELD:RID_SCPAGE_TABLE:ED_PAGENO\">Enter the number of the first page.</ahelp>"
+msgstr "<ahelp hid=\"SC:NUMERICFIELD:RID_SCPAGE_TABLE:ED_PAGENO\">Entra el número de la primera página.</ahelp>"
+
+#: 05070500.xhp#hd_id3146978.29.help.text
+msgid "Scale"
+msgstr "Escala"
+
+#: 05070500.xhp#par_id3149408.30.help.text
+msgid "Defines a page scale for the printed spreadsheet."
+msgstr "Define la escala de página para la hoja de cálculo impresa."
+
+#: 05070500.xhp#par_idN1096D.help.text
+msgid "Scaling mode"
+msgstr "Modo de escala"
+
+#: 05070500.xhp#par_idN10971.help.text
+msgid "<ahelp hid=\"sc:ListBox:RID_SCPAGE_TABLE:LB_SCALEMODE\">Select a scaling mode from the list box. Appropriate controls will be shown at the side of the list box.</ahelp>"
+msgstr "<ahelp hid=\"sc:ListBox:RID_SCPAGE_TABLE:LB_SCALEMODE\">Seleccione un modo de escala de la lista. Al lado de dicha lista aparecen los controles pertinentes.</ahelp>"
+
+#: 05070500.xhp#hd_id3155089.31.help.text
+msgid "Reduce/enlarge printout"
+msgstr "Disminuir/aumentar impresión"
+
+#: 05070500.xhp#par_id3159171.32.help.text
+msgid "Specifies a scaling factor to scale all printed pages."
+msgstr "Especifica un factor de escala para escalar todas las páginas impresas."
+
+#: 05070500.xhp#par_idN1099A.help.text
+msgid "Scaling factor"
+msgstr "Factor de escala"
+
+#: 05070500.xhp#par_id3152899.36.help.text
+msgid "<ahelp hid=\"SC_METRICFIELD_RID_SCPAGE_TABLE_ED_SCALEALL\" visibility=\"hidden\">Enter a scaling factor. Factors less than 100 reduce the pages, higher factors enlarge the pages.</ahelp>"
+msgstr "<ahelp hid=\"SC_METRICFIELD_RID_SCPAGE_TABLE_ED_SCALEALL\" visibility=\"hidden\">Introduzca un factor de escala. Los factores menores que 100 reducen las páginas; los mayores que 100 las amplían.</ahelp>"
+
+#: 05070500.xhp#par_idN109B2.help.text
+msgid "Fit print range(s) to width/height"
+msgstr "Ajustar rango(s) de impresión a lo ancho/alto"
+
+#: 05070500.xhp#par_idN109B5.help.text
+msgid "Specifies the maximum number of pages horizontally (width) and vertically (height) on which every sheet with the current Page Style is to be printed. "
+msgstr "Especifica, tanto de forma horizontal (ancho) como de forma vertical (alto), el número máximo de páginas en el que se debe imprimir cada hoja con el Estilo de página actual. "
+
+#: 05070500.xhp#par_idN109BB.help.text
+msgid "The print ranges are always scaled proportionally, so the resulting number of pages may be less than specified."
+msgstr "Las áreas de impresión siempre se escalan de forma proporcional, de modo que el número de páginas resultante puede ser inferior al especificado."
+
+#: 05070500.xhp#par_idN109BF.help.text
+msgid "You may clear one of the boxes, then the unspecified dimension will use as many pages as necessary."
+msgstr "Puede borrar uno de los cuadros para que la dimensión no especificada utilice las páginas que sean necesarias."
+
+#: 05070500.xhp#par_idN109C3.help.text
+msgid "If you clear both boxes, this will result in a scaling factor of 100%."
+msgstr "Si borra ambos cuadros, se establecerá un factor de escala del 100%."
+
+#: 05070500.xhp#par_idN109CE.help.text
+msgid "Width in pages"
+msgstr "Ancho de páginas"
+
+#: 05070500.xhp#par_idN109D1.help.text
+msgid "<ahelp hid=\"sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGEWIDTH\">Enter the maximum number of pages to be printed horizontally across.</ahelp>"
+msgstr "<ahelp hid=\"sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGEWIDTH\">Introduzca el número máximo de páginas que se deben imprimir horizontalmente.</ahelp>"
+
+#: 05070500.xhp#par_idN109E8.help.text
+msgid "Height in pages"
+msgstr "Alto de páginas"
+
+#: 05070500.xhp#par_idN109EB.help.text
+msgid "<ahelp hid=\"sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGEHEIGHT\">Enter the maximum number of pages to be printed vertically stacked.</ahelp>"
+msgstr "<ahelp hid=\"sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGEHEIGHT\">Introduzca el número máximo de páginas que se deben imprimir apiladas verticalmente.</ahelp>"
+
+#: 05070500.xhp#hd_id3148868.33.help.text
+msgid "Fit print range(s) on number of pages"
+msgstr "Ajustar intervalo(s) de impresión en números de páginas"
+
+#: 05070500.xhp#par_id3145074.34.help.text
+msgid "Specifies the maximum number of pages on which every sheet with the current Page Style is to be printed. The scale will be reduced as necessary to fit the defined number of pages."
+msgstr "Especifica el número máximo de páginas en el que se debe imprimir cada hoja con el Estilo de página actual. La escala se adaptará al número de páginas definido."
+
+#: 05070500.xhp#par_idN10A26.help.text
+msgid "Number of pages"
+msgstr "Número de páginas"
+
+#: 05070500.xhp#par_id3144507.37.help.text
+msgid "<ahelp hid=\"SC:NUMERICFIELD:RID_SCPAGE_TABLE:ED_SCALEPAGENUM\">Enter the maximum number of pages to be printed.</ahelp>"
+msgstr "<ahelp hid=\"SC:NUMERICFIELD:RID_SCPAGE_TABLE:ED_SCALEPAGENUM\">Especifique el número máximo de páginas que se deben imprimir.</ahelp>"
+
+#: 05030000.xhp#tit.help.text
+msgctxt "05030000.xhp#tit.help.text"
+msgid "Row"
+msgstr "Fila"
+
+#: 05030000.xhp#hd_id3147228.1.help.text
+msgid "<link href=\"text/scalc/01/05030000.xhp\" name=\"Row\">Row</link>"
+msgstr "<link href=\"text/scalc/01/05030000.xhp\" name=\"Fila\">Fila</link>"
+
+#: 05030000.xhp#par_id3154685.2.help.text
+msgid "<ahelp hid=\".\">Sets the row height and hides or shows selected rows.</ahelp>"
+msgstr "<ahelp hid=\".\">Establece la altura de la fila y oculta o muestra las filas seleccionadas.</ahelp>"
+
+#: 05030000.xhp#hd_id3155132.3.help.text
+msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Height\">Height</link>"
+msgstr "<link href=\"text/shared/01/05340100.xhp\" name=\"Altura...\">Altura...</link>"
+
+#: 05030000.xhp#hd_id3155854.4.help.text
+msgid "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal Height\">Optimal Height</link>"
+msgstr "<link href=\"text/scalc/01/05030200.xhp\" name=\"Altura óptima...\">Altura óptima...</link>"
+
+#: 03070000.xhp#tit.help.text
+msgid "Column & Row Headers"
+msgstr "Encabezados de filas y columnas"
+
+#: 03070000.xhp#bm_id3156024.help.text
+msgid "<bookmark_value>spreadsheets; displaying headers of columns/rows</bookmark_value><bookmark_value>displaying; headers of columns/rows</bookmark_value>"
+msgstr "<bookmark_value>hojas de cálculo;mostrar encabezados de columnas/filas</bookmark_value><bookmark_value>mostrar;encabezados de columnas/filas</bookmark_value>"
+
+#: 03070000.xhp#hd_id3156024.1.help.text
+msgid "<link href=\"text/scalc/01/03070000.xhp\" name=\"Column & Row Headers\">Column & Row Headers</link>"
+msgstr "<link href=\"text/scalc/01/03070000.xhp\" name=\"Column & Row Headers\">Encabezamientos de fila y de columna</link>"
+
+#: 03070000.xhp#par_id3147230.2.help.text
+msgid "<ahelp hid=\".uno:ViewRowColumnHeaders\">Shows column headers and row headers.</ahelp>"
+msgstr "<ahelp hid=\".uno:ViewRowColumnHeaders\">Muestra encabezados de filas y de columnas.</ahelp>"
+
+#: 03070000.xhp#par_id3156280.4.help.text
+msgid "To hide the column and row headers unmark this menu entry."
+msgstr "Para ocultar la barra de fórmulas, anule la selección de este elemento de menú."
+
+#: 03070000.xhp#par_id3156441.3.help.text
+msgid "You can also set the view of the column and row headers in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link></emph>."
+msgstr "Se puede establecer la visualización de los encabezados de las columnas y las filas en <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline> Herramientas - Opciones</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Hojas de cálculo - Ver\">%PRODUCTNAME Calc - Ver</link></emph>."
+
+#: 03100000.xhp#tit.help.text
+msgid "Page Break Preview"
+msgstr "Vista previa del salto de página"
+
+#: 03100000.xhp#hd_id3151384.1.help.text
+msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"Page Break Preview\">Page Break Preview</link>"
+msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"Page Break Preview\">Vista previa del salto de página</link>"
+
+#: 03100000.xhp#par_id3150792.2.help.text
+msgid "<ahelp hid=\".uno:PagebreakMode\">Display the page breaks and print ranges in the sheet. Choose <emph>View - Normal</emph> to switch this mode off.</ahelp>"
+msgstr "<ahelp hid=\".uno:PagebreakMode\">Muestra los saltos de página y las áreas de impresión definidas en la hoja. Seleccione <emph>Ver - Normal</emph> para desactivar este modo.</ahelp>"
+
+#: 03100000.xhp#par_id3153877.13.help.text
+msgid "The context menu of the page break preview contains functions for editing page breaks, including the following options:"
+msgstr "El menú contextual de la Vista previa del salto de página contiene las funciones más importantes para editar la división de página, entre las que se encuentran las siguientes:"
+
+#: 03100000.xhp#hd_id3154731.14.help.text
+msgid "Delete All Manual Breaks"
+msgstr "Borrar todos los saltos manuales"
+
+#: 03100000.xhp#par_id3149400.15.help.text
+msgid "<ahelp hid=\".uno:DeleteAllBreaks\">Deletes all manual breaks in the current sheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteAllBreaks\">Borra todos los saltos manuales de la hoja actual.</ahelp>"
+
+#: 03100000.xhp#hd_id3155067.18.help.text
+msgid "Add Print Range"
+msgstr "Agregar área de impresión"
+
+#: 03100000.xhp#par_id3155764.19.help.text
+msgid "Adds the selected cells to print ranges."
+msgstr "Añade las celdas seleccionadas a las áreas de impresión."
+
+#: 12080000.xhp#tit.help.text
+msgid "Group and Outline"
+msgstr "Agrupar y delineado"
+
+#: 12080000.xhp#bm_id3152350.help.text
+msgid "<bookmark_value>sheets; outlines</bookmark_value><bookmark_value>outlines; sheets</bookmark_value><bookmark_value>hiding; sheet details</bookmark_value><bookmark_value>showing; sheet details</bookmark_value><bookmark_value>grouping;cells</bookmark_value>"
+msgstr "<bookmark_value>hojas;esquemas</bookmark_value><bookmark_value>esquemas;hojas</bookmark_value><bookmark_value>ocultar;detalles de hojas</bookmark_value><bookmark_value>mostrar;detalles de hojas</bookmark_value><bookmark_value>agrupar;celdas</bookmark_value>"
+
+#: 12080000.xhp#hd_id3152350.1.help.text
+msgid "<link href=\"text/scalc/01/12080000.xhp\" name=\"Group and Outline\">Group and Outline</link>"
+msgstr "<link href=\"text/scalc/01/12080000.xhp\" name=\"Group and Outline\">Agrupar y delineado</link>"
+
+#: 12080000.xhp#par_id3150793.2.help.text
+msgid "You can create an outline of your data and group rows and columns together so that you can collapse and expand the groups with a single click."
+msgstr "Se puede crear un esquema de los datos y agrupar filas y columnas para poder mostrar u ocultar los grupos con una única pulsación."
+
+#: 12080000.xhp#hd_id3147229.3.help.text
+msgctxt "12080000.xhp#hd_id3147229.3.help.text"
+msgid "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
+msgstr "<link href=\"text/scalc/01/12080300.xhp\" name=\"Agrupar...\">Agrupar...</link>"
+
+#: 12080000.xhp#hd_id3153188.4.help.text
+msgctxt "12080000.xhp#hd_id3153188.4.help.text"
+msgid "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
+msgstr "<link href=\"text/scalc/01/12080400.xhp\" name=\"Desagrupar...\">Desagrupar...</link>"
+
+#: 01120000.xhp#tit.help.text
+msgid "Page Preview"
+msgstr "Vista previa"
+
+#: 01120000.xhp#hd_id1918698.help.text
+msgid "<link href=\"text/scalc/01/01120000.xhp\">Page Preview</link>"
+msgstr "<link href=\"text/scalc/01/01120000.xhp\">Vista previa</link>"
+
+#: 01120000.xhp#par_id3831598.help.text
+msgid "<ahelp hid=\".uno:PrintPreview\">Displays a preview of the printed page or closes the preview.</ahelp>"
+msgstr "<ahelp hid=\".uno:PrintPreview\">Muestra una previsualización de la hoja impresa o cierra la misma.</ahelp>"
+
+#: 01120000.xhp#par_id3145847.help.text
+msgid "Use the icons on the <emph>Page Preview Bar</emph> to scroll through the pages of the document or to print the document."
+msgstr "Use los iconos en la <emph>barra de vista previa</emph> para mostrar las páginas del documento o para imprimir el documento."
+
+#: 01120000.xhp#par_id9838862.help.text
+msgid "You can also press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up and Ctrl+Page Down keys to scroll through the pages."
+msgstr "También se pueden presionar las teclas<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+RePág y Ctrl + AvPág para desplazar a través de las paginas."
+
+#: 01120000.xhp#par_id7211828.help.text
+msgid "You cannot edit your document while you are in the page preview."
+msgstr "No podrá editar el documento mientras este en una vista previa."
+
+#: 01120000.xhp#par_id460829.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">To exit the page preview, click the <emph>Close Preview</emph> button.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Para salir de la vista previa, haga clic en el botón de <emph>Cerrar vista preliminar</emph>.</ahelp>"
+
+#: 01120000.xhp#par_id3155829.help.text
+msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Page View Object Bar\">Page View Object Bar</link>"
+msgstr "<link href=\"text/scalc/main0210.xhp\" name=\"Barra de objetos de vista previa\">Barra de objetos de vista previa</link>"
+
+#: 06040000.xhp#tit.help.text
+msgctxt "06040000.xhp#tit.help.text"
+msgid "Goal Seek"
+msgstr "Búsqueda del valor destino"
+
+#: 06040000.xhp#hd_id3155629.1.help.text
+msgctxt "06040000.xhp#hd_id3155629.1.help.text"
+msgid "Goal Seek"
+msgstr "Buscar valor destino"
+
+#: 06040000.xhp#par_id3145119.2.help.text
+msgid "<variable id=\"zielwertsuchetext\"><ahelp hid=\".uno:GoalSeekDialog\">Opens a dialog where you can solve an equation with a variable.</ahelp></variable> After a successful search, a dialog with the results opens, allowing you to apply the result and the target value directly to the cell."
+msgstr "<variable id=\"zielwertsuchetext\"><ahelp hid=\".uno:GoalSeekDialog\">Abre un diálogo en el que se puede resolver una ecuación con una variable.</ahelp></variable> Si la búsqueda ha sido satisfactoria, se muestra un diálogo con los resultados, que permite aplicar el resultado y el valor de destino directamente en la celda."
+
+#: 06040000.xhp#hd_id3149656.3.help.text
+msgid "Default"
+msgstr "Variables"
+
+#: 06040000.xhp#par_id3151211.4.help.text
+msgid "In this section, you can define the variables in your formula."
+msgstr "En esta área se definen las variables."
+
+#: 06040000.xhp#hd_id3150869.5.help.text
+msgid "Formula cell"
+msgstr "Celda de fórmula"
+
+#: 06040000.xhp#par_id3153194.6.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_FORMULACELL\">In the formula cell, enter the reference of the cell which contains the formula. It contains the current cell reference.</ahelp> Click another cell in the sheet to apply its reference to the text box."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_FORMULACELL\">Escriba, en el cuadro de texto \"Celda de fórmula\", la referencia de la celda que contiene la fórmula. Contiene la referencia a la celda actual.</ahelp> Haga clic en otra celda de la hoja para copiar su referencia en el cuadro de texto."
+
+#: 06040000.xhp#hd_id3154685.7.help.text
+msgid "Target value"
+msgstr "Valor destino"
+
+#: 06040000.xhp#par_id3146984.8.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_TARGETVAL\">Specifies the value you want to achieve as a new result.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_TARGETVAL\">Especifica el valor que se desea obtener como resultado nuevo.</ahelp>"
+
+#: 06040000.xhp#hd_id3150012.9.help.text
+msgid "Variable cell"
+msgstr "Celda variable"
+
+#: 06040000.xhp#par_id3147427.10.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_VARCELL\">Specifies the reference for the cell that contains the value you want to adjust in order to reach the target.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_VARCELL\">Especifica la referencia a la celda que contiene el valor que se desea ajustar para obtener el valor de destino.</ahelp>"
+
+#: func_month.xhp#tit.help.text
+msgid "MONTH "
+msgstr "MES"
+
+#: func_month.xhp#bm_id3149936.help.text
+msgid "<bookmark_value>MONTH function</bookmark_value>"
+msgstr "<bookmark_value>MES</bookmark_value>"
+
+#: func_month.xhp#hd_id3149936.76.help.text
+msgid "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\">MONTH</link></variable>"
+msgstr "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\">MES</link></variable>"
+
+#: func_month.xhp#par_id3153538.77.help.text
+msgid "<ahelp hid=\"HID_FUNC_MONAT\">Returns the month for the given date value.</ahelp> The month is returned as an integer between 1 and 12."
+msgstr "<ahelp hid=\"HID_FUNC_MONAT\">Devuelve el mes para el valor de fecha determinado.</ahelp> El mes se devuelve como un entero entre 1 y 12."
+
+#: func_month.xhp#hd_id3149517.78.help.text
+msgctxt "func_month.xhp#hd_id3149517.78.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: func_month.xhp#par_id3145602.79.help.text
+msgid "MONTH(Number)"
+msgstr "MES(número)"
+
+#: func_month.xhp#par_id3149485.80.help.text
+msgid "<emph>Number</emph>, as a time value, is a decimal for which the month is to be returned."
+msgstr "El <emph>número</emph>, como valor temporal, es un número decimal en función del cual debe calcularse el mes."
+
+#: func_month.xhp#hd_id3153322.81.help.text
+msgctxt "func_month.xhp#hd_id3153322.81.help.text"
+msgid "Examples"
+msgstr "Ejemplos"
+
+#: func_month.xhp#par_id3149244.83.help.text
+msgid "=MONTH(NOW()) returns the current month."
+msgstr "=MES(AHORA()) devuelve el mes actual."
+
+#: func_month.xhp#par_id3154790.84.help.text
+msgid "=MONTH(C4) returns 7 if you enter 2000-07-07 to cell C4 (that date value might get formatted differently after you press Enter)."
+msgstr "=MES(C4) devuelve 7 si usted introduce 2000-07-07 para la celda C4 (que el valor de fecha podría configurar diferente después de que usted presione Enter)."
+
+#: 12090104.xhp#tit.help.text
+msgctxt "12090104.xhp#tit.help.text"
+msgid "Options"
+msgstr "Opciones"
+
+#: 12090104.xhp#hd_id3149119.1.help.text
+msgid "<link href=\"text/scalc/01/12090104.xhp\" name=\"Options\">Options</link>"
+msgstr "<link href=\"text/scalc/01/12090104.xhp\" name=\"Opciones\">Opciones</link>"
+
+#: 12090104.xhp#par_id3147102.2.help.text
+msgid "<variable id=\"zusaetzetext\"><ahelp hid=\"\" visibility=\"visible\">Displays or hides additional filtering options.</ahelp></variable>"
+msgstr "<variable id=\"zusaetzetext\"><ahelp hid=\"\" visibility=\"visible\">Muestra u oculta las opciones de filtro adicionales.</ahelp></variable>"
+
+#: 12090104.xhp#hd_id3147008.3.help.text
+msgctxt "12090104.xhp#hd_id3147008.3.help.text"
+msgid "Options"
+msgstr "Opciones"
+
+#: 12090104.xhp#hd_id3153662.5.help.text
+msgctxt "12090104.xhp#hd_id3153662.5.help.text"
+msgid "Case sensitive"
+msgstr "Mayúsculas/minúsculas"
+
+#: 12090104.xhp#par_id3145673.6.help.text
+msgid "Distinguishes between uppercase and lowercase letters."
+msgstr "Distingue entre letras mayúsculas y minúsculas."
+
+#: 12090104.xhp#hd_id3156327.7.help.text
+msgid "Regular Expression"
+msgstr "Expresión corriente"
+
+#: 12090104.xhp#par_id3151245.8.help.text
+msgid "Allows you to use wildcards in the filter definition."
+msgstr "Permite utilizar comodines en la definición del filtro."
+
+#: 12090104.xhp#par_id3147264.29.help.text
+msgid "If the <emph>Regular Expression</emph> check box is selected, you can use EQUAL (=) and NOT EQUAL (<>) also in comparisons. You can also use the following functions: DCOUNTA, DGET, MATCH, COUNTIF, SUMIF, LOOKUP, VLOOKUP and HLOOKUP."
+msgstr "Si se selecciona la casilla de verificación <emph>Expresión regular</emph>, se pueden utilizar en las comparaciones los operadores IGUAL (=) y DISTINTO DE (<>). También pueden utilizarse las funciones siguientes: BDCONTARA, BDEXTRAER, COINCIDIR, CONTAR.SI, SUMAR.SI, BUSCAR, BUSCARV y BUSCARH."
+
+#: 12090104.xhp#hd_id3153379.30.help.text
+msgid "Unique records only"
+msgstr "Sin duplicados"
+
+#: 12090104.xhp#par_id3154138.31.help.text
+msgid "Excludes duplicate rows in the list of filtered data."
+msgstr "Excluye las filas duplicadas en la lista de datos filtrados."
+
+#: 12090104.xhp#hd_id3156282.32.help.text
+msgid "Data area"
+msgstr "Área de datos"
+
+#: 12090104.xhp#par_id3150768.33.help.text
+msgid "Displays the name of the filtered data area in the table."
+msgstr "Muestra el nombre del área de datos filtrados de la tabla."
+
+#: 12090104.xhp#hd_id3156424.34.help.text
+msgid "More<<"
+msgstr "Opciones<<"
+
+#: 12090104.xhp#par_id3125864.35.help.text
+msgctxt "12090104.xhp#par_id3125864.35.help.text"
+msgid "Hides the additional options."
+msgstr "Oculta las opciones adicionales."
+
+#: 12090104.xhp#par_id3154011.help.text
+msgid "<link href=\"text/shared/01/02100001.xhp\" name=\"List of Regular Expressions\">List of Regular Expressions</link>"
+msgstr "<link href=\"text/shared/01/02100001.xhp\" name=\"Lista de expresiones regulares\">Lista de expresiones regulares</link>"
+
+#: 04060105.xhp#tit.help.text
+msgctxt "04060105.xhp#tit.help.text"
+msgid "Logical Functions"
+msgstr "Funciones lógicas"
+
+#: 04060105.xhp#bm_id3153484.help.text
+msgid "<bookmark_value>logical functions</bookmark_value> <bookmark_value>Function Wizard; logical</bookmark_value> <bookmark_value>functions; logical functions</bookmark_value>"
+msgstr "<bookmark_value>funciones lógicas</bookmark_value><bookmark_value>Asistente para funciones;lógicas</bookmark_value><bookmark_value>funciones;funciones lógicas</bookmark_value>"
+
+#: 04060105.xhp#hd_id3153484.1.help.text
+msgctxt "04060105.xhp#hd_id3153484.1.help.text"
+msgid "Logical Functions"
+msgstr "Funciones lógicas"
+
+#: 04060105.xhp#par_id3149312.2.help.text
+msgid "<variable id=\"logischtext\">This category contains the <emph>Logical</emph> functions. </variable>"
+msgstr "<variable id=\"logischtext\">Esta categoría contiene las funciones de <emph>Lógico</emph>. </variable>"
+
+#: 04060105.xhp#bm_id3147505.help.text
+msgid "<bookmark_value>AND function</bookmark_value>"
+msgstr "<bookmark_value>Y</bookmark_value>"
+
+#: 04060105.xhp#hd_id3147505.29.help.text
+msgid "AND"
+msgstr "Y"
+
+#: 04060105.xhp#par_id3153959.65.help.text
+msgid "<ahelp hid=\"HID_FUNC_UND\">Returns TRUE if all arguments are TRUE.</ahelp> If one of the elements is FALSE, this function returns the FALSE value."
+msgstr "<ahelp hid=\"HID_FUNC_UND\">Devuelve VERDADERO si todos los argumentos son VERDADEROS.</ahelp> Si uno de los elementos es FALSO, esta función devuelve el valor FALSO."
+
+#: 04060105.xhp#par_id3146100.66.help.text
+msgctxt "04060105.xhp#par_id3146100.66.help.text"
+msgid "The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values."
+msgstr "Los argumentos son expresiones lógicas (VERDADERO, 1<5, 2+3=7, B8<10) que devuelven valores lógicos, o matrices (A1:C3) que contienen valores lógicos."
+
+#: 04060105.xhp#par_id3150538.67.help.text
+msgctxt "04060105.xhp#par_id3150538.67.help.text"
+msgid "When a function expects a single value, but you entered a cell range, then the value from the cell range is taken that is in the same column or row as the formula."
+msgstr "Cuando una función espera un valor simple pero se ha introducido un rango de celdas, se selecciona el valor del rango de celdas que se encuentre en la misma fila o columna que la fórmula."
+
+#: 04060105.xhp#par_id3149128.68.help.text
+msgctxt "04060105.xhp#par_id3149128.68.help.text"
+msgid "If the entered range is outside of the current column or row of the formula, the function returns the error value #VALUE!"
+msgstr "Si el área introducida está fuera de la fila o columna actual de la fórmula, la función devuelve el valor de error #VALOR!"
+
+#: 04060105.xhp#hd_id3150374.31.help.text
+msgctxt "04060105.xhp#hd_id3150374.31.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060105.xhp#par_id3159123.32.help.text
+msgid "AND(LogicalValue1; LogicalValue2 ...LogicalValue30)"
+msgstr "Y(ValorLógico1; ValorLógico2 ...ValorLógico30)"
+
+#: 04060105.xhp#par_id3150038.33.help.text
+msgid " <emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses the value from the range that is in the current column or row. The result is TRUE if the logical value in all cells within the cell range is TRUE."
+msgstr " <emph>ValorLógico1; ValorLógico2 ...ValorLógico30</emph> son condiciones que deben verificarse. Las condiciones pueden ser VERDADERO o FALSO. Si un área se especifica como parámetro, la función utiliza el valor del área que se encuentra en la columna o fila actual. El resultado es VERDADERO si el valor lógico de todas las celdas del rango es VERDADERO."
+
+#: 04060105.xhp#hd_id3149143.34.help.text
+msgctxt "04060105.xhp#hd_id3149143.34.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060105.xhp#par_id3153123.35.help.text
+msgid "The logical values of entries 12<13; 14>12, and 7<6 are to be checked:"
+msgstr "Se deben comprobar los valores lógicos de las entradas 12<13; 14>12 y 7<6:"
+
+#: 04060105.xhp#par_id3145632.36.help.text
+msgid " <item type=\"input\">=AND(12<13;14>12;7<6)</item> returns FALSE."
+msgstr "<item type=\"input\">=Y(12<13;14>12;7<6)</item> devuelve FALSO."
+
+#: 04060105.xhp#par_id3149946.60.help.text
+msgid " <item type=\"input\">=AND (FALSE;TRUE)</item> returns FALSE."
+msgstr " <item type=\"input\">=Y (FALSO;VERDADERO)</item> devuelve FALSO."
+
+#: 04060105.xhp#bm_id3149015.help.text
+msgid "<bookmark_value>FALSE function</bookmark_value>"
+msgstr "<bookmark_value>FALSO</bookmark_value>"
+
+#: 04060105.xhp#hd_id3149015.3.help.text
+msgid "FALSE"
+msgstr "FALSO"
+
+#: 04060105.xhp#par_id3149890.4.help.text
+msgid "<ahelp hid=\"HID_FUNC_FALSCH\">Returns the logical value FALSE.</ahelp> The FALSE() function does not require any arguments, and always returns the logical value FALSE."
+msgstr "<ahelp hid=\"HID_FUNC_FALSCH\">Devuelve el valor lógico FALSO.</ahelp> La función FALSO() no requiere ningún argumento, y siempre devuelve el valor lógico FALSO."
+
+#: 04060105.xhp#hd_id3146939.5.help.text
+msgctxt "04060105.xhp#hd_id3146939.5.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060105.xhp#par_id3150030.6.help.text
+msgid "FALSE()"
+msgstr "FALSO()"
+
+#: 04060105.xhp#hd_id3150697.7.help.text
+msgctxt "04060105.xhp#hd_id3150697.7.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060105.xhp#par_id3154842.8.help.text
+msgid " <item type=\"input\">=FALSE()</item> returns FALSE"
+msgstr " <item type=\"input\">=FALSO()</item> devuelve FALSO"
+
+#: 04060105.xhp#par_id3147468.9.help.text
+msgid " <item type=\"input\">=NOT(FALSE())</item> returns TRUE"
+msgstr "<item type=\"input\">=NO(FALSO())</item> devuelve VERDADERO"
+
+#: 04060105.xhp#bm_id3150141.help.text
+msgid "<bookmark_value>IF function</bookmark_value>"
+msgstr "<bookmark_value>SI</bookmark_value>"
+
+#: 04060105.xhp#hd_id3150141.48.help.text
+msgid "IF"
+msgstr "SI"
+
+#: 04060105.xhp#par_id3148740.49.help.text
+msgid "<ahelp hid=\"HID_FUNC_WENN\">Specifies a logical test to be performed.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_WENN\">Especifica una prueba lógica que debe llevarse a cabo.</ahelp>"
+
+#: 04060105.xhp#hd_id3153325.50.help.text
+msgctxt "04060105.xhp#hd_id3153325.50.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060105.xhp#par_id3154558.51.help.text
+msgid "IF(Test; ThenValue; OtherwiseValue)"
+msgstr "SI(Prueba; ValorSiVerdadero; SiNoValor)"
+
+#: 04060105.xhp#par_id3149727.52.help.text
+msgid " <emph>Test</emph> is any value or expression that can be TRUE or FALSE."
+msgstr " <emph>Prueba</emph> es cualquier valor o expresión que pueda ser VERDADERO o FALSO."
+
+#: 04060105.xhp#par_id3155828.53.help.text
+msgid " <emph>ThenValue</emph> (optional) is the value that is returned if the logical test is TRUE."
+msgstr " <emph>ValorSiVerdadero</emph> (opcional) es el valor que se devuelve si la prueba lógica da como resultado VERDADERO."
+
+#: 04060105.xhp#par_id3154811.54.help.text
+msgid " <emph>OtherwiseValue</emph> (optional) is the value that is returned if the logical test is FALSE."
+msgstr " <emph>SiNoValor</emph> (opcional) es el valor que se devuelve si la prueba lógica es FALSO."
+
+#: 04060105.xhp#par_idN107FA.help.text
+msgctxt "04060105.xhp#par_idN107FA.help.text"
+msgid " <embedvar href=\"text/scalc/00/00000004.xhp#optional\"/> "
+msgstr " <embedvar href=\"text/scalc/00/00000004.xhp#optional\"/> "
+
+#: 04060105.xhp#hd_id3149507.55.help.text
+msgctxt "04060105.xhp#hd_id3149507.55.help.text"
+msgid "Examples"
+msgstr "Ejemplos"
+
+#: 04060105.xhp#par_id3150867.57.help.text
+msgid " <item type=\"input\">=IF(A1>5;100;\"too small\")</item> If the value in A1 is higher than 5, the value 100 is entered in the current cell; otherwise, the text “too small” (without quotes) is entered."
+msgstr " <item type=\"input\">=SI(A1>5;100;\"demasiado pequeño\")</item> Si el valor en A1 es mayor que 5, se especifica el valor 100 en la celda actual; en caso contrario, se introduce “demasiado pequeño” (sin comillas)."
+
+#: 04060105.xhp#bm_id3155954.help.text
+msgid "<bookmark_value>NOT function</bookmark_value>"
+msgstr "<bookmark_value>NO</bookmark_value>"
+
+#: 04060105.xhp#hd_id3155954.12.help.text
+msgid "NOT"
+msgstr "NO"
+
+#: 04060105.xhp#par_id3153570.13.help.text
+msgid "<ahelp hid=\"HID_FUNC_NICHT\">Complements (inverts) a logical value.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NICHT\">Complementa (invierte) un valor lógico.</ahelp>"
+
+#: 04060105.xhp#hd_id3147372.14.help.text
+msgctxt "04060105.xhp#hd_id3147372.14.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060105.xhp#par_id3157996.15.help.text
+msgid "NOT(LogicalValue)"
+msgstr "NO(ValorLógico)"
+
+#: 04060105.xhp#par_id3148766.16.help.text
+msgid " <emph>LogicalValue</emph> is any value to be complemented."
+msgstr " <emph>ValorLógico</emph> es cualquier valor que se deba complementar."
+
+#: 04060105.xhp#hd_id3149884.17.help.text
+msgctxt "04060105.xhp#hd_id3149884.17.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060105.xhp#par_id3150132.18.help.text
+msgid " <item type=\"input\">=NOT(A)</item>. If A=TRUE then NOT(A) will evaluate FALSE."
+msgstr " <item type=\"input\">=NO(A)</item>. Si A=VERDADERO, entonces NO(A) evaluará FALSO."
+
+#: 04060105.xhp#bm_id3148394.help.text
+msgid "<bookmark_value>OR function</bookmark_value>"
+msgstr "<bookmark_value>O</bookmark_value>"
+
+#: 04060105.xhp#hd_id3148394.20.help.text
+msgid "OR"
+msgstr "O"
+
+#: 04060105.xhp#par_id3156060.61.help.text
+msgid "<ahelp hid=\"HID_FUNC_ODER\">Returns TRUE if at least one argument is TRUE.</ahelp> This function returns the value FALSE, if all the arguments have the logical value FALSE."
+msgstr "<ahelp hid=\"HID_FUNC_ODER\">Devuelve VERDADERO si al menos uno de los argumentos es VERDADERO.</ahelp> Esta función devuelve el valor FALSO si todos los argumentos tienen el valor lógico FALSO."
+
+#: 04060105.xhp#par_id3148771.62.help.text
+msgctxt "04060105.xhp#par_id3148771.62.help.text"
+msgid "The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values."
+msgstr "Los argumentos son expresiones lógicas (VERDADERO, 1<5, 2+3=7, B8<10) que devuelven valores lógicos, o matrices (A1:C3) que contienen valores lógicos."
+
+#: 04060105.xhp#par_id3153546.63.help.text
+msgctxt "04060105.xhp#par_id3153546.63.help.text"
+msgid "When a function expects a single value, but you entered a cell range, then the value from the cell range is taken that is in the same column or row as the formula."
+msgstr "Cuando una función espera un valor simple pero se ha introducido un área de celdas, se selecciona el valor del área de celdas que se encuentre en la misma fila o columna que la fórmula."
+
+#: 04060105.xhp#par_id3149027.64.help.text
+msgctxt "04060105.xhp#par_id3149027.64.help.text"
+msgid "If the entered range is outside of the current column or row of the formula, the function returns the error value #VALUE!"
+msgstr "Si el área introducida está fuera de la fila o columna actual de la fórmula, la función devuelve el valor de error #VALOR!"
+
+#: 04060105.xhp#hd_id3155517.22.help.text
+msgctxt "04060105.xhp#hd_id3155517.22.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060105.xhp#par_id3150468.23.help.text
+msgid "OR(LogicalValue1; LogicalValue2 ...LogicalValue30)"
+msgstr "O(ValorLógico1; ValorLógico2 ...ValorLógico30)"
+
+#: 04060105.xhp#par_id3155819.24.help.text
+msgid " <emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses the value from the range that is in the current column or row."
+msgstr " <emph>ValorLógico1; ValorLógico2 ...ValorLógico30</emph> son condiciones que deben verificarse. Las condiciones pueden ser VERDADERO o FALSO. Si un área se especifica como parámetro, la función utiliza el valor del área que se encuentra en la columna o fila actual."
+
+#: 04060105.xhp#hd_id3153228.25.help.text
+msgctxt "04060105.xhp#hd_id3153228.25.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060105.xhp#par_id3154870.26.help.text
+msgid "The logical values of entries 12<11; 13>22, and 45=45 are to be checked."
+msgstr "Se deben comprobar los valores lógicos de las entradas 12<11; 13>22 y 45=45."
+
+#: 04060105.xhp#par_id3155371.27.help.text
+msgid " <item type=\"input\">=OR(12<11;13>22;45=45)</item> returns TRUE."
+msgstr " <item type=\"input\">=O(12<11;13>22;45=45)</item> devuelve VERDADERO."
+
+#: 04060105.xhp#par_id3158412.59.help.text
+msgid " <item type=\"input\">=OR(FALSE;TRUE)</item> returns TRUE."
+msgstr " <item type=\"input\">=O(FALSO;VERDADERO)</item> devuelve VERDADERO."
+
+#: 04060105.xhp#bm_id3156256.help.text
+msgid "<bookmark_value>TRUE function</bookmark_value>"
+msgstr "<bookmark_value>VERDADERO</bookmark_value>"
+
+#: 04060105.xhp#hd_id3156256.38.help.text
+msgid "TRUE"
+msgstr "VERDADERO"
+
+#: 04060105.xhp#par_id3155985.39.help.text
+msgid "<ahelp hid=\"HID_FUNC_WAHR\">The logical value is set to TRUE.</ahelp> The TRUE() function does not require any arguments, and always returns the logical value TRUE."
+msgstr "<ahelp hid=\"HID_FUNC_WAHR\">El valor lógico se configura como VERDADERO.</ahelp> La función VERDADERO() no requiere ningún argumento, y siempre devuelve el valor lógico VERDADERO."
+
+#: 04060105.xhp#hd_id3153717.40.help.text
+msgctxt "04060105.xhp#hd_id3153717.40.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060105.xhp#par_id3152590.41.help.text
+msgid "TRUE()"
+msgstr "VERDADERO()"
+
+#: 04060105.xhp#hd_id3147175.42.help.text
+msgctxt "04060105.xhp#hd_id3147175.42.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060105.xhp#par_id3146148.43.help.text
+msgid "If A=TRUE and B=FALSE the following examples appear:"
+msgstr "Si A=VERDADERO y B=FALSO, aparecerán los ejemplos siguientes:"
+
+#: 04060105.xhp#par_id3083285.44.help.text
+msgid " <item type=\"input\">=AND(A;B)</item> returns FALSE"
+msgstr " <item type=\"input\">=Y(A;B)</item> devuelve FALSO"
+
+#: 04060105.xhp#par_id3083444.45.help.text
+msgid " <item type=\"input\">=OR(A;B)</item> returns TRUE"
+msgstr " <item type=\"input\">=O(A;B)</item> devuelve VERDADERO"
+
+#: 04060105.xhp#par_id3154314.46.help.text
+msgid " <item type=\"input\">=NOT(AND(A;B))</item> returns TRUE"
+msgstr " <item type=\"input\">=NO(Y(A;B))</item> devuelve VERDADERO."
+
+#: func_yearfrac.xhp#tit.help.text
+msgid "YEARFRAC"
+msgstr "FRAC.AÑO"
+
+#: func_yearfrac.xhp#bm_id3148735.help.text
+msgid "<bookmark_value>YEARFRAC function</bookmark_value>"
+msgstr "<bookmark_value>FRAC.AÑO</bookmark_value>"
+
+#: func_yearfrac.xhp#hd_id3148735.196.help.text
+msgid "<variable id=\"yearfrac\"><link href=\"text/scalc/01/func_yearfrac.xhp\">YEARFRAC</link></variable>"
+msgstr "<variable id=\"yearfrac\"><link href=\"text/scalc/01/func_yearfrac.xhp\">FRAC.AÑO</link></variable>"
+
+#: func_yearfrac.xhp#par_id3150899.197.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_YEARFRAC\"> The result is a number between 0 and 1, representing the fraction of a year between <emph>StartDate</emph> and <emph>EndDate</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_YEARFRAC\"> El resultado es un número entre 0 y 1, representando la fracción de un año entre <emph>InicioFecha</emph> y <emph>FinFecha</emph>.</ahelp>"
+
+#: func_yearfrac.xhp#hd_id3155259.198.help.text
+msgctxt "func_yearfrac.xhp#hd_id3155259.198.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: func_yearfrac.xhp#par_id3155823.199.help.text
+msgid "YEARFRAC(StartDate; EndDate; Basis)"
+msgstr "FRAC.AÑO(InicioFecha; FinFecha; Base)"
+
+#: func_yearfrac.xhp#par_id3145144.200.help.text
+msgid "<emph>StartDate</emph> and <emph>EndDate</emph> are two date values."
+msgstr "<emph>InicioFecha</emph> y <emph>FinFecha</emph> son dos valores de fecha."
+
+#: func_yearfrac.xhp#par_id3149954.201.help.text
+msgid "<emph>Basis</emph> is chosen from a list of options and indicates how the year is to be calculated."
+msgstr "<emph>Base</emph> es elegido de entre una lista de opciones y se indica como el año se habrá de calcular."
+
+#: func_yearfrac.xhp#par_id3146847.202.help.text
+msgid "Basis"
+msgstr "<emph>Base</emph>"
+
+#: func_yearfrac.xhp#par_id3155956.203.help.text
+msgid "Calculation"
+msgstr "<emph>Cálculo</emph>"
+
+#: func_yearfrac.xhp#par_id3154502.204.help.text
+msgctxt "func_yearfrac.xhp#par_id3154502.204.help.text"
+msgid "0 or missing"
+msgstr "0 ó ninguno"
+
+#: func_yearfrac.xhp#par_id3149877.205.help.text
+msgid "US method (NASD), 12 months of 30 days each"
+msgstr "Método de EE.UU. (NASD), 12 meses a 30 días cada mes"
+
+#: func_yearfrac.xhp#par_id3148766.250.help.text
+msgctxt "func_yearfrac.xhp#par_id3148766.250.help.text"
+msgid "1"
+msgstr "1"
+
+#: func_yearfrac.xhp#par_id3154326.206.help.text
+msgid "Exact number of days in months, exact number of days in year"
+msgstr "cantidad exacta de días del mes, cantidad exacta de días del año"
+
+#: func_yearfrac.xhp#par_id3145245.251.help.text
+msgctxt "func_yearfrac.xhp#par_id3145245.251.help.text"
+msgid "2"
+msgstr "2"
+
+#: func_yearfrac.xhp#par_id3155620.207.help.text
+msgid "Exact number of days in month, year has 360 days"
+msgstr "cantidad exacta de días del mes, para un año se toman 360 días."
+
+#: func_yearfrac.xhp#par_id3145297.252.help.text
+msgctxt "func_yearfrac.xhp#par_id3145297.252.help.text"
+msgid "3"
+msgstr "3"
+
+#: func_yearfrac.xhp#par_id3148394.208.help.text
+msgid "Exact number of days in month, year has 365 days"
+msgstr "cantidad exacta de días del mes, para un año se toman 365 días"
+
+#: func_yearfrac.xhp#par_id3151022.253.help.text
+msgctxt "func_yearfrac.xhp#par_id3151022.253.help.text"
+msgid "4"
+msgstr "4"
+
+#: func_yearfrac.xhp#par_id3150931.209.help.text
+msgid "European method, 12 months of 30 days each"
+msgstr "Método de Europa, 12 meses a 30 días"
+
+#: func_yearfrac.xhp#hd_id3145626.210.help.text
+msgctxt "func_yearfrac.xhp#hd_id3145626.210.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: func_yearfrac.xhp#par_id3149007.211.help.text
+msgid "What fraction of the year 2008 lies between 2008-01-01 and 2008-07-01?"
+msgstr "¿Cuál fracción del año se encuentra entre 2008-01-01 y 2008-07-01?"
+
+#: func_yearfrac.xhp#par_id3154632.212.help.text
+msgid "=YEARFRAC(\"2008-01-01\"; \"2008-07-01\";0) returns 0.50."
+msgstr "=FRAC.AÑO(\"2008-01-01\"; \"2008-07-01\";0) devuelve 0,50."
+
+#: 12090200.xhp#tit.help.text
+msgid "Refresh"
+msgstr "Actualizar"
+
+#: 12090200.xhp#hd_id3151385.1.help.text
+msgid "<link href=\"text/scalc/01/12090200.xhp\" name=\"Refresh\">Refresh</link>"
+msgstr "<link href=\"text/scalc/01/12090200.xhp\" name=\"Actualizar\">Actualizar</link>"
+
+#: 12090200.xhp#par_id3149456.2.help.text
+#, fuzzy
+msgid "<ahelp hid=\".uno:RecalcPivotTable\">Updates the pivot table.</ahelp>"
+msgstr "<ahelp hid=\".uno:RecalcPivotTable\">Actualiza la tabla del Piloto de datos.</ahelp>"
+
+#: 12090200.xhp#par_id3150400.3.help.text
+#, fuzzy
+msgid "After you import an Excel spreadsheet that contains a pivot table, click in the table, and then choose <emph>Data - Pivot Table - Refresh</emph>."
+msgstr "Después de importar una hoja de cálculo de Excel que contenga una tabla dinámica, pulse en la tabla y seleccione <emph>Datos - Piloto de datos - Actualizar</emph>."
+
+#: 05020000.xhp#tit.help.text
+msgctxt "05020000.xhp#tit.help.text"
+msgid "Format Cells"
+msgstr "Formato de celdas"
+
+#: 05020000.xhp#bm_id3148663.help.text
+msgid "<bookmark_value>cell attributes</bookmark_value><bookmark_value>attributes;cells</bookmark_value><bookmark_value>formatting;cells</bookmark_value><bookmark_value>cells;formatting dialog</bookmark_value>"
+msgstr "<bookmark_value>atributos de celda</bookmark_value><bookmark_value>atributos;celdas</bookmark_value><bookmark_value>dar formato;celdas</bookmark_value><bookmark_value>celdas;cuadro de diálogo de formato</bookmark_value>"
+
+#: 05020000.xhp#hd_id3148663.1.help.text
+msgctxt "05020000.xhp#hd_id3148663.1.help.text"
+msgid "Format Cells"
+msgstr "Formateado de celdas"
+
+#: 05020000.xhp#par_id3150448.2.help.text
+msgid "<variable id=\"zellattributetext\"><ahelp hid=\".uno:FormatCellDialog\">Allows you to specify a variety of formatting options and to apply attributes to the selected cells.</ahelp></variable>"
+msgstr "<variable id=\"zellattributetext\"><ahelp hid=\".uno:FormatCellDialog\">Permite especificar diversas opciones de formato y aplicar atributos a las celdas seleccionadas.</ahelp></variable>"
+
+#: 05020000.xhp#hd_id3145785.3.help.text
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Números\">Números</link>"
+
+#: 05020000.xhp#hd_id3146119.4.help.text
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>"
+msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Fuente\">Fuente</link>"
+
+#: 12040300.xhp#tit.help.text
+msgctxt "12040300.xhp#tit.help.text"
+msgid "Advanced Filter"
+msgstr "Filtro especial"
+
+#: 12040300.xhp#hd_id3158394.1.help.text
+msgctxt "12040300.xhp#hd_id3158394.1.help.text"
+msgid "Advanced Filter"
+msgstr "Filtro especial"
+
+#: 12040300.xhp#par_id3156281.2.help.text
+msgid "<variable id=\"spezialfilter\"><ahelp hid=\".uno:DataFilterSpecialFilter\">Defines an advanced filter.</ahelp></variable>"
+msgstr "<variable id=\"spezialfilter\"><ahelp hid=\".uno:DataFilterSpecialFilter\">Define un filtro que puede combinar hasta ocho criterios de filtro.</ahelp></variable>"
+
+#: 12040300.xhp#par_idN105EB.help.text
+msgid "<embedvar href=\"text/scalc/guide/filters.xhp#filters\"/>"
+msgstr "<embedvar href=\"text/scalc/guide/filters.xhp#filters\"/>"
+
+#: 12040300.xhp#hd_id3153771.25.help.text
+msgid "Read filter criteria from"
+msgstr "Leer criterios del filtro en"
+
+#: 12040300.xhp#par_id3147426.26.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_CRITERIA_AREA\">Select the named range, or enter the cell range that contains the filter criteria that you want to use.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_CRITERIA_AREA\">Seleccione el área con nombre o escriba el área que contiene los criterios de filtro que desea utilizar.</ahelp>"
+
+#: 12040300.xhp#hd_id3153188.27.help.text
+msgctxt "12040300.xhp#hd_id3153188.27.help.text"
+msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
+msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"Opciones >>\">Opciones >></link>"
+
+#: func_second.xhp#tit.help.text
+msgid "SECOND "
+msgstr "SEGUNDO"
+
+#: func_second.xhp#bm_id3159390.help.text
+msgid "<bookmark_value>SECOND function</bookmark_value>"
+msgstr "<bookmark_value>SEGUNDO</bookmark_value>"
+
+#: func_second.xhp#hd_id3159390.86.help.text
+msgid "<variable id=\"second\"><link href=\"text/scalc/01/func_second.xhp\">SECOND</link></variable>"
+msgstr "<variable id=\"second\"><link href=\"text/scalc/01/func_second.xhp\">SEGUNDO</link></variable>"
+
+#: func_second.xhp#par_id3148974.87.help.text
+msgid "<ahelp hid=\"HID_FUNC_SEKUNDE\">Returns the second for the given time value.</ahelp> The second is given as an integer between 0 and 59."
+msgstr "<ahelp hid=\"HID_FUNC_SEKUNDE\">Devuelve el segundo para el valor de tiempo determinado.</ahelp> El segundo se devuelve como un entero entre 0 y 59."
+
+#: func_second.xhp#hd_id3154362.88.help.text
+msgctxt "func_second.xhp#hd_id3154362.88.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: func_second.xhp#par_id3148407.89.help.text
+msgid "SECOND(Number)"
+msgstr "SEGUNDO(número)"
+
+#: func_second.xhp#par_id3155904.90.help.text
+msgid "<emph>Number</emph>, as a time value, is a decimal, for which the second is to be returned."
+msgstr "El <emph>número</emph>, como valor temporal, es un número decimal en función del cual debe calcularse el número de segundos."
+
+#: func_second.xhp#hd_id3149992.91.help.text
+msgctxt "func_second.xhp#hd_id3149992.91.help.text"
+msgid "Examples"
+msgstr "Ejemplos"
+
+#: func_second.xhp#par_id3153350.93.help.text
+msgid "<item type=\"input\">=SECOND(NOW())</item> returns the current second"
+msgstr "<item type=\"input\">=SEGUNDO(AHORA())</item> devuelve el segundo actual."
+
+#: func_second.xhp#par_id3150831.94.help.text
+msgid "<item type=\"input\">=SECOND(C4)</item> returns 17 if contents of C4 = <item type=\"input\">12:20:17</item>."
+msgstr "<item type=\"input\">=SEGUNDO(C4)</item> devuelve 17 si el contenido de C4 = <item type=\"input\">12:20:17</item>."
+
+#: 05100100.xhp#tit.help.text
+msgctxt "05100100.xhp#tit.help.text"
+msgid "Merge Cells"
+msgstr "Unir celdas"
+
+#: 05100100.xhp#hd_id3154765.help.text
+msgctxt "05100100.xhp#hd_id3154765.help.text"
+msgid "Merge Cells"
+msgstr "Unir celdas"
+
+#: 05100100.xhp#par_id3147406.help.text
+msgid "<ahelp hid=\".\">Combines the contents of the selected cells into a single cell.</ahelp>"
+msgstr ""
+
+#: 05100100.xhp#par_id3154351.help.text
+#, fuzzy
+msgid "Choose <emph>Format - Merge Cells - Merge Cells</emph>"
+msgstr "Elija <emph>Formato - Combinar celdas - Dividir celdas</emph>"
+
+#: func_networkdays.xhp#tit.help.text
+msgid "NETWORKDAYS"
+msgstr "DIAS.LAB"
+
+#: func_networkdays.xhp#bm_id3151254.help.text
+msgid "<bookmark_value>NETWORKDAYS function</bookmark_value>"
+msgstr "<bookmark_value>DIAS.LAB</bookmark_value>"
+
+#: func_networkdays.xhp#hd_id3151254.240.help.text
+msgid "<variable id=\"networkdays\"><link href=\"text/scalc/01/func_networkdays.xhp\">NETWORKDAYS</link></variable>"
+msgstr "<variable id=\"networkdays\"><link href=\"text/scalc/01/func_networkdays.xhp\">DIAS.LAB</link></variable>"
+
+#: func_networkdays.xhp#par_id3153788.241.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_NETWORKDAYS\">Returns the number of workdays between a <emph>start date and an end date</emph>. Holidays can be deducted.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_NETWORKDAYS\">Devuelve el número de días laborales entre una <emph>fecha de inicio y un final de fecha</emph>. Las vacaciones pueden ser deducidas.</ahelp>"
+
+#: func_networkdays.xhp#hd_id3148677.242.help.text
+msgctxt "func_networkdays.xhp#hd_id3148677.242.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: func_networkdays.xhp#par_id3145775.243.help.text
+msgid "NETWORKDAYS(StartDate; EndDate; Holidays)"
+msgstr "DIAS.LAB(FechaInicio; FechaFin; Vacaciones)"
+
+#: func_networkdays.xhp#par_id3153885.244.help.text
+msgctxt "func_networkdays.xhp#par_id3153885.244.help.text"
+msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation."
+msgstr "<emph>InicioFecha</emph> es la fecha a partir de cuando el cálculo se lleva a cabo. Si la fecha de inicio es una día laboral, el día se incluye en el cálculo."
+
+#: func_networkdays.xhp#par_id3151110.245.help.text
+msgid "<emph>EndDate</emph> is the date up until when the calculation is carried out. If the end date is a workday, the day is included in the calculation."
+msgstr "<emph>FinFecha</emph> es la fecha hasta cuando el cálculo se lleva a cabo. Si la fecha final es un trabajo, el día se incluye en el cálculo."
+
+#: func_networkdays.xhp#par_id3154115.246.help.text
+msgid "<emph>Holidays</emph> is an optional list of holidays. These are non-working days. Enter a cell range in which the holidays are listed individually."
+msgstr "<emph>Vacaciones</emph> es una lista opcional de vacaciones. Estos días no son laborales. Introduzca un rango de fecha en el que las vacaciones son listadas individualmente."
+
+#: func_networkdays.xhp#hd_id3146902.247.help.text
+msgctxt "func_networkdays.xhp#hd_id3146902.247.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: func_networkdays.xhp#par_id3154661.248.help.text
+msgid "How many workdays fall between 2001-12-15 and 2002-01-15? The start date is located in C3 and the end date in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
+msgstr "¿Cuántos días no laborales hay entre 2001-12-15 y 2002-01-15? La fecha de inicio esta ubicada en C3 y la fecha final en D3. Las celdas F3 a J3 contienen los siguientes días festivos Navidades y Año Nuevo: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
+
+#: func_networkdays.xhp#par_id3147328.249.help.text
+msgid "=NETWORKDAYS(C3;D3;F3:J3) returns 17 workdays."
+msgstr "=DIAS.LAB(C3;D3;F3:J3) devuelve 17 días laborales."
+
+#: 04060104.xhp#tit.help.text
+msgctxt "04060104.xhp#tit.help.text"
+msgid "Information Functions"
+msgstr "Funciones de información"
+
+#: 04060104.xhp#bm_id3147247.help.text
+msgid "<bookmark_value>information functions</bookmark_value><bookmark_value>Function Wizard; information</bookmark_value><bookmark_value>functions; information functions</bookmark_value>"
+msgstr "<bookmark_value>funciones de información</bookmark_value><bookmark_value>Asistente para funciones;información</bookmark_value><bookmark_value>funciones;funciones de información</bookmark_value>"
+
+#: 04060104.xhp#hd_id3147247.1.help.text
+msgctxt "04060104.xhp#hd_id3147247.1.help.text"
+msgid "Information Functions"
+msgstr "Funciones de información"
+
+#: 04060104.xhp#par_id3147499.2.help.text
+msgid "<variable id=\"informationtext\">This category contains the <emph>Information</emph> functions. </variable>"
+msgstr "<variable id=\"informationtext\">Esta categoría contiene las funciones de <emph>Información</emph>. </variable>"
+
+#: 04060104.xhp#par_id3159128.3.help.text
+msgid "The data in the following table serves as the basis for some of the examples in the function descriptions:"
+msgstr "Los datos de la tabla siguiente se utilizan en diversos ejemplos dentro de las descripciones de las funciones:"
+
+#: 04060104.xhp#par_id3146885.4.help.text
+msgctxt "04060104.xhp#par_id3146885.4.help.text"
+msgid "C"
+msgstr "<emph>C</emph>"
+
+#: 04060104.xhp#par_id3149944.5.help.text
+msgctxt "04060104.xhp#par_id3149944.5.help.text"
+msgid "D"
+msgstr "<emph>D</emph>"
+
+#: 04060104.xhp#par_id3150457.6.help.text
+msgctxt "04060104.xhp#par_id3150457.6.help.text"
+msgid "<emph>2</emph>"
+msgstr "<emph>2</emph>"
+
+#: 04060104.xhp#par_id3150024.7.help.text
+msgid "x <item type=\"input\">value</item>"
+msgstr "x <item type=\"input\">valor</item>"
+
+#: 04060104.xhp#par_id3148725.8.help.text
+msgid "y <item type=\"input\">value</item>"
+msgstr "y <item type=\"input\">valor</item>"
+
+#: 04060104.xhp#par_id3150480.9.help.text
+msgctxt "04060104.xhp#par_id3150480.9.help.text"
+msgid "<emph>3</emph>"
+msgstr "<emph>3</emph>"
+
+#: 04060104.xhp#par_id3148440.10.help.text
+msgid "<item type=\"input\">-5</item>"
+msgstr "<item type=\"input\">-5</item>"
+
+#: 04060104.xhp#par_id3148888.11.help.text
+msgid "<item type=\"input\">-3</item>"
+msgstr "<item type=\"input\">-3</item>"
+
+#: 04060104.xhp#par_id3153034.12.help.text
+msgctxt "04060104.xhp#par_id3153034.12.help.text"
+msgid "<emph>4</emph>"
+msgstr "<emph>4</emph>"
+
+#: 04060104.xhp#par_id3150139.13.help.text
+msgid "<item type=\"input\">-2</item>"
+msgstr "<item type=\"input\">-2</item>"
+
+#: 04060104.xhp#par_id3149542.14.help.text
+msgctxt "04060104.xhp#par_id3149542.14.help.text"
+msgid "<item type=\"input\">0</item>"
+msgstr "<item type=\"input\">0</item>"
+
+#: 04060104.xhp#par_id3149188.15.help.text
+msgctxt "04060104.xhp#par_id3149188.15.help.text"
+msgid "<emph>5</emph>"
+msgstr "<emph>5</emph>"
+
+#: 04060104.xhp#par_id3153329.16.help.text
+msgid "<item type=\"input\">-1</item>"
+msgstr "<item type=\"input\">-1</item>"
+
+#: 04060104.xhp#par_id3155257.17.help.text
+msgctxt "04060104.xhp#par_id3155257.17.help.text"
+msgid "<item type=\"input\">1</item>"
+msgstr "<item type=\"input\">1</item>"
+
+#: 04060104.xhp#par_id3145142.18.help.text
+msgctxt "04060104.xhp#par_id3145142.18.help.text"
+msgid "<emph>6</emph>"
+msgstr "<emph>6</emph>"
+
+#: 04060104.xhp#par_id3149956.19.help.text
+msgctxt "04060104.xhp#par_id3149956.19.help.text"
+msgid "<item type=\"input\">0</item>"
+msgstr "<item type=\"input\">0</item>"
+
+#: 04060104.xhp#par_id3145594.20.help.text
+msgctxt "04060104.xhp#par_id3145594.20.help.text"
+msgid "<item type=\"input\">3</item>"
+msgstr "<item type=\"input\">3</item>"
+
+#: 04060104.xhp#par_id3153113.21.help.text
+msgctxt "04060104.xhp#par_id3153113.21.help.text"
+msgid "<emph>7</emph>"
+msgstr "<emph>7</emph>"
+
+#: 04060104.xhp#par_id3148573.22.help.text
+msgctxt "04060104.xhp#par_id3148573.22.help.text"
+msgid "<item type=\"input\">2</item>"
+msgstr "<item type=\"input\">2</item>"
+
+#: 04060104.xhp#par_id3145166.23.help.text
+msgctxt "04060104.xhp#par_id3145166.23.help.text"
+msgid "<item type=\"input\">4</item>"
+msgstr "<item type=\"input\">4</item>"
+
+#: 04060104.xhp#par_id3157998.24.help.text
+msgctxt "04060104.xhp#par_id3157998.24.help.text"
+msgid "<emph>8</emph>"
+msgstr "<emph>8</emph>"
+
+#: 04060104.xhp#par_id3150018.25.help.text
+msgctxt "04060104.xhp#par_id3150018.25.help.text"
+msgid "<item type=\"input\">4</item>"
+msgstr "<item type=\"input\">4</item>"
+
+#: 04060104.xhp#par_id3150129.26.help.text
+msgctxt "04060104.xhp#par_id3150129.26.help.text"
+msgid "<item type=\"input\">6</item>"
+msgstr "<item type=\"input\">6</item>"
+
+#: 04060104.xhp#par_id3145245.27.help.text
+msgctxt "04060104.xhp#par_id3145245.27.help.text"
+msgid "<emph>9</emph>"
+msgstr "<emph>9</emph>"
+
+#: 04060104.xhp#par_id3148389.28.help.text
+msgctxt "04060104.xhp#par_id3148389.28.help.text"
+msgid "<item type=\"input\">6</item>"
+msgstr "<item type=\"input\">6</item>"
+
+#: 04060104.xhp#par_id3156068.29.help.text
+msgctxt "04060104.xhp#par_id3156068.29.help.text"
+msgid "<item type=\"input\">8</item>"
+msgstr "<item type=\"input\">8</item>"
+
+#: 04060104.xhp#bm_id3691824.help.text
+msgid "<bookmark_value>INFO function</bookmark_value>"
+msgstr "<bookmark_value>Función INFO</bookmark_value>"
+
+#: 04060104.xhp#hd_id5787224.help.text
+msgid "INFO"
+msgstr "INFO"
+
+#: 04060104.xhp#par_id1507309.help.text
+msgid "Returns specific information about the current working environment. The function receives a single text argument and returns data depending on that parameter."
+msgstr "Devuelve información específica sobre el entorno de trabajo actual. La función recibe un argumento de texto único y devuelve datos según dicho parámetro."
+
+#: 04060104.xhp#hd_id7693411.help.text
+msgctxt "04060104.xhp#hd_id7693411.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060104.xhp#par_id3928952.help.text
+msgid "INFO(\"Type\")"
+msgstr "INFO(\"Texto\")"
+
+#: 04060104.xhp#par_id5206762.help.text
+msgid "The following table lists the values for the text parameter <item type=\"literal\">Type</item> and the return values of the INFO function."
+msgstr "La siguiente tabla, lista los valores para el parámetro de texto \"<item type=\"literal\">Tipo</item>\" y los valores que de vuelve la función INFO."
+
+#: 04060104.xhp#par_id5735953.help.text
+msgid "Value for \"Type\""
+msgstr "Valor para \"Tipo\""
+
+#: 04060104.xhp#par_id8360850.help.text
+#, fuzzy
+msgctxt "04060104.xhp#par_id8360850.help.text"
+msgid "Return value"
+msgstr "Valor de devolución"
+
+#: 04060104.xhp#par_id9648731.help.text
+msgid "\"osversion\""
+msgstr "\"osversion\""
+
+#: 04060104.xhp#par_id908841.help.text
+msgid "Always \"Windows (32-bit) NT 5.01\", for compatibility reasons"
+msgstr "Siempre \"Windows (32-bit) NT 5.01\", por motivos de compatibilidad"
+
+#: 04060104.xhp#par_id8193914.help.text
+msgid "\"system\""
+msgstr "\"system\""
+
+#: 04060104.xhp#par_id9841608.help.text
+msgid "The type of the operating system. <br/>\"WNT\" for Microsoft Windows <br/>\"LINUX\" for Linux <br/>\"SOLARIS\" for Solaris"
+msgstr "El tipo de sistema operativo. <br/>\"WNT\" (Microsoft Windows) <br/>\"LINUX\" (Linux) <br/>\"SOLARIS\" (Solaris)"
+
+#: 04060104.xhp#par_id2701803.help.text
+msgid "\"release\""
+msgstr "\"release\""
+
+#: 04060104.xhp#par_id2136295.help.text
+msgid "The product release identifier, for example \"300m25(Build:9876)\""
+msgstr "El identificador de lanzamiento del producto, por ejemplo \"300m25(Build:9876)\""
+
+#: 04060104.xhp#par_id9200109.help.text
+msgid "\"numfile\""
+msgstr "\"numfile\""
+
+#: 04060104.xhp#par_id4186223.help.text
+msgid "Always 1, for compatibility reasons"
+msgstr "Siempre 1, por motivos de compatibilidad"
+
+#: 04060104.xhp#par_id5766472.help.text
+msgid "\"recalc\""
+msgstr "\"recalc\""
+
+#: 04060104.xhp#par_id1491134.help.text
+msgid "Current formula recalculation mode, either \"Automatic\" or \"Manual\" (localized into %PRODUCTNAME language)"
+msgstr "El modo de recálculo de formulas actual es \"Automático\" o \"Manual\"."
+
+#: 04060104.xhp#par_id1161534.help.text
+msgid "Other spreadsheet applications may accept localized values for the <item type=\"literal\">Type</item> parameter, but %PRODUCTNAME Calc will only accept the English values."
+msgstr "Otras aplicaciones de hoja de calculo pueden aceptar valores localizados para el parametro <item type=\"literal\">Tipo</item>, pero %PRODUCTNAME Calc solo aceptará valores en ingles."
+
+#: 04060104.xhp#hd_id5459456.help.text
+msgctxt "04060104.xhp#hd_id5459456.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060104.xhp#par_id3994567.help.text
+msgid "<item type=\"input\">=INFO(\"release\")</item> returns the product release number of the %PRODUCTNAME in use."
+msgstr "<item type=\"input\">=INFO(\"release\")</item> devuelve el producto de numero de lanzamiento que %PRODUCTNAME esta."
+
+#: 04060104.xhp#par_id2873622.help.text
+msgid "<item type=\"input\">=INFO(D5)</item> with cell <item type=\"literal\">D5</item> containing a text string <item type=\"literal\">system</item> returns the operation system type."
+msgstr "<item type=\"input\">=INFO(D5)</item> con la celda<item type=\"literal\">D5</item> conteniendo una cadena de texto <item type=\"literal\">system</item> devuelve el tipo de sistema operativo."
+
+#: 04060104.xhp#bm_id3155625.help.text
+msgid "<bookmark_value>CURRENT function</bookmark_value>"
+msgstr "<bookmark_value>ACTUAL</bookmark_value>"
+
+#: 04060104.xhp#hd_id3155625.30.help.text
+msgid "CURRENT"
+msgstr "ACTUAL"
+
+#: 04060104.xhp#par_id3157975.31.help.text
+msgid "<ahelp hid=\"HID_FUNC_AKTUELL\">This function returns the result to date of evaluating the formula of which it is a part (in other words the result as far as that evaluation has got). Its main use is together with the STYLE() function to apply selected styles to a cell depending on the cell contents.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_AKTUELL\">Este función devuelve el resultado hasta la fecha de la evaluación de la formula, de lo cual es parte (es decir, el resultado hasta el momento de la evaluación). Su uso principal, en conjunto con el función ESTILO(), es de aplicar estilos a una celda dependiendo en los contenidos de la celda.</ahelp>"
+
+#: 04060104.xhp#hd_id3148880.32.help.text
+msgctxt "04060104.xhp#hd_id3148880.32.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060104.xhp#par_id3150930.33.help.text
+msgid "CURRENT()"
+msgstr "ACTUAL()."
+
+#: 04060104.xhp#hd_id3145629.34.help.text
+msgctxt "04060104.xhp#hd_id3145629.34.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060104.xhp#par_id5919064.help.text
+msgid "<item type=\"input\">=1+2+CURRENT()</item>"
+msgstr "<item type=\"input\">=1+2+ACTUAL()</item>"
+
+#: 04060104.xhp#par_id8751792.help.text
+msgid "The example returns 6. The formula is calculated from left to right as: 1 + 2 equals 3, giving the result to date when CURRENT() is encountered; CURRENT() therefore yields 3, which is added to the original 3 to give 6."
+msgstr "El ejemplo devuelve 6. La formula está calculado de izquierda a derecha así: 1 + 2 igual a 3, dando el resultado hasta la fecha cuando ACTUAL() se encuentro; ACTUAL(), por lo tanto, devuelve 3, lo cual está agregado a la original 3 para sumar a 6. original 3 to give 6."
+
+#: 04060104.xhp#par_id5863826.help.text
+msgid "<item type=\"input\">=A2+B2+STYLE(IF(CURRENT()>10;”Red”;”Default”))</item>"
+msgstr "<item type=\"input\">=A2+B2+ESTILO(SI(ACTUAL()>10;”Rojo”;”Predeterminado”))</item>"
+
+#: 04060104.xhp#par_id7463911.help.text
+msgid "The example returns A2 + B2 (STYLE returns 0 here). If this sum is greater than 10, the style Red is applied to the cell. See the <emph>STYLE</emph> function for more explanation."
+msgstr "El ejemplo devuelve A2 + B2 (ESTILO devuelve 0 aquí). Si esta suma es mayor que 10, el estilo Rojo es aplicado a la celda. Ver la función de <emph>ESTILO</emph> para más explicación."
+
+#: 04060104.xhp#par_id7318643.help.text
+msgid "<item type=\"input\">=\"choo\"&CURRENT()</item>"
+msgstr "<item type=\"input\">=\"choo\"&ACTUAL()</item>"
+
+#: 04060104.xhp#par_id6019165.help.text
+msgid "The example returns choochoo."
+msgstr "El ejemplo devuelve choochoo."
+
+#: 04060104.xhp#bm_id3150688.help.text
+msgid "<bookmark_value>FORMULA function</bookmark_value><bookmark_value>formula cells;displaying formulas in other cells</bookmark_value><bookmark_value>displaying;formulas at any position</bookmark_value>"
+msgstr "<bookmark_value>FÓRMULA</bookmark_value><bookmark_value>celdas de fórmula;mostrar fórmulas en otras celdas</bookmark_value><bookmark_value>mostrar;formulas en cualquier posición</bookmark_value>"
+
+#: 04060104.xhp#hd_id3150688.147.help.text
+msgid "FORMULA"
+msgstr "FORMULA"
+
+#: 04060104.xhp#par_id3158417.148.help.text
+msgid "<ahelp hid=\"HID_FUNC_FORMEL\">Displays the formula of a formula cell as a text string.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_FORMEL\">Muestra la fórmula de una celda de fórmula como cadena de texto.</ahelp>"
+
+#: 04060104.xhp#hd_id3154954.149.help.text
+msgctxt "04060104.xhp#hd_id3154954.149.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060104.xhp#par_id3147535.150.help.text
+msgid "FORMULA(Reference)"
+msgstr "FORMULA(Referencia)"
+
+#: 04060104.xhp#par_id3014313.help.text
+msgid "<emph>Reference</emph> is a reference to a cell containing a formula."
+msgstr "<emph>Referencia</emph> es una referencia a una celda que contiene una formula."
+
+#: 04060104.xhp#par_id8857081.help.text
+msgid "An invalid reference or a reference to a cell with no formula results in the error value #N/A."
+msgstr "Una referencia no válida o una referencia a una celda sin fórmula genera el valor de error #N/D."
+
+#: 04060104.xhp#hd_id3152820.151.help.text
+msgctxt "04060104.xhp#hd_id3152820.151.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060104.xhp#par_id3153179.152.help.text
+msgid "If cell A8 contains the formula <item type=\"input\">=SUM(1;2;3)</item> then"
+msgstr "Si la celda A8 contiene la formula <item type=\"input\">=SUMA(1;2;3)</item> entonces "
+
+#: 04060104.xhp#par_id3153923.153.help.text
+msgid "<item type=\"input\">=FORMULA(A8)</item> returns the text =SUM(1;2;3)."
+msgstr "<item type=\"input\">=FORMULA(A8)</item> devuelve el texto =SUMA(1;2;3)."
+
+#: 04060104.xhp#bm_id3155409.help.text
+msgid "<bookmark_value>ISREF function</bookmark_value><bookmark_value>references;testing cell contents</bookmark_value><bookmark_value>cell contents;testing for references</bookmark_value>"
+msgstr "<bookmark_value>ESREF</bookmark_value><bookmark_value>referencias;verificación del contenido de celdas</bookmark_value><bookmark_value>contenido de celdas;verificar referencias</bookmark_value>"
+
+#: 04060104.xhp#hd_id3155409.37.help.text
+msgid "ISREF"
+msgstr "ESREF"
+
+#: 04060104.xhp#par_id3153723.38.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTBEZUG\">Tests if the argument is a reference.</ahelp> Returns TRUE if the argument is a reference, returns FALSE otherwise. When given a reference this function does not examine the value being referenced."
+msgstr "<ahelp hid=\"HID_FUNC_ISTBEZUG\">Verifica si el argumento es una referencia.</ahelp> Retorno TRUE si el argumento es una referencia, sino retorno FALSE. Cuando recibe una referencia este función no examina el valor de referencia."
+
+#: 04060104.xhp#hd_id3147175.39.help.text
+msgctxt "04060104.xhp#hd_id3147175.39.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060104.xhp#par_id3149821.40.help.text
+msgid "ISREF(Value)"
+msgstr "ISREF(Valor)"
+
+#: 04060104.xhp#par_id3146152.41.help.text
+msgid "<emph>Value</emph> is the value to be tested, to determine whether it is a reference."
+msgstr "<emph>valor</emph> es el valor que se debe verificar para determinar si es una referencia."
+
+#: 04060104.xhp#hd_id3083448.42.help.text
+msgctxt "04060104.xhp#hd_id3083448.42.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060104.xhp#par_id3154317.43.help.text
+msgid "<item type=\"input\">=ISREF(C5)</item> returns the result TRUE because C5 is a valid reference."
+msgstr "<item type=\"input\">=ESREF(C5)</item> devuelve el resultado VERDADERO por que C5 es una referencia valido."
+
+#: 04060104.xhp#par_id9728072.help.text
+msgid "<item type=\"input\">=ISREF(\"abcdef\")</item> returns always FALSE because a text can never be a reference."
+msgstr "<item type=\"input\">=ESREF(\"abcdef\")</item> siempre devuelve FALSO por que un texto nunca puede ser una referencia."
+
+#: 04060104.xhp#par_id2131544.help.text
+msgid "<item type=\"input\">=ISREF(4)</item> returns FALSE."
+msgstr "<item type=\"input\">=ESREF(4)</item> devuelve FALSO."
+
+#: 04060104.xhp#par_id4295480.help.text
+msgid "<item type=\"input\">=ISREF(INDIRECT(\"A6\"))</item> returns TRUE, because INDIRECT is a function that returns a reference."
+msgstr "<item type=\"input\">=ESREF(INDIRECTO(\"A6\"))</item> devuelve VERDADERO, por que INDIRECTO es una función que devuelve una referencia."
+
+#: 04060104.xhp#par_id3626819.help.text
+msgid "<item type=\"input\">=ISREF(ADDRESS(1; 1; 2;\"Sheet2\"))</item> returns FALSE, because ADDRESS is a function that returns a text, although it looks like a reference."
+msgstr "<item type=\"input\">=ISREF(ADDRESS(1; 1; 2;\"Sheet2\"))</item> devuelve FALSO, porque DIRECCIÓN es una función que devuelve texto, aunque parece como una referencia."
+
+#: 04060104.xhp#bm_id3154812.help.text
+msgid "<bookmark_value>ISERR function</bookmark_value><bookmark_value>error codes;controlling</bookmark_value>"
+msgstr "<bookmark_value>ESERR</bookmark_value><bookmark_value>códigos de error;controlar</bookmark_value>"
+
+#: 04060104.xhp#hd_id3154812.45.help.text
+msgid "ISERR"
+msgstr "ESERR"
+
+#: 04060104.xhp#par_id3149282.46.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTFEHL\">Tests for error conditions, except the #N/A error value, and returns TRUE or FALSE.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISTFEHL\">Comprueba condiciones de error, salvo el valor de error #N/D, y devuelve TRUE o FALSE.</ahelp>"
+
+#: 04060104.xhp#hd_id3149450.47.help.text
+msgctxt "04060104.xhp#hd_id3149450.47.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060104.xhp#par_id3156312.48.help.text
+msgid "ISERR(Value)"
+msgstr "ESERR(Valor)"
+
+#: 04060104.xhp#par_id3146857.49.help.text
+msgid "<emph>Value</emph> is any value or expression which is tested to see whether an error value other than #N/A is present."
+msgstr "<emph>Valor</emph> consiste en cualquier valor o expresión que se comprueba para ver si existe un valor de error distinto de #N/D."
+
+#: 04060104.xhp#hd_id3153212.50.help.text
+msgctxt "04060104.xhp#hd_id3153212.50.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060104.xhp#par_id3153276.51.help.text
+msgid "<item type=\"input\">=ISERR(C8)</item> where cell C8 contains <item type=\"input\">=1/0</item> returns TRUE, because 1/0 is an error."
+msgstr "<item type=\"input\">=ESERR(C8)</item> donde celda C8 contiene <item type=\"input\">=1/0</item> devuelve VERDADERO, porque 1/0 es un error."
+
+#: 04060104.xhp#par_id8456984.help.text
+msgid "<item type=\"input\">=ISERR(C9)</item> where cell C9 contains <item type=\"input\">=NA()</item> returns FALSE, because ISERR() ignores the #N/A error."
+msgstr "<item type=\"input\">=ISERR(C9)</item> donde celda C9 contiene <item type=\"input\">=NA()</item> devuelve FALSO, porque ESERR() ignora el error #N/D."
+
+#: 04060104.xhp#bm_id3147081.help.text
+msgid "<bookmark_value>ISERROR function</bookmark_value><bookmark_value>recognizing;general errors</bookmark_value>"
+msgstr "<bookmark_value>ESERROR</bookmark_value><bookmark_value>reconocer;errores generales</bookmark_value>"
+
+#: 04060104.xhp#hd_id3147081.53.help.text
+msgid "ISERROR"
+msgstr "ESERROR"
+
+#: 04060104.xhp#par_id3156316.54.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTFEHLER\">Tests for error conditions, including the #N/A error value, and returns TRUE or FALSE.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISTFEHLER\">Comprueba condiciones de error, incluido el valor de error #N/A, y devuelve TRUE o FALSE.</ahelp>"
+
+#: 04060104.xhp#hd_id3147569.55.help.text
+msgctxt "04060104.xhp#hd_id3147569.55.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060104.xhp#par_id3153155.56.help.text
+msgid "ISERROR(Value)"
+msgstr "ESERROR(Valor)"
+
+#: 04060104.xhp#par_id3154047.57.help.text
+msgid "<emph>Value</emph> is or refers to the value to be tested. ISERROR() returns TRUE if there is an error and FALSE if not."
+msgstr "<emph>Valor</emph> es o se refiere al valor que debe comprobarse. ESERROR() devuelve TRUE si hay un error y FALSE si no lo hay."
+
+#: 04060104.xhp#hd_id3155994.58.help.text
+msgctxt "04060104.xhp#hd_id3155994.58.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060104.xhp#par_id3150256.59.help.text
+msgid "<item type=\"input\">=ISERROR(C8)</item> where cell C8 contains <item type=\"input\">=1/0</item> returns TRUE, because 1/0 is an error."
+msgstr "<item type=\"input\">=ESERROR(C8)</item> donde celda C8 contiene <item type=\"input\">=1/0</item> devuelve VERDADERO, porque 1/0 es un error."
+
+#: 04060104.xhp#par_id1889095.help.text
+msgid "<item type=\"input\">=ISERROR(C9)</item> where cell C9 contains <item type=\"input\">=NA()</item> returns TRUE."
+msgstr "<item type=\"input\">=ESERROR(C9)</item> donde celda C9 contiene <item type=\"input\">=NA()</item> devuelve VERDADERO."
+
+#: 04060104.xhp#bm_id3153618.help.text
+msgid "<bookmark_value>ISFORMULA function</bookmark_value><bookmark_value>recognizing formula cells</bookmark_value><bookmark_value>formula cells;recognizing</bookmark_value>"
+msgstr "<bookmark_value>ESFÓRMULA</bookmark_value><bookmark_value>reconocer celdas de fórmula</bookmark_value><bookmark_value>celdas de fórmula;reconocer</bookmark_value>"
+
+#: 04060104.xhp#hd_id3153618.61.help.text
+msgid "ISFORMULA"
+msgstr "ESFÓRMULA"
+
+#: 04060104.xhp#par_id3149138.62.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTFORMEL\">Returns TRUE if a cell is a formula cell.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISTFORMEL\">Devuelve VERDADERO si una celda tiene fórmula.</ahelp>"
+
+#: 04060104.xhp#hd_id3155100.63.help.text
+msgctxt "04060104.xhp#hd_id3155100.63.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060104.xhp#par_id3143230.64.help.text
+msgid "ISFORMULA(Reference)"
+msgstr "ESFORMULA(Referencia)"
+
+#: 04060104.xhp#par_id3150150.65.help.text
+msgid "<emph>Reference</emph> indicates the reference to a cell in which a test will be performed to determine if it contains a formula."
+msgstr "<emph>Referencia</emph> indica la referencia a una celda en la que se realizará una comprobación para determinar si contiene una fórmula."
+
+#: 04060104.xhp#hd_id3147491.66.help.text
+msgctxt "04060104.xhp#hd_id3147491.66.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060104.xhp#par_id3159182.67.help.text
+msgid "<item type=\"input\">=ISFORMULA(C4)</item> returns FALSE if the cell C4 contains the number <item type=\"input\">5</item>."
+msgstr "<item type=\"input\">=ESFORMULA(C4)</item> regresa FALSO si la celda C4 contiene el número <item type=\"input\">5</item>."
+
+#: 04060104.xhp#bm_id3149760.help.text
+msgid "<bookmark_value>ISEVEN_ADD function</bookmark_value>"
+msgstr "<bookmark_value>ESPAR_ADD</bookmark_value>"
+
+#: 04060104.xhp#hd_id3149760.229.help.text
+msgid "ISEVEN_ADD"
+msgstr "ESPAR_ADD"
+
+#: 04060104.xhp#par_id3147253.230.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_ISEVEN\">Tests for even numbers. Returns 1 if the number divided by 2 returns a whole number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ISEVEN\">Prueba para numeros impares. Regresa 1 si el números se divide entre 2 regresa un número completo.</ahelp>"
+
+#: 04060104.xhp#hd_id3152799.231.help.text
+msgctxt "04060104.xhp#hd_id3152799.231.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060104.xhp#par_id3149202.232.help.text
+msgid "ISEVEN_ADD(Number)"
+msgstr "ES.IMPAR_ADD(número)"
+
+#: 04060104.xhp#par_id3151168.233.help.text
+msgctxt "04060104.xhp#par_id3151168.233.help.text"
+msgid "<emph>Number</emph> is the number to be tested."
+msgstr "<emph>Número</emph> es el valor de ser probado. "
+
+#: 04060104.xhp#hd_id3150115.234.help.text
+msgctxt "04060104.xhp#hd_id3150115.234.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060104.xhp#par_id3153904.235.help.text
+msgid "<item type=\"input\">=ISEVEN_ADD(5)</item> returns 0."
+msgstr "<item type=\"input\">=ES.IMPAR_ADD(5)</item> resulta en 0."
+
+#: 04060104.xhp#par_id6238308.help.text
+msgid "<item type=\"input\">=ISEVEN_ADD(A1)</item> returns 1 if cell A1 contains the number <item type=\"input\">2</item>."
+msgstr "<item type=\"input\">=ESIMPAR_ADD(A1)</item> resulta en 1 si la celda A1 contiene el número <item type=\"input\">2</item>."
+
+#: 04060104.xhp#bm_id3154692.help.text
+msgid "<bookmark_value>ISNONTEXT function</bookmark_value><bookmark_value>cell contents;no text</bookmark_value>"
+msgstr "<bookmark_value>ESNOTEXTO</bookmark_value><bookmark_value>contenido de celda;no texto</bookmark_value>"
+
+#: 04060104.xhp#hd_id3154692.68.help.text
+msgid "ISNONTEXT"
+msgstr "ESNOTEXTO"
+
+#: 04060104.xhp#par_id3155330.69.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTKTEXT\">Tests if the cell contents are text or numbers, and returns FALSE if the contents are text.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISTKTEXT\">Verifica si el contenido de la celda es de texto o numérico, y devuelve FALSO si se trata de texto.</ahelp>"
+
+#: 04060104.xhp#par_id5719779.help.text
+msgid "If an error occurs, the function returns TRUE."
+msgstr "La función devuelve VERDADERO, si ocurre un error. "
+
+#: 04060104.xhp#hd_id3154931.70.help.text
+msgctxt "04060104.xhp#hd_id3154931.70.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060104.xhp#par_id3148829.71.help.text
+msgid "ISNONTEXT(Value)"
+msgstr "ESNOTEXTO(Valor)"
+
+#: 04060104.xhp#par_id3146992.72.help.text
+msgid "<emph>Value</emph> is any value or expression where a test is performed to determine whether it is a text or numbers or a Boolean value."
+msgstr "<emph>Valor</emph> es un valor o una expresión en que se comprueba si es textual, numérico o si se trata de un valor lógico."
+
+#: 04060104.xhp#hd_id3150525.73.help.text
+msgctxt "04060104.xhp#hd_id3150525.73.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060104.xhp#par_id3149906.74.help.text
+msgid "<item type=\"input\">=ISNONTEXT(D2)</item> returns FALSE if cell D2 contains the text <item type=\"input\">abcdef</item>."
+msgstr "<item type=\"input\">=ESNOTEXTO(D2)</item> devuelve FALSO si el contenido de la celda D2 contiene el texto <item type=\"input\">abcdef</item>."
+
+#: 04060104.xhp#par_id3150777.75.help.text
+msgid "<item type=\"input\">=ISNONTEXT(D9)</item> returns TRUE if cell D9 contains the number <item type=\"input\">8</item>."
+msgstr "<item type=\"input\">=ESNOTEXTO(D9)</item> devuelve VERDADERO si la celda D9 contiene el número <item type=\"input\">8</item>."
+
+#: 04060104.xhp#bm_id3159148.help.text
+msgid "<bookmark_value>ISBLANK function</bookmark_value><bookmark_value>blank cell contents</bookmark_value><bookmark_value>empty cells; recognizing</bookmark_value>"
+msgstr "<bookmark_value>ESBLANCO</bookmark_value><bookmark_value>celda en blanco</bookmark_value><bookmark_value>celdas vacías; reconocer</bookmark_value>"
+
+#: 04060104.xhp#hd_id3159148.77.help.text
+msgid "ISBLANK"
+msgstr "ESBLANCO"
+
+#: 04060104.xhp#par_id3148800.78.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTLEER\">Returns TRUE if the reference to a cell is blank.</ahelp> This function is used to determine if the content of a cell is empty. A cell with a formula inside is not empty. "
+msgstr "<ahelp hid=\"HID_FUNC_ISTLEER\">Devuelve VERDADERO si la referencia es una celda vacía.</ahelp> Esta función se usa para determinar si una celda está vacía. Una celda con una fórmula en su interior no se considera vacía. "
+
+#: 04060104.xhp#hd_id3159162.79.help.text
+msgctxt "04060104.xhp#hd_id3159162.79.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060104.xhp#par_id3158406.80.help.text
+msgid "ISBLANK(Value)"
+msgstr "ESBLANCO(Valor)"
+
+#: 04060104.xhp#par_id3154212.81.help.text
+msgid "<emph>Value</emph> is the content to be tested."
+msgstr "<emph>valor</emph> es el contenido que se debe verificar."
+
+#: 04060104.xhp#hd_id3147508.82.help.text
+msgctxt "04060104.xhp#hd_id3147508.82.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060104.xhp#par_id3147234.83.help.text
+msgid "<item type=\"input\">=ISBLANK(D2)</item> returns FALSE as a result."
+msgstr "<item type=\"input\">=ESBLANCO(D2)</item> devuelve FALSO como resultado."
+
+#: 04060104.xhp#bm_id3155356.help.text
+msgid "<bookmark_value>ISLOGICAL function</bookmark_value><bookmark_value>number formats;logical</bookmark_value><bookmark_value>logical number formats</bookmark_value>"
+msgstr "<bookmark_value>ESLOGICO</bookmark_value><bookmark_value>formatos de número;lógicos</bookmark_value><bookmark_value>formatos de número lógicos</bookmark_value>"
+
+#: 04060104.xhp#hd_id3155356.85.help.text
+msgid "ISLOGICAL"
+msgstr "ESLOGICO"
+
+#: 04060104.xhp#par_id3148926.86.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTLOG\">Tests for a logical value (TRUE or FALSE).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISTLOG\">Comprueba un valor lógico (TRUE o FALSE).</ahelp>"
+
+#: 04060104.xhp#par_id3541062.help.text
+msgctxt "04060104.xhp#par_id3541062.help.text"
+msgid "If an error occurs, the function returns FALSE."
+msgstr "Si un error ocurre, la función devuelve FALSO."
+
+#: 04060104.xhp#hd_id3149162.87.help.text
+msgctxt "04060104.xhp#hd_id3149162.87.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060104.xhp#par_id3148918.88.help.text
+msgid "ISLOGICAL(Value)"
+msgstr "ESLOGICO(Valor)"
+
+#: 04060104.xhp#par_id3146946.89.help.text
+msgid "Returns TRUE if <emph>Value</emph> is a logical value (TRUE or FALSE), and returns FALSE otherwise."
+msgstr "Devuelve TRUE si <emph>Valor</emph> es un valor lógico (TRUE o FALSE); de lo contrario, devuelve FALSE."
+
+#: 04060104.xhp#hd_id3150709.90.help.text
+msgctxt "04060104.xhp#hd_id3150709.90.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060104.xhp#par_id3166442.91.help.text
+msgid "<item type=\"input\">=ISLOGICAL(99)</item> returns FALSE, because 99 is a number, not a logical value."
+msgstr "<item type=\"input\">=ESLOGICO(99)</item> devuelve FALSO, ya que 99 es un número, no un valor lógico."
+
+#: 04060104.xhp#par_id3556016.help.text
+msgid "<item type=\"input\">=ISLOGICAL(ISNA(D4))</item> returns TRUE whatever the contents of cell D4, because ISNA() returns a logical value."
+msgstr "<item type=\"input\">=ESLOGICO(ESNOD(D4))</item> devuelve VERDADERO cualquiera sea el contenido de la celda D4, ya que ESNOD() devuelve un valor lógico."
+
+#: 04060104.xhp#bm_id3153685.help.text
+msgid "<bookmark_value>ISNA function</bookmark_value><bookmark_value>#N/A error;recognizing</bookmark_value>"
+msgstr "<bookmark_value>ESNOD</bookmark_value><bookmark_value>error #N/D;reconocer</bookmark_value>"
+
+#: 04060104.xhp#hd_id3153685.93.help.text
+msgid "ISNA"
+msgstr "ESNOD"
+
+#: 04060104.xhp#par_id3149105.94.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTNV\">Returns TRUE if a cell contains the #N/A (value not available) error value.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISTNV\">Devuelve VERDADERO si una celda contiene el valor de error #N/A (valor no disponible).</ahelp>"
+
+#: 04060104.xhp#par_id6018860.help.text
+msgctxt "04060104.xhp#par_id6018860.help.text"
+msgid "If an error occurs, the function returns FALSE."
+msgstr "Si un error ocurre, la función devuelve FALSO."
+
+#: 04060104.xhp#hd_id3152947.95.help.text
+msgctxt "04060104.xhp#hd_id3152947.95.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060104.xhp#par_id3153748.96.help.text
+msgid "ISNA(Value)"
+msgstr "ESNOD(Valor)"
+
+#: 04060104.xhp#par_id3152884.97.help.text
+msgid "<emph>Value</emph> is the value or expression to be tested."
+msgstr "<emph>Valor</emph> es el valor o una expresión que debe comprobarse."
+
+#: 04060104.xhp#hd_id3149964.98.help.text
+msgctxt "04060104.xhp#hd_id3149964.98.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060104.xhp#par_id3154852.99.help.text
+msgid "<item type=\"input\">=ISNA(D3)</item> returns FALSE as a result."
+msgstr "<item type=\"input\">=ESNOD(D3)</item> devuelve FALSO como resultado."
+
+#: 04060104.xhp#bm_id3149426.help.text
+msgid "<bookmark_value>ISTEXT function</bookmark_value><bookmark_value>cell contents;text</bookmark_value>"
+msgstr "<bookmark_value>ESTEXTO</bookmark_value><bookmark_value>contenido de celda;texto</bookmark_value>"
+
+#: 04060104.xhp#hd_id3149426.101.help.text
+msgid "ISTEXT"
+msgstr "ESTEXTO"
+
+#: 04060104.xhp#par_id3145368.102.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTTEXT\">Returns TRUE if the cell contents refer to text.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISTTEXT\">Devuelve VERDADERO si el contenido de la celda hace referencia a texto.</ahelp>"
+
+#: 04060104.xhp#par_id6779686.help.text
+msgctxt "04060104.xhp#par_id6779686.help.text"
+msgid "If an error occurs, the function returns FALSE."
+msgstr "Si un error ocurre, la función devuelve FALSO."
+
+#: 04060104.xhp#hd_id3154332.103.help.text
+msgctxt "04060104.xhp#hd_id3154332.103.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060104.xhp#par_id3148649.104.help.text
+msgid "ISTEXT(Value)"
+msgstr "ESTEXTO(Valor)"
+
+#: 04060104.xhp#par_id3150417.105.help.text
+msgid "<emph>Value</emph> is a value, number, Boolean value, or an error value to be tested."
+msgstr "<emph>Valor</emph> es un valor, un número o un valor lógico o de error en el que se comprueba si se trata de un texto o de un número."
+
+#: 04060104.xhp#hd_id3149239.106.help.text
+msgctxt "04060104.xhp#hd_id3149239.106.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060104.xhp#par_id3144756.107.help.text
+msgid "<item type=\"input\">=ISTEXT(D9)</item> returns TRUE if cell D9 contains the text <item type=\"input\">abcdef</item>."
+msgstr "<item type=\"input\">=STEXTO(D9)</item> devuelve VERDADERO si la celda D9 contiene el texto <item type=\"input\">abcdef</item>."
+
+#: 04060104.xhp#par_id3148416.108.help.text
+msgid "<item type=\"input\">=ISTEXT(C3)</item> returns FALSE if cell C3 contains the number <item type=\"input\">3</item>."
+msgstr "<item type=\"input\">=ESTEXTO(C3)</item> devuelve FALSO si la celda C3 contiene el número <item type=\"input\">3</item>."
+
+#: 04060104.xhp#bm_id3153939.help.text
+msgid "<bookmark_value>ISODD_ADD function</bookmark_value>"
+msgstr "<bookmark_value>ES.IMPAR_ADD</bookmark_value>"
+
+#: 04060104.xhp#hd_id3153939.236.help.text
+msgid "ISODD_ADD"
+msgstr "ES.IMPAR_ADD"
+
+#: 04060104.xhp#par_id3153538.237.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_ISODD\">Returns TRUE (1) if the number does not return a whole number when divided by 2.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ISODD\">Devuelve VERDADERO (1) si el número no es divisible por 2.</ahelp>"
+
+#: 04060104.xhp#hd_id3145601.238.help.text
+msgctxt "04060104.xhp#hd_id3145601.238.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060104.xhp#par_id3149485.239.help.text
+msgid "ISODD_ADD(Number)"
+msgstr "ES.IMPAR_ADD(Número)"
+
+#: 04060104.xhp#par_id3153315.240.help.text
+msgctxt "04060104.xhp#par_id3153315.240.help.text"
+msgid "<emph>Number</emph> is the number to be tested."
+msgstr "<emph>Número</emph> es el valor a ser probado."
+
+#: 04060104.xhp#hd_id3143274.241.help.text
+msgctxt "04060104.xhp#hd_id3143274.241.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060104.xhp#par_id3154793.242.help.text
+msgid "<item type=\"input\">=ISODD_ADD(5)</item> returns 1."
+msgstr "<item type=\"input\">=ESIMPAR_ADD(5)</item> devuelve 1."
+
+#: 04060104.xhp#bm_id3148688.help.text
+msgid "<bookmark_value>ISNUMBER function</bookmark_value><bookmark_value>cell contents;numbers</bookmark_value>"
+msgstr "<bookmark_value>ESNÚMERO</bookmark_value><bookmark_value>contenido de celda;números</bookmark_value>"
+
+#: 04060104.xhp#hd_id3148688.110.help.text
+msgid "ISNUMBER"
+msgstr "ESNÚMERO"
+
+#: 04060104.xhp#par_id3154618.111.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTZAHL\">Returns TRUE if the value refers to a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISTZAHL\">Devuelve VERDADERO si el valor hace referencia a un número.</ahelp>"
+
+#: 04060104.xhp#hd_id3152769.112.help.text
+msgctxt "04060104.xhp#hd_id3152769.112.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060104.xhp#par_id3150595.113.help.text
+msgid "ISNUMBER(Value)"
+msgstr "ESNÚMERO(Valor)"
+
+#: 04060104.xhp#par_id3150351.114.help.text
+msgid "<emph>Value</emph> is any expression to be tested to determine whether it is a number or text."
+msgstr "<emph>valor</emph> es cualquier expresión que se deba verificar para determinar si es numérica o de texto."
+
+#: 04060104.xhp#hd_id3146793.115.help.text
+msgctxt "04060104.xhp#hd_id3146793.115.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060104.xhp#par_id3155614.116.help.text
+msgid "<item type=\"input\">=ISNUMBER(C3)</item> returns TRUE if the cell C3 contains the number <item type=\"input\">4</item>."
+msgstr "<item type=\"input\">=ESNÚMERO(C3)</item> devuelve VERDADERO si la celda C3 contiene el número <item type=\"input\">4</item>."
+
+#: 04060104.xhp#par_id3154417.117.help.text
+msgid "<item type=\"input\">=ISNUMBER(C2)</item> returns FALSE if the cell C2 contains the text <item type=\"input\">abcdef</item>."
+msgstr "<item type=\"input\">=ESNÚMERO(C2)</item> devuelve FALSO si la celda C2 contiene el texto <item type=\"input\">abcdef</item>."
+
+#: 04060104.xhp#bm_id3153694.help.text
+msgid "<bookmark_value>N function</bookmark_value>"
+msgstr "<bookmark_value>N</bookmark_value>"
+
+#: 04060104.xhp#hd_id3153694.119.help.text
+msgid "N"
+msgstr "N"
+
+#: 04060104.xhp#par_id3150405.120.help.text
+msgid "<ahelp hid=\"HID_FUNC_N\">Returns the numeric value of the given parameter. Returns 0 if parameter is text or FALSE.</ahelp>"
+msgstr ""
+
+#: 04060104.xhp#par_id9115573.help.text
+msgid "If an error occurs the function returns the error value."
+msgstr ""
+
+#: 04060104.xhp#hd_id3145774.121.help.text
+msgctxt "04060104.xhp#hd_id3145774.121.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060104.xhp#par_id3153883.122.help.text
+msgid "N(Value)"
+msgstr "N(Valor)"
+
+#: 04060104.xhp#par_id3151101.123.help.text
+msgid "<emph>Value</emph> is the parameter to be converted into a number. N() returns the numeric value if it can. It returns the logical values TRUE and FALSE as 1 and 0 respectively. It returns text as 0."
+msgstr ""
+
+#: 04060104.xhp#hd_id3147097.124.help.text
+msgctxt "04060104.xhp#hd_id3147097.124.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060104.xhp#par_id3154117.125.help.text
+msgid "<item type=\"input\">=N(123)</item> returns 123"
+msgstr "<item type=\"input\">=N(123)</item> devuelve 123"
+
+#: 04060104.xhp#par_id2337717.help.text
+msgid "<item type=\"input\">=N(TRUE)</item> returns 1"
+msgstr "<item type=\"input\">=N(TRUE)</item> devuelve 1"
+
+#: 04060104.xhp#par_id3153781.126.help.text
+msgid "<item type=\"input\">=N(FALSE)</item> returns 0"
+msgstr "<item type=\"input\">=N(FALSO)</item> devuelve 0"
+
+#: 04060104.xhp#par_id3154670.243.help.text
+msgid "<item type=\"input\">=N(\"abc\")</item> returns 0"
+msgstr "<item type=\"input\">=N(\"abc\")</item> devuelve 0"
+
+#: 04060104.xhp#par_id3519089.help.text
+msgid "=N(1/0) returns #DIV/0!"
+msgstr "=N(1/0) devuelve #DIV/0!"
+
+#: 04060104.xhp#bm_id3156275.help.text
+msgid "<bookmark_value>NA function</bookmark_value><bookmark_value>#N/A error;assigning to a cell</bookmark_value>"
+msgstr "<bookmark_value>NOD</bookmark_value><bookmark_value>error #N/A;asignar a una celda</bookmark_value>"
+
+#: 04060104.xhp#hd_id3156275.129.help.text
+msgid "NA"
+msgstr "NOD"
+
+#: 04060104.xhp#par_id3156161.130.help.text
+msgid "<ahelp hid=\"HID_FUNC_NV\">Returns the error value #N/A.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NV\">Devuelve el valor de error #N/A.</ahelp>"
+
+#: 04060104.xhp#hd_id3147532.131.help.text
+msgctxt "04060104.xhp#hd_id3147532.131.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060104.xhp#par_id3149563.132.help.text
+msgid "NA()"
+msgstr "NA()"
+
+#: 04060104.xhp#hd_id3155128.133.help.text
+msgctxt "04060104.xhp#hd_id3155128.133.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060104.xhp#par_id3154481.134.help.text
+msgid "<item type=\"input\">=NA()</item> converts the contents of the cell into #N/A."
+msgstr "<item type=\"input\">=NOD()</item> convierte el contenido de la celda en la #N/A."
+
+#: 04060104.xhp#bm_id3151255.help.text
+msgid "<bookmark_value>TYPE function</bookmark_value>"
+msgstr "<bookmark_value>TIPO</bookmark_value>"
+
+#: 04060104.xhp#hd_id3151255.136.help.text
+msgctxt "04060104.xhp#hd_id3151255.136.help.text"
+msgid "TYPE"
+msgstr "TIPO"
+
+#: 04060104.xhp#par_id3155900.137.help.text
+msgid "<ahelp hid=\"HID_FUNC_TYP\">Returns the type of value.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TYP\">Devuelve el tipo de valor.</ahelp>"
+
+#: 04060104.xhp#hd_id3149992.138.help.text
+msgctxt "04060104.xhp#hd_id3149992.138.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060104.xhp#par_id3148400.139.help.text
+msgid "TYPE(Value)"
+msgstr "TIPO(Valor)"
+
+#: 04060104.xhp#par_id3150830.140.help.text
+msgid "<emph>Value</emph> is a specific value for which the data type is determined. Value 1 = number, value 2 = text, value 4 = Boolean value, value 8 = formula, value 16 = error value."
+msgstr "<emph>valor</emph> es un valor específico cuyo tipo de datos se debe determinar. Valor 1 = número, valor 2 = texto, valor 4 = lógico, valor 8 = fórmula, valor 16 = valor de error."
+
+#: 04060104.xhp#hd_id3154363.141.help.text
+msgid "Example (see example table above)"
+msgstr "Ejemplo (véase arriba la tabla con ejemplos)"
+
+#: 04060104.xhp#par_id3153357.142.help.text
+msgid "<item type=\"input\">=TYPE(C2)</item> returns 2 as a result."
+msgstr "<item type=\"input\">=TIPO(C2)</item> devuelve 2 como un resultado."
+
+#: 04060104.xhp#par_id3148980.143.help.text
+msgid "<item type=\"input\">=TYPE(D9)</item> returns 1 as a result."
+msgstr "<item type=\"input\">=TIPO(D9)</item> devuelve 1 como resultado."
+
+#: 04060104.xhp#bm_id3155509.help.text
+msgid "<bookmark_value>CELL function</bookmark_value><bookmark_value>cell information</bookmark_value><bookmark_value>information on cells</bookmark_value>"
+msgstr "<bookmark_value>CELDA</bookmark_value><bookmark_value>información de celda</bookmark_value><bookmark_value>información sobre celdas</bookmark_value>"
+
+#: 04060104.xhp#hd_id3155509.154.help.text
+msgid "CELL"
+msgstr "CELDA"
+
+#: 04060104.xhp#par_id3153196.155.help.text
+msgid "<ahelp hid=\"HID_FUNC_ZELLE\">Returns information on address, formatting or contents of a cell.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZELLE\">Devuelve información acerca de la dirección, el formato y el contenido de una celda.</ahelp>"
+
+#: 04060104.xhp#hd_id3149323.156.help.text
+msgctxt "04060104.xhp#hd_id3149323.156.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060104.xhp#par_id3147355.157.help.text
+msgid "CELL(\"InfoType\"; Reference)"
+msgstr "CELDA(\"Tipo de información\"; Referencia)"
+
+#: 04060104.xhp#par_id3154716.158.help.text
+msgid "<emph>InfoType</emph> is the character string that specifies the type of information. The character string is always in English. Upper or lower case is optional."
+msgstr "<emph>Tipo de información</emph> es la cadena de caracteres que especifica el tipo de información. La cadena de caracteres esta siempre en Inglés. Mayúscula o minúscula es opcional."
+
+#: 04060104.xhp#par_id3150636.165.help.text
+msgid "InfoType"
+msgstr "Tipo de información"
+
+#: 04060104.xhp#par_id3149344.166.help.text
+msgid "Meaning"
+msgstr "<emph>Significado</emph>"
+
+#: 04060104.xhp#par_id3153266.167.help.text
+msgid "COL"
+msgstr "COL"
+
+#: 04060104.xhp#par_id3156204.168.help.text
+msgid "Returns the number of the referenced column."
+msgstr "Devuelve el número de la columna referenciada."
+
+#: 04060104.xhp#par_id3150094.162.help.text
+msgid "<item type=\"input\">=CELL(\"COL\";D2)</item> returns 4."
+msgstr "<item type=\"input\">=CELDA(\"COL\";D2)</item> devuelve 4."
+
+#: 04060104.xhp#par_id3151276.169.help.text
+msgctxt "04060104.xhp#par_id3151276.169.help.text"
+msgid "ROW"
+msgstr "ROW"
+
+#: 04060104.xhp#par_id3147583.170.help.text
+msgid "Returns the number of the referenced row."
+msgstr "Devuelve el número de la fila referenciada."
+
+#: 04060104.xhp#par_id3151222.163.help.text
+msgid "<item type=\"input\">=CELL(\"ROW\";D2)</item> returns 2."
+msgstr "<item type=\"input\">=CELDA(\"ROW\";D2)</item> devuelve 2."
+
+#: 04060104.xhp#par_id3159217.171.help.text
+msgctxt "04060104.xhp#par_id3159217.171.help.text"
+msgid "SHEET"
+msgstr "SHEET"
+
+#: 04060104.xhp#par_id3151201.172.help.text
+msgid "Returns the number of the referenced sheet."
+msgstr "Devuelve el número de la hoja referenciada."
+
+#: 04060104.xhp#par_id3149169.164.help.text
+msgid "<item type=\"input\">=CELL(\"Sheet\";Sheet3.D2)</item> returns 3."
+msgstr "<item type=\"input\">=CELDA(\"SHEET\";Hoja3.D2)</item> devuelve 3."
+
+#: 04060104.xhp#par_id3149431.173.help.text
+msgctxt "04060104.xhp#par_id3149431.173.help.text"
+msgid "ADDRESS"
+msgstr "ADDRESS"
+
+#: 04060104.xhp#par_id3156054.174.help.text
+msgid "Returns the absolute address of the referenced cell."
+msgstr "Devuelve la dirección absoluta de la celda referenciada."
+
+#: 04060104.xhp#par_id3154136.175.help.text
+msgid "<item type=\"input\">=CELL(\"ADDRESS\";D2)</item> returns $D$2."
+msgstr "<item type=\"input\">=CELL(\"ADDRESS\";D2)</item> devuelve $D$2."
+
+#: 04060104.xhp#par_id3159198.176.help.text
+msgid "<item type=\"input\">=CELL(\"ADDRESS\";Sheet3.D2)</item> returns $Sheet3.$D$2."
+msgstr "<item type=\"input\">=CELL(\"ADDRESS\";Hoja3.D2)</item> devuelve $Hoja3.$D$2."
+
+#: 04060104.xhp#par_id3150245.177.help.text
+msgid "<item type=\"input\">=CELL(\"ADDRESS\";'X:\\dr\\test.sxc'#$Sheet1.D2)</item> returns 'file:///X:/dr/test.sxc'#$Sheet1.$D$2."
+msgstr "<item type=\"input\">=CELDA(\"ADDRESS\";'X:\\dr\\prueba.sxc'#$Hoja1.D2)</item> devuelve 'file:///X:/dr/prueba.sxc'#$Hoja1.$D$2."
+
+#: 04060104.xhp#par_id3146811.178.help.text
+msgid "FILENAME"
+msgstr "FILENAME"
+
+#: 04060104.xhp#par_id3151328.179.help.text
+msgid "Returns the file name and the sheet number of the referenced cell."
+msgstr "Devuelve el nombre de archivo y de hoja de la celda referenciada."
+
+#: 04060104.xhp#par_id3148896.180.help.text
+msgid "<item type=\"input\">=CELL(\"FILENAME\";D2)</item> returns 'file:///X:/dr/own.sxc'#$Sheet1, if the formula in the current document X:\\dr\\own.sxc is located in Sheet1."
+msgstr "<item type=\"input\">=CELDA(\"FILENAME\";D2)</item> devuelve 'file:///X:/dr/own.sxc'#$Hoja1, si la fórmula en el documento actual X:\\dr\\own.sxc es localizada en la Hoja1."
+
+#: 04060104.xhp#par_id3155144.181.help.text
+msgid "<item type=\"input\">=CELL(\"FILENAME\";'X:\\dr\\test.sxc'#$Sheet1.D2)</item> returns 'file:///X:/dr/test.sxc'#$Sheet1."
+msgstr "<item type=\"input\">=CELDA(\"FILENAME\";'X:\\dr\\prueba.sxc'#$Hoja1.D2)</item> devuelve 'file:///X:/dr/prueba.sxc'#$Hoja1."
+
+#: 04060104.xhp#par_id3151381.182.help.text
+msgid "COORD"
+msgstr "COORD"
+
+#: 04060104.xhp#par_id3151004.183.help.text
+msgid "Returns the complete cell address in Lotus(TM) notation."
+msgstr "Devuelve la dirección completa de celda en notación Lotus(TM)."
+
+#: 04060104.xhp#par_id3159104.184.help.text
+msgid "<item type=\"input\">=CELL(\"COORD\"; D2)</item> returns $A:$D$2."
+msgstr "<item type=\"input\">=CELDA(\"COORD\"; D2)</item> devuelve $A:$D$2."
+
+#: 04060104.xhp#par_id3163720.185.help.text
+msgid "<item type=\"input\">=CELL(\"COORD\"; Sheet3.D2)</item> returns $C:$D$2."
+msgstr "<item type=\"input\">=CELDA(\"COORD\"; Hoja3.D2)</item> devuelve $C:$D$2."
+
+#: 04060104.xhp#par_id3155910.186.help.text
+msgid "CONTENTS"
+msgstr "CONTENTS"
+
+#: 04060104.xhp#par_id3156041.187.help.text
+msgid "Returns the contents of the referenced cell, without any formatting."
+msgstr "Devuelve el contenido de la celda referenciada, sin formato."
+
+#: 04060104.xhp#par_id3151069.188.help.text
+msgctxt "04060104.xhp#par_id3151069.188.help.text"
+msgid "TYPE"
+msgstr "TYPE"
+
+#: 04060104.xhp#par_id3155344.189.help.text
+msgid "Returns the type of cell contents."
+msgstr "Devuelve el tipo del contenido de la celda."
+
+#: 04060104.xhp#par_id3145217.190.help.text
+msgid "b = blank. empty cell"
+msgstr "b = blank. Celda vacía"
+
+#: 04060104.xhp#par_id3155176.191.help.text
+msgid "l = label. Text, result of a formula as text"
+msgstr "l = label. Texto, resultado de una fórmula como texto"
+
+#: 04060104.xhp#par_id3147280.192.help.text
+msgid "v = value. Value, result of a formula as a number"
+msgstr "v = value. Valor, Resultado de una fórmula como número"
+
+#: 04060104.xhp#par_id3156348.193.help.text
+msgid "WIDTH"
+msgstr "WIDTH"
+
+#: 04060104.xhp#par_id3154920.194.help.text
+msgid "Returns the width of the referenced column. The unit is the number of zeros (0) that fit into the column in the default text and the default size."
+msgstr "Devuelve el ancho de la columna referenciada. La unidad de medida es la cantidad de ceros (0) que quepan en la columna, en fuente y tamaño predeterminados."
+
+#: 04060104.xhp#par_id3152355.195.help.text
+msgid "PREFIX"
+msgstr "PREFIX"
+
+#: 04060104.xhp#par_id3154230.196.help.text
+msgid "Returns the alignment of the referenced cell."
+msgstr "Devuelve la alineación de la celda referenciada."
+
+#: 04060104.xhp#par_id3155946.197.help.text
+msgid "' = align left or left-justified"
+msgstr "' = izquierda o justificada"
+
+#: 04060104.xhp#par_id3147220.198.help.text
+msgid "\" = align right"
+msgstr "\" = derecha"
+
+#: 04060104.xhp#par_id3149038.199.help.text
+msgid "^ = centered"
+msgstr "^ = centrada"
+
+#: 04060104.xhp#par_id3153129.200.help.text
+msgid "\\ = repeating (currently inactive)"
+msgstr "\\ = repitiendo (por ahora inactiva)"
+
+#: 04060104.xhp#par_id3154406.201.help.text
+msgid "PROTECT"
+msgstr "PROTECT"
+
+#: 04060104.xhp#par_id3145127.202.help.text
+msgid "Returns the status of the cell protection for the cell."
+msgstr "Devuelve el estado de la protección de la celda."
+
+#: 04060104.xhp#par_id3155794.203.help.text
+msgid "1 = cell is protected"
+msgstr "1 = La celda está protegida"
+
+#: 04060104.xhp#par_id3155072.204.help.text
+msgid "0 = cell is not protected"
+msgstr "0 = La celda no está protegida"
+
+#: 04060104.xhp#par_id3156178.205.help.text
+msgid "FORMAT"
+msgstr "FORMAT"
+
+#: 04060104.xhp#par_id3150220.206.help.text
+msgid "Returns a character string that indicates the number format."
+msgstr "Devuelve una cadena de caracteres que indica el formato numérico."
+
+#: 04060104.xhp#par_id3153824.207.help.text
+msgid ", = number with thousands separator"
+msgstr ", = Número con separador de miles"
+
+#: 04060104.xhp#par_id3153837.208.help.text
+msgid "F = number without thousands separator"
+msgstr "F = Número sin separador de miles"
+
+#: 04060104.xhp#par_id3150318.209.help.text
+msgid "C = currency format"
+msgstr "C = Formato monetario"
+
+#: 04060104.xhp#par_id3153168.210.help.text
+msgid "S = exponential representation, for example, 1.234+E56"
+msgstr "S = Representación exponencial, p.ej. 1.234+E56"
+
+#: 04060104.xhp#par_id3153515.211.help.text
+msgid "P = percentage"
+msgstr "P = Porcentaje"
+
+#: 04060104.xhp#par_id3154375.212.help.text
+msgid "In the above formats, the number of decimal places after the decimal separator is given as a number. Example: the number format #,##0.0 returns ,1 and the number format 00.000% returns P3"
+msgstr "En los formatos indicados, el número de decimales después de la coma se indica en forma de número. Ejemplo: el formato numérico #.##0,0 devuelve ,1, y el formato numérico 00,000% devuelve P3"
+
+#: 04060104.xhp#par_id3150575.213.help.text
+msgid "D1 = MMM-D-YY, MM-D-YY and similar formats"
+msgstr "D1 = D-MMM-YY, D-MM-YY y formatos parecidos"
+
+#: 04060104.xhp#par_id3150589.214.help.text
+msgid "D2 = DD-MM"
+msgstr "D2 = DD-MM"
+
+#: 04060104.xhp#par_id3151034.215.help.text
+msgid "D3 = MM-YY"
+msgstr "D3 = MM-YY"
+
+#: 04060104.xhp#par_id3156371.216.help.text
+msgid "D4 = DD-MM-YYYY HH:MM:SS"
+msgstr "D4 = DD-MM-YYYY HH:MM:SS"
+
+#: 04060104.xhp#par_id3157881.217.help.text
+msgid "D5 = MM-DD"
+msgstr "D5 = MM-DD"
+
+#: 04060104.xhp#par_id3157894.218.help.text
+msgid "D6 = HH:MM:SS AM/PM"
+msgstr "D6 = HH:MM:SS AM/PM"
+
+#: 04060104.xhp#par_id3154068.219.help.text
+msgid "D7 = HH:MM AM/PM"
+msgstr "D7 = HH:MM AM/PM"
+
+#: 04060104.xhp#par_id3150286.220.help.text
+msgid "D8 = HH:MM:SS"
+msgstr "D8 = HH:MM:SS"
+
+#: 04060104.xhp#par_id3145756.221.help.text
+msgid "D9 = HH:MM"
+msgstr "D9 = HH:MM"
+
+#: 04060104.xhp#par_id3145768.222.help.text
+msgid "G = All other formats"
+msgstr "G = Todos los demás formatos"
+
+#: 04060104.xhp#par_id3153375.223.help.text
+msgid "- (Minus) at the end = negative numbers are formatted in color"
+msgstr "- (Menos) al final = Los números negativos se formatearán en color."
+
+#: 04060104.xhp#par_id3155545.224.help.text
+msgid "() (brackets) at the end = there is an opening bracket in the format code"
+msgstr "() (Paar de paréntesis) al final = Aparece un paréntesis de apertura en el código de formato."
+
+#: 04060104.xhp#par_id3154594.225.help.text
+msgid "COLOR"
+msgstr "COLOR"
+
+#: 04060104.xhp#par_id3152922.226.help.text
+msgid "Returns 1, if negative values have been formatted in color, otherwise 0."
+msgstr "Devuelve 1 si los valores negativos aparecen formateados en color; de lo contrario, 0."
+
+#: 04060104.xhp#par_id3145563.227.help.text
+msgid "PARENTHESES"
+msgstr "PARENTHESES"
+
+#: 04060104.xhp#par_id3156072.228.help.text
+msgid "Returns 1 if the format code contains an opening bracket (, otherwise 0."
+msgstr "Devuelve 1, si el código de formato contiene un paréntesis de apertura \"(\"; de lo contrario, O."
+
+#: 04060104.xhp#par_id3156090.159.help.text
+msgid "<emph>Reference</emph> (list of options) is the position of the cell to be examined. If <emph>Reference</emph> is a range, the cell moves to the top left of the range. If <emph>Reference</emph> is missing, $[officename] Calc uses the position of the cell in which this formula is located. Microsoft Excel uses the reference of the cell in which the cursor is positioned."
+msgstr "<emph>Referencia</emph> (opcional) Es la posición de la celda que se desea analizar. Si <emph>Referencia</emph> es un área, será válida la celda arriba a la izquierda en el área. Si falta <emph>Referencia</emph>, $[officename] Calc usa la posición de la celda en la que se encuentre la fórmula. Microsoft Excel usa entonces la referencia de la celda en la que figura el cursor."
+
+#: 04060103.xhp#tit.help.text
+msgctxt "04060103.xhp#tit.help.text"
+msgid "Financial Functions Part One"
+msgstr "Funciones financieras, Parte Uno"
+
+#: 04060103.xhp#bm_id3143284.help.text
+msgid "<bookmark_value>financial functions</bookmark_value> <bookmark_value>functions; financial functions</bookmark_value> <bookmark_value>Function Wizard; financial</bookmark_value> <bookmark_value>amortizations, see also depreciations</bookmark_value>"
+msgstr "<bookmark_value>funciones financieras</bookmark_value><bookmark_value>funciones;funciones financieras</bookmark_value><bookmark_value>Asistente para funciones;financieras</bookmark_value><bookmark_value>amortizaciones, véase también depreciaciones</bookmark_value>"
+
+#: 04060103.xhp#hd_id3143284.1.help.text
+msgctxt "04060103.xhp#hd_id3143284.1.help.text"
+msgid "Financial Functions Part One"
+msgstr "Funciones financieras, primera parte"
+
+#: 04060103.xhp#par_id3149095.2.help.text
+msgid "<variable id=\"finanztext\">This category contains the mathematical finance functions of <item type=\"productname\">%PRODUCTNAME</item> Calc. </variable>"
+msgstr "<variable id=\"finanztext\">Esta categoría contiene las funciones matemáticas de finanzas de <item type=\"productname\">%PRODUCTNAME</item> Calc. </variable>"
+
+#: 04060103.xhp#bm_id3153366.help.text
+msgid "<bookmark_value>AMORDEGRC function</bookmark_value> <bookmark_value>depreciations;degressive amortizations</bookmark_value>"
+msgstr "<bookmark_value>AMORTIZ.PROGRE</bookmark_value> <bookmark_value>depreciaciones;amortizaciones degresivas</bookmark_value>"
+
+#: 04060103.xhp#hd_id3153366.359.help.text
+msgid "AMORDEGRC"
+msgstr "AMORTIZ.PROGRE"
+
+#: 04060103.xhp#par_id3147434.360.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_AMORDEGRC\">Calculates the amount of depreciation for a settlement period as degressive amortization.</ahelp> Unlike AMORLINC, a depreciation coefficient that is independent of the depreciable life is used here."
+msgstr "<ahelp hid=\"HID_AAI_FUNC_AMORDEGRC\">Calcula el importe de la depreciación en un período de liquidación en forma de amortización degresiva.</ahelp> A diferencia de AMORTIZ.LIN, en esta función se utiliza un coeficiente de depreciación independiente de la vida útil depreciable."
+
+#: 04060103.xhp#hd_id3155855.361.help.text
+msgctxt "04060103.xhp#hd_id3155855.361.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060103.xhp#par_id3147427.362.help.text
+msgid "AMORDEGRC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
+msgstr "AMORTIZ.PROGRE(Costo; Fecha de compra; Primer período; Valor de salvamento; Período; Tasa; Base)"
+
+#: 04060103.xhp#par_id3147125.363.help.text
+msgid " <emph>Cost</emph> is the acquisition costs."
+msgstr " <emph>Costo</emph> son los costos de adquisición."
+
+#: 04060103.xhp#par_id3151074.364.help.text
+msgctxt "04060103.xhp#par_id3151074.364.help.text"
+msgid " <emph>DatePurchased</emph> is the date of acquisition."
+msgstr " <emph>FechaDeCompra</emph> es la fecha de la adquisición."
+
+#: 04060103.xhp#par_id3144765.365.help.text
+msgctxt "04060103.xhp#par_id3144765.365.help.text"
+msgid " <emph>FirstPeriod </emph>is the end date of the first settlement period."
+msgstr " <emph>PrimerPeriodo </emph>es la fecha de vencimiento del primer periodo de liquidación."
+
+#: 04060103.xhp#par_id3156286.366.help.text
+msgctxt "04060103.xhp#par_id3156286.366.help.text"
+msgid " <emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
+msgstr " <emph>Salvamento</emph> es el valor de salvamento del activo de capital al final de la vida de amortización."
+
+#: 04060103.xhp#par_id3153415.367.help.text
+msgctxt "04060103.xhp#par_id3153415.367.help.text"
+msgid " <emph>Period</emph> is the settlement period to be considered."
+msgstr " <emph>Periodo</emph> es el periodo de liquidación a considerar."
+
+#: 04060103.xhp#par_id3155064.368.help.text
+msgctxt "04060103.xhp#par_id3155064.368.help.text"
+msgid " <emph>Rate</emph> is the rate of depreciation."
+msgstr " <emph>Tasa</emph> es la tasa de amortización."
+
+#: 04060103.xhp#bm_id3153765.help.text
+msgid "<bookmark_value>AMORLINC function</bookmark_value> <bookmark_value>depreciations;linear amortizations</bookmark_value>"
+msgstr "<bookmark_value>AMORTIZ.LIN</bookmark_value> <bookmark_value>depreciaciones;amortizaciones lineales</bookmark_value>"
+
+#: 04060103.xhp#hd_id3153765.369.help.text
+msgid "AMORLINC"
+msgstr "AMORTIZ.LIN"
+
+#: 04060103.xhp#par_id3159264.370.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_AMORLINC\">Calculates the amount of depreciation for a settlement period as linear amortization. If the capital asset is purchased during the settlement period, the proportional amount of depreciation is considered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_AMORLINC\">Calcula el importe de la depreciación en un período de liquidación en forma de amortización lineal. Si el activo fijo se adquiere durante el período de liquidación, se tiene en cuenta el importe proporcional de la depreciación.</ahelp>"
+
+#: 04060103.xhp#hd_id3150044.371.help.text
+msgctxt "04060103.xhp#hd_id3150044.371.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060103.xhp#par_id3147363.372.help.text
+msgid "AMORLINC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
+msgstr "AMORTIZ.LIN(Costos; Fecha de compra; Primer periodo; Valor de salvamento; Periodo; Tasa; Base)"
+
+#: 04060103.xhp#par_id3146920.373.help.text
+msgid " <emph>Cost</emph> means the acquisition costs."
+msgstr " <emph>Costo</emph> significa el costo de adquisición."
+
+#: 04060103.xhp#par_id3163807.374.help.text
+msgctxt "04060103.xhp#par_id3163807.374.help.text"
+msgid " <emph>DatePurchased</emph> is the date of acquisition."
+msgstr " <emph>FechaDeCompra</emph> es la fecha de la adquisición."
+
+#: 04060103.xhp#par_id3148488.375.help.text
+msgctxt "04060103.xhp#par_id3148488.375.help.text"
+msgid " <emph>FirstPeriod </emph>is the end date of the first settlement period."
+msgstr " <emph>PrimerPeriodo</emph> es la fecha de vencimiento del primer periodo de liquidación."
+
+#: 04060103.xhp#par_id3149530.376.help.text
+msgctxt "04060103.xhp#par_id3149530.376.help.text"
+msgid " <emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
+msgstr " <emph>Salvamento</emph> es el valor de salvamento del activo de capital al final de su vida de amortización."
+
+#: 04060103.xhp#par_id3148633.377.help.text
+msgctxt "04060103.xhp#par_id3148633.377.help.text"
+msgid " <emph>Period</emph> is the settlement period to be considered."
+msgstr " <emph>Periodo</emph> es el periodo de liquidación a considerar."
+
+#: 04060103.xhp#par_id3150982.378.help.text
+msgctxt "04060103.xhp#par_id3150982.378.help.text"
+msgid " <emph>Rate</emph> is the rate of depreciation."
+msgstr " <emph>Tasa</emph> es la tasa de amortización."
+
+#: 04060103.xhp#bm_id3145257.help.text
+msgid "<bookmark_value>ACCRINT function</bookmark_value>"
+msgstr "<bookmark_value>INT.ACUM</bookmark_value>"
+
+#: 04060103.xhp#hd_id3145257.335.help.text
+msgid "ACCRINT"
+msgstr "INT.ACUM"
+
+#: 04060103.xhp#bm_id3151276.help.text
+msgid "<bookmark_value>accrued interests;periodic payments</bookmark_value>"
+msgstr "<bookmark_value>interés acumulado;pagos periódicos</bookmark_value>"
+
+#: 04060103.xhp#par_id3151276.336.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_ACCRINT\">Calculates the accrued interest of a security in the case of periodic payments.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ACCRINT\">Calcula el interés acumulado de un valor en el caso de pagos periódicos de intereses.</ahelp>"
+
+#: 04060103.xhp#hd_id3152581.337.help.text
+msgctxt "04060103.xhp#hd_id3152581.337.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060103.xhp#par_id3159092.338.help.text
+msgid "ACCRINT(Issue; FirstInterest; Settlement; Rate; Par; Frequency; Basis)"
+msgstr "ACCRINT(Emisión; PrimerInterest; Liquidación; Tasa; ValorPar; Frecuencia; Bases)"
+
+#: 04060103.xhp#par_id3150519.339.help.text
+msgctxt "04060103.xhp#par_id3150519.339.help.text"
+msgid " <emph>Issue</emph> is the issue date of the security."
+msgstr " <emph>Emisión</emph> es la fecha de emisión de la garantía. "
+
+#: 04060103.xhp#par_id3155376.340.help.text
+msgid " <emph>FirstInterest</emph> is the first interest date of the security."
+msgstr " <emph>PrimerInterés</emph> es la fecha del primer interés de la garantía. "
+
+#: 04060103.xhp#par_id3166431.341.help.text
+msgctxt "04060103.xhp#par_id3166431.341.help.text"
+msgid " <emph>Settlement</emph> is the date at which the interest accrued up until then is to be calculated."
+msgstr " <emph>Liquidación</emph> es la fecha en que se deben calcular los intereses devengados hasta ese momento"
+
+#: 04060103.xhp#par_id3154486.342.help.text
+msgid " <emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)"
+msgstr " <emph>Tasa</emph> es la tasa nominal anual de interés (tasa de interés del vale)"
+
+#: 04060103.xhp#par_id3156445.343.help.text
+msgctxt "04060103.xhp#par_id3156445.343.help.text"
+msgid " <emph>Par</emph> is the par value of the security."
+msgstr " <emph>Nominal</emph> es el valor nominal de la garantía."
+
+#: 04060103.xhp#par_id3149406.344.help.text
+msgctxt "04060103.xhp#par_id3149406.344.help.text"
+msgid " <emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr " <emph>Frecuencia</emph> es la cantidad de pagos de interés al año (1, 2 o 4)."
+
+#: 04060103.xhp#hd_id3148699.345.help.text
+msgctxt "04060103.xhp#hd_id3148699.345.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060103.xhp#par_id3148599.346.help.text
+msgid "A security is issued on 2001-02-28. First interest is set for 2001-08-31. The settlement date is 2001-05-01. The Rate is 0.1 or 10% and Par is 1000 currency units. Interest is paid half-yearly (frequency is 2). The basis is the US method (0). How much interest has accrued?"
+msgstr "Se emite un título el 28-02-2001. El primer interés se establece para el 31-08-2001. La fecha de liquidación es el 01-05-2001. El interés es del 0,1 % o del 10 %, y el valor nominal es de 1.000 unidades monetarias. El interés se paga semestralmente (la frecuencia es 2). La base es el método estadounidense (0). ¿Qué interés se ha acumulado?"
+
+#: 04060103.xhp#par_id3148840.347.help.text
+msgid " <item type=\"input\">=ACCRINT(\"2001-02-28\";\"2001-08-31\";\"2001-05-01\";0.1;1000;2;0)</item> returns 16.94444."
+msgstr " <item type=\"input\">=INT.ACUM(\"2001-02-28\";\"2001-08-31\";\"2001-05-01\";0.1;1000;2;0)</item> devuelve 16,94444."
+
+#: 04060103.xhp#bm_id3151240.help.text
+msgid "<bookmark_value>ACCRINTM function</bookmark_value> <bookmark_value>accrued interests;one-off payments</bookmark_value>"
+msgstr "<bookmark_value>INT.ACUM.V</bookmark_value> <bookmark_value>interés acumulado;pago único</bookmark_value>"
+
+#: 04060103.xhp#hd_id3151240.348.help.text
+msgid "ACCRINTM"
+msgstr "INT.ACUM.V"
+
+#: 04060103.xhp#par_id3157981.349.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_ACCRINTM\">Calculates the accrued interest of a security in the case of one-off payment at the settlement date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ACCRINTM\">Calcula el interés acumulado de un valor en el caso de un pago único en la fecha de liquidación.</ahelp>"
+
+#: 04060103.xhp#hd_id3159097.350.help.text
+msgctxt "04060103.xhp#hd_id3159097.350.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060103.xhp#par_id3147074.351.help.text
+msgid "ACCRINTM(Issue; Settlement; Rate; Par; Basis)"
+msgstr "INT.ACUM.V(Emisión; Liquidación; Tasa; Valor Nominal; Bases)"
+
+#: 04060103.xhp#par_id3144773.352.help.text
+msgctxt "04060103.xhp#par_id3144773.352.help.text"
+msgid " <emph>Issue</emph> is the issue date of the security."
+msgstr " <emph>Emisión</emph> es la fecha de emisión de la garantía. "
+
+#: 04060103.xhp#par_id3154956.353.help.text
+msgctxt "04060103.xhp#par_id3154956.353.help.text"
+msgid " <emph>Settlement</emph> is the date at which the interest accrued up until then is to be calculated."
+msgstr " <emph>Liquidación</emph> es la fecha en que se deben calcular los intereses devengados hasta ese momento."
+
+#: 04060103.xhp#par_id3153972.354.help.text
+msgid " <emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)."
+msgstr " <emph>Tasa</emph> es la tasa nominal anual de interés (tasa de interés del vale)."
+
+#: 04060103.xhp#par_id3159204.355.help.text
+msgctxt "04060103.xhp#par_id3159204.355.help.text"
+msgid " <emph>Par</emph> is the par value of the security."
+msgstr " <emph>Nominal</emph> es el valor nominal de la garantía."
+
+#: 04060103.xhp#hd_id3155384.356.help.text
+msgctxt "04060103.xhp#hd_id3155384.356.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060103.xhp#par_id3154541.357.help.text
+msgid "A security is issued on 2001-04-01. The maturity date is set for 2001-06-15. The Rate is 0.1 or 10% and Par is 1000 currency units. The basis of the daily/annual calculation is the daily balance (3). How much interest has accrued?"
+msgstr "Se emite un título el 01-04-2001. La fecha de vencimiento se establece para el 15-06-2001. El interés es del 0,1 % o 10 % y el valor nominal es de 1.000 unidades monetarias. La base del cálculo diario /anual es el cálculo diario (3). ¿Qué interés se ha acumulado?"
+
+#: 04060103.xhp#par_id3149128.358.help.text
+msgid " <item type=\"input\">=ACCRINTM(\"2001-04-01\";\"2001-06-15\";0.1;1000;3)</item> returns 20.54795."
+msgstr " <item type=\"input\">=INT.ACUM.V(\"2001-04-01\";\"2001-06-15\";0.1;1000;3)</item> devuelve 20,54795."
+
+#: 04060103.xhp#bm_id3145753.help.text
+msgid "<bookmark_value>RECEIVED function</bookmark_value> <bookmark_value>amount received for fixed-interest securities</bookmark_value>"
+msgstr "<bookmark_value>función CANTIDAD.RECIBIDA</bookmark_value><bookmark_value>monto recibida por títulos a interés fijo</bookmark_value>"
+
+#: 04060103.xhp#hd_id3145753.390.help.text
+msgid "RECEIVED"
+msgstr "CANTIDAD.RECIBIDA"
+
+#: 04060103.xhp#par_id3150051.391.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_RECEIVED\">Calculates the amount received that is paid for a fixed-interest security at a given point in time.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_RECEIVED\">Calcula la cantidad recibida que se paga por un valor a interés fijo en un momento determinado.</ahelp>"
+
+#: 04060103.xhp#hd_id3149385.392.help.text
+msgctxt "04060103.xhp#hd_id3149385.392.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060103.xhp#par_id3145362.393.help.text
+msgid "RECEIVED(\"Settlement\"; \"Maturity\"; Investment; Discount; Basis)"
+msgstr "CANTIDAD.RECIBIDA(\"Liquidación\"; \"Vencimiento\"; Inversión; Descuenta; Bases) "
+
+#: 04060103.xhp#par_id3154654.394.help.text
+msgctxt "04060103.xhp#par_id3154654.394.help.text"
+msgid " <emph>Settlement</emph> is the date of purchase of the security."
+msgstr " <emph>Liquidación</emph> es la fecha de compra de la garantía."
+
+#: 04060103.xhp#par_id3153011.395.help.text
+msgctxt "04060103.xhp#par_id3153011.395.help.text"
+msgid " <emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr " <emph>Vencimiento</emph> es la fecha cuando la garantía vence (expira)."
+
+#: 04060103.xhp#par_id3155525.396.help.text
+msgid " <emph>Investment</emph> is the purchase sum."
+msgstr " <emph>Inversión</emph> es el valor de la compra."
+
+#: 04060103.xhp#par_id3155760.397.help.text
+msgid " <emph>Discount</emph> is the percentage discount on acquisition of the security."
+msgstr " <emph>Descuento</emph> es el porcentaje de descuento en la adquisición de la garantía."
+
+#: 04060103.xhp#hd_id3154710.398.help.text
+msgctxt "04060103.xhp#hd_id3154710.398.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060103.xhp#par_id3154735.399.help.text
+msgid "Settlement date: February 15 1999, maturity date: May 15 1999, investment sum: 1000 currency units, discount: 5.75 per cent, basis: Daily balance/360 = 2."
+msgstr "Fecha de liquidación: 15 de febrero de 1999, fecha de vencimiento: 15 de mayo de 1999, cantidad de inversión: 1000 unidades monetarias, Tasa de descuento: 5,75 por ciento, Bases: Balance_diario/360 = 2."
+
+#: 04060103.xhp#par_id3146108.400.help.text
+msgid "The amount received on the maturity date is calculated as follows:"
+msgstr "La cantidad de liquidación en la fecha de vencimiento se calcula de esta forma:"
+
+#: 04060103.xhp#par_id3147246.401.help.text
+msgid " <item type=\"input\">=RECEIVED(\"1999-02-15\";\"1999-05-15\";1000;0.0575;2)</item> returns 1014.420266."
+msgstr " <item type=\"input\">=CANTIDAD.RECIBIDA (\"1999-02-15\";\"1999-05-15\";1000;0.0575;2)</item> devuelve 1.014,420266."
+
+#: 04060103.xhp#bm_id3147556.help.text
+msgid "<bookmark_value>PV function</bookmark_value> <bookmark_value>present values</bookmark_value> <bookmark_value>calculating; present values</bookmark_value>"
+msgstr "<bookmark_value>función VA</bookmark_value><bookmark_value>valores actuales</bookmark_value><bookmark_value>calcular;valores actuales</bookmark_value>"
+
+#: 04060103.xhp#hd_id3147556.3.help.text
+msgid "PV"
+msgstr "VA "
+
+#: 04060103.xhp#par_id3153301.4.help.text
+msgid "<ahelp hid=\"HID_FUNC_BW\">Returns the present value of an investment resulting from a series of regular payments.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_BW\">Calcula el valor efectivo resultante de una inversión fruto de una serie de pagos regulares.</ahelp>"
+
+#: 04060103.xhp#par_id3146099.5.help.text
+msgid "Use this function to calculate the amount of money needed to be invested at a fixed rate today, to receive a specific amount, an annuity, over a specified number of periods. You can also determine how much money is to remain after the elapse of the period. Specify as well if the amount is to be paid out at the beginning or at the end of each period."
+msgstr "Utilice esta función para calcular la suma de dinero que debe invertir hoy a un interés fijo para recibir pagos regulares (anualidades) durante un determinado número de períodos. Opcionalmente, también es posible definir el importe que debe quedar disponible al final de estos períodos. Se puede especificar también si el importe que debe satisfacerse se abona respectivamente al inicio o al final de un período."
+
+#: 04060103.xhp#par_id3153334.6.help.text
+msgid "Enter these values either as numbers, expressions or references. If, for example, interest is paid annually at 8%, but you want to use month as your period, enter 8%/12 under <emph>Rate</emph> and <item type=\"productname\">%PRODUCTNAME</item> Calc with automatically calculate the correct factor."
+msgstr "Indique los valores en forma de números, expresiones o referencias. Si, por ejemplo, percibe intereses anuales del 8% pero desea definir como período el mes, introduzca 8%/12 en el campo <emph>Tasa</emph> y <item type=\"productname\">%PRODUCTNAME</item> Calc calcula automáticamente el factor correcto."
+
+#: 04060103.xhp#hd_id3147407.7.help.text
+msgctxt "04060103.xhp#hd_id3147407.7.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060103.xhp#par_id3150395.8.help.text
+msgid "PV(Rate; NPer; Pmt; FV; Type)"
+msgstr "VA(tASA; NPer; Cuota Fija; Valor Futuro; Tipo)"
+
+#: 04060103.xhp#par_id3151341.9.help.text
+msgid " <emph>Rate</emph> defines the interest rate per period."
+msgstr " <emph>Tasa</emph> es la tasa de interés por período."
+
+#: 04060103.xhp#par_id3153023.10.help.text
+msgid " <emph>NPer</emph> is the total number of periods (payment period)."
+msgstr " <emph>NPer</emph> es la cantidad total de periodos de pagos (periodo de pago)."
+
+#: 04060103.xhp#par_id3146323.11.help.text
+msgid " <emph>Pmt</emph> is the regular payment made per period."
+msgstr " <emph>Pago</emph> es el pago regular realizado en cada periodo."
+
+#: 04060103.xhp#par_id3150536.12.help.text
+msgid " <emph>FV</emph> (optional) defines the future value remaining after the final installment has been made."
+msgstr " <emph>VF</emph> (opcional) define el valor futuro que queda tras el pago de la última cuota."
+
+#: 04060103.xhp#par_id3146883.13.help.text
+msgid " <emph>Type</emph> (optional) denotes due date for payments. Type = 1 means due at the beginning of a period and Type = 0 (default) means due at the end of the period."
+msgstr " <emph>Tipo</emph> (opcional) es la fecha de vencimiento para los pagos. Tipo = 1 significa que el vencimiento tiene lugar al inicio del período, mientras que Tipo = 0 (el valor predeterminado) indica que el vencimiento se produce al final del período."
+
+#: 04060103.xhp#par_idN10B13.help.text
+msgctxt "04060103.xhp#par_idN10B13.help.text"
+msgid " <embedvar href=\"text/scalc/00/00000004.xhp#optional\"/> "
+msgstr " <embedvar href=\"text/scalc/00/00000004.xhp#optional\"/> "
+
+#: 04060103.xhp#hd_id3150037.14.help.text
+msgctxt "04060103.xhp#hd_id3150037.14.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060103.xhp#par_id3145225.15.help.text
+msgid "What is the present value of an investment, if 500 currency units are paid out monthly and the annual interest rate is 8%? The payment period is 48 months and 20,000 currency units are to remain at the end of the payment period."
+msgstr "¿Cuál es el valor efectivo de una inversión si se abonan 500 unidades monetarias al mes y el tipo de interés anual es del 8%? Siendo el período de pago de 48 meses y el valor final 20.000 unidades monetarias:"
+
+#: 04060103.xhp#par_id3155907.16.help.text
+msgid " <item type=\"input\">=PV(8%/12;48;500;20000)</item> = -35,019.37 currency units. Under the named conditions, you must deposit 35,019.37 currency units today, if you want to receive 500 currency units per month for 48 months and have 20,000 currency units left over at the end. Cross-checking shows that 48 x 500 currency units + 20,000 currency units = 44,000 currency units. The difference between this amount and the 35,000 currency units deposited represents the interest paid."
+msgstr "<item type=\"input\">=VA(8%/12;48;500;20000)</item> = -35.019,37 unidades monetarias. En las condiciones especificadas, se tienen que depositar 35,019.37 unidades monetarias el día de hoy, si se desea recibir 500 unidades monetarias mensualmente por 48 meses, quedando 20.000 unidades pendientes al final. La verificación cruzada indica que 48 x 500 unidades monetarias + 20.000 unidades monetarias = 44.000 unidades monetarias. La diferencia entre este monto y las 35.000 unidades depositadas representa el interés pagado."
+
+#: 04060103.xhp#par_id3149150.17.help.text
+msgid "If you enter references instead of these values into the formula, you can calculate any number of \"If-then\" scenarios. Please note: references to constants must be defined as absolute references. Examples of this type of application are found under the depreciation functions."
+msgstr "Si en lugar de introducir valores directamente lo hace en forma de referencia en la fórmula, puede efectuar cálculos estimativos del tipo \"Qué pasaría si...\" Recuerde definir las referencias a las constantes como referencias absolutas. En las funciones de amortización se encuentran ejemplos de este tipo de aplicación."
+
+#: 04060103.xhp#bm_id3152978.help.text
+msgid "<bookmark_value>calculating; depreciations</bookmark_value> <bookmark_value>SYD function</bookmark_value> <bookmark_value>depreciations; arithmetic declining</bookmark_value> <bookmark_value>arithmetic declining depreciations</bookmark_value>"
+msgstr "<bookmark_value>calcular; depreciaciones</bookmark_value> <bookmark_value>SYD</bookmark_value> <bookmark_value>depreciaciones; degresión aritmética</bookmark_value> <bookmark_value>depreciaciones de aritmética decrecientes</bookmark_value>"
+
+#: 04060103.xhp#hd_id3152978.19.help.text
+msgid "SYD"
+msgstr "SYD"
+
+#: 04060103.xhp#par_id3148732.20.help.text
+msgid "<ahelp hid=\"HID_FUNC_DIA\">Returns the arithmetic-declining depreciation rate.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DIA\">Calcula la tasa de depreciación de aritmética decreciente.</ahelp>"
+
+#: 04060103.xhp#par_id3149886.21.help.text
+msgid "Use this function to calculate the depreciation amount for one period of the total depreciation span of an object. Arithmetic declining depreciation reduces the depreciation amount from period to period by a fixed sum."
+msgstr "Utilice esta función para calcular el importe de amortización de un período determinado durante el período de amortización completo de un objeto. La amortización digital reduce el importe de amortización de un período a otro en un importe fijo."
+
+#: 04060103.xhp#hd_id3149431.22.help.text
+msgctxt "04060103.xhp#hd_id3149431.22.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060103.xhp#par_id3150483.23.help.text
+msgid "SYD(Cost; Salvage; Life; Period)"
+msgstr "SYD(Costo; Valor de salvamento; Vida; Periodo)"
+
+#: 04060103.xhp#par_id3146879.24.help.text
+msgctxt "04060103.xhp#par_id3146879.24.help.text"
+msgid " <emph>Cost</emph> is the initial cost of an asset."
+msgstr " <emph>Costo</emph> es el costo inicial de un activo."
+
+#: 04060103.xhp#par_id3147423.25.help.text
+msgid " <emph>Salvage</emph> is the value of an asset after depreciation."
+msgstr " <emph>Salvamento</emph> es el valor de un activo tras la amortización."
+
+#: 04060103.xhp#par_id3151229.26.help.text
+msgid " <emph>Life</emph> is the period fixing the time span over which an asset is depreciated."
+msgstr " <emph>Vida</emph> es el periodo que fija el intervalo de tiempo durante el cual un activo se amortiza."
+
+#: 04060103.xhp#par_id3147473.27.help.text
+msgid " <emph>Period</emph> defines the period for which the depreciation is to be calculated."
+msgstr " <emph>Período</emph> define el período para el que debe calcularse la amortización."
+
+#: 04060103.xhp#hd_id3148434.28.help.text
+msgctxt "04060103.xhp#hd_id3148434.28.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060103.xhp#par_id3149688.29.help.text
+msgid "A video system initially costing 50,000 currency units is to be depreciated annually for the next 5 years. The salvage value is to be 10,000 currency units. You want to calculate depreciation for the first year."
+msgstr "Un equipo de vídeo con un precio de compra de 50.000 unidades monetarias debe depreciarse anualmente durante 5 años. El valor de salvamento debe ser de 10.000 unidades monetarias. Determine la amortización correspondiente al primer año."
+
+#: 04060103.xhp#par_id3150900.30.help.text
+msgid " <item type=\"input\">=SYD(50000;10000;5;1)</item>=13,333.33 currency units. The depreciation amount for the first year is 13,333.33 currency units."
+msgstr " <item type=\"input\">=SYD(50000;10000;5;1)</item>=13.333,33 unidades monetarias. El monto de la amortización para el primer año es de 13.333,33 unidades monetarias."
+
+#: 04060103.xhp#par_id3146142.31.help.text
+msgid "To have an overview of depreciation rates per period, it is best to define a depreciation table. By entering the different depreciation formulas available in <item type=\"productname\">%PRODUCTNAME</item> Calc next to each other, you can see which depreciation form is the most appropriate. Enter the table as follows:"
+msgstr "Es recomendable definir una tabla de amortización para ver fácilmente todas las tasas de amortización por período. Si introduce una tras otra las diferentes fórmulas de cálculo de amortización de $[officename] Calc, se muestra también la forma de amortización más ventajosa en cada caso. Cree una tabla del modo siguiente:"
+
+#: 04060103.xhp#par_id3155258.32.help.text
+msgid " <emph>A</emph> "
+msgstr " <emph>A</emph> "
+
+#: 04060103.xhp#par_id3154558.33.help.text
+msgid " <emph>B</emph> "
+msgstr " <emph>B</emph> "
+
+#: 04060103.xhp#par_id3152372.34.help.text
+msgid " <emph>C</emph> "
+msgstr " <emph>C</emph> "
+
+#: 04060103.xhp#par_id3149949.35.help.text
+msgid " <emph>D</emph> "
+msgstr " <emph>D</emph> "
+
+#: 04060103.xhp#par_id3145123.36.help.text
+msgid " <emph>E</emph> "
+msgstr " <emph>E</emph> "
+
+#: 04060103.xhp#par_id3149504.37.help.text
+msgctxt "04060103.xhp#par_id3149504.37.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060103.xhp#par_id3153778.38.help.text
+msgid " <item type=\"input\">Initial Cost</item> "
+msgstr " <item type=\"input\">Costo inicial</item> "
+
+#: 04060103.xhp#par_id3159083.39.help.text
+msgid " <item type=\"input\">Salvage Value</item> "
+msgstr " <item type=\"input\">Valor de salvamento</item> "
+
+#: 04060103.xhp#par_id3150002.40.help.text
+msgid " <item type=\"input\">Useful Life</item> "
+msgstr " <item type=\"input\">Vida útil</item> "
+
+#: 04060103.xhp#par_id3153006.41.help.text
+msgid " <item type=\"input\">Time Period</item> "
+msgstr " <item type=\"input\">Intervalo de tiempo</item> "
+
+#: 04060103.xhp#par_id3154505.42.help.text
+msgid " <item type=\"input\">Deprec. SYD</item> "
+msgstr " <item type=\"input\">Amortiz. SYD</item> "
+
+#: 04060103.xhp#par_id3150336.43.help.text
+msgctxt "04060103.xhp#par_id3150336.43.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060103.xhp#par_id3155926.44.help.text
+msgid " <item type=\"input\">50,000 currency units</item> "
+msgstr " <item type=\"input\">50.000 unidades monetarias</item> "
+
+#: 04060103.xhp#par_id3153736.45.help.text
+msgid " <item type=\"input\">10,000 currency units</item> "
+msgstr " <item type=\"input\">10.000 unidades monetarias</item> "
+
+#: 04060103.xhp#par_id3150131.46.help.text
+msgctxt "04060103.xhp#par_id3150131.46.help.text"
+msgid " <item type=\"input\">5</item> "
+msgstr " <item type=\"input\">5</item> "
+
+#: 04060103.xhp#par_id3148766.47.help.text
+msgid " <item type=\"input\">1</item> "
+msgstr " <item type=\"input\">1</item> "
+
+#: 04060103.xhp#par_id3159136.48.help.text
+msgid " <item type=\"input\">13,333.33 currency units</item> "
+msgstr " <item type=\"input\">13.333,33 unidades monetarias</item> "
+
+#: 04060103.xhp#par_id3151018.49.help.text
+msgctxt "04060103.xhp#par_id3151018.49.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060103.xhp#par_id3148397.50.help.text
+msgid " <item type=\"input\">2</item> "
+msgstr " <item type=\"input\">2</item> "
+
+#: 04060103.xhp#par_id3146907.51.help.text
+msgid " <item type=\"input\">10,666.67 currency units</item> "
+msgstr " <item type=\"input\">10.666,67 unidades monetarias</item> "
+
+#: 04060103.xhp#par_id3147356.52.help.text
+msgctxt "04060103.xhp#par_id3147356.52.help.text"
+msgid "4"
+msgstr "4"
+
+#: 04060103.xhp#par_id3150267.53.help.text
+msgid " <item type=\"input\">3</item> "
+msgstr " <item type=\"input\">3</item> "
+
+#: 04060103.xhp#par_id3145628.54.help.text
+msgid " <item type=\"input\">8,000.00 currency units</item> "
+msgstr " <item type=\"input\">8.000,00 unidades monetarias</item> "
+
+#: 04060103.xhp#par_id3149004.55.help.text
+msgctxt "04060103.xhp#par_id3149004.55.help.text"
+msgid "5"
+msgstr "5"
+
+#: 04060103.xhp#par_id3153545.56.help.text
+msgid " <item type=\"input\">4</item> "
+msgstr " <item type=\"input\">4</item> "
+
+#: 04060103.xhp#par_id3154634.57.help.text
+msgid " <item type=\"input\">5,333.33 currency units</item> "
+msgstr " <item type=\"input\">5.333,33 unidades monetarias</item> "
+
+#: 04060103.xhp#par_id3147537.58.help.text
+msgctxt "04060103.xhp#par_id3147537.58.help.text"
+msgid "6"
+msgstr "6"
+
+#: 04060103.xhp#par_id3155085.59.help.text
+msgctxt "04060103.xhp#par_id3155085.59.help.text"
+msgid " <item type=\"input\">5</item> "
+msgstr " <item type=\"input\">5</item> "
+
+#: 04060103.xhp#par_id3158413.60.help.text
+msgid " <item type=\"input\">2,666.67 currency units</item> "
+msgstr " <item type=\"input\">2.666,67 unidades monetarias</item> "
+
+#: 04060103.xhp#par_id3154866.61.help.text
+msgctxt "04060103.xhp#par_id3154866.61.help.text"
+msgid "7"
+msgstr "7"
+
+#: 04060103.xhp#par_id3155404.62.help.text
+msgid " <item type=\"input\">6</item> "
+msgstr " <item type=\"input\">6</item> "
+
+#: 04060103.xhp#par_id3148431.63.help.text
+msgid " <item type=\"input\">0.00 currency units</item> "
+msgstr " <item type=\"input\">0,00 unidades monetarias</item> "
+
+#: 04060103.xhp#par_id3156261.64.help.text
+msgctxt "04060103.xhp#par_id3156261.64.help.text"
+msgid "8"
+msgstr "8"
+
+#: 04060103.xhp#par_id3083286.65.help.text
+msgid " <item type=\"input\">7</item> "
+msgstr " <item type=\"input\">7</item> "
+
+#: 04060103.xhp#par_id3083443.67.help.text
+msgctxt "04060103.xhp#par_id3083443.67.help.text"
+msgid "9"
+msgstr "9"
+
+#: 04060103.xhp#par_id3154815.68.help.text
+msgid " <item type=\"input\">8</item> "
+msgstr " <item type=\"input\">8</item> "
+
+#: 04060103.xhp#par_id3145082.70.help.text
+msgctxt "04060103.xhp#par_id3145082.70.help.text"
+msgid "10"
+msgstr "10"
+
+#: 04060103.xhp#par_id3156307.71.help.text
+msgid " <item type=\"input\">9</item> "
+msgstr " <item type=\"input\">9</item> "
+
+#: 04060103.xhp#par_id3147564.73.help.text
+msgctxt "04060103.xhp#par_id3147564.73.help.text"
+msgid "11"
+msgstr "11"
+
+#: 04060103.xhp#par_id3146856.74.help.text
+msgid " <item type=\"input\">10</item> "
+msgstr " <item type=\"input\">10</item> "
+
+#: 04060103.xhp#par_id3150880.76.help.text
+msgctxt "04060103.xhp#par_id3150880.76.help.text"
+msgid "12"
+msgstr "12"
+
+#: 04060103.xhp#par_id3145208.77.help.text
+msgctxt "04060103.xhp#par_id3145208.77.help.text"
+msgid "13"
+msgstr "13"
+
+#: 04060103.xhp#par_id3156113.78.help.text
+msgid " <item type=\"input\">>0</item> "
+msgstr " <item type=\"input\">0</item> "
+
+#: 04060103.xhp#par_id3153625.79.help.text
+msgid " <item type=\"input\">Total</item> "
+msgstr " <item type=\"input\">Total</item> "
+
+#: 04060103.xhp#par_id3151297.80.help.text
+msgid " <item type=\"input\">40,000.00 currency units</item> "
+msgstr " <item type=\"input\">40.000,00 unidades monetarias</item> "
+
+#: 04060103.xhp#par_id3149979.81.help.text
+msgid "The formula in E2 is as follows:"
+msgstr "La fórmula de E2 es la siguiente:"
+
+#: 04060103.xhp#par_id3155849.82.help.text
+msgid " <item type=\"input\">=SYD($A$2;$B$2;$C$2;D2)</item> "
+msgstr " <item type=\"input\">=SYD($A$2;$B$2;$C$2;D2)</item> "
+
+#: 04060103.xhp#par_id3156124.83.help.text
+msgid "This formula is duplicated in column E down to E11 (select E2, then drag down the lower right corner with the mouse)."
+msgstr "Esta fórmula se duplica en la columna E hasta la celda E10 (seleccionar E2 y arrastrar la esquina inferior derecha hacia abajo con el ratón)."
+
+#: 04060103.xhp#par_id3147270.84.help.text
+msgid "Cell E13 contains the formula used to check the total of the depreciation amounts. It uses the SUMIF function as the negative values in E8:E11 must not be considered. The condition >0 is contained in cell A13. The formula in E13 is as follows:"
+msgstr "En la celda E13 se encuentra la fórmula que suma todos los importes de la amortización para su comprobación. Se sirve de la función SUMAR.SI porque los valores negativos en E8:E11 no deben tenerse en cuenta. La condición >0 se encuentra en la celda A13. La fórmula de E13 es la siguiente:"
+
+#: 04060103.xhp#par_id3152811.85.help.text
+msgid " <item type=\"input\">=SUMIF(E2:E11;A13)</item> "
+msgstr " <item type=\"input\">=SUMAR.SI(E2:E11;A13)</item> "
+
+#: 04060103.xhp#par_id3155998.86.help.text
+msgid "Now view the depreciation for a 10 year period, or at a salvage value of 1 currency unit, or enter a different initial cost, and so on."
+msgstr "A continuación podrá ver la amortización a 10 años, consultarla con un valor de salvamento de 1 unidad monetaria, introducir otros precios de compra, etc."
+
+#: 04060103.xhp#bm_id3155104.help.text
+msgid "<bookmark_value>DISC function</bookmark_value> <bookmark_value>allowances</bookmark_value> <bookmark_value>discounts</bookmark_value>"
+msgstr "<bookmark_value>TASA.DESC</bookmark_value> <bookmark_value>provisiones</bookmark_value> <bookmark_value>descuentos</bookmark_value>"
+
+#: 04060103.xhp#hd_id3155104.379.help.text
+msgid "DISC"
+msgstr "TASA.DESC"
+
+#: 04060103.xhp#par_id3153891.380.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_DISC\">Calculates the allowance (discount) of a security as a percentage.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DISC\">Calcula la provisión (descuento) de un valor en forma de porcentaje.</ahelp>"
+
+#: 04060103.xhp#hd_id3153982.381.help.text
+msgctxt "04060103.xhp#hd_id3153982.381.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060103.xhp#par_id3149756.382.help.text
+msgid "DISC(\"Settlement\"; \"Maturity\"; Price; Redemption; Basis)"
+msgstr "DISC(\"Liquidación\"; \"Vencimiento\"; Precio; Redención; Bases)"
+
+#: 04060103.xhp#par_id3156014.383.help.text
+msgctxt "04060103.xhp#par_id3156014.383.help.text"
+msgid " <emph>Settlement</emph> is the date of purchase of the security."
+msgstr " <emph>Liquidación</emph> es la fecha de compra de la garantía."
+
+#: 04060103.xhp#par_id3154304.384.help.text
+msgctxt "04060103.xhp#par_id3154304.384.help.text"
+msgid " <emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr " <emph>Vencimiento</emph> es la fecha cuando la garantía vence (expira)."
+
+#: 04060103.xhp#par_id3159180.385.help.text
+msgid " <emph>Price</emph> is the price of the security per 100 currency units of par value."
+msgstr " <emph>Precio</emph> es el precio de la garantía por cada 100 unidades monetarias de valor nominal."
+
+#: 04060103.xhp#par_id3147253.386.help.text
+msgid " <emph>Redemption</emph> is the redemption value of the security per 100 currency units of par value."
+msgstr " <emph>Rescate</emph> es el valor de rescate de la garantía por cada 100 unidades monetarias de valor nominal."
+
+#: 04060103.xhp#hd_id3151174.387.help.text
+msgctxt "04060103.xhp#hd_id3151174.387.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060103.xhp#par_id3155902.388.help.text
+msgid "A security is purchased on 2001-01-25; the maturity date is 2001-11-15. The price (purchase price) is 97, the redemption value is 100. Using daily balance calculation (basis 3) how high is the settlement (discount)?"
+msgstr "Se compra un valor el 25-01-2001; la fecha de vencimiento es el 15-11-2001. El precio (precio de compra) es 97, el valor de rendimiento es 100. Con el cálculo diario (base 3) ¿cuál es la liquidación (descuento)?"
+
+#: 04060103.xhp#par_id3152797.389.help.text
+msgid " <item type=\"input\">=DISC(\"2001-01-25\";\"2001-11-15\";97;100;3)</item> returns about 0.0372 or 3.72 per cent."
+msgstr " <item type=\"input\">=TASA.DESC(\"2001-01-25\";\"2001-11-15\";97;100;3)</item> devuelve alrededor de 0,0372 % 3,72 %."
+
+#: 04060103.xhp#bm_id3154695.help.text
+msgid "<bookmark_value>DURATION_ADD function</bookmark_value> <bookmark_value>Microsoft Excel functions</bookmark_value> <bookmark_value>durations;fixed interest securities</bookmark_value>"
+msgstr "<bookmark_value>DURACIÓN_ADD</bookmark_value> <bookmark_value>funciones de Microsoft Excel</bookmark_value> <bookmark_value>duraciones;títulos con interés fijo</bookmark_value>"
+
+#: 04060103.xhp#hd_id3154695.402.help.text
+msgid "DURATION_ADD"
+msgstr "DURACION_ADD"
+
+#: 04060103.xhp#par_id3145768.403.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_DURATION\">Calculates the duration of a fixed interest security in years.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DURATION\">Calcula la duración, en años, de un valor de interés fijo.</ahelp>"
+
+#: 04060103.xhp#hd_id3153904.404.help.text
+msgctxt "04060103.xhp#hd_id3153904.404.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060103.xhp#par_id3153373.405.help.text
+msgid "DURATION_ADD(\"Settlement\"; \"Maturity\"; Coupon; Yield; Frequency; Basis)"
+msgstr "DURATION_ADD(\"Liquidación\"; \"Vencimiento\"; Cupón; Rendimiento; Frecuencia; Bases)"
+
+#: 04060103.xhp#par_id3155397.406.help.text
+msgctxt "04060103.xhp#par_id3155397.406.help.text"
+msgid " <emph>Settlement</emph> is the date of purchase of the security."
+msgstr " <emph>Liquidación</emph> es la fecha de compra de la garantía."
+
+#: 04060103.xhp#par_id3148558.407.help.text
+msgctxt "04060103.xhp#par_id3148558.407.help.text"
+msgid " <emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr " <emph>Vencimiento</emph> es la fecha cuando la garantía vence (expira)."
+
+#: 04060103.xhp#par_id3153096.408.help.text
+msgid " <emph>Coupon</emph> is the annual coupon interest rate (nominal rate of interest)"
+msgstr " <emph>Vale</emph> es la tasa anual de interés del vale (tasa nominal de interés)"
+
+#: 04060103.xhp#par_id3154594.409.help.text
+msgid " <emph>Yield</emph> is the annual yield of the security."
+msgstr " <emph>Rendimeinto</emph> es la ganancia anual de la garantía."
+
+#: 04060103.xhp#par_id3149906.410.help.text
+msgctxt "04060103.xhp#par_id3149906.410.help.text"
+msgid " <emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr " <emph>Frecuencia</emph> es la cantidad de pagos de intereses por año (1, 2 o 4)."
+
+#: 04060103.xhp#hd_id3146995.411.help.text
+msgctxt "04060103.xhp#hd_id3146995.411.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060103.xhp#par_id3148834.412.help.text
+msgid "A security is purchased on 2001-01-01; the maturity date is 2006-01-01. The Coupon rate of interest is 8%. The yield is 9.0%. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how long is the duration?"
+msgstr "Un valor se compra el 01-01-2001; la fecha de vencimiento es el 01-01-2006. El interés nominal asciende al 8 %. La rentabilidad es del 9 %. El interés se paga semestralmente (la frecuencia es 2). ¿Cuál es la duración al realizar un cálculo (base 3) diario?"
+
+#: 04060103.xhp#par_id3154902.413.help.text
+msgid " <item type=\"input\">=DURATION_ADD(\"2001-01-01\";\"2006-01-01\";0.08;0.09;2;3)</item> "
+msgstr " <item type=\"input\">=DURACION_ADD(\"2001-01-01\";\"2006-01-01\";0.08;0.09;2;3)</item> "
+
+#: 04060103.xhp#bm_id3159147.help.text
+msgid "<bookmark_value>annual net interest rates</bookmark_value> <bookmark_value>calculating; annual net interest rates</bookmark_value> <bookmark_value>net annual interest rates</bookmark_value> <bookmark_value>EFFECTIVE function</bookmark_value>"
+msgstr "<bookmark_value>interés efectivo anual</bookmark_value> <bookmark_value>calcular; interés efectivo anual</bookmark_value> <bookmark_value>interés efectivo anual</bookmark_value> <bookmark_value>INT.EFECTIVO</bookmark_value>"
+
+#: 04060103.xhp#hd_id3159147.88.help.text
+msgid "EFFECTIVE"
+msgstr "INT.EFECTIVO"
+
+#: 04060103.xhp#par_id3154204.89.help.text
+msgid "<ahelp hid=\"HID_FUNC_EFFEKTIV\">Returns the net annual interest rate for a nominal interest rate.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_EFFEKTIV\">Calcula el interés efectivo anual respecto a una tasa de interés nominal.</ahelp>"
+
+#: 04060103.xhp#par_id3145417.90.help.text
+msgid "Nominal interest refers to the amount of interest due at the end of a calculation period. Effective interest increases with the number of payments made. In other words, interest is often paid in installments (for example, monthly or quarterly) before the end of the calculation period."
+msgstr "Como la tasa de interés nominal se basa en un vencimiento de intereses al final del período de cálculo y en cambio, por lo general, los intereses se abonan mensual o trimestralmente, incluso en otros períodos anteriores al final del período de cálculo (es decir, se pagan por adelantado), los intereses efectivos se incrementan con el número de pagos parciales de intereses."
+
+#: 04060103.xhp#hd_id3150510.91.help.text
+msgctxt "04060103.xhp#hd_id3150510.91.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060103.xhp#par_id3148805.92.help.text
+msgid "EFFECTIVE(Nom; P)"
+msgstr "EFFECTIVE(Nom; P)"
+
+#: 04060103.xhp#par_id3149768.93.help.text
+msgid " <emph>Nom</emph> is the nominal interest."
+msgstr " <emph>Nom</emph> es el interés nominal."
+
+#: 04060103.xhp#par_id3149334.94.help.text
+msgid " <emph>P</emph> is the number of interest payment periods per year."
+msgstr "<emph>P</emph> es la cantidad de periodos de pago de intereses por año."
+
+#: 04060103.xhp#hd_id3154223.95.help.text
+msgctxt "04060103.xhp#hd_id3154223.95.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060103.xhp#par_id3144499.96.help.text
+msgid "If the annual nominal interest rate is 9.75% and four interest calculation periods are defined, what is the actual interest rate (effective rate)?"
+msgstr "Si los intereses nominales anuales son del 9,75 % y se han previsto cuatro períodos de cálculo de intereses, ¿cuál es la tasa de interés real (intereses efectivos)?"
+
+#: 04060103.xhp#par_id3150772.97.help.text
+msgid " <item type=\"input\">=EFFECTIVE(9.75%;4)</item> = 10.11% The annual effective rate is therefore 10.11%."
+msgstr " <item type=\"input\">=INT.EFECTIVO(9.75%;4)</item> = 10,11% La tasa anual de interés efectivo es por lo tanto de 10,11%."
+
+#: 04060103.xhp#bm_id3147241.help.text
+msgid "<bookmark_value>effective interest rates</bookmark_value> <bookmark_value>EFFECT_ADD function</bookmark_value>"
+msgstr "<bookmark_value>tasas de intereses efectivas</bookmark_value><bookmark_value>función INT.EFECTIVO_ADD</bookmark_value>"
+
+#: 04060103.xhp#hd_id3147241.414.help.text
+msgid "EFFECT_ADD"
+msgstr "INT.EFECTIVO_ADD"
+
+#: 04060103.xhp#par_id3147524.415.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_EFFECT\">Calculates the effective annual rate of interest on the basis of the nominal interest rate and the number of interest payments per annum.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_EFFECT\">Calcula la tasa efectiva de interés anual a partir de la tasa de interés nominal y el número de pagos de intereses por año.</ahelp>"
+
+#: 04060103.xhp#hd_id3155364.416.help.text
+msgctxt "04060103.xhp#hd_id3155364.416.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060103.xhp#par_id3155118.417.help.text
+msgid "EFFECT_ADD(NominalRate; NPerY)"
+msgstr "EFFECT_ADD(NominalRate; NPerY)"
+
+#: 04060103.xhp#par_id3148907.418.help.text
+msgid " <emph>NominalRate</emph> is the annual nominal rate of interest."
+msgstr " <emph>TasaNominal</emph> es la tasa nominal anual de interés."
+
+#: 04060103.xhp#par_id3154274.419.help.text
+msgid " <emph>NPerY </emph>is the number of interest payments per year."
+msgstr " <emph>NPerY </emph>es el número de pagos de intereses por año."
+
+#: 04060103.xhp#hd_id3149156.420.help.text
+msgctxt "04060103.xhp#hd_id3149156.420.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060103.xhp#par_id3158426.421.help.text
+msgid "What is the effective annual rate of interest for a 5.25% nominal rate and quarterly payment."
+msgstr "¿Cuál es el interés efectivo con un interés nominal del 5,25% y un pago trimestral?"
+
+#: 04060103.xhp#par_id3148927.422.help.text
+msgid " <item type=\"input\">=EFFECT_ADD(0.0525;4)</item> returns 0.053543 or 5.3543%."
+msgstr " <item type=\"input\">=INT.EFECTIVO_ADD(0,0525;4)</item> devuelve 0,053543 % o 5,3543 %."
+
+#: 04060103.xhp#bm_id3149998.help.text
+msgid "<bookmark_value>calculating; arithmetic-degressive depreciations</bookmark_value> <bookmark_value>arithmetic-degressive depreciations</bookmark_value> <bookmark_value>depreciations;arithmetic-degressive</bookmark_value> <bookmark_value>DDB function</bookmark_value>"
+msgstr "<bookmark_value>calcular; depreciaciones degresivas aritméticas</bookmark_value><bookmark_value>depreciaciones degresivas aritméticas</bookmark_value><bookmark_value>depreciaciones;degresivas aritméticas</bookmark_value><bookmark_value>función DDB</bookmark_value>"
+
+#: 04060103.xhp#hd_id3149998.99.help.text
+msgid "DDB"
+msgstr "DDB"
+
+#: 04060103.xhp#par_id3159190.100.help.text
+msgid "<ahelp hid=\"HID_FUNC_GDA\">Returns the depreciation of an asset for a specified period using the arithmetic-declining method.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GDA\">Devuelve la depreciación de un activo en un período específico según el método aritmético degresivo.</ahelp>"
+
+#: 04060103.xhp#par_id3152361.101.help.text
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr "Esta forma de depreciación es la adecuada si precisa un valor más alto de depreciación inicial, a diferencia de la depreciación lineal. El valor de depreciación disminuye con cada período; suele utilizarse en aquellos activos que pierden más valor poco después de su adquisición (por ejemplo, automóviles o equipos informáticos). Tenga en cuenta que el valor contable nunca llegará a cero con este tipo de cálculo."
+
+#: 04060103.xhp#hd_id3156038.102.help.text
+msgctxt "04060103.xhp#hd_id3156038.102.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060103.xhp#par_id3166452.103.help.text
+msgid "DDB(Cost; Salvage; Life; Period; Factor)"
+msgstr "DDB(Costo; Valor de salvamento; Vida; Periodo; Factor)"
+
+#: 04060103.xhp#par_id3153237.104.help.text
+msgid " <emph>Cost</emph> fixes the initial cost of an asset."
+msgstr " <emph>Costo</emph> fija el costo inicial de un activo."
+
+#: 04060103.xhp#par_id3149787.105.help.text
+msgid " <emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr " <emph>Salvamento</emph> fija el valor de un activo al final de su vida."
+
+#: 04060103.xhp#par_id3152945.106.help.text
+msgid " <emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr " <emph>Vida</emph> es el número de períodos (por ejemplo, años o meses) que definen la duración del uso del activo."
+
+#: 04060103.xhp#par_id3149736.107.help.text
+msgid " <emph>Period</emph> states the period for which the value is to be calculated."
+msgstr " <emph>Período</emph> define el período para el que debe calcularse el valor."
+
+#: 04060103.xhp#par_id3150243.108.help.text
+msgid " <emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr " <emph>Factor</emph> (opcional) es el factor por el que disminuye la amortización. Si no se indica un valor, el factor predeterminado es 2."
+
+#: 04060103.xhp#hd_id3159274.109.help.text
+msgctxt "04060103.xhp#hd_id3159274.109.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060103.xhp#par_id3152882.110.help.text
+msgid "A computer system with an initial cost of 75,000 currency units is to be depreciated monthly over 5 years. The value at the end of the depreciation is to be 1 currency unit. The factor is 2."
+msgstr "Un equipo informático con un precio de compra de 75.000 unidades monetarias debe amortizarse mensualmente durante 5 años. El valor residual debe ser 1 unidad monetaria. El factor es 2."
+
+#: 04060103.xhp#par_id3154106.111.help.text
+msgid " <item type=\"input\">=DDB(75000;1;60;12;2) </item>= 1,721.81 currency units. Therefore, the double-declining depreciation in the twelfth month after purchase is 1,721.81 currency units."
+msgstr " <item type=\"input\">=DDB(75000;1;60;12;2) </item>= 1.721,81 unidades monetarias. Por lo tanto, la amortización degresiva en plazos dobles en el mes doce tras la compra es de 1.721,81 unidades monetarias."
+
+#: 04060103.xhp#bm_id3149962.help.text
+msgid "<bookmark_value>calculating; geometric-degressive depreciations</bookmark_value> <bookmark_value>geometric-degressive depreciations</bookmark_value> <bookmark_value>depreciations;geometric-degressive</bookmark_value> <bookmark_value>DB function</bookmark_value>"
+msgstr "<bookmark_value>calcular; depreciaciones degresivas geométricas</bookmark_value><bookmark_value>depreciaciones degresivas geométricas</bookmark_value><bookmark_value>depreciaciones;degresivas geométricas</bookmark_value><bookmark_value>función DB</bookmark_value>"
+
+#: 04060103.xhp#hd_id3149962.113.help.text
+msgid "DB"
+msgstr "DB"
+
+#: 04060103.xhp#par_id3148989.114.help.text
+msgid "<ahelp hid=\"HID_FUNC_GDA2\">Returns the depreciation of an asset for a specified period using the double-declining balance method.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GDA2\">Devuelve la depreciación de un activo en un período específico según el método de amortización por doble disminución de saldo.</ahelp>"
+
+#: 04060103.xhp#par_id3156213.115.help.text
+msgid "This form of depreciation is used if you want to get a higher depreciation value at the beginning of the depreciation (as opposed to linear depreciation). The depreciation value is reduced with every depreciation period by the depreciation already deducted from the initial cost."
+msgstr "Utilice este modo de amortización para obtener, al contrario que con el modo lineal, un valor de amortización mayor al inicio de la amortización. Con cada período de amortización, dicho valor se reduce en las amortizaciones ya deducidas del valor de compra."
+
+#: 04060103.xhp#hd_id3149807.116.help.text
+msgctxt "04060103.xhp#hd_id3149807.116.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060103.xhp#par_id3153349.117.help.text
+msgid "DB(Cost; Salvage; Life; Period; Month)"
+msgstr "DB(Costo; Valor de salvamento; Vida; Periodo; Mes)"
+
+#: 04060103.xhp#par_id3148462.118.help.text
+msgctxt "04060103.xhp#par_id3148462.118.help.text"
+msgid " <emph>Cost</emph> is the initial cost of an asset."
+msgstr "<emph>Costo</emph> es el costo inicial de un activo."
+
+#: 04060103.xhp#par_id3148658.119.help.text
+msgid " <emph>Salvage</emph> is the value of an asset at the end of the depreciation."
+msgstr " <emph>Salvamento</emph> es el valor de un activo al final de la amortización."
+
+#: 04060103.xhp#par_id3145371.120.help.text
+msgid " <emph>Life</emph> defines the period over which an asset is depreciated."
+msgstr " <emph>Vida</emph> define el período durante el cual se amortiza un activo."
+
+#: 04060103.xhp#par_id3154608.121.help.text
+msgid " <emph>Period</emph> is the length of each period. The length must be entered in the same date unit as the depreciation period."
+msgstr " <emph>Período</emph> es la duración de cada período. La duración debe indicarse en la misma unidad de tiempo que el periodo de amortización."
+
+#: 04060103.xhp#par_id3150829.122.help.text
+msgid " <emph>Month</emph> (optional) denotes the number of months for the first year of depreciation. If an entry is not defined, 12 is used as the default."
+msgstr " <emph>Mes</emph> (opcional) indica la cantidad de meses para el primer año de amortización. Si no se indica nada, se usa el valor 12 como predeterminado."
+
+#: 04060103.xhp#hd_id3151130.123.help.text
+msgctxt "04060103.xhp#hd_id3151130.123.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060103.xhp#par_id3156147.124.help.text
+msgid "A computer system with an initial cost of 25,000 currency units is to be depreciated over a three year period. The salvage value is to be 1,000 currency units. One period is 30 days."
+msgstr "Un equipo informático con un coste de compra inicial de 25.000 unidades monetarias debe amortizarse en un período de tres años. El Valor de salvamento al final de la amortización debe ser de 1.000 unidades monetarias. La duración de un período es de 30 días."
+
+#: 04060103.xhp#par_id3149513.125.help.text
+msgid " <item type=\"input\">=DB(25000;1000;36;1;6)</item> = 1,075.00 currency units"
+msgstr " <item type=\"input\">=DB(25000;1000;36;1;6)</item> = 1.075,00 unidades monetarias"
+
+#: 04060103.xhp#par_id3159242.126.help.text
+msgid "The fixed-declining depreciation of the computer system is 1,075.00 currency units."
+msgstr "La amortización geométrica decreciente del equipo informático es de 1.075,00 unidades monetarias."
+
+#: 04060103.xhp#bm_id3153948.help.text
+msgid "<bookmark_value>IRR function</bookmark_value> <bookmark_value>calculating;internal rates of return, regular payments</bookmark_value> <bookmark_value>internal rates of return;regular payments</bookmark_value>"
+msgstr "<bookmark_value>TIR</bookmark_value> <bookmark_value>calcular;interés interno, pagos regulares</bookmark_value> <bookmark_value>interés interno;pagos regulares</bookmark_value>"
+
+#: 04060103.xhp#hd_id3153948.128.help.text
+msgid "IRR"
+msgstr "TIR"
+
+#: 04060103.xhp#par_id3143282.129.help.text
+msgid "<ahelp hid=\"HID_FUNC_IKV\">Calculates the internal rate of return for an investment.</ahelp> The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr "<ahelp hid=\"HID_FUNC_IKV\">Calcula la tasa interna de retorno de una inversión.</ahelp> Los valores representan el efectivo a intervalos regulares: al menos un valor debe ser negativo (pagos) y al menos un valor debe ser positivo (ingreso)."
+
+#: 04060103.xhp#hd_id3150599.130.help.text
+msgctxt "04060103.xhp#hd_id3150599.130.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060103.xhp#par_id3155427.131.help.text
+msgid "IRR(Values; Guess)"
+msgstr "TIR(Valores; Valor de Referencia)"
+
+#: 04060103.xhp#par_id3144758.132.help.text
+msgid " <emph>Values</emph> represents an array containing the values."
+msgstr " <emph>Valores</emph> representa a una matriz que contiene los valores."
+
+#: 04060103.xhp#par_id3149233.133.help.text
+msgid " <emph>Guess</emph> (optional) is the estimated value. An iterative method is used to calculate the internal rate of return. If you can provide only few values, you should provide an initial guess to enable the iteration."
+msgstr " <emph>Estimación</emph> (opcional) es el valor estimado. Se usa un método iterativo para calcular la tasa interna de retorno. Si solamente se pueden proporcionar algunos valores, se deben proporcionar valores estimados iniciales para permitir la iteración."
+
+#: 04060103.xhp#hd_id3151258.134.help.text
+msgctxt "04060103.xhp#hd_id3151258.134.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060103.xhp#par_id3150630.135.help.text
+msgid "Under the assumption that cell contents are A1=<item type=\"input\">-10000</item>, A2=<item type=\"input\">3500</item>, A3=<item type=\"input\">7600</item> and A4=<item type=\"input\">1000</item>, the formula <item type=\"input\">=IRR(A1:A4)</item> gives a result of 11,33%."
+msgstr "Bajo el supuesto de que los contenidos de las celdas sean: A1=<item type=\"input\">-10000</item>, A2=<item type=\"input\">3500</item>, A3=<item type=\"input\">7600</item> y A4=<item type=\"input\">1000</item>, la formula <item type=\"input\">=TIR(A1:A4)</item> da un resultado de 11,33%."
+
+#: 04060103.xhp#bm_id3151012.help.text
+msgid "<bookmark_value>calculating; interests for unchanged amortization installments</bookmark_value> <bookmark_value>interests for unchanged amortization installments</bookmark_value> <bookmark_value>ISPMT function</bookmark_value>"
+msgstr "<bookmark_value>calcular;interés de cuota de amortización no modificada</bookmark_value><bookmark_value>interés de cuota de amortización no modificada</bookmark_value><bookmark_value>función INT.PAGO.DIR</bookmark_value>"
+
+#: 04060103.xhp#hd_id3151012.314.help.text
+msgid "ISPMT"
+msgstr "INT.PAGO.DIR"
+
+#: 04060103.xhp#par_id3148693.315.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISPMT\">Calculates the level of interest for unchanged amortization installments.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISPMT\">Calcula el nivel de interés en el caso de cuotas de amortización invariables.</ahelp>"
+
+#: 04060103.xhp#hd_id3154661.316.help.text
+msgctxt "04060103.xhp#hd_id3154661.316.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: 04060103.xhp#par_id3146070.317.help.text
+msgid "ISPMT(Rate; Period; TotalPeriods; Invest)"
+msgstr "INT.PAGO.DIR(Tasa; Periodo; TotalPeriodos; Inversión)"
+
+#: 04060103.xhp#par_id3148672.318.help.text
+msgid " <emph>Rate</emph> sets the periodic interest rate."
+msgstr " <emph>Tasa</emph> establece la tasa periódica de interés."
+
+#: 04060103.xhp#par_id3145777.319.help.text
+msgid " <emph>Period</emph> is the number of installments for calculation of interest."
+msgstr " <emph>Período</emph> es el número de cuotas para el cálculo de intereses."
+
+#: 04060103.xhp#par_id3153678.320.help.text
+msgid " <emph>TotalPeriods</emph> is the total number of installment periods."
+msgstr " <emph>PeríodosTotales</emph> es la cantidad total de periodos de liquidación."
+
+#: 04060103.xhp#par_id3159390.321.help.text
+msgid " <emph>Invest</emph> is the amount of the investment."
+msgstr " <emph>Inversión</emph> es la cantidad invertida."
+
+#: 04060103.xhp#hd_id3156162.322.help.text
+msgctxt "04060103.xhp#hd_id3156162.322.help.text"
+msgid "Example"
+msgstr "Ejemplo"
+
+#: 04060103.xhp#par_id3149558.323.help.text
+msgid "For a credit amount of 120,000 currency units with a two-year term and monthly installments, at a yearly interest rate of 12% the level of interest after 1.5 years is required."
+msgstr "Para un crédito de 120.000 unidades monetarias, un período de dos años y cuotas mensuales con una tasa de interés anual del 12%, se necesita conocer el nivel de interés al cabo de 1,5 años."
+
+#: 04060103.xhp#par_id3150949.324.help.text
+msgid " <item type=\"input\">=ISPMT(1%;18;24;120000)</item> = -300 currency units. The monthly interest after 1.5 years amounts to 300 currency units."
+msgstr " <item type=\"input\">=INT.PAGO.DIR(1%;18;24;120000)</item> = -300 unidades monetarias. El interés mensual después de 1,5 años, alcanza las 300 unidades monetarias."
+
+#: 04060103.xhp#par_id3146812.426.help.text
+msgid "<link href=\"text/scalc/01/04060119.xhp\" name=\"Forward to Financial Functions Part Two\">Financial Functions Part Two</link>"
+msgstr "<link href=\"text/scalc/01/04060119.xhp\" name=\"Forward to Financial Functions Part Two\">Funciones financieras, segunda parte</link>"
+
+#: 04060103.xhp#par_id3154411.427.help.text
+msgid "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Financial Functions Part Three</link>"
+msgstr "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Funciones financieras, tercera parte</link>"
+
+#: func_days.xhp#tit.help.text
+msgid "DAYS "
+msgstr "DÍAS"
+
+#: func_days.xhp#bm_id3151328.help.text
+msgid "<bookmark_value>DAYS function</bookmark_value>"
+msgstr "<bookmark_value>DÍAS</bookmark_value>"
+
+#: func_days.xhp#hd_id3151328.116.help.text
+msgid "<variable id=\"days\"><link href=\"text/scalc/01/func_days.xhp\">DAYS</link></variable>"
+msgstr "<variable id=\"days\"><link href=\"text/scalc/01/func_days.xhp\">DÍAS</link></variable>"
+
+#: func_days.xhp#par_id3155139.117.help.text
+msgid "<ahelp hid=\"HID_FUNC_TAGE\">Calculates the difference between two date values.</ahelp> The result returns the number of days between the two days."
+msgstr "<ahelp hid=\"HID_FUNC_TAGE\">Calcula la diferencia entre dos valores de fecha.</ahelp> El resultado es el número de días que hay entre ambas fechas."
+
+#: func_days.xhp#hd_id3155184.118.help.text
+msgctxt "func_days.xhp#hd_id3155184.118.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: func_days.xhp#par_id3149578.119.help.text
+msgid "DAYS(Date2; Date1)"
+msgstr "DÍAS(Datos2; Datos1)"
+
+#: func_days.xhp#par_id3151376.120.help.text
+msgid "<emph>Date1</emph> is the start date, <emph>Date2</emph> is the end date. If <emph>Date2</emph> is an earlier date than <emph>Date1</emph> the result is a negative number."
+msgstr "<emph>Datos1</emph> es la fecha de inicio, <emph>Datos2</emph> es la fecha final. Si <emph>Datos2</emph> es una fecha anterior a <emph>Datos1</emph> el resultado es un número negativo."
+
+#: func_days.xhp#hd_id3151001.121.help.text
+msgctxt "func_days.xhp#hd_id3151001.121.help.text"
+msgid "Examples"
+msgstr "Ejemplos"
+
+#: func_days.xhp#par_id3159101.123.help.text
+msgid "=DAYS(\"2010-01-01\"; NOW()) returns the number of days from today until January 1, 2010."
+msgstr "=DÍAS(\"2010-01-01\"; AHORA()) devuelve el número de días desde hoy y hasta el 1 de enero de 2010."
+
+#: func_days.xhp#par_id3163720.172.help.text
+msgid "=DAYS(\"1990-10-10\";\"1980-10-10\") returns 3652 days."
+msgstr "=DÍAS(\"1990-10-10\";\"1980-10-10\") devuelve 3652 días."
+
+#: 02140100.xhp#tit.help.text
+msgctxt "02140100.xhp#tit.help.text"
+msgid "Down"
+msgstr "Abajo"
+
+#: 02140100.xhp#hd_id3150792.1.help.text
+msgid "<link href=\"text/scalc/01/02140100.xhp\" name=\"Down\">Down</link>"
+msgstr "<link href=\"text/scalc/01/02140100.xhp\" name=\"Down\">Abajo</link>"
+
+#: 02140100.xhp#par_id3153969.2.help.text
+msgid "<ahelp hid=\".uno:FillDown\" visibility=\"visible\">Fills a selected range of at least two rows with the contents of the top cell of the range.</ahelp>"
+msgstr "<ahelp hid=\".uno:FillDown\" visibility=\"visible\">Rellena un área seleccionada con un mínimo de dos filas con el contenido de la celda situada en el extremo superior del área.</ahelp>"
+
+#: 02140100.xhp#par_id3145787.3.help.text
+msgid "If a selected range has only one column, the contents of the top cell are copied to all others. If several columns are selected, the contents of the corresponding top cell will be copied down."
+msgstr "Si se selecciona un área de una sola columna, el contenido de la celda superior se copia en el resto de celdas. Si se seleccionan varias columnas, el contenido de las celdas superiores se copiará hacia abajo."
+
+#: 04030000.xhp#tit.help.text
+msgctxt "04030000.xhp#tit.help.text"
+msgid "Rows"
+msgstr "Filas"
+
+#: 04030000.xhp#bm_id3150541.help.text
+msgid "<bookmark_value>spreadsheets; inserting rows</bookmark_value><bookmark_value>rows; inserting</bookmark_value><bookmark_value>inserting; rows</bookmark_value>"
+msgstr "<bookmark_value>hojas de cálculo;insertar filas</bookmark_value><bookmark_value>filas;insertar</bookmark_value><bookmark_value>insertar;filas</bookmark_value>"
+
+#: 04030000.xhp#hd_id3150541.1.help.text
+msgid "<link href=\"text/scalc/01/04030000.xhp\" name=\"Rows\">Rows</link>"
+msgstr "<link href=\"text/scalc/01/04030000.xhp\" name=\"Rows\">Filas</link>"
+
+#: 04030000.xhp#par_id3150767.2.help.text
+msgid "<ahelp hid=\".uno:InsertRows\" visibility=\"visible\">Inserts a new row above the active cell.</ahelp> The number of rows inserted correspond to the number of rows selected. The existing rows are moved downward."
+msgstr "<ahelp hid=\".uno:InsertRows\" visibility=\"visible\">Inserta una fila nueva encima de la celda activa.</ahelp> El número de filas insertadas se corresponde con el número de filas seleccionadas. Las filas existentes se desplazan hacia abajo."
+
+#: 04060108.xhp#tit.help.text
+msgctxt "04060108.xhp#tit.help.text"
+msgid "Statistics Functions"
+msgstr "Funciones estadísticas"
+
+#: 04060108.xhp#bm_id3153018.help.text
+msgid "<bookmark_value>statistics functions</bookmark_value><bookmark_value>Function Wizard; statistics</bookmark_value><bookmark_value>functions; statistics functions</bookmark_value>"
+msgstr "<bookmark_value>funciones estadísticas</bookmark_value><bookmark_value>Asistente para funciones;estadísticas</bookmark_value><bookmark_value>funciones;funciones estadísticas</bookmark_value>"
+
+#: 04060108.xhp#hd_id3153018.1.help.text
+msgctxt "04060108.xhp#hd_id3153018.1.help.text"
+msgid "Statistics Functions"
+msgstr "Funciones estadísticas"
+
+#: 04060108.xhp#par_id3157874.2.help.text
+msgid "<variable id=\"statistiktext\">This category contains the <emph>Statistics</emph> functions. </variable>"
+msgstr "<variable id=\"statistiktext\">Esta categoría contiene las funciones de <emph>Estadística</emph>. </variable>"
+
+#: 04060108.xhp#par_id3149001.9.help.text
+msgid "Some of the examples use the following data table:"
+msgstr "Algunos de los ejemplos emplean la siguiente tabla de datos:"
+
+#: 04060108.xhp#par_id3148775.10.help.text
+msgctxt "04060108.xhp#par_id3148775.10.help.text"
+msgid "C"
+msgstr "<emph>C</emph>"
+
+#: 04060108.xhp#par_id3145297.11.help.text
+msgctxt "04060108.xhp#par_id3145297.11.help.text"
+msgid "D"
+msgstr "<emph>D</emph>"
+
+#: 04060108.xhp#par_id3150661.12.help.text
+msgctxt "04060108.xhp#par_id3150661.12.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060108.xhp#par_id3153551.13.help.text
+msgid "x value"
+msgstr "valor x"
+
+#: 04060108.xhp#par_id3147536.14.help.text
+msgid "y value"
+msgstr "valor y"
+
+#: 04060108.xhp#par_id3153224.15.help.text
+msgctxt "04060108.xhp#par_id3153224.15.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060108.xhp#par_id3150475.16.help.text
+msgctxt "04060108.xhp#par_id3150475.16.help.text"
+msgid "-5"
+msgstr "-5"
+
+#: 04060108.xhp#par_id3155367.17.help.text
+msgid "-3"
+msgstr "-3"
+
+#: 04060108.xhp#par_id3149783.18.help.text
+msgctxt "04060108.xhp#par_id3149783.18.help.text"
+msgid "4"
+msgstr "4"
+
+#: 04060108.xhp#par_id3153181.19.help.text
+msgid "-2"
+msgstr "-2"
+
+#: 04060108.xhp#par_id3148429.20.help.text
+msgctxt "04060108.xhp#par_id3148429.20.help.text"
+msgid "0"
+msgstr "0"
+
+#: 04060108.xhp#par_id3152588.21.help.text
+msgctxt "04060108.xhp#par_id3152588.21.help.text"
+msgid "5"
+msgstr "5"
+
+#: 04060108.xhp#par_id3147483.22.help.text
+msgid "-1"
+msgstr "-1"
+
+#: 04060108.xhp#par_id3083443.23.help.text
+msgctxt "04060108.xhp#par_id3083443.23.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060108.xhp#par_id3149826.24.help.text
+msgctxt "04060108.xhp#par_id3149826.24.help.text"
+msgid "6"
+msgstr "6"
+
+#: 04060108.xhp#par_id3163820.25.help.text
+msgctxt "04060108.xhp#par_id3163820.25.help.text"
+msgid "0"
+msgstr "0"
+
+#: 04060108.xhp#par_id3154816.26.help.text
+msgctxt "04060108.xhp#par_id3154816.26.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060108.xhp#par_id3149276.27.help.text
+msgctxt "04060108.xhp#par_id3149276.27.help.text"
+msgid "7"
+msgstr "7"
+
+#: 04060108.xhp#par_id3149267.28.help.text
+msgctxt "04060108.xhp#par_id3149267.28.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060108.xhp#par_id3156310.29.help.text
+msgctxt "04060108.xhp#par_id3156310.29.help.text"
+msgid "4"
+msgstr "4"
+
+#: 04060108.xhp#par_id3154639.30.help.text
+msgctxt "04060108.xhp#par_id3154639.30.help.text"
+msgid "8"
+msgstr "8"
+
+#: 04060108.xhp#par_id3145205.31.help.text
+msgctxt "04060108.xhp#par_id3145205.31.help.text"
+msgid "4"
+msgstr "4"
+
+#: 04060108.xhp#par_id3153276.32.help.text
+msgctxt "04060108.xhp#par_id3153276.32.help.text"
+msgid "6"
+msgstr "6"
+
+#: 04060108.xhp#par_id3150756.33.help.text
+msgctxt "04060108.xhp#par_id3150756.33.help.text"
+msgid "9"
+msgstr "9"
+
+#: 04060108.xhp#par_id3156095.34.help.text
+msgctxt "04060108.xhp#par_id3156095.34.help.text"
+msgid "6"
+msgstr "6"
+
+#: 04060108.xhp#par_id3152929.35.help.text
+msgctxt "04060108.xhp#par_id3152929.35.help.text"
+msgid "8"
+msgstr "8"
+
+#: 04060108.xhp#par_id3156324.36.help.text
+msgid "The statistical functions are described in the following subsections."
+msgstr "Las funciones estadísticas se describen en las subsecciones siguientes."
+
+#: 04060108.xhp#par_id3150271.37.help.text
+msgid "<link href=\"text/scalc/01/04060116.xhp\" name=\"Statistical Functions in the Analysis-AddIn.\">Statistical Functions in the Analysis-AddIn</link>"
+msgstr "<link href=\"text/scalc/01/04060116.xhp\" name=\"Statistical Functions in the Analysis-AddIn.\">Funciones estadísticas en Add-in de análisis</link>"
+
+#: 05030300.xhp#tit.help.text
+msgid "Hide"
+msgstr "Ocultar"
+
+#: 05030300.xhp#bm_id3147265.help.text
+msgid "<bookmark_value>spreadsheets; hiding functions</bookmark_value><bookmark_value>hiding; rows</bookmark_value><bookmark_value>hiding; columns</bookmark_value><bookmark_value>hiding; sheets</bookmark_value><bookmark_value>sheets;hiding</bookmark_value><bookmark_value>columns;hiding</bookmark_value><bookmark_value>rows;hiding</bookmark_value>"
+msgstr "<bookmark_value>hojas de cálculo;ocultar funciones</bookmark_value><bookmark_value>ocultar;filas</bookmark_value><bookmark_value>ocultar;columnas</bookmark_value><bookmark_value>ocultar;hojas</bookmark_value><bookmark_value>hojas;ocultar</bookmark_value><bookmark_value>columnas;ocultar</bookmark_value><bookmark_value>filas;ocultar</bookmark_value>"
+
+#: 05030300.xhp#hd_id3147265.1.help.text
+msgid "<link href=\"text/scalc/01/05030300.xhp\" name=\"Hide\">Hide</link>"
+msgstr "<link href=\"text/scalc/01/05030300.xhp\" name=\"Ocultar\">Ocultar</link>"
+
+#: 05030300.xhp#par_id3156281.2.help.text
+msgid "<ahelp hid=\".uno:Hide\">Hides selected rows, columns or individual sheets.</ahelp>"
+msgstr "<ahelp hid=\".uno:Hide\">Oculta las filas, columnas u hojas individuales seleccionadas.</ahelp>"
+
+#: 05030300.xhp#par_id3148645.3.help.text
+msgid "Select the rows or columns that you want to hide, and then choose <emph>Format - Row - Hide </emph>or<emph> Format - Column - Hide</emph>."
+msgstr "Seleccione las filas o columnas que desea ocultar y, a continuación, seleccione en el menú <emph>Formato</emph> el comando <emph>Fila - Ocultar </emph>o <emph>Columna - Ocultar</emph>."
+
+#: 05030300.xhp#par_id3147427.6.help.text
+msgid "You can hide a sheet by selecting the sheet tab and then choosing <emph>Format - Sheet - Hide</emph>. Hidden sheets are not printed unless they occur within a <link href=\"text/scalc/01/05080000.xhp\" name=\"print range\">print range</link>."
+msgstr "Para ocultar una única hoja, seleccione su registro y active luego el comando <emph>Formato - Hoja - Ocultar</emph>. Las hojas ocultas no se imprimirán si no se encuentran en un <link href=\"text/scalc/01/05080000.xhp\" name=\"área de impresión\">área de impresión</link>."
+
+#: 05030300.xhp#par_id3153157.5.help.text
+msgid "A break in the row or column header indicates whether the row or column is hidden."
+msgstr "Si las filas o columnas están ocultas se muestra una interrupción en sus títulos o encabezamientos."
+
+#: 05030300.xhp#par_id3145251.4.help.text
+msgid "To display hidden rows, columns or sheets"
+msgstr "Mostrar filas, columnas u hojas ocultas"
+
+#: 05030300.xhp#par_id8337046.help.text
+msgid "Select the range that includes the hidden objects. You can also use the box in the corner above row 1 and beside column A. For sheets, this step is not necessary."
+msgstr "Seleccione el área que incluye los objetos ocultos. También puede utilizar el cuadro de la esquina que hay encima de la fila 1 y al lado de la columna A. En el caso de las hojas, no es necesario realizar este paso."
+
+#: 05030300.xhp#par_id5532090.help.text
+msgid "Choose <link href=\"text/scalc/01/05030400.xhp\" name=\"Format - Row/Column - Show\">Format - Row/Column - Show</link> or <link href=\"text/scalc/01/05050300.xhp\" name=\"Format - Sheet - Show\">Format - Sheet - Show</link>."
+msgstr "Seleccione <link href=\"text/scalc/01/05030400.xhp\" name=\"Formato - Fila/Columna - Mostrar fila/Mostrar columna\">Formato - Fila/Columna- Mostrar fila/Mostrar columna</link> o <link href=\"text/scalc/01/05050300.xhp\" name=\"Formato - Hoja - Mostrar hoja\">Formato - Hoja - Mostrar hoja</link>."
+
+#: func_minute.xhp#tit.help.text
+#, fuzzy
+msgid "MINUTE"
+msgstr "MINUTO"
+
+#: func_minute.xhp#bm_id3149803.help.text
+msgid "<bookmark_value>MINUTE function</bookmark_value>"
+msgstr "<bookmark_value>MINUTO</bookmark_value>"
+
+#: func_minute.xhp#hd_id3149803.66.help.text
+msgid "<variable id=\"minute\"><link href=\"text/scalc/01/func_minute.xhp\">MINUTE</link></variable>"
+msgstr "<variable id=\"minute\"><link href=\"text/scalc/01/func_minute.xhp\">MINUTO</link></variable>"
+
+#: func_minute.xhp#par_id3148988.67.help.text
+msgid "<ahelp hid=\"HID_FUNC_MINUTE\">Calculates the minute for an internal time value.</ahelp> The minute is returned as a number between 0 and 59."
+msgstr "<ahelp hid=\"HID_FUNC_MINUTE\">Calcula el minuto que corresponde a un valor de tiempo interno.</ahelp> El minuto es devuelto como un número entre 0 y 59."
+
+#: func_minute.xhp#hd_id3154343.68.help.text
+msgctxt "func_minute.xhp#hd_id3154343.68.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: func_minute.xhp#par_id3148660.69.help.text
+msgid "MINUTE(Number)"
+msgstr "MINUTO(Número)"
+
+#: func_minute.xhp#par_id3154611.70.help.text
+msgid "<emph>Number</emph>, as a time value, is a decimal number where the number of the minute is to be returned."
+msgstr "El <emph>número</emph>, como valor temporal, es un número decimal en función del cual debe calcularse el número de minutos."
+
+#: func_minute.xhp#hd_id3145374.71.help.text
+msgctxt "func_minute.xhp#hd_id3145374.71.help.text"
+msgid "Examples"
+msgstr "Ejemplos"
+
+#: func_minute.xhp#par_id3148463.72.help.text
+msgid "<item type=\"input\">=MINUTE(8.999)</item> returns 58"
+msgstr "<item type=\"input\">=MINUTO(8.999)</item> devuelve 58"
+
+#: func_minute.xhp#par_id3149419.73.help.text
+msgid "<item type=\"input\">=MINUTE(8.9999)</item> returns 59"
+msgstr "<item type=\"input\">=MINUTO(8.9999)</item> devuelve 59"
+
+#: func_minute.xhp#par_id3144755.74.help.text
+msgid "<item type=\"input\">=MINUTE(NOW())</item> returns the current minute value."
+msgstr "<item type=\"input\">=MINUTO(AHORA())</item> devuelve el valor del minuto actual."
+
+#: 12030100.xhp#tit.help.text
+msgid "Sort Criteria"
+msgstr "Criterios de ordenación"
+
+#: 12030100.xhp#bm_id3152350.help.text
+msgid "<bookmark_value>sorting; sort criteria for database ranges</bookmark_value>"
+msgstr "<bookmark_value>ordenar;criterios para las áreas de bases de datos</bookmark_value>"
+
+#: 12030100.xhp#hd_id3152350.1.help.text
+msgid "<link href=\"text/scalc/01/12030100.xhp\" name=\"Sort Criteria\">Sort Criteria</link>"
+msgstr "<link href=\"text/scalc/01/12030100.xhp\" name=\"Criterios\">Criterios</link>"
+
+#: 12030100.xhp#par_id3151385.2.help.text
+msgid "<ahelp hid=\"HID_SCPAGE_SORT_FIELDS\">Specify the sorting options for the selected range.</ahelp>"
+msgstr "<ahelp hid=\"HID_SCPAGE_SORT_FIELDS\">Especifique las opciones de ordenación para el área seleccionada.</ahelp>"
+
+#: 12030100.xhp#par_id3152462.24.help.text
+msgid "Ensure that you include any row and column titles in the selection."
+msgstr "Asegúrese de incluir en la selección los títulos de fila y columna."
+
+#: 12030100.xhp#hd_id3147428.3.help.text
+msgctxt "12030100.xhp#hd_id3147428.3.help.text"
+msgid "Sort by"
+msgstr "Ordenar según"
+
+#: 12030100.xhp#par_id3155854.4.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_FIELDS:LB_SORT1\">Select the column that you want to use as the primary sort key.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_FIELDS:LB_SORT1\">Seleccione la columna que desea utilizar como criterio de orden primario.</ahelp>"
+
+#: 12030100.xhp#hd_id3146121.5.help.text
+msgctxt "12030100.xhp#hd_id3146121.5.help.text"
+msgid "Ascending"
+msgstr "Ascendente"
+
+#: 12030100.xhp#par_id3148645.6.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_UP1\">Sorts the selection from the lowest value to the highest value. The sorting rules are given by the locale. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages."
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_UP1\">Ordena la selección desde el valor más bajo hasta el valor más alto. Las reglas de clasificación están dadas conforme a la configuración regional. Se pueden definir las reglas de ordenamiento en Datos - Ordenar - Opciones.</ahelp> Se puede definir la configuración predeterminada en <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - Configuración de idioma - Idiomas."
+
+#: 12030100.xhp#hd_id3155411.7.help.text
+msgctxt "12030100.xhp#hd_id3155411.7.help.text"
+msgid "Descending"
+msgstr "Descendente"
+
+#: 12030100.xhp#par_id3151075.8.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_DOWN1\">Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages."
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_DOWN1\">Ordena la selección desde el valor más alto hasta el valor más bajo. Se pueden definir las reglas de ordenamiento en Datos - Ordenar - Opciones.</ahelp> Se puede definir la configuración predeterminada en <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - Configuración de idioma - Idiomas."
+
+#: 12030100.xhp#hd_id3154492.9.help.text
+msgctxt "12030100.xhp#hd_id3154492.9.help.text"
+msgid "Then by"
+msgstr "Después según"
+
+#: 12030100.xhp#par_id3156283.10.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_FIELDS:LB_SORT2\">Select the column that you want to use as the secondary sort key.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_FIELDS:LB_SORT2\">Seleccione la columna que desea utilizar como criterio de orden secundario.</ahelp>"
+
+#: 12030100.xhp#hd_id3149413.11.help.text
+msgctxt "12030100.xhp#hd_id3149413.11.help.text"
+msgid "Ascending"
+msgstr "Ascendente"
+
+#: 12030100.xhp#par_id3154018.12.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_UP2\">Sorts the selection from the lowest value to the highest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_UP2\">Ordena la selección desde el valor más bajo hasta el valor más alto. Se pueden definir las reglas de ordenamiento en Datos - Ordenar - Opciones.</ahelp> Se puede definir la configuración predeterminada en <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - Configuración de idioma - Idiomas."
+
+#: 12030100.xhp#hd_id3146972.13.help.text
+msgctxt "12030100.xhp#hd_id3146972.13.help.text"
+msgid "Descending"
+msgstr "Descendente"
+
+#: 12030100.xhp#par_id3145640.14.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_DOWN2\">Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_DOWN2\">Ordena la selección desde el valor más alto hasta el valor más bajo. Se pueden definir las reglas de ordenamiento en Datos - Ordenar - Opciones.</ahelp> Se puede definir la configuración predeterminada en <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - Configuración de idioma - Idiomas."
+
+#: 12030100.xhp#hd_id3154756.15.help.text
+msgctxt "12030100.xhp#hd_id3154756.15.help.text"
+msgid "Then by"
+msgstr "Después según"
+
+#: 12030100.xhp#par_id3147338.16.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_FIELDS:LB_SORT3\">Select the column that you want to use as the third sort key.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_FIELDS:LB_SORT3\">Seleccione la columna que desea utilizar como criterio de orden terciario.</ahelp>"
+
+#: 12030100.xhp#hd_id3163808.17.help.text
+msgctxt "12030100.xhp#hd_id3163808.17.help.text"
+msgid "Ascending"
+msgstr "Ascendente"
+
+#: 12030100.xhp#par_id3155336.18.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_UP3\">Sorts the selection from the lowest value to the highest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_UP3\">Ordena la selección desde el valor más bajo hasta el valor más alto. Se pueden definir las reglas de ordenamiento en Datos - Ordenar - Opciones.</ahelp> Se puede definir la configuración predeterminada en <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - Configuración de idioma - Idiomas."
+
+#: 12030100.xhp#hd_id3147364.19.help.text
+msgctxt "12030100.xhp#hd_id3147364.19.help.text"
+msgid "Descending"
+msgstr "Descendente"
+
+#: 12030100.xhp#par_id3149258.20.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_DOWN3\">Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_DOWN3\">Ordena la selección desde el valor más alto hasta el valor más bajo. Se pueden definir las reglas de ordenamiento en Datos - Ordenar - Opciones.</ahelp> Se puede definir la configuración predeterminada en <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - Configuración de idioma - Idiomas."
+
+#: 12030100.xhp#hd_id3150300.21.help.text
+msgid "Sort Ascending/Descending"
+msgstr "Ordenar"
+
+#: 12030100.xhp#par_id3158212.22.help.text
+msgid "<ahelp hid=\".uno:SortDescending\"><variable id=\"sytext\">Sorts the selection from the highest to the lowest value, or from the lowest to the highest value. Number fields are sorted by size and text fields by the order of the characters. You can define the sort rules on Data - Sort - Options.</variable></ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
+msgstr "<ahelp hid=\".uno:SortDescending\"><variable id=\"sytext\">Ordena la sección desde el valor más alto hasta el valor más bajo, o desde el valor más bajo hasta el valor más alto. Los campos numéricos se ordenan por el tamaño y los campos de texto por el orden de los caracteres. Se pueden definir las reglas de ordenamiento en Datos - Ordenar - Opciones.</variable></ahelp> Se puede definir la configuración predeterminada en <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - Configuración de idioma - Idiomas."
+
+#: 12030100.xhp#par_id3159236.25.help.text
+msgid "Icons on the <emph>Standard</emph> toolbar"
+msgstr "Iconos de la barra de herramientas <emph>Estándar</emph>"
+
+#: 05100000.xhp#tit.help.text
+msgid "Styles and Formatting"
+msgstr "Estilo y formato"
+
+#: 05100000.xhp#bm_id3150447.help.text
+msgid "<bookmark_value>Stylist, see Styles and Formatting window</bookmark_value> <bookmark_value>Styles and Formatting window</bookmark_value> <bookmark_value>formats; Styles and Formatting window</bookmark_value> <bookmark_value>formatting; Styles and Formatting window</bookmark_value> <bookmark_value>paint can for applying styles</bookmark_value>"
+msgstr "<bookmark_value>Estilista, véase la ventana Estilo y formato</bookmark_value> <bookmark_value>ventana Estilo y formato</bookmark_value> <bookmark_value>formatos;ventana Estilo y formato</bookmark_value> <bookmark_value>formato;ventana Estilo y formato</bookmark_value> <bookmark_value>bote de pintura para aplicar estilos</bookmark_value>"
+
+#: 05100000.xhp#hd_id3150447.1.help.text
+msgid "<link href=\"text/scalc/01/05100000.xhp\" name=\"Styles and Formatting\">Styles and Formatting</link>"
+msgstr "<link href=\"text/scalc/01/05100000.xhp\" name=\"Estilo y formato\">Estilo y formato</link>"
+
+#: 05100000.xhp#par_id3147434.2.help.text
+msgid "Use the Styles and Formatting window to assign styles to objects and text sections. You can update Styles, modify existing Styles or create new Styles."
+msgstr "Utilice la ventana Estilo y formato para asignar estilos a objetos y secciones de texto. Los estilos se pueden actualizar y modificar; también se pueden crear otros estilos."
+
+#: 05100000.xhp#par_id3149665.30.help.text
+msgid "The Styles and Formatting <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link> can remain open while editing the document."
+msgstr "La ventana acoplable <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"\">ventana acoplable</link> Estilo y formato puede estar abierta mientras se edita el documento."
+
+#: 05100000.xhp#hd_id3150012.36.help.text
+msgid "How to apply a cell style:"
+msgstr "Cómo aplicar un estilo de celda:"
+
+#: 05100000.xhp#par_id3159155.37.help.text
+msgid "Select the cell or cell range."
+msgstr "Seleccione la celda o el rango de celdas."
+
+#: 05100000.xhp#par_id3145749.38.help.text
+msgid "Double-click the style in the Styles and Formatting window."
+msgstr "Haga doble clic en el estilo en la ventana Estilo y formato."
+
+#: 05100000.xhp#hd_id3153877.4.help.text
+msgctxt "05100000.xhp#hd_id3153877.4.help.text"
+msgid "Cell Styles"
+msgstr "Estilos de celda"
+
+#: 05100000.xhp#par_id3145801.6.help.text
+msgid "<ahelp hid=\".uno:ParaStyle\">Displays the list of the available Cell Styles for <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"indirect cell formatting\">indirect cell formatting</link>.</ahelp>"
+msgstr "<ahelp hid=\".uno:ParaStyle\">Muestra la lista de los estilos de celda disponibles para el <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"formato de celdas indirecto\">formato de celdas indirecto</link>.</ahelp>"
+
+#: 05100000.xhp#par_id3150751.help.text
+msgid "<image id=\"img_id3153714\" src=\"sc/res/sf01.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153714\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153714\" src=\"sc/res/sf01.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153714\">Símbolo</alt></image>"
+
+#: 05100000.xhp#par_id3154255.5.help.text
+msgctxt "05100000.xhp#par_id3154255.5.help.text"
+msgid "Cell Styles"
+msgstr "Estilo de celda"
+
+#: 05100000.xhp#hd_id3153963.7.help.text
+msgctxt "05100000.xhp#hd_id3153963.7.help.text"
+msgid "Page Styles"
+msgstr "Estilos de página"
+
+#: 05100000.xhp#par_id3147003.9.help.text
+msgid "<ahelp hid=\".uno:PageStyle\">Displays the Page Styles available for indirect page formatting.</ahelp>"
+msgstr "<ahelp hid=\".uno:PageStyle\">Muestra los estilos de página disponibles para el formato de páginas indirecto.</ahelp>"
+
+#: 05100000.xhp#par_id3159100.help.text
+msgid "<image id=\"img_id3149814\" src=\"sw/imglst/sf04.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149814\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149814\" src=\"sw/imglst/sf04.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149814\">Símbolo</alt></image>"
+
+#: 05100000.xhp#par_id3150361.8.help.text
+msgctxt "05100000.xhp#par_id3150361.8.help.text"
+msgid "Page Styles"
+msgstr "Estilos de página"
+
+#: 05100000.xhp#hd_id3150202.10.help.text
+msgctxt "05100000.xhp#hd_id3150202.10.help.text"
+msgid "Fill Format Mode"
+msgstr "Modo regadera"
+
+#: 05100000.xhp#par_id3155531.12.help.text
+msgid "<ahelp hid=\"HID_TEMPLDLG_WATERCAN\">Turns the Fill Format mode on and off. Use the paint can to assign the Style selected in the Styles and Formatting window.</ahelp>"
+msgstr "<ahelp hid=\"HID_TEMPLDLG_WATERCAN\">Activa y desactiva el color de fondo. Utilice el símbolo de bote de pintura para asignar el estilo seleccionado en la ventana Estilo y formato.</ahelp>"
+
+#: 05100000.xhp#par_id3155087.help.text
+msgid "<image id=\"img_id3153068\" src=\"cmd/sc_fillstyle.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153068\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153068\" src=\"cmd/sc_fillstyle.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153068\">Símbolo</alt></image>"
+
+#: 05100000.xhp#par_id3156198.11.help.text
+msgctxt "05100000.xhp#par_id3156198.11.help.text"
+msgid "Fill Format Mode"
+msgstr "Modo regadera"
+
+#: 05100000.xhp#hd_id3148870.13.help.text
+msgid "How to apply a new style with the paint can:"
+msgstr "Cómo aplicar estilos mediante el símbolo bote de pintura:"
+
+#: 05100000.xhp#par_id3145078.27.help.text
+msgid "Select the desired style from the Styles and Formatting window."
+msgstr "Seleccione un estilo en la ventana Estilo y formato."
+
+#: 05100000.xhp#par_id3159098.28.help.text
+msgid "Click the <emph>Fill Format Mode</emph> icon."
+msgstr "Pulse en el símbolo <emph>Modo Regadera</emph>."
+
+#: 05100000.xhp#par_id3148609.15.help.text
+msgid "Click a cell to format it, or drag your mouse over a certain range to format the whole range. Repeat this action for other cells and ranges."
+msgstr "Pulse la celda que desee formatear o arrastre el ratón sobre un área para dar formato a ésta. Repita la acción para otras celdas y rangos."
+
+#: 05100000.xhp#par_id3149438.29.help.text
+msgid "Click the <emph>Fill Format Mode</emph> again to exit this mode."
+msgstr "Vuelva a pulsar en el símbolo de <emph>Modo regadera</emph> para salir de este modo."
+
+#: 05100000.xhp#hd_id3153975.16.help.text
+msgctxt "05100000.xhp#hd_id3153975.16.help.text"
+msgid "New Style from Selection"
+msgstr "Nuevo estilo a partir de la selección"
+
+#: 05100000.xhp#par_id3149499.18.help.text
+msgid "<ahelp hid=\"HID_TEMPLDLG_NEWBYEXAMPLE\">Creates a new style based on the formatting of a selected object.</ahelp> Assign a name for the style in the <link href=\"text/shared/01/05140100.xhp\" name=\"Create Style\">Create Style</link> dialog."
+msgstr "<ahelp hid=\"HID_TEMPLDLG_NEWBYEXAMPLE\">Crea un estilo nuevo basado en el formato del objeto seleccionado.</ahelp> Asigne un nombre al estilo en el diálogo <link href=\"text/shared/01/05140100.xhp\" name=\"Crear estilo\">Crear estilo</link>."
+
+#: 05100000.xhp#par_id3150050.help.text
+msgid "<image id=\"img_id3154649\" src=\"cmd/sc_stylenewbyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3154649\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154649\" src=\"cmd/sc_stylenewbyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3154649\">Símbolo</alt></image>"
+
+#: 05100000.xhp#par_id3146963.17.help.text
+msgctxt "05100000.xhp#par_id3146963.17.help.text"
+msgid "New Style from Selection"
+msgstr "Nuevo estilo a partir de selección"
+
+#: 05100000.xhp#hd_id3153813.19.help.text
+msgctxt "05100000.xhp#hd_id3153813.19.help.text"
+msgid "Update Style"
+msgstr "Actualizar estilo"
+
+#: 05100000.xhp#par_id3154707.21.help.text
+msgid "<ahelp hid=\"HID_TEMPLDLG_UPDATEBYEXAMPLE\">Updates the Style selected in the Styles and Formatting window with the current formatting of the selected object.</ahelp>"
+msgstr "<ahelp hid=\"HID_TEMPLDLG_UPDATEBYEXAMPLE\">Actualiza el estilo seleccionado en la ventana Estilo y formato con el formato actual del objeto seleccionado.</ahelp>"
+
+#: 05100000.xhp#par_id3145118.help.text
+msgid "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155754\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155754\">Símbolo</alt></image>"
+
+#: 05100000.xhp#par_id3147501.20.help.text
+msgctxt "05100000.xhp#par_id3147501.20.help.text"
+msgid "Update Style"
+msgstr "Actualizar estilo"
+
+#: 05100000.xhp#par_idN109BE.help.text
+msgid "Style List"
+msgstr "Lista de estilos"
+
+#: 05100000.xhp#par_idN109C2.help.text
+msgid "<ahelp hid=\"HID_TEMPLATE_FMT\">Displays the list of the styles from the selected style category.</ahelp>"
+msgstr "<ahelp hid=\"HID_TEMPLATE_FMT\">Muestra la lista de los estilos de la categoría de estilo seleccionada.</ahelp>"
+
+#: 05100000.xhp#par_idN109D1.help.text
+msgid "In the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> you can choose commands to create a new style, delete a user-defined style, or change the selected style."
+msgstr "En el <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"menú contextual\">menú contextual</link> se pueden elegir los comandos para crear un estilo nuevo, borrar alguno creado por el usuario o modificar el estilo seleccionado."
+
+#: 05100000.xhp#hd_id3149053.24.help.text
+msgid "Style Groups"
+msgstr "Grupos de estilos"
+
+#: 05100000.xhp#par_id3147299.25.help.text
+msgid "<ahelp hid=\"HID_TEMPLATE_FILTER\">Lists the available style groups.</ahelp>"
+msgstr "<ahelp hid=\"HID_TEMPLATE_FILTER\">Enumera los grupos de estilos disponibles.</ahelp>"
+
+#: func_hour.xhp#tit.help.text
+msgid "HOUR "
+msgstr "HORA"
+
+#: func_hour.xhp#bm_id3154725.help.text
+msgid "<bookmark_value>HOUR function</bookmark_value>"
+msgstr "<bookmark_value>HORA</bookmark_value>"
+
+#: func_hour.xhp#hd_id3154725.96.help.text
+msgid "<variable id=\"hour\"><link href=\"text/scalc/01/func_hour.xhp\">HOUR</link></variable>"
+msgstr "<variable id=\"hour\"><link href=\"text/scalc/01/func_hour.xhp\">HORA</link></variable>"
+
+#: func_hour.xhp#par_id3149747.97.help.text
+msgid "<ahelp hid=\"HID_FUNC_STUNDE\">Returns the hour for a given time value.</ahelp> The hour is returned as an integer between 0 and 23."
+msgstr "<ahelp hid=\"HID_FUNC_STUNDE\">Devuelve la hora para un valor de tiempo determinado.</ahelp> La hora se devuelve como un entero entre 0 y 23."
+
+#: func_hour.xhp#hd_id3149338.98.help.text
+msgctxt "func_hour.xhp#hd_id3149338.98.help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+#: func_hour.xhp#par_id3150637.99.help.text
+msgid "HOUR(Number)"
+msgstr "HORA(número)"
+
+#: func_hour.xhp#par_id3147547.100.help.text
+msgid "<emph>Number</emph>, as a time value, is a decimal, for which the hour is to be returned."
+msgstr "El <emph>número</emph>, como valor temporal, es un número decimal en función del cual debe calcularse la hora."
+
+#: func_hour.xhp#hd_id3153264.101.help.text
+msgctxt "func_hour.xhp#hd_id3153264.101.help.text"
+msgid "Examples"
+msgstr "Ejemplos"
+
+#: func_hour.xhp#par_id3159215.103.help.text
+msgid "<item type=\"input\">=HOUR(NOW())</item> returns the current hour"
+msgstr "<item type=\"input\">=HORA(AHORA())</item> devuelve la hora actual."
+
+#: func_hour.xhp#par_id3145152.104.help.text
+msgid "<item type=\"input\">=HOUR(C4)</item> returns 17 if the contents of C4 = <item type=\"input\">17:20:00</item>."
+msgstr "<item type=\"input\">=HORA(C4)</item> devuelve 17 si el contenido de C4 = <item type=\"input\">17:20:00</item>."
+
+#: func_hour.xhp#par_id3154188.105.help.text
+msgid "<link href=\"text/scalc/01/04060102.xhp\" name=\"YEAR\">YEAR</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"NOW\">NOW</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MINUTE\">MINUTE</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MONTH\">MONTH</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"DAY\">DAY</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"WEEKDAY\">WEEKDAY</link>."
+msgstr "<link href=\"text/scalc/01/04060102.xhp\" name=\"FECHA\">FECHA</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"AHORA\">AHORA</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MINUTO\">MINUTO</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MES\">MES</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"DÍA\">DÍA</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"DÍASEM\">DÍASEM</link>."
+
+#: 06030300.xhp#tit.help.text
+msgid "Trace Dependents"
+msgstr "Rastrear los dependientes"
+
+#: 06030300.xhp#bm_id3153252.help.text
+msgid "<bookmark_value>cells; tracing dependents</bookmark_value>"
+msgstr "<bookmark_value>celdas;rastrear los dependientes</bookmark_value>"
+
+#: 06030300.xhp#hd_id3153252.1.help.text
+msgid "<link href=\"text/scalc/01/06030300.xhp\" name=\"Trace Dependents\">Trace Dependents</link>"
+msgstr "<link href=\"text/scalc/01/06030300.xhp\" name=\"Rastrear los dependientes\">Rastrear los dependientes</link>"
+
+#: 06030300.xhp#par_id3156024.2.help.text
+msgid "<ahelp hid=\".uno:ShowDependents\" visibility=\"visible\">Draws tracer arrows to the active cell from formulas that depend on values in the active cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:ShowDependents\" visibility=\"visible\">Genera unas líneas terminadas en flechas que conectan la celda actual con las celdas de fórmula que utilizan el valor de la celda actual.</ahelp>"
+
+#: 06030300.xhp#par_id3148948.4.help.text
+msgid "The area of all cells that are used together with the active cell in a formula is highlighted by a blue frame."
+msgstr "El área de todas las celdas que se utilizan junto con la celda activa en una fórmula queda resaltada con un marco azul."
+
+#: 06030300.xhp#par_id3151112.3.help.text
+msgid "This function works per level. For instance, if one level of traces has already been activated to show the precedents (or dependents), then you would see the next dependency level by activating the <emph>Trace</emph> function again."
+msgstr "Esta función opera por niveles. Por ejemplo, si ya se ha activado un nivel de rastreo para mostrar los precedentes (o dependientes), al volver a activar la función <emph>Rastrear</emph>."
+
+#: 06060200.xhp#tit.help.text
+msgctxt "06060200.xhp#tit.help.text"
+msgid "Protecting document"
+msgstr "Proteger documentos"
+
+#: 06060200.xhp#hd_id3150541.1.help.text
+msgctxt "06060200.xhp#hd_id3150541.1.help.text"
+msgid "Protecting document"
+msgstr "Proteger documentos"
+
+#: 06060200.xhp#par_id3145172.2.help.text
+msgid "<variable id=\"dokumenttext\"><ahelp hid=\".uno:ToolProtectionDocument\">Protects the sheet structure of your document from modifications. It is impossible to insert, delete, rename, move or copy sheets.</ahelp></variable> Open the <emph>Protect document</emph> dialog with <emph>Tools - Protect Document - Document</emph>. Optionally enter a password and click OK."
+msgstr "<variable id=\"dokumenttext\"><ahelp hid=\".uno:ToolProtectionDocument\">Protege la estructura de la hoja del documento contra posibles modificaciones. Impide insertar, borrar, mover, copiar o cambiar el nombre de hojas.</ahelp></variable> Abra el diálogo <emph>Proteger documento</emph> en <emph>Herramientas - Proteger documento - Documento</emph>. De forma opcional, puede escribir una contraseña y hacer clic en Aceptar."
+
+#: 06060200.xhp#par_id3153188.6.help.text
+msgid "The structure of protected spreadsheet documents can be changed only if the <emph>Protect</emph> option is disabled. On the context menus for the spreadsheet tabs at the lower graphic border, only the menu item <emph>Select All Sheets</emph> can be activated. All other menu items are deactivated. To remove the protection, call up the command <emph>Tools - Protect Document - Document</emph> again. If no password is assigned, protection is immediately removed. If you were assigned a password, the <emph>Remove Spreadsheet Protection</emph> dialog appears, in which you must enter the password. Only then can you remove the check mark specifying that protection is active."
+msgstr "La estructura de los documentos de hoja de cálculo protegidos sólo se puede modificar si se inhabilita la opción <emph>Proteger</emph>. En los menús contextuales de las pestañas de hoja situadas en el borde inferior sólo se puede activar la opción <emph>Seleccionar todas</emph>. El resto de elementos del menú están desactivados. Para eliminar la protección vuelva a ejecutar la orden <emph>Herramientas - Proteger documento - Documento</emph>. Si no se ha asignado una contraseña, la protección queda inmediatamente desactivada. Si se ha asignado una contraseña se mostrará el diálogo <emph>Desproteger hoja</emph>, en el que deberá escribir dicha contraseña. A continuación podrá borrar la marca que indica que la protección está activada."
+
+#: 06060200.xhp#par_id3145750.7.help.text
+msgid "A protected document, once saved, can only be saved again with the <emph>File - Save As</emph> menu command. "
+msgstr "Después de guardar un documento protegido, se debe utilizar la orden <emph>Archivo - Guardar como</emph> para volverlo a guardar."
+
+#: 06060200.xhp#hd_id3152596.4.help.text
+msgctxt "06060200.xhp#hd_id3152596.4.help.text"
+msgid "Password (optional)"
+msgstr "Contraseña (opcional)"
+
+#: 06060200.xhp#par_id3155412.5.help.text
+msgid "You can create a password to protect your document against unauthorized or accidental modifications."
+msgstr "Se puede crear una contraseña para proteger un documento contra modificaciones no autorizados o accidentales."
+
+#: 06060200.xhp#par_id3150717.9.help.text
+msgid "You can completely protect your work by combining both options from <emph>Tools - Protect Document</emph>, including password entry. If you want to prevent the document from being opened by other users, select <emph>Save With Password </emph>and click the <emph>Save</emph> button. The <emph>Enter Password</emph> dialog appears. Consider carefully when choosing a password; if you forget it after you close a document you will be unable to access the document."
+msgstr "Se puede proteger totalmente el trabajo mediante la combinación de ambas opciones en <emph>Herramientas - Proteger documento</emph>, especificando el uso de una contraseña. Para impedir que otros usuarios abran el documento, seleccione <emph>Guardar con contraseña </emph>y pulse el botón <emph>Guardar</emph>. Aparece el cuadro de diálogo <emph>Introduzca la contraseña</emph>. Elija cuidadosamente su contraseña; si la olvida después de cerrar el documento no podrá acceder a él."
+
+#: 04060100.xhp#tit.help.text
+msgctxt "04060100.xhp#tit.help.text"
+msgid "Functions by Category"
+msgstr "Funciones por categoría"
+
+#: 04060100.xhp#bm_id3148575.help.text
+msgid "<bookmark_value>functions;listed by category</bookmark_value> <bookmark_value>categories of functions</bookmark_value> <bookmark_value>list of functions</bookmark_value>"
+msgstr "<bookmark_value>funciones;listado por categoria</bookmark_value><bookmark_value>categorias de funciones</bookmark_value><bookmark_value>lista de funciones</bookmark_value>"
+
+#: 04060100.xhp#hd_id3154944.16.help.text
+msgctxt "04060100.xhp#hd_id3154944.16.help.text"
+msgid "Functions by Category"
+msgstr "Funciones por categoría"
+
+#: 04060100.xhp#par_id3149378.2.help.text
+msgid "This section describes the functions of $[officename] Calc. The various functions are divided into categories in the Function Wizard."
+msgstr "Esta sección describe las funciones de $[officename] Calc. Las distintas funciones se dividen en categorías en el Asistente para funciones."
+
+#: 04060100.xhp#par_id0120200910234570.help.text
+msgid "You can find detailed explanations, illustrations, and examples of Calc functions <link href=\"http://help.libreoffice.org/Calc/Functions_by_Category\">in the LibreOffice WikiHelp</link>."
+msgstr ""
+
+#: 04060100.xhp#hd_id3146972.3.help.text
+msgid "<link href=\"text/scalc/01/04060101.xhp\" name=\"Database\">Database</link>"
+msgstr "<link href=\"text/scalc/01/04060101.xhp\" name=\"Database\">Base de datos</link>"
+
+#: 04060100.xhp#hd_id3155443.4.help.text
+msgid "<link href=\"text/scalc/01/04060102.xhp\" name=\"Date & Time\">Date & Time</link>"
+msgstr "<link href=\"text/scalc/01/04060102.xhp\" name=\"Date & Time\">Fecha y hora</link>"
+
+#: 04060100.xhp#hd_id3147339.5.help.text
+msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Financial\">Financial</link>"
+msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Financial\">Finanzas</link>"
+
+#: 04060100.xhp#hd_id3153963.6.help.text
+msgid "<link href=\"text/scalc/01/04060104.xhp\" name=\"Information\">Information</link>"
+msgstr "<link href=\"text/scalc/01/04060104.xhp\" name=\"Information\">Información</link>"
+
+#: 04060100.xhp#hd_id3146316.7.help.text
+msgid "<link href=\"text/scalc/01/04060105.xhp\" name=\"Logical\">Logical</link>"
+msgstr "<link href=\"text/scalc/01/04060105.xhp\" name=\"Logical\">Lógico</link>"
+
+#: 04060100.xhp#hd_id3148485.8.help.text
+msgid "<link href=\"text/scalc/01/04060106.xhp\" name=\"Mathematical\">Mathematical</link>"
+msgstr "<link href=\"text/scalc/01/04060106.xhp\" name=\"Mathematical\">Matemáticas</link>"
+
+#: 04060100.xhp#hd_id3150363.9.help.text
+msgid "<link href=\"text/scalc/01/04060107.xhp\" name=\"Matrix\">Array</link>"
+msgstr "<link href=\"text/scalc/01/04060107.xhp\" name=\"Matrix\">Matriz</link>"
+
+#: 04060100.xhp#hd_id3150208.10.help.text
+msgid "<link href=\"text/scalc/01/04060108.xhp\" name=\"Statistical\">Statistical</link>"
+msgstr "<link href=\"text/scalc/01/04060108.xhp\" name=\"Statistical\">Estadística</link>"
+
+#: 04060100.xhp#hd_id3166428.11.help.text
+msgid "<link href=\"text/scalc/01/04060109.xhp\" name=\"Spreadsheet\">Spreadsheet</link>"
+msgstr "<link href=\"text/scalc/01/04060109.xhp\" name=\"Spreadsheet\">Hoja de cálculo</link>"
+
+#: 04060100.xhp#hd_id3145585.12.help.text
+msgid "<link href=\"text/scalc/01/04060110.xhp\" name=\"Text\">Text</link>"
+msgstr "<link href=\"text/scalc/01/04060110.xhp\" name=\"Text\">Texto</link>"
+
+#: 04060100.xhp#hd_id3156449.13.help.text
+msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Add-in\">Add-in</link>"
+msgstr "<link href=\"text/scalc/01/04060111.xhp\" name=\"Add In\">Complemento</link>"
+
+#: 04060100.xhp#par_id3150715.14.help.text
+msgid "<link href=\"text/scalc/01/04060199.xhp\" name=\"Operators\">Operators</link> are also available."
+msgstr "<link href=\"text/scalc/01/04060199.xhp\" name=\"Operators\">Operadores</link> también están disponibles."
+
+#: 04060100.xhp#par_id0902200809540918.help.text
+msgid "<variable id=\"drking\"><link href=\"http://help.libreoffice.org/Calc/Functions_by_Category\">Calc Functions By Category</link> in the LibreOffice WikiHelp</variable>"
+msgstr ""
diff --git a/source/es/helpcontent2/source/text/scalc/02.po b/source/es/helpcontent2/source/text/scalc/02.po
new file mode 100644
index 00000000000..3ca85d91717
--- /dev/null
+++ b/source/es/helpcontent2/source/text/scalc/02.po
@@ -0,0 +1,532 @@
+#. extracted from helpcontent2/source/text/scalc/02.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fscalc%2F02.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"PO-Revision-Date: 2011-04-05 19:49+0200\n"
+"Last-Translator: Alexandro <jza@openoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 18010000.xhp#tit.help.text
+msgctxt "18010000.xhp#tit.help.text"
+msgid "Insert"
+msgstr "Insertar"
+
+#: 18010000.xhp#bm_id3156329.help.text
+msgid "<bookmark_value>inserting; objects, toolbar icon</bookmark_value>"
+msgstr "<bookmark_value>insertar;objetos, símbolo de la barra de herramientas</bookmark_value>"
+
+#: 18010000.xhp#hd_id3156329.1.help.text
+msgid "<link href=\"text/scalc/02/18010000.xhp\" name=\"Insert\">Insert</link>"
+msgstr "<link href=\"text/scalc/02/18010000.xhp\" name=\"Insertar\">Insertar</link>"
+
+#: 18010000.xhp#par_id3147336.2.help.text
+msgid "<ahelp hid=\".uno:InsertCtrl\">Click the arrow next to the icon to open the <emph>Insert </emph>toolbar, where you can add graphics and special characters to the current sheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertCtrl\">Haga clic en la flecha que hay junto al símbolo para abrir la barra de herramientas <emph>Insertar</emph>, desde la que puede agregar gráficos y caracteres especiales a la hoja actual.</ahelp>"
+
+#: 18010000.xhp#par_id3148664.3.help.text
+msgctxt "18010000.xhp#par_id3148664.3.help.text"
+msgid "Tools bar icon:"
+msgstr "Símbolo de la barra Herramientas:"
+
+#: 18010000.xhp#par_id3150767.help.text
+msgid "<image id=\"img_id3156423\" src=\"cmd/sc_insertgraphic.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156423\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156423\" src=\"cmd/sc_insertgraphic.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156423\">Icono</alt></image>"
+
+#: 18010000.xhp#par_id3146120.4.help.text
+msgctxt "18010000.xhp#par_id3146120.4.help.text"
+msgid "Insert"
+msgstr "Insertar"
+
+#: 18010000.xhp#par_id3153188.6.help.text
+msgctxt "18010000.xhp#par_id3153188.6.help.text"
+msgid "You can select the following icons:"
+msgstr "Se pueden elegir las siguientes funciones:"
+
+#: 18010000.xhp#hd_id4283883.help.text
+msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
+msgstr "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Marco Flotante</link>"
+
+#: 18010000.xhp#hd_id3149410.8.help.text
+msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
+msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Carácter especial\">Carácter especial</link>"
+
+#: 18010000.xhp#hd_id3151117.7.help.text
+msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"From File\">From File</link>"
+msgstr "<link href=\"text/shared/01/04140000.xhp\" name=\"De archivo\">De archivo</link>"
+
+#: 18010000.xhp#hd_id3633533.help.text
+msgid "<link href=\"text/shared/01/04160300.xhp\" name=\"Formula\">Formula</link>"
+msgstr "<link href=\"text/shared/01/04160300.xhp\" name=\"Formula\">Formula</link>"
+
+#: 18010000.xhp#par_idN10769.help.text
+msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Insert Chart\">Chart</link>"
+msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Insert Chart\">Diagrama</link>"
+
+#: 18010000.xhp#hd_id7581408.help.text
+msgid "<link href=\"text/shared/01/04150100.xhp\" name=\"OLE Object\">OLE Object</link>"
+msgstr "<link href=\"text/shared/01/04150100.xhp\" name=\"OLE Object\">Objeto OLE</link>"
+
+#: 06080000.xhp#tit.help.text
+msgid "Theme Selection"
+msgstr "Selección de temas"
+
+#: 06080000.xhp#hd_id3153087.1.help.text
+msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Theme Selection\">Theme Selection</link>"
+msgstr "<link href=\"text/scalc/02/06080000.xhp\" name=\"Selección de temas\">Selección de temas</link>"
+
+#: 06080000.xhp#par_id3154515.2.help.text
+msgid "<variable id=\"thementext\"><ahelp hid=\".uno:ChooseDesign\">Applies a formatting style to the selected cells.</ahelp></variable> The styles include font, border, and background color information."
+msgstr "<variable id=\"thementext\"><ahelp hid=\".uno:ChooseDesign\">Aplica un estilo de formato a las celdas seleccionadas.</ahelp></variable> Los estilos incluyen información acerca de tipos de letra, bordes y color de fondo."
+
+#: 06080000.xhp#par_id3155132.help.text
+msgid "<image id=\"img_id3145785\" src=\"cmd/sc_choosedesign.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145785\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145785\" src=\"cmd/sc_choosedesign.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145785\">Icono</alt></image>"
+
+#: 06080000.xhp#par_id3153953.4.help.text
+msgid "Choose Themes"
+msgstr "Selección de temas"
+
+#: 06080000.xhp#par_id3147127.5.help.text
+msgid "<ahelp hid=\"HID_DLGSTYLES_LISTBOX\">Click the formatting theme that you want to apply, and then click <emph>OK</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_DLGSTYLES_LISTBOX\">Haga clic en el tema de formato que quiera aplicar y, a continuación, en <emph>Aceptar</emph>.</ahelp>"
+
+#: 10060000.xhp#tit.help.text
+msgid "Zoom Out"
+msgstr "Reducir escala"
+
+#: 10060000.xhp#bm_id3153561.help.text
+msgid "<bookmark_value>page views;reducing scales</bookmark_value><bookmark_value>zooming;reducing page views</bookmark_value>"
+msgstr "<bookmark_value>vistas preliminares;reducir escalas</bookmark_value><bookmark_value>escala;reducir el tamaño de la visualización en pantalla</bookmark_value><bookmark_value>escala;reducir vista preliminar</bookmark_value>"
+
+#: 10060000.xhp#hd_id3153561.1.help.text
+msgid "<link href=\"text/scalc/02/10060000.xhp\" name=\"Zoom Out\">Zoom Out</link>"
+msgstr "<link href=\"text/scalc/02/10060000.xhp\" name=\"Reducir\">Reducir</link>"
+
+#: 10060000.xhp#par_id3151246.2.help.text
+msgid "<ahelp hid=\".uno:ZoomOut\">Reduces the screen display of the current document. The current zoom factor is displayed on the <emph>Status Bar</emph>.</ahelp>"
+msgstr "<ahelp hid=\".uno:ZoomOut\">Reduce el tamaño de la visualización en pantalla del documento actual. El factor de escala actual se muestra en la <emph>barra de estado</emph>.</ahelp>"
+
+#: 10060000.xhp#par_id3150398.4.help.text
+msgid "The minimum zoom factor is 20%."
+msgstr "El factor de escala mínimo es del 20%."
+
+#: 10060000.xhp#par_id3153770.help.text
+msgid "<image id=\"img_id3155131\" src=\"cmd/sc_zoomout.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155131\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155131\" src=\"cmd/sc_zoomout.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3155131\">Icono</alt></image>"
+
+#: 10060000.xhp#par_id3150440.3.help.text
+msgid "Zooming Out"
+msgstr "Reducir escala"
+
+#: 08080000.xhp#tit.help.text
+msgid "Standard Formula, Date/Time, Error Warning"
+msgstr "Fórmula predeterminada, fecha/hora, mensaje de error"
+
+#: 08080000.xhp#bm_id3147335.help.text
+msgid "<bookmark_value>formulas;status bar</bookmark_value>"
+msgstr "<bookmark_value>barra de estado en %PRODUCTNAME Calc</bookmark_value>"
+
+#: 08080000.xhp#hd_id3147335.1.help.text
+msgid "<link href=\"text/scalc/02/08080000.xhp\" name=\"Standard Formula, Date/Time, Error Warning\">Standard Formula, Date/Time, Error Warning</link>"
+msgstr "<link href=\"text/scalc/02/08080000.xhp\" name=\"Fórmula predeterminada, fecha/hora, mensaje de error\">Fórmula predeterminada, fecha/hora, mensaje de error</link>"
+
+#: 08080000.xhp#par_id3150791.2.help.text
+msgid "<ahelp hid=\".uno:StateTableCell\">Displays information about the current document. By default, the SUM of the contents of the selected cells is displayed.</ahelp>"
+msgstr "<ahelp hid=\".uno:StateTableCell\">Muestra información acerca del documento actual. De forma predeterminada, se muestra la SUMA de los contenidos de las celdas seleccionadas.</ahelp>"
+
+#: 08080000.xhp#par_id3155061.3.help.text
+msgid "To change the default formula that is displayed, right-click the field, and then choose the formula that you want. The available formulas are: Average, count of values (COUNTA), count of numbers (COUNT), Maximum, Minimum, Sum, or None."
+msgstr "Para cambiar la fórmula predeterminada haga clic con el botón derecho en el campo y elija la fórmula que desee. Las fórmulas disponibles son: Promedio, Cantidad (cantidad de valores), Cantidad2 (cantidad de valores numéricos), Máximo, Mínimo, Suma o Ninguno."
+
+#: 08080000.xhp#par_id3153969.4.help.text
+msgid "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error codes\">Error codes</link>"
+msgstr "<link href=\"text/scalc/05/02140000.xhp\" name=\"Códigos de error\">Códigos de error</link>"
+
+#: 02160000.xhp#tit.help.text
+msgctxt "02160000.xhp#tit.help.text"
+msgid "Number Format: Add Decimal Place"
+msgstr "Formato numérico: Agregar decimal"
+
+#: 02160000.xhp#hd_id3150275.1.help.text
+msgid "<link href=\"text/scalc/02/02160000.xhp\" name=\"Number Format: Add Decimal Place\">Number Format: Add Decimal Place</link>"
+msgstr "<link href=\"text/scalc/02/02160000.xhp\" name=\"Formato numérico:\">Formato numérico:</link>"
+
+#: 02160000.xhp#par_id3150792.2.help.text
+msgid "<ahelp hid=\".uno:NumberFormatIncDecimals\">Adds one decimal place to the numbers in the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".uno:NumberFormatIncDecimals\">Agrega un decimal a los números de las celdas seleccionadas.</ahelp>"
+
+#: 02160000.xhp#par_id3145787.help.text
+msgid "<image id=\"img_id3145271\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145271\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145271\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145271\">Icono</alt></image>"
+
+#: 02160000.xhp#par_id3149262.3.help.text
+msgctxt "02160000.xhp#par_id3149262.3.help.text"
+msgid "Number Format: Add Decimal Place"
+msgstr "Formato numérico: Agregar decimal"
+
+#: 06010000.xhp#tit.help.text
+msgid "Sheet Area"
+msgstr "Cuadro de nombre"
+
+#: 06010000.xhp#bm_id3156326.help.text
+msgid "<bookmark_value>formula bar; sheet area names</bookmark_value><bookmark_value>sheet area names</bookmark_value><bookmark_value>showing; cell references</bookmark_value><bookmark_value>cell references; showing</bookmark_value>"
+msgstr "<bookmark_value>barra de fórmulas;nombres de áreas de hoja</bookmark_value><bookmark_value>nombres de áreas de hoja</bookmark_value><bookmark_value>mostrar;referencias a celdas</bookmark_value><bookmark_value>referencias a celdas;mostrar</bookmark_value>"
+
+#: 06010000.xhp#hd_id3156326.1.help.text
+msgid "<link href=\"text/scalc/02/06010000.xhp\" name=\"Name Box\">Name Box</link>"
+msgstr "<link href=\"text/scalc/02/06010000.xhp\" name=\"Cuadro de nombre\">Cuadro de nombre</link>"
+
+#: 06010000.xhp#par_id3149656.2.help.text
+msgid "<ahelp hid=\"HID_INSWIN_POS\">Displays the reference for the current cell, the range of the selected cells, or the name of the area. You can also select a range of cells, and then type a name for that range into the <emph>Name Box</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_INSWIN_POS\">Muestra la referencia de la celda actual, la referencia del área de celdas seleccionada o el nombre del área. También puede seleccionar un área de celdas y luego asignarle un nombre en <emph>Cuadro de nombre</emph>.</ahelp>"
+
+#: 06010000.xhp#par_id3163710.help.text
+msgid "<image id=\"img_id3152576\" src=\"res/helpimg/calcein.png\" width=\"1.2398inch\" height=\"0.2398inch\" localize=\"true\"><alt id=\"alt_id3152576\">Combo box sheet area</alt></image>"
+msgstr "<image id=\"img_id3152576\" src=\"res/helpimg/calcein.png\" width=\"1.2398inch\" height=\"0.2398inch\" localize=\"true\"><alt id=\"alt_id3152576\">Cuadro combinado Área de hoja</alt></image>"
+
+#: 06010000.xhp#par_id3151118.4.help.text
+msgid "Name Box"
+msgstr "Cuadro de nombre"
+
+#: 06010000.xhp#par_id3152596.6.help.text
+msgid "To jump to a particular cell, or to select a cell range, type the cell reference, or cell range reference in this box, for example, F1, or A1:C4."
+msgstr "Para saltar a una celda específica o seleccionar un área de celdas, escriba en este cuadro la referencia de la celda o del área; por ejemplo, F1 o A1:C4."
+
+#: 02150000.xhp#tit.help.text
+msgid "Number format: Default"
+msgstr "Formato de número: Predeterminado"
+
+#: 02150000.xhp#hd_id3149182.1.help.text
+msgid "<link href=\"text/scalc/02/02150000.xhp\" name=\"Number format: Default\">Number format: Default</link>"
+msgstr "<link href=\"text/scalc/02/02150000.xhp\" name=\"Número, formato: estándar\">Número, formato: estándar</link>"
+
+#: 02150000.xhp#par_id3163802.2.help.text
+msgid "<ahelp hid=\".uno:NumberFormatStandard\" visibility=\"visible\">Applies the default number format to the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".uno:NumberFormatStandard\" visibility=\"visible\">Aplica el formato de número predeterminado a las celdas seleccionadas.</ahelp>"
+
+#: 02150000.xhp#par_id3155922.help.text
+msgid "<image src=\"cmd/sc_numberformatstandard.png\" id=\"img_id3156024\"><alt id=\"alt_id3156024\">Icon</alt></image>"
+msgstr "<image src=\"cmd/sc_numberformatstandard.png\" id=\"img_id3156024\"><alt id=\"alt_id3156024\">Símbolo</alt></image>"
+
+#: 02150000.xhp#par_id3153361.3.help.text
+msgid "Number Format: Standard"
+msgstr "Formato numérico: Estándar"
+
+#: 02150000.xhp#par_id3154908.4.help.text
+msgctxt "02150000.xhp#par_id3154908.4.help.text"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>."
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Formato - Celda - Números\">Formato - Celda - Números</link>."
+
+#: 06050000.xhp#tit.help.text
+msgid "Input line"
+msgstr "Línea de entrada"
+
+#: 06050000.xhp#hd_id3153821.1.help.text
+msgid "<link href=\"text/scalc/02/06050000.xhp\" name=\"Input line\">Input line</link>"
+msgstr "<link href=\"text/scalc/02/06050000.xhp\" name=\"Línea de entrada\">Línea de entrada</link>"
+
+#: 06050000.xhp#par_id3155922.2.help.text
+msgid "<ahelp hid=\"HID_INSWIN_INPUT\">Enter the formula that you want to add to the current cell. You can also click the <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Function Wizard</link> icon to insert a predefined function into the formula.</ahelp>"
+msgstr "<ahelp hid=\"HID_INSWIN_INPUT\">Escriba la fórmula que desee incorporar a la celda actual. También puede hacer clic en el icono <link href=\"text/scalc/01/04060000.xhp\" name=\"Asistente para funciones\">Asistente para funciones</link> para insertar una función predefinida en la fórmula.</ahelp>"
+
+#: 02170000.xhp#tit.help.text
+msgctxt "02170000.xhp#tit.help.text"
+msgid "Number Format: Delete Decimal Place"
+msgstr "Formato numérico: Eliminar decimal"
+
+#: 02170000.xhp#hd_id3149164.1.help.text
+msgid "<link href=\"text/scalc/02/02170000.xhp\" name=\"Number Format: Delete Decimal Place\">Number Format: Delete Decimal Place</link>"
+msgstr "<link href=\"text/scalc/02/02170000.xhp\" name=\"Formato numérico: Borrar decimales\">Formato numérico: Borrar decimales</link>"
+
+#: 02170000.xhp#par_id3147264.2.help.text
+msgid "<ahelp hid=\".uno:NumberFormatDecDecimals\">Removes one decimal place from the numbers in the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".uno:NumberFormatDecDecimals\">Quita un decimal de los números de las celdas seleccionadas.</ahelp>"
+
+#: 02170000.xhp#par_id3145173.help.text
+msgid "<image id=\"img_id3153192\" src=\"cmd/sc_numberformatdecdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3153192\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153192\" src=\"cmd/sc_numberformatdecdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3153192\">Icono</alt></image>"
+
+#: 02170000.xhp#par_id3154686.3.help.text
+msgctxt "02170000.xhp#par_id3154686.3.help.text"
+msgid "Number Format: Delete Decimal Place"
+msgstr "Formato numérico: Eliminar decimales"
+
+#: 06030000.xhp#tit.help.text
+msgctxt "06030000.xhp#tit.help.text"
+msgid "Sum"
+msgstr "Suma"
+
+#: 06030000.xhp#bm_id3157909.help.text
+msgid "<bookmark_value>functions;sum function icon</bookmark_value> <bookmark_value>formula bar;sum function</bookmark_value> <bookmark_value>sum icon</bookmark_value> <bookmark_value>AutoSum button, see sum icon</bookmark_value>"
+msgstr "<bookmark_value>Funciones;Ícono de la función suma</bookmark_value> <bookmark_value>barra de fórmulas;función de suma</bookmark_value> <bookmark_value>ícono de suma</bookmark_value> <bookmark_value>botón de suma automática, véase ícono de suma</bookmark_value>"
+
+#: 06030000.xhp#hd_id3157909.1.help.text
+msgid "<link href=\"text/scalc/02/06030000.xhp\" name=\"Sum\">Sum</link>"
+msgstr "<link href=\"text/scalc/02/06030000.xhp\" name=\"Suma\">Suma</link>"
+
+#: 06030000.xhp#par_id3150543.2.help.text
+msgid "<ahelp hid=\"HID_INSWIN_SUMME\">Inserts the sum of a cell range into the current cell, or inserts sum values into selected cells. Click in a cell, click this icon, and optionally adjust the cell range. Or select some cells into which the sum values will be inserted, then click the icon.</ahelp>"
+msgstr "<ahelp hid=\"HID_INSWIN_SUMME\">Suma automáticamente los números contenidos en el área de celdas especificada. Haga clic en una celda, pulse este símbolo y, a continuación, especifique un área de celdas. También puede definir un área de celdas arrastrando en la hoja de cálculo.</ahelp>"
+
+#: 06030000.xhp#par_id3153770.help.text
+msgid "<image id=\"img_id3147434\" src=\"cmd/sc_autosum.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147434\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147434\" src=\"cmd/sc_autosum.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3147434\">Ícono</alt></image>"
+
+#: 06030000.xhp#par_id3152577.15.help.text
+msgctxt "06030000.xhp#par_id3152577.15.help.text"
+msgid "Sum"
+msgstr "Suma"
+
+#: 06030000.xhp#par_id3156444.16.help.text
+msgid "$[officename] automatically suggests a cell range, provided that the spreadsheet contains data. If the cell range already contains a sum function, you can combine it with the new one to yield the total sum of the range. If the range contains filters, the Subtotal function is inserted instead of the Sum function."
+msgstr "$[officename] sugiere automáticamente un área de celdas, siempre que la hoja de cálculo contenga datos. Si el área de celdas ya contiene una función de suma, se puede combinar con la nueva función para obtener la suma total del área. Si el área contiene filtros, se inserta la función Subtotal en lugar de la función Suma."
+
+#: 06030000.xhp#par_id3153189.3.help.text
+msgid "Click the <emph>Accept</emph> icon (green check mark) to use the formula displayed in the input line."
+msgstr "Hacer clic en el icono <emph>Aplicar</emph> (marca de verificación verde) para utilizar la fórmula que se muestra en la línea de entrada."
+
+#: 08010000.xhp#tit.help.text
+msgid "Position in document"
+msgstr "Posición en el documento"
+
+#: 08010000.xhp#hd_id3145119.1.help.text
+msgid "<link href=\"text/scalc/02/08010000.xhp\" name=\"Position in document\">Position in document</link>"
+msgstr "<link href=\"text/scalc/02/08010000.xhp\" name=\"Posición en el documento\">Posición en el documento</link>"
+
+#: 08010000.xhp#par_id3147265.2.help.text
+msgid "<ahelp hid=\".uno:StatusDocPos\">Displays the number of the current sheet and the total number of sheets in the spreadsheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:StatusDocPos\">Muestra el número de la hoja actual y el número total de hojas de la hoja de cálculo.</ahelp>"
+
+#: 06060000.xhp#tit.help.text
+msgctxt "06060000.xhp#tit.help.text"
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: 06060000.xhp#bm_id3154514.help.text
+msgid "<bookmark_value>formula bar; canceling inputs</bookmark_value><bookmark_value>functions; canceling input icon</bookmark_value>"
+msgstr "<bookmark_value>barra de fórmulas;cancelar entradas</bookmark_value><bookmark_value>funciones;símbolo de cancelar entradas</bookmark_value>"
+
+#: 06060000.xhp#hd_id3154514.1.help.text
+msgid "<link href=\"text/scalc/02/06060000.xhp\" name=\"Cancel\">Cancel</link>"
+msgstr "<link href=\"text/scalc/02/06060000.xhp\" name=\"Cancelar\">Cancelar</link>"
+
+#: 06060000.xhp#par_id3153823.2.help.text
+msgid "<ahelp hid=\"HID_INSWIN_CANCEL\">Clears the contents of the <emph>Input line</emph>, or cancels the changes that you made to an existing formula.</ahelp>"
+msgstr "<ahelp hid=\"HID_INSWIN_CANCEL\">Borra el contenido de la <emph>Línea de entrada</emph>, o cancela los cambios efectuados en una fórmula.</ahelp>"
+
+#: 06060000.xhp#par_id3156281.help.text
+msgid "<image id=\"img_id3156422\" src=\"svx/res/nu08.png\" width=\"0.2228inch\" height=\"0.2228inch\"><alt id=\"alt_id3156422\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156422\" src=\"svx/res/nu08.png\" width=\"5.66mm\" height=\"5.66mm\"><alt id=\"alt_id3156422\">Símbolo</alt></image>"
+
+#: 06060000.xhp#par_id3153970.3.help.text
+msgctxt "06060000.xhp#par_id3153970.3.help.text"
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: 02130000.xhp#tit.help.text
+msgid "Number format: Currency"
+msgstr "Formato de número: Moneda"
+
+#: 02130000.xhp#hd_id3152892.1.help.text
+msgid "<link href=\"text/scalc/02/02130000.xhp\" name=\"Number format: Currency\">Number format: Currency</link>"
+msgstr "<link href=\"text/scalc/02/02130000.xhp\" name=\"Número, formato: moneda\">Número, formato: moneda</link>"
+
+#: 02130000.xhp#par_id3148837.2.help.text
+msgid "<ahelp hid=\".uno:NumberFormatCurrency\" visibility=\"visible\">Applies the default currency format to the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".uno:NumberFormatCurrency\" visibility=\"visible\">Aplica el formato de moneda predeterminado a las celdas seleccionadas.</ahelp>"
+
+#: 02130000.xhp#par_id3155267.help.text
+msgid "<image src=\"cmd/sc_currencyfield.png\" id=\"img_id3159096\"><alt id=\"alt_id3159096\">Icon</alt></image>"
+msgstr "<image src=\"cmd/sc_currencyfield.png\" id=\"img_id3159096\"><alt id=\"alt_id3159096\">Icono</alt></image>"
+
+#: 02130000.xhp#par_id3150214.3.help.text
+msgid "Number Format: Currency"
+msgstr "Formato numérico: Moneda"
+
+#: 02130000.xhp#par_id3146776.4.help.text
+msgctxt "02130000.xhp#par_id3146776.4.help.text"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>."
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Formato - Celda - Números\">Formato - Celda - Números</link>."
+
+#: 06070000.xhp#tit.help.text
+msgctxt "06070000.xhp#tit.help.text"
+msgid "Accept"
+msgstr "Aceptar"
+
+#: 06070000.xhp#bm_id3143267.help.text
+msgid "<bookmark_value>formula bar; accepting inputs</bookmark_value><bookmark_value>functions; accepting input icon</bookmark_value>"
+msgstr "<bookmark_value>barra de fórmulas;aceptar entradas</bookmark_value><bookmark_value>funciones;símbolo de aceptar entradas</bookmark_value>"
+
+#: 06070000.xhp#hd_id3143267.1.help.text
+msgid "<link href=\"text/scalc/02/06070000.xhp\" name=\"Accept\">Accept</link>"
+msgstr "<link href=\"text/scalc/02/06070000.xhp\" name=\"Aceptar\">Aceptar</link>"
+
+#: 06070000.xhp#par_id3151245.2.help.text
+msgid "<ahelp hid=\"HID_INSWIN_OK\">Accepts the contents of the <emph>Input line</emph>, and then inserts the contents into the current cell.</ahelp>"
+msgstr "<ahelp hid=\"HID_INSWIN_OK\">Acepta el contenido de la <emph>Línea de entrada</emph>, y lo inserta en la celda actual.</ahelp>"
+
+#: 06070000.xhp#par_id3150769.help.text
+msgid "<image id=\"img_id3156422\" src=\"svx/res/nu07.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156422\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156422\" src=\"svx/res/nu07.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156422\">Símbolo</alt></image>"
+
+#: 06070000.xhp#par_id3125864.3.help.text
+msgctxt "06070000.xhp#par_id3125864.3.help.text"
+msgid "Accept"
+msgstr "Aplicar"
+
+#: 02140000.xhp#tit.help.text
+msgid "Number format: Percent"
+msgstr "Formato de número: Porcentaje"
+
+#: 02140000.xhp#hd_id3156329.1.help.text
+msgid "<link href=\"text/scalc/02/02140000.xhp\" name=\"Number format: Percent\">Number format: Percent</link>"
+msgstr "<link href=\"text/scalc/02/02140000.xhp\" name=\"Formato numérico: por ciento\">Formato numérico: por ciento</link>"
+
+#: 02140000.xhp#par_id3155629.2.help.text
+msgid "<ahelp hid=\".uno:NumberFormatPercent\">Applies the percentage format to the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".uno:NumberFormatPercent\">Aplica el formato de porcentaje a las celdas seleccionadas.</ahelp>"
+
+#: 02140000.xhp#par_id3153968.help.text
+msgid "<image id=\"img_id3150869\" src=\"cmd/sc_numberformatpercent.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3150869\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150869\" src=\"cmd/sc_numberformatpercent.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3150869\">Icono</alt></image>"
+
+#: 02140000.xhp#par_id3151114.3.help.text
+msgid "Number Format: Percent"
+msgstr "Formato numérico: Porciento"
+
+#: 02140000.xhp#bm_id3149260.help.text
+msgid "<bookmark_value>percentage calculations</bookmark_value>"
+msgstr "<bookmark_value>cálculos de porcentaje</bookmark_value>"
+
+#: 02140000.xhp#par_id3149260.5.help.text
+msgid "You can also enter a percentage sign (%) after a number in a cell:"
+msgstr "Otra posibilidad es escribir el símbolo de porcentaje (%) a continuación del número en la celda:"
+
+#: 02140000.xhp#par_id3155411.6.help.text
+msgid "1% corresponds to 0.01"
+msgstr "1% corresponde a 0,01"
+
+#: 02140000.xhp#par_id3145749.7.help.text
+msgid "1 + 16% corresponds to 116% or 1.16"
+msgstr "1 + 16% corresponde a 116% o 1,16"
+
+#: 02140000.xhp#par_id3148575.8.help.text
+msgid "1%% corresponds to 0.0001"
+msgstr "1%% corresponde a 0,0001"
+
+#: 02140000.xhp#par_id3159153.10.help.text
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Formato - Celda - Números\">Formato - Celda - Números</link>"
+
+#: 06040000.xhp#tit.help.text
+msgctxt "06040000.xhp#tit.help.text"
+msgid "Function"
+msgstr "Función"
+
+#: 06040000.xhp#bm_id3150084.help.text
+msgid "<bookmark_value>formula bar; functions</bookmark_value><bookmark_value>functions; formula bar icon</bookmark_value>"
+msgstr "<bookmark_value>barra de fórmulas;funciones</bookmark_value><bookmark_value>funciones;símbolo de barra de fórmulas</bookmark_value>"
+
+#: 06040000.xhp#hd_id3150084.1.help.text
+msgid "<link href=\"text/scalc/02/06040000.xhp\" name=\"Function\">Function</link>"
+msgstr "<link href=\"text/scalc/02/06040000.xhp\" name=\"Función\">Función</link>"
+
+#: 06040000.xhp#par_id3151245.2.help.text
+msgid "<ahelp hid=\"HID_INSWIN_FUNC\">Adds a formula to the current cell. Click this icon, and then enter the formula in the <emph>Input line</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_INSWIN_FUNC\">Inserta una fórmula en la celda actual. Haga clic en este símbolo e introduzca la fórmula en la <emph>Línea de entrada</emph>.</ahelp>"
+
+#: 06040000.xhp#par_id3153360.3.help.text
+#, fuzzy
+msgid "This icon is only available when the <emph>Input line</emph> box is not active."
+msgstr "Este símbolo sólo está disponible si el cuadro <emph>Línea de entrada</emph> está oculto."
+
+#: 06040000.xhp#par_id3153770.help.text
+#, fuzzy
+msgid "<image id=\"img_id3145785\" src=\"sc/imglst/sc26049.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145785\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156422\" src=\"svx/res/nu07.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156422\">Símbolo</alt></image>"
+
+#: 06040000.xhp#par_id3153951.4.help.text
+msgctxt "06040000.xhp#par_id3153951.4.help.text"
+msgid "Function"
+msgstr "Función"
+
+#: 10050000.xhp#tit.help.text
+msgctxt "10050000.xhp#tit.help.text"
+msgid "Zoom In"
+msgstr "Aumentar escala"
+
+#: 10050000.xhp#bm_id3148491.help.text
+msgid "<bookmark_value>page views; increasing scales</bookmark_value><bookmark_value>increasing scales in page view</bookmark_value><bookmark_value>zooming;enlarging page views</bookmark_value>"
+msgstr "<bookmark_value>vistas preliminares; aumentar la escala</bookmark_value><bookmark_value>aumentar la escala en la vista preliminar</bookmark_value><bookmark_value>escalar;aumentar el tamaño de la visualización en pantalla</bookmark_value><bookmark_value>escalar;aumentar el tamaño de vistas preliminares</bookmark_value>"
+
+#: 10050000.xhp#hd_id3148491.1.help.text
+msgid "<link href=\"text/scalc/02/10050000.xhp\" name=\"Zoom In\">Zoom In</link>"
+msgstr "<link href=\"text/scalc/02/10050000.xhp\" name=\"Aumentar escala\">Aumentar escala</link>"
+
+#: 10050000.xhp#par_id3145069.2.help.text
+msgid "<ahelp hid=\".uno:ZoomIn\">Enlarges the screen display of the current document. The current zoom factor is displayed on the <emph>Status Bar</emph>.</ahelp>"
+msgstr "<ahelp hid=\".uno:ZoomIn\">Aumenta el tamaño de la visualización en pantalla del documento actual. El factor de escala actual se muestra en la <emph>barra de estado</emph>.</ahelp>"
+
+#: 10050000.xhp#par_id3145171.4.help.text
+msgid "The maximum zoom factor is 400%."
+msgstr "El factor de escala máximo es del 400%."
+
+#: 10050000.xhp#par_id3155854.help.text
+msgid "<image id=\"img_id3151116\" src=\"cmd/sc_helpzoomin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151116\">Icon</alt></image>"
+msgstr "<image id=\"img_id3151116\" src=\"cmd/sc_helpzoomin.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3151116\">Símbolo</alt></image>"
+
+#: 10050000.xhp#par_id3145273.3.help.text
+msgctxt "10050000.xhp#par_id3145273.3.help.text"
+msgid "Zoom In"
+msgstr "Aumentar escala"
+
+#: 18020000.xhp#tit.help.text
+msgid "Insert Cells"
+msgstr "Insertar celdas"
+
+#: 18020000.xhp#bm_id3150275.help.text
+msgid "<bookmark_value>inserting; cells, toolbar icon</bookmark_value>"
+msgstr "<bookmark_value>insertar;celdas, símbolo de la barra de herramientas</bookmark_value>"
+
+#: 18020000.xhp#hd_id3150275.1.help.text
+msgid "<link href=\"text/scalc/02/18020000.xhp\" name=\"Insert Cells\">Insert Cells</link>"
+msgstr "<link href=\"text/scalc/02/18020000.xhp\" name=\"Insertar celdas\">Insertar celdas</link>"
+
+#: 18020000.xhp#par_id3156024.2.help.text
+msgid "<ahelp hid=\".uno:InsCellsCtrl\">Click the arrow next to the icon to open the <emph>Insert Cells </emph>toolbar, where you can insert cells, rows, and columns into the current sheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsCellsCtrl\">Haga clic en la flecha que hay junto al icono para abrir la barra de herramientas <emph>Insertar celdas</emph>, desde la que puede insertar celdas, filas y columnas en la hoja actual.</ahelp>"
+
+#: 18020000.xhp#par_id3150398.3.help.text
+msgctxt "18020000.xhp#par_id3150398.3.help.text"
+msgid "Tools bar icon:"
+msgstr "Símbolo de la barra Herramientas:"
+
+#: 18020000.xhp#par_id3150767.5.help.text
+msgctxt "18020000.xhp#par_id3150767.5.help.text"
+msgid "You can select the following icons:"
+msgstr "Se pueden seleccionar los símbolos siguientes:"
+
+#: 18020000.xhp#hd_id3150439.6.help.text
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Down\">Insert Cells Down</link>"
+msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insertar celdas, hacia abajo\">Insertar celdas, hacia abajo</link>"
+
+#: 18020000.xhp#hd_id3146119.7.help.text
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Right\">Insert Cells Right</link>"
+msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insertar celdas a la derecha\">Insertar celdas a la derecha</link>"
+
+#: 18020000.xhp#hd_id3153190.8.help.text
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Rows\">Rows</link>"
+msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Filas\">Filas</link>"
+
+#: 18020000.xhp#hd_id3153726.9.help.text
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Columns\">Columns</link>"
+msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Columnas\">Columnas</link>"
diff --git a/source/es/helpcontent2/source/text/scalc/04.po b/source/es/helpcontent2/source/text/scalc/04.po
new file mode 100644
index 00000000000..b9a7dde99a7
--- /dev/null
+++ b/source/es/helpcontent2/source/text/scalc/04.po
@@ -0,0 +1,796 @@
+#. extracted from helpcontent2/source/text/scalc/04.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fscalc%2F04.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"PO-Revision-Date: 2012-07-04 17:32+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 01020000.xhp#tit.help.text
+msgid "Shortcut Keys for Spreadsheets"
+msgstr "Combinaciones de teclas en las hojas de cálculo"
+
+#: 01020000.xhp#bm_id3145801.help.text
+msgid "<bookmark_value>spreadsheets; shortcut keys in</bookmark_value><bookmark_value>shortcut keys; spreadsheets</bookmark_value><bookmark_value>sheet ranges; filling</bookmark_value>"
+msgstr "<bookmark_value>hojas de cálculo; teclas de acceso directo en</bookmark_value><bookmark_value>teclas de acceso directo; hojas de cálculo</bookmark_value><bookmark_value>rangos de páginas; rellenar</bookmark_value>"
+
+#: 01020000.xhp#hd_id3145801.1.help.text
+msgid "<variable id=\"calc_keys\"><link href=\"text/scalc/04/01020000.xhp\" name=\"Shortcut Keys for Spreadsheets\">Shortcut Keys for Spreadsheets</link></variable>"
+msgstr "<variable id=\"calc_keys\"> <link href=\"text/scalc/04/01020000.xhp\" name=\"Combinaciones de teclas en las hojas de cálculo\">Combinaciones de teclas en las hojas de cálculo</link></variable>"
+
+#: 01020000.xhp#par_id3155067.3.help.text
+msgid "To fill a selected cell range with the formula that you entered on the <emph>Input line</emph>, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter. Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter+Shift to apply the cell format of the input cell to the entire cell range."
+msgstr "Para rellenar el área de celdas seleccionada con la fórmula escrita en la <emph>línea de entrada</emph>, pulse <switchinline select=\"sys\"><caseinline select=\"MAC\">Opción </caseinline><defaultinline>Alt</defaultinline></switchinline> + Intro. Mantenga pulsadas las teclas <switchinline select=\"sys\"><caseinline select=\"MAC\">Opción</caseinline><defaultinline>Alt</defaultinline></switchinline> + Mayús + Intro para aplicar el formato de la celda de entrada a toda el área de celdas."
+
+#: 01020000.xhp#par_id3153967.84.help.text
+msgid "To create a matrix in which all the cells contain the same information as what you entered on the <emph>Input line</emph>, press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter. You cannot edit the components of the matrix."
+msgstr "Para crear una matriz en la que todas las celdas contengan la información escrita en la <emph>Línea de entrada</emph>, pulse Mayús + <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Intro. Los componentes de la matriz no se pueden editar."
+
+#: 01020000.xhp#par_id3166426.4.help.text
+msgid "To select multiple cells in different areas of a sheet, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and drag in the different areas."
+msgstr ""
+
+#: 01020000.xhp#par_id3150207.127.help.text
+msgid "To select multiple sheets in a spreadsheet, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, and then click the name tabs at the lower edge of the workspace. To select only one sheet in a selection, hold down Shift, and then click the name tab of the sheet."
+msgstr "Para seleccionar varias hojas de una hoja de cálculo, mantenga pulsada <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> y pulse en las pestañas de nombre correspondientes situadas en la parte inferior el área de trabajo. Para elegir una única hoja de una selección, haga clic en la pestaña del nombre de dicha hoja mientras mantiene pulsada la tecla Mayús."
+
+#: 01020000.xhp#par_id3166432.129.help.text
+msgid "To insert a manual line break in a cell, click in the cell, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter."
+msgstr "Para insertar un salto de línea manual en una celda, haga clic en ella y luego pulse <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Intro."
+
+#: 01020000.xhp#par_id3146978.130.help.text
+msgid "To delete the contents of selected cells, press Backspace. This opens the <link href=\"text/scalc/01/02150000.xhp\" name=\"Delete Contents\">Delete Contents</link> dialog, where you choose which contents of the cell you want to delete. To delete the contents of selected cells without a dialog, press the Delete key."
+msgstr ""
+
+#: 01020000.xhp#hd_id3145386.85.help.text
+msgid "Navigating in Spreadsheets"
+msgstr "Navegar por una hoja de cálculo"
+
+#: 01020000.xhp#hd_id3149407.86.help.text
+#, fuzzy
+msgctxt "01020000.xhp#hd_id3149407.86.help.text"
+msgid "Shortcut Keys"
+msgstr ""
+"#-#-#-#-# shared.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Teclas de acceso directo\n"
+"#-#-#-#-# 04.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Combinación de teclas"
+
+#: 01020000.xhp#par_id3153815.87.help.text
+msgctxt "01020000.xhp#par_id3153815.87.help.text"
+msgid "<emph>Effect</emph>"
+msgstr "<emph>Efecto</emph>"
+
+#: 01020000.xhp#hd_id3146871.88.help.text
+msgctxt "01020000.xhp#hd_id3146871.88.help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Home"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Inicio"
+
+#: 01020000.xhp#par_id3159093.89.help.text
+msgid "Moves the cursor to the first cell in the sheet (A1)."
+msgstr "Desplaza el cursor a la primera celda de la hoja (A1)."
+
+#: 01020000.xhp#hd_id3145073.90.help.text
+msgctxt "01020000.xhp#hd_id3145073.90.help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+End"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Fin"
+
+#: 01020000.xhp#par_id3153283.91.help.text
+msgid "Moves the cursor to the last cell on the sheet that contains data."
+msgstr "Desplaza el cursor a la última celda que contiene datos."
+
+#: 01020000.xhp#hd_id3149127.92.help.text
+msgctxt "01020000.xhp#hd_id3149127.92.help.text"
+msgid "Home"
+msgstr "(Inicio)"
+
+#: 01020000.xhp#par_id3159205.93.help.text
+msgid "Moves the cursor to the first cell of the current row."
+msgstr "Desplaza el cursor a la primera celda de la fila actual."
+
+#: 01020000.xhp#hd_id3149897.94.help.text
+msgctxt "01020000.xhp#hd_id3149897.94.help.text"
+msgid "End"
+msgstr "(Fin)"
+
+#: 01020000.xhp#par_id3155095.95.help.text
+msgid "Moves the cursor to the last cell of the current row."
+msgstr "Desplaza el cursor a la última celda de la fila actual."
+
+#: 01020000.xhp#hd_id4149127.92.help.text
+msgid "Shift+Home"
+msgstr ""
+
+#: 01020000.xhp#par_id4159205.93.help.text
+msgid "Selects cells from the current cell to the first cell of the current row."
+msgstr ""
+
+#: 01020000.xhp#hd_id4149897.94.help.text
+msgid "Shift+End"
+msgstr ""
+
+#: 01020000.xhp#par_id4155095.95.help.text
+msgid "Selects cells from the current cell to the last cell of the current row."
+msgstr ""
+
+#: 01020000.xhp#hd_id5149127.92.help.text
+msgid "Shift+Page Up"
+msgstr ""
+
+#: 01020000.xhp#par_id5159205.93.help.text
+msgid "Selects cells from the current cell up to one page in the current column or extends the existing selection one page up."
+msgstr ""
+
+#: 01020000.xhp#hd_id5149897.94.help.text
+msgid "Shift+Page Down"
+msgstr ""
+
+#: 01020000.xhp#par_id5155095.95.help.text
+msgid "Selects cells from the current cell down to one page in the current column or extends the existing selection one page down."
+msgstr ""
+
+#: 01020000.xhp#hd_id3143220.101.help.text
+msgctxt "01020000.xhp#hd_id3143220.101.help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Left Arrow"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + flecha izquierda"
+
+#: 01020000.xhp#par_id3154766.102.help.text
+msgid "Moves the cursor to the left edge of the current data range. If the column to the left of the cell that contains the cursor is empty, the cursor moves to the next column to the left that contains data."
+msgstr "Desplaza el cursor al borde izquierdo del área de datos actual. Si la columna situada a la izquierda de la celda que contiene el cursor está vacía, el cursor se desplaza hacia la izquierda hasta la siguiente columna que contenga datos."
+
+#: 01020000.xhp#hd_id3153554.103.help.text
+msgctxt "01020000.xhp#hd_id3153554.103.help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Right Arrow"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + flecha derecha"
+
+#: 01020000.xhp#par_id3155593.104.help.text
+msgid "Moves the cursor to the right edge of the current data range. If the column to the right of the cell that contains the cursor is empty, the cursor moves to the next column to the right that contains data."
+msgstr "Desplaza el cursor al borde derecho del área de datos actual. Si la columna situada a la derecha de la celda que contiene el cursor está vacía, el cursor se desplaza hacia la derecha hasta la siguiente columna que contenga datos."
+
+#: 01020000.xhp#hd_id3149317.105.help.text
+msgctxt "01020000.xhp#hd_id3149317.105.help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Up Arrow"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + flecha arriba"
+
+#: 01020000.xhp#par_id3153076.106.help.text
+msgid "Moves the cursor to the top edge of the current data range. If the row above the cell that contains the cursor is empty, the cursor moves up to the next row that contains data."
+msgstr "Desplaza el cursor al borde superior del área de datos actual. Si la fila situada encima de la celda que contiene el cursor está vacía, el cursor se desplaza hacia arriba hasta la siguiente fila que contenga datos."
+
+#: 01020000.xhp#hd_id3147250.107.help.text
+msgctxt "01020000.xhp#hd_id3147250.107.help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Down Arrow"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + flecha abajo"
+
+#: 01020000.xhp#par_id3149054.108.help.text
+msgid "Moves the cursor to the bottom edge of the current data range. If the row below the cell that contains the cursor is empty, the cursor moves down to the next row that contains data."
+msgstr "Desplaza el cursor al borde inferior del área de datos actual. Si la fila situada debajo de la celda que contiene el cursor está vacía, el cursor se desplaza hacia abajo hasta la siguiente fila que contenga datos."
+
+#: 01020000.xhp#hd_id3148744.184.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Arrow"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Mayús + Flecha"
+
+#: 01020000.xhp#par_id3159258.185.help.text
+msgid "Selects all cells containing data from the current cell to the end of the continuous range of data cells, in the direction of the arrow pressed. If used to select rows and columns together, a rectangular cell range is selected."
+msgstr "Selecciona todas las celdas que contienen datos a partir de la celda actual hasta el final del rango continuo de celdas de datos en la misma dirección de la flecha pulsada. Si se usa para selecciona filas y columnas juntas se selecciona un rango de celdas rectangular."
+
+#: 01020000.xhp#hd_id3156399.109.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + RePág"
+
+#: 01020000.xhp#par_id3145236.110.help.text
+msgid "Moves one sheet to the left."
+msgstr "Se desplaza una hoja a la izquierda."
+
+#: 01020000.xhp#par_id3149725.131.help.text
+msgid "In the page preview: Moves to the previous print page."
+msgstr "En vista preliminar: Se desplaza a la página para imprimir anterior."
+
+#: 01020000.xhp#hd_id3147411.111.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Down"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + AvPág"
+
+#: 01020000.xhp#par_id3150372.112.help.text
+msgid "Moves one sheet to the right."
+msgstr "Se desplaza una hoja a la derecha."
+
+#: 01020000.xhp#par_id3159120.132.help.text
+msgid "In the page preview: Moves to the next print page."
+msgstr "En vista preliminar: Se desplaza a la página para imprimir siguiente."
+
+#: 01020000.xhp#hd_id3146885.113.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Page Up"
+msgstr ""
+
+#: 01020000.xhp#par_id3152976.114.help.text
+msgid "Moves one screen to the left."
+msgstr "Se desplaza una pantalla a la izquierda."
+
+#: 01020000.xhp#hd_id3149013.115.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Page Down"
+msgstr ""
+
+#: 01020000.xhp#par_id3150477.116.help.text
+msgid "Moves one screen page to the right."
+msgstr "Se desplaza una pantalla a la derecha."
+
+#: 01020000.xhp#par_idN10AFC.help.text
+msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + RePág"
+
+#: 01020000.xhp#par_idN10B00.help.text
+msgid "Adds the previous sheet to the current selection of sheets. If all the sheets in a spreadsheet are selected, this shortcut key combination only selects the previous sheet. Makes the previous sheet the current sheet."
+msgstr "Agrega la hoja anterior a la selección de hojas actual. Si se seleccionan todas las hojas de una hoja de cálculo, esta combinación de teclas sólo selecciona la hoja anterior. Convierte la hoja anterior en la actual."
+
+#: 01020000.xhp#par_idN10B03.help.text
+msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Down"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + AvPág"
+
+#: 01020000.xhp#par_idN10B07.help.text
+msgid "Adds the next sheet to the current selection of sheets. If all the sheets in a spreadsheet are selected, this shortcut key combination only selects the next sheet. Makes the next sheet the current sheet."
+msgstr "Agrega la hoja siguiente a la selección de hojas actual. Si se seleccionan todas las hojas de una hoja de cálculo, esta combinación de teclas sólo selecciona la hoja siguiente. Convierte la hoja siguiente en la actual."
+
+#: 01020000.xhp#hd_id3145826.96.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ *"
+msgstr ""
+
+#: 01020000.xhp#par_id3148882.97.help.text
+msgid "where (*) is the multiplication sign on the numeric key pad"
+msgstr "siendo (*) el signo de multiplicación del teclado numérico"
+
+#: 01020000.xhp#par_id3154847.98.help.text
+msgid "Selects the data range that contains the cursor. A range is a contiguous cell range that contains data and is bounded by empty row and columns."
+msgstr "Selecciona el área de datos en la que se encuentra el cursor. Un área de datos reúne una serie de celdas contiguas; contiene datos y que está limitada por filas y columnas vacías."
+
+#: 01020000.xhp#hd_id3151233.180.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ /"
+msgstr ""
+
+#: 01020000.xhp#par_id3149949.181.help.text
+msgid "where (/) is the division sign on the numeric key pad"
+msgstr "siendo (/) el signo de división del teclado numérico"
+
+#: 01020000.xhp#par_id3150144.182.help.text
+msgid "Selects the matrix formula range that contains the cursor."
+msgstr "Selecciona el área de fórmula de matriz en la que se encuentra el cursor."
+
+#: 01020000.xhp#par_id8163396.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Plus key"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + RePág"
+
+#: 01020000.xhp#par_id9901425.help.text
+msgid "Insert cells (as in menu Insert - Cells)"
+msgstr "Inserta celdas (como dentro del menú Insertar - Celdas)"
+
+#: 01020000.xhp#par_id3389080.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Minus key"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + RePág"
+
+#: 01020000.xhp#par_id5104220.help.text
+msgid "Delete cells (as in menu Edit - Delete Cells)"
+msgstr "Elimina celdas (como en el menú Editar - Eliminar celdas)"
+
+#: 01020000.xhp#hd_id3155825.99.help.text
+msgid "Enter (in a selected range)"
+msgstr "Tecla Intro (en un rango seleccionado)"
+
+#: 01020000.xhp#par_id3153935.100.help.text
+msgid "Moves the cursor down one cell in a selected range. To specify the direction that the cursor moves, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - General</emph>."
+msgstr "Mueve el cursor una celda hacia abajo en el área seleccionada. Para especificar la dirección en que se debe mover el cursor, elíja <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - %PRODUCTNAME Calc - General</emph>."
+
+#: 01020000.xhp#par_id5961180.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ ` (see note below this table)"
+msgstr ""
+
+#: 01020000.xhp#par_id6407055.help.text
+msgid "Displays or hides the formulas instead of the values in all cells."
+msgstr "Muestra o esconde la formula en vez del valor en todas las celdas."
+
+#: 01020000.xhp#par_id8070314.help.text
+msgid "The ` key is located next to the \"1\" key on most English keyboards. If your keyboard does not show this key, you can assign another key: Choose Tools - Customize, click the Keyboard tab. Select the \"View\" category and the \"Toggle Formula\" function."
+msgstr "La tecla ` esta localizado seguido de la tecla \"INTRO\" en la mayoría de los teclados. Si tu teclado no muestra esta tecla, puedes asignar otra tecla: Seleccione Herramientas - Personalizar, haga clic en la pestaña de teclado. Seleccione la categoría de \"Ver\" y en la función de \"Alterar Formula\"."
+
+#: 01020000.xhp#hd_id3148756.5.help.text
+msgid "Function Keys Used in Spreadsheets"
+msgstr "Teclas de función en las hojas de cálculo"
+
+#: 01020000.xhp#hd_id3148581.6.help.text
+msgctxt "01020000.xhp#hd_id3148581.6.help.text"
+msgid "Shortcut Keys"
+msgstr "Combinación de teclas"
+
+#: 01020000.xhp#par_id3152790.8.help.text
+msgctxt "01020000.xhp#par_id3152790.8.help.text"
+msgid "<emph>Effect</emph>"
+msgstr "<emph>Efecto</emph>"
+
+#: 01020000.xhp#hd_id3154809.139.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F1"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + F1"
+
+#: 01020000.xhp#par_id3145140.138.help.text
+msgid "Displays the comment that is attached to the current cell"
+msgstr "Muestra la nota asociada a la celda actual"
+
+#: 01020000.xhp#hd_id3146142.9.help.text
+msgid "F2"
+msgstr "(F2)"
+
+#: 01020000.xhp#par_id3148568.10.help.text
+msgid "Switches to Edit mode and places the cursor at the end of the contents of the current cell. Press again to exit Edit mode."
+msgstr "Cambia a modo de edición y sitúa el cursor al final del contenido de la celda actual. Vuélvala a pulsar para salir del modo de edición."
+
+#: 01020000.xhp#par_id3153108.179.help.text
+msgid "If the cursor is in an input box in a dialog that has a <emph>Minimize </emph>button, the dialog is hidden and the input box remains visible. Press F2 again to show the whole dialog."
+msgstr "Si el cursor se encuentra en un cuadro de entrada de un diálogo que dispone del botón <emph>Minimizar</emph>, el diálogo se ocultará y el cuadro de entrada permanecerá visible. Vuelva a pulsar F2 para volver a mostrar el diálogo completo."
+
+#: 01020000.xhp#hd_id3146850.11.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + F2"
+
+#: 01020000.xhp#par_id3145162.12.help.text
+msgid "Opens the Function Wizard."
+msgstr "Abre el Asistente para funciones."
+
+#: 01020000.xhp#hd_id3147366.137.help.text
+msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
+msgstr "Mayús + <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + F2"
+
+#: 01020000.xhp#par_id3155929.136.help.text
+msgid "Moves the cursor to the <emph>Input line</emph> where you can enter a formula for the current cell."
+msgstr "Desplaza el cursor a la <emph>Línea de entrada</emph> donde puede escribir una fórmula para la celda actual."
+
+#: 01020000.xhp#hd_id3153730.15.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + F3"
+
+#: 01020000.xhp#par_id3145245.16.help.text
+msgid "Opens the <emph>Define Names</emph> dialog."
+msgstr "Abre el diálogo <emph>Definir nombres</emph>."
+
+#: 01020000.xhp#hd_id3148768.17.help.text
+msgid "F4"
+msgstr "(F4)"
+
+#: 01020000.xhp#par_id3153047.18.help.text
+msgid "Shows or Hides the Database explorer."
+msgstr "Muestra u oculta el Explorador de bases de datos."
+
+#: 01020000.xhp#hd_id3145353.19.help.text
+msgid "Shift+F4"
+msgstr "(Mayús)(F4)"
+
+#: 01020000.xhp#par_id3155620.20.help.text
+msgid "Rearranges the relative or absolute references (for example, A1, $A$1, $A1, A$1) in the input field."
+msgstr "Reorganiza las referencias relativas o absolutas (por ejemplo, A1, $A$1, $A1, A$1) en el campo de entrada."
+
+#: 01020000.xhp#hd_id3156063.21.help.text
+msgid "F5"
+msgstr "(F5)"
+
+#: 01020000.xhp#par_id3149540.22.help.text
+msgid "Shows or hides the <emph>Navigator</emph>."
+msgstr "Muestra u oculta el <emph>Navegador</emph>."
+
+#: 01020000.xhp#hd_id3148392.23.help.text
+msgid "Shift+F5"
+msgstr "(Mayús)(F5)"
+
+#: 01020000.xhp#par_id3150268.24.help.text
+msgid "Traces dependents."
+msgstr "Rastrea los dependientes."
+
+#: 01020000.xhp#hd_id3148430.27.help.text
+msgid "Shift+F7"
+msgstr "Mayús+F7"
+
+#: 01020000.xhp#par_id3153179.28.help.text
+msgid "Traces precedents."
+msgstr "Rastrea los precedentes."
+
+#: 01020000.xhp#hd_id3150568.135.help.text
+msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F5"
+msgstr "Mayús + <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + F5"
+
+#: 01020000.xhp#par_id3153551.134.help.text
+msgid "Moves the cursor from the <emph>Input line </emph>to the <emph>Sheet area</emph> box."
+msgstr "Desplaza el cursor de la <emph>Línea de entrada</emph> al cuadro <emph>Área de hoja</emph>."
+
+#: 01020000.xhp#hd_id3155368.29.help.text
+msgid "F7"
+msgstr "(F7)"
+
+#: 01020000.xhp#par_id3154871.30.help.text
+msgid "Checks spelling in the current sheet."
+msgstr "Revisa la ortografía de la hoja actual."
+
+#: 01020000.xhp#hd_id3150688.31.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F7"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + F7"
+
+#: 01020000.xhp#par_id3149781.32.help.text
+msgid "Opens the Thesaurus if the current cell contains text."
+msgstr "Abre el Diccionario de sinónimos si la celda actual contiene texto."
+
+#: 01020000.xhp#hd_id3156257.33.help.text
+msgid "F8"
+msgstr "(F8)"
+
+#: 01020000.xhp#par_id3147482.34.help.text
+msgid "Turns additional selection mode on or off. In this mode, you can use the arrow keys to extend the selection. You can also click in another cell to extend the selection."
+msgstr "Activa y desactiva el modo de selección adicional. Este modo permite utilizar las teclas de cursor para ampliar la selección. También puede ampliarla pulsando en otra celda."
+
+#: 01020000.xhp#hd_id3154313.37.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F8"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + F8"
+
+#: 01020000.xhp#par_id3150385.38.help.text
+msgid "Highlights cells containing values."
+msgstr "Destaca las celdas que contienen valores."
+
+#: 01020000.xhp#hd_id3152479.39.help.text
+msgid "F9"
+msgstr "(F9)"
+
+#: 01020000.xhp#par_id3163827.40.help.text
+msgid "Recalculates changed formulas in the current sheet."
+msgstr "Recalcula cambios de las formulas en las hojas actuales."
+
+#: 01020000.xhp#par_id9027069.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F9"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + F9"
+
+#: 01020000.xhp#par_id1729178.help.text
+msgid "Recalculates all formulas in all sheets."
+msgstr "Recalcula todas las formulas en todas las hojas."
+
+#: 01020000.xhp#hd_id3156300.41.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + F9"
+
+#: 01020000.xhp#par_id3154817.42.help.text
+msgid "Updates the selected chart."
+msgstr "Actualiza el diagrama seleccionado."
+
+#: 01020000.xhp#hd_id3149279.46.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando+T</caseinline><defaultinline>F11</defaultinline></switchinline>"
+
+#: 01020000.xhp#par_id3150967.47.help.text
+msgid "Opens the <emph>Styles and Formatting</emph> window where you can apply a formatting style to the contents of the cell or to the current sheet."
+msgstr "Abre la ventana <emph>Estilo y formato</emph>, que permite aplicar un diseño de formato al contenido de la celda o a la hoja actual."
+
+#: 01020000.xhp#hd_id3156308.48.help.text
+msgid "Shift+F11"
+msgstr "(Mayús)(F11)"
+
+#: 01020000.xhp#par_id3145209.49.help.text
+msgid "Creates a document template."
+msgstr "Crea una plantilla de documento."
+
+#: 01020000.xhp#hd_id3147622.50.help.text
+msgid "Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+Command</caseinline><defaultinline>+Ctrl</defaultinline></switchinline>+F11"
+msgstr "Mayús<switchinline select=\"sys\"><caseinline select=\"MAC\"> + Comando</caseinline><defaultinline> + Ctrl</defaultinline></switchinline> + F11"
+
+#: 01020000.xhp#par_id3153215.51.help.text
+msgid "Updates the templates."
+msgstr "Actualiza las plantillas."
+
+#: 01020000.xhp#hd_id3150760.52.help.text
+msgid "F12"
+msgstr "(F12)"
+
+#: 01020000.xhp#par_id3156321.53.help.text
+msgid "Groups the selected data range."
+msgstr "Agrupa el área de datos seleccionada."
+
+#: 01020000.xhp#hd_id3146859.54.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + F12"
+
+#: 01020000.xhp#par_id3156128.55.help.text
+msgid "Ungroups the selected data range."
+msgstr "Desagrupa el área de datos seleccionada."
+
+#: 01020000.xhp#hd_id3151264.117.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Down Arrow"
+msgstr ""
+
+#: 01020000.xhp#par_id3153155.118.help.text
+msgid "Increases the height of current row (only in <link href=\"text/shared/optionen/01060800.xhp\" name=\"Compatibility\">OpenOffice.org legacy compatibility mode</link>)."
+msgstr ""
+
+#: 01020000.xhp#hd_id3151297.119.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Up Arrow"
+msgstr ""
+
+#: 01020000.xhp#par_id3155849.120.help.text
+msgid "Decreases the height of current row (only in <link href=\"text/shared/optionen/01060800.xhp\" name=\"Compatibility\">OpenOffice.org legacy compatibility mode</link>)."
+msgstr ""
+
+#: 01020000.xhp#hd_id3155997.121.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Right Arrow"
+msgstr ""
+
+#: 01020000.xhp#par_id3150256.122.help.text
+msgid "Increases the width of the current column."
+msgstr "Aumenta el ancho de la columna actual."
+
+#: 01020000.xhp#hd_id3154046.123.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Left Arrow"
+msgstr ""
+
+#: 01020000.xhp#par_id3150155.124.help.text
+msgid "Decreases the width of the current column."
+msgstr "Reduce el ancho de la columna actual."
+
+#: 01020000.xhp#hd_id3149293.125.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Shift+Arrow Key"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Opción </caseinline><defaultinline>Alt</defaultinline></switchinline> + Mayús + tecla de flecha"
+
+#: 01020000.xhp#par_id3159180.126.help.text
+msgid "Optimizes the column width or row height based on the current cell."
+msgstr "Optimiza el ancho de columna o la altura de fila según la celda actual."
+
+#: 01020000.xhp#hd_id3156013.56.help.text
+msgid "Formatting Cells Using Shortcut Keys"
+msgstr "Formateado de celdas mediante combinaciones de teclas"
+
+#: 01020000.xhp#par_id3153979.57.help.text
+msgid "The following cell formats can be applied with the keyboard:"
+msgstr "Los siguientes formatos de celda se pueden aplicar desde el teclado:"
+
+#: 01020000.xhp#hd_id3147492.58.help.text
+msgctxt "01020000.xhp#hd_id3147492.58.help.text"
+msgid "Shortcut Keys"
+msgstr "<emph>Combinación de teclas</emph>"
+
+#: 01020000.xhp#par_id3154305.60.help.text
+msgctxt "01020000.xhp#par_id3154305.60.help.text"
+msgid "<emph>Effect</emph>"
+msgstr "<emph>Efecto</emph>"
+
+#: 01020000.xhp#hd_id3145669.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+1 (not on the number pad)"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ 1 (no en el teclado numérico)"
+
+#: 01020000.xhp#par_id3149197.help.text
+msgid "Open Format Cells dialog"
+msgstr "Abre el dialogo de formato de celdas"
+
+#: 01020000.xhp#hd_id3145668.61.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+1 (not on the number pad)"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Mayús + 1 (no del teclado numérico)"
+
+#: 01020000.xhp#par_id3149196.63.help.text
+msgid "Two decimal places, thousands separator"
+msgstr "Dos decimales, separador de miles"
+
+#: 01020000.xhp#hd_id3155331.64.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+2 (not on the number pad)"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Mayús + 2 (no del teclado numérico)"
+
+#: 01020000.xhp#par_id3150120.66.help.text
+msgid "Standard exponential format"
+msgstr "Formato exponencial predeterminado"
+
+#: 01020000.xhp#hd_id3154932.67.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+3 (not on the number pad)"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Mayús + 3 (no del teclado numérico)"
+
+#: 01020000.xhp#par_id3148822.69.help.text
+msgid "Standard date format"
+msgstr "Formato de fecha predeterminado"
+
+#: 01020000.xhp#hd_id3148829.70.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+4 (not on the number pad)"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Mayús + 4 (no del teclado numérico)"
+
+#: 01020000.xhp#par_id3159152.72.help.text
+msgid "Standard currency format"
+msgstr "Formato de moneda predeterminado"
+
+#: 01020000.xhp#hd_id3150776.73.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+5 (not on the number pad)"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Mayús + 5 (no del teclado numérico)"
+
+#: 01020000.xhp#par_id3148800.75.help.text
+msgid "Standard percentage format (two decimal places)"
+msgstr "Formato de porcentajes predeterminado (con 2 decimales)"
+
+#: 01020000.xhp#hd_id3158407.76.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+6 (not on the number pad)"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Mayús + 6 (no del teclado numérico)"
+
+#: 01020000.xhp#par_id3148444.78.help.text
+msgid "Standard format"
+msgstr "Formato predeterminado"
+
+#: 01020000.xhp#hd_id3154205.178.help.text
+#, fuzzy
+msgid "Using the pivot table"
+msgstr "Uso del Piloto de datos"
+
+#: 01020000.xhp#par_idN11326.help.text
+msgid "Keys"
+msgstr "Teclas"
+
+#: 01020000.xhp#par_idN1132C.help.text
+msgid "Effect"
+msgstr "Efecto"
+
+#: 01020000.xhp#hd_id3153577.177.help.text
+msgid "Tab"
+msgstr "Tabulador"
+
+#: 01020000.xhp#par_id3147511.176.help.text
+msgid "Changes the focus by moving forwards through the areas and buttons of the dialog."
+msgstr "Cambia el foco recorriendo hacia delante las áreas y botones del diálogo."
+
+#: 01020000.xhp#hd_id3154266.175.help.text
+msgid "Shift+Tab"
+msgstr "Mayús+Tabulador"
+
+#: 01020000.xhp#par_id3155362.174.help.text
+msgid "Changes the focus by moving backwards through the areas and buttons of the dialog."
+msgstr "Cambia el foco recorriendo hacia atrás las áreas y botones del diálogo."
+
+#: 01020000.xhp#hd_id3148484.173.help.text
+#, fuzzy
+msgid "Up Arrow"
+msgstr "Flecha arriba"
+
+#: 01020000.xhp#par_id3149152.172.help.text
+msgid "Moves the focus up one item in the current dialog area."
+msgstr "Desplaza el foco un elemento hacia arriba en el área actual del diálogo."
+
+#: 01020000.xhp#hd_id3154273.171.help.text
+#, fuzzy
+msgid "Down Arrow"
+msgstr "Flecha abajo"
+
+#: 01020000.xhp#par_id3158424.170.help.text
+msgid "Moves the focus down one item in the current dialog area."
+msgstr "Desplaza el foco un elemento hacia abajo en el área actual del diálogo."
+
+#: 01020000.xhp#hd_id3148912.169.help.text
+#, fuzzy
+msgid "Left Arrow"
+msgstr "Flecha izquierda"
+
+#: 01020000.xhp#par_id3153238.168.help.text
+msgid "Moves the focus one item to the left in the current dialog area."
+msgstr "Desplaza el foco un elemento a la izquierda en el área actual del diálogo."
+
+#: 01020000.xhp#hd_id3150712.167.help.text
+#, fuzzy
+msgid "Right Arrow"
+msgstr "Flecha derecha"
+
+#: 01020000.xhp#par_id3166458.166.help.text
+msgid "Moves the focus one item to the right in the current dialog area."
+msgstr "Desplaza el foco un elemento a la derecha en el área actual del diálogo."
+
+#: 01020000.xhp#hd_id3146947.165.help.text
+msgctxt "01020000.xhp#hd_id3146947.165.help.text"
+msgid "Home"
+msgstr "Inicio"
+
+#: 01020000.xhp#par_id3153742.164.help.text
+msgid "Selects the first item in the current dialog area."
+msgstr "Selecciona el primer elemento del área actual del diálogo."
+
+#: 01020000.xhp#hd_id3153387.163.help.text
+msgctxt "01020000.xhp#hd_id3153387.163.help.text"
+msgid "End"
+msgstr "Fin"
+
+#: 01020000.xhp#par_id3153684.162.help.text
+msgid "Selects the last item in the current dialog area."
+msgstr "Selecciona el último elemento del área actual del diálogo."
+
+#: 01020000.xhp#hd_id3155584.161.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and the underlined character in the word \"Row\""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Opción </caseinline><defaultinline>Alt</defaultinline></switchinline> y el carácter subrayado de la palabra \"Fila\""
+
+#: 01020000.xhp#par_id3152949.160.help.text
+msgid "Copies or moves the current field into the \"Row\" area."
+msgstr "Copia o desplaza el campo actual al área \"Fila\"."
+
+#: 01020000.xhp#hd_id3159269.159.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and the underlined character in the word \"Column\""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Opción </caseinline><defaultinline>Alt</defaultinline></switchinline> y el carácter subrayado de la palabra \"Columna\""
+
+#: 01020000.xhp#par_id3149968.158.help.text
+msgid "Copies or moves the current field into the \"Column\" area."
+msgstr "Copia o desplaza el campo actual al área \"Columna\"."
+
+#: 01020000.xhp#hd_id3149923.157.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and the underlined character in the word \"Data\""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Opción </caseinline><defaultinline>Alt</defaultinline></switchinline> y el carácter subrayado de la palabra \"Datos\""
+
+#: 01020000.xhp#par_id3148649.156.help.text
+msgid "Copies or moves the current field into the \"Data\" area."
+msgstr "Copia o desplaza el campo actual al área \"Datos\"."
+
+#: 01020000.xhp#hd_id3149418.155.help.text
+msgctxt "01020000.xhp#hd_id3149418.155.help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Up Arrow"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + flecha arriba"
+
+#: 01020000.xhp#par_id3154335.154.help.text
+msgid "Moves the current field up one place."
+msgstr "Desplaza el campo actual un lugar hacia arriba."
+
+#: 01020000.xhp#hd_id3148462.153.help.text
+msgctxt "01020000.xhp#hd_id3148462.153.help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Down Arrow"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + flecha abajo"
+
+#: 01020000.xhp#par_id3154603.152.help.text
+msgid "Moves the current field down one place."
+msgstr "Desplaza el campo actual un lugar hacia abajo."
+
+#: 01020000.xhp#hd_id3145373.151.help.text
+msgctxt "01020000.xhp#hd_id3145373.151.help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Left Arrow"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + flecha izquierda"
+
+#: 01020000.xhp#par_id3151125.150.help.text
+msgid "Moves the current field one place to the left."
+msgstr "Desplaza el campo actual un lugar a la izquierda."
+
+#: 01020000.xhp#hd_id3150423.149.help.text
+msgctxt "01020000.xhp#hd_id3150423.149.help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Right Arrow"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + flecha derecha"
+
+#: 01020000.xhp#par_id3153316.148.help.text
+msgid "Moves the current field one place to the right."
+msgstr "Desplaza el campo actual un lugar a la derecha."
+
+#: 01020000.xhp#hd_id3149519.147.help.text
+msgctxt "01020000.xhp#hd_id3149519.147.help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Home"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Inicio"
+
+#: 01020000.xhp#par_id3149237.146.help.text
+msgid "Moves the current field to the first place."
+msgstr "Desplaza el campo actual a la primera posición."
+
+#: 01020000.xhp#hd_id3145310.145.help.text
+msgctxt "01020000.xhp#hd_id3145310.145.help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+End"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Fin"
+
+#: 01020000.xhp#par_id3153942.144.help.text
+msgid "Moves the current field to the last place."
+msgstr "Desplaza el campo actual a la última posición."
+
+#: 01020000.xhp#hd_id3149933.143.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+O"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Opción </caseinline><defaultinline>Alt</defaultinline></switchinline> + O"
+
+#: 01020000.xhp#par_id3154798.142.help.text
+msgid "Displays the options for the current field."
+msgstr "Muestra las opciones correspondientes al campo actual."
+
+#: 01020000.xhp#hd_id3148418.141.help.text
+msgid "Delete"
+msgstr "Supr"
+
+#: 01020000.xhp#par_id3159251.140.help.text
+msgid "Removes the current field from the area."
+msgstr "Borra el campo actual del área."
+
+#: 01020000.xhp#par_id3150630.183.help.text
+msgid "<link href=\"text/shared/04/01010000.xhp\" name=\"shortcut keys in $[officename]\">Shortcut keys in $[officename]</link>"
+msgstr "<link href=\"text/shared/04/01010000.xhp\" name=\"combinaciones de teclas en $[officename]\">Combinaciones de teclas en $[officename]</link>"
diff --git a/source/es/helpcontent2/source/text/scalc/05.po b/source/es/helpcontent2/source/text/scalc/05.po
new file mode 100644
index 00000000000..06811a13987
--- /dev/null
+++ b/source/es/helpcontent2/source/text/scalc/05.po
@@ -0,0 +1,528 @@
+#. extracted from helpcontent2/source/text/scalc/05.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fscalc%2F05.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"PO-Revision-Date: 2011-04-05 19:49+0200\n"
+"Last-Translator: Alexandro <jza@openoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: empty_cells.xhp#tit.help.text
+msgid "Handling of Empty Cells"
+msgstr "Manejo de celdas vacias"
+
+#: empty_cells.xhp#bm_id3146799.help.text
+msgid "<bookmark_value>empty cells;handling of</bookmark_value>"
+msgstr "<bookmark_value>celdas vacias;uso de </bookmark_value>"
+
+#: empty_cells.xhp#hd_id1502121.help.text
+msgid "<variable id=\"empty_cells\"><link href=\"text/scalc/05/empty_cells.xhp\">Handling of Empty Cells</link></variable>"
+msgstr "<variable id=\"empty_cells\"><link href=\"text/scalc/05/empty_cells.xhp\">Manejo de celdas vacias</link></variable>"
+
+#: empty_cells.xhp#par_id8266853.help.text
+msgid "In older versions of the software, empty cells were forced to numeric 0 in some contexts and to empty string in others, except in direct comparison where =A1=0 and =A1=\"\" both resulted in TRUE if A1 was empty. Emptiness now is inherited until used, so both =VLOOKUP(...)=0 and =VLOOKUP(...)=\"\" give TRUE if the lookup resulted in an empty cell being returned. "
+msgstr "Previamente, las celdas vacías estaban forzadas al número 0 en algunos contextos y a cadenas vacías en otros, excepto en comparaciones directas donde =A1=0 y =A1=\"\" ambas resultaban en VERDADERO si A1 estaba vacía. Ahora el cualidad de vacío se hereda hasta que sea utilizada, así es que ambos =BUSCARV(...)=0 y =BUSCARV(...)=\"\" dan VERDADERO si el resultado de la búsqueda devuelve una celda vacía."
+
+#: empty_cells.xhp#par_id2733542.help.text
+msgid "A simple reference to an empty cell is still displayed as numeric 0 but is not necessarily of type numeric anymore, so also comparisons with the referencing cell work as expected. "
+msgstr "Una simple referencia para una celda vacía aún se visualiza como un número 0 pero no es necesariamente de tipo numérico, de tal modo que las comparaciones con referencia a la celda funcionan como se espera."
+
+#: empty_cells.xhp#par_id4238715.help.text
+msgid "For the following examples, A1 contains a number, B1 is empty, C1 contains the reference to B1:"
+msgstr "Para el siguiente ejemplo, A1 contiene un numero, B1 esta vacio, C1 contiene la referencia a B1:"
+
+#: empty_cells.xhp#par_id8277230.help.text
+msgid "A1: 1 B1: <empty> C1: =B1 (displays 0)"
+msgstr "A1: 1 B1: <empty> C1: =B1 (muestra 0)"
+
+#: empty_cells.xhp#par_id4086428.help.text
+msgctxt "empty_cells.xhp#par_id4086428.help.text"
+msgid "=B1=0 => TRUE"
+msgstr "=B1=0 => VERDADERO"
+
+#: empty_cells.xhp#par_id9024628.help.text
+msgid "=B1=\"\" => TRUE"
+msgstr "=B1=\"\" => VERDADERO"
+
+#: empty_cells.xhp#par_id3067110.help.text
+msgid "=C1=0 => TRUE"
+msgstr "=C1=0 => VERDADERO"
+
+#: empty_cells.xhp#par_id8841822.help.text
+msgid "=C1=\"\" => TRUE (previously was FALSE)"
+msgstr "=C1=\"\" => VERDADERO (previamente era FALSO)"
+
+#: empty_cells.xhp#par_id4077578.help.text
+msgid "=ISNUMBER(B1) => FALSE"
+msgstr "=ESNÚMERO(B1) => FALSO"
+
+#: empty_cells.xhp#par_id9094515.help.text
+msgid "=ISNUMBER(C1) => FALSE (previously was TRUE)"
+msgstr "=ESNÚMERO(C1) => FALSO (previamente era VERDADERO)"
+
+#: empty_cells.xhp#par_id396740.help.text
+msgid "=ISNUMBER(VLOOKUP(1;A1:C1;2)) => FALSE (B1)"
+msgstr "=ESNÚMERO(BUSCARV(1;A1:C1;2)) => FALSO (B1)"
+
+#: empty_cells.xhp#par_id3859675.help.text
+msgid "=ISNUMBER(VLOOKUP(1;A1:C1;3)) => FALSE (C1, previously was TRUE)"
+msgstr "=ESNÚMERO(BUSCARV(1;A1:C1;3)) => FALSO (C1, previamente era VERDADERO)"
+
+#: empty_cells.xhp#par_id402233.help.text
+msgctxt "empty_cells.xhp#par_id402233.help.text"
+msgid "=ISTEXT(B1) => FALSE"
+msgstr "=ESTEXTO(B1) => FALSO"
+
+#: empty_cells.xhp#par_id1623889.help.text
+msgctxt "empty_cells.xhp#par_id1623889.help.text"
+msgid "=ISTEXT(C1) => FALSE"
+msgstr "=ESTEXTO(C1) => FALSO"
+
+#: empty_cells.xhp#par_id7781914.help.text
+msgid "=ISTEXT(VLOOKUP(1;A1:C1;2)) => FALSE (B1, previously was TRUE)"
+msgstr "=ESTEXTO(BUSCARV(1;A1:C1;2)) => FALSO (B1, previamente era VERDADERO)"
+
+#: empty_cells.xhp#par_id300912.help.text
+msgid "=ISTEXT(VLOOKUP(1;A1:C1;3)) => FALSE (C1)"
+msgstr "=ESTEXTO(BUSCARV(1;A1:C1;3)) => FALSO (C1)"
+
+#: empty_cells.xhp#par_id9534592.help.text
+msgid "=ISBLANK(B1) => TRUE"
+msgstr "=ESBLANCO(B1) => VERDADERO"
+
+#: empty_cells.xhp#par_id4969328.help.text
+msgid "=ISBLANK(C1) => FALSE"
+msgstr "=ESBLANCO(C1) => FALSO"
+
+#: empty_cells.xhp#par_id9635914.help.text
+msgid "=ISBLANK(VLOOKUP(1;A1:C1;2)) => TRUE (B1, previously was FALSE)"
+msgstr "=ESBLANCO(BUSCARV(1;A1:C1;2)) => VERDADERO (B1, previamente era FALSO)"
+
+#: empty_cells.xhp#par_id2476577.help.text
+msgid "=ISBLANK(VLOOKUP(1;A1:C1;3)) => FALSE (C1)"
+msgstr "=ESBLANCO(BUSCARV(1;A1:C1;3)) => FALSO (C1)"
+
+#: empty_cells.xhp#par_id4217047.help.text
+msgid "Note that Microsoft Excel behaves different and always returns a number as the result of a reference to an empty cell or a formula cell with the result of an empty cell. For example:"
+msgstr "Note que Microsoft Excel se comporta diferente y siempre devuelve un número como el resultado de una referencia para una celda vacía o una fórmula en la celda con el resultado de una celda vacía. Por ejemplo:"
+
+#: empty_cells.xhp#par_id2629474.help.text
+msgid "A1: <empty>"
+msgstr "A1: <empty>"
+
+#: empty_cells.xhp#par_id8069704.help.text
+msgid "B1: =A1 => displays 0, but is just a reference to an empty cell"
+msgstr "B1: =A1 => muestra 0, pero es sólo una referencia a una celda vacía."
+
+#: empty_cells.xhp#par_id4524674.help.text
+msgid "=ISNUMBER(A1) => FALSE"
+msgstr "=ESNÚMERO(A1) => FALSO"
+
+#: empty_cells.xhp#par_id4396801.help.text
+msgid "=ISTEXT(A1) => FALSE"
+msgstr "=ESTEXTO(A1) => FALSO"
+
+#: empty_cells.xhp#par_id5293740.help.text
+msgid "=A1=0 => TRUE"
+msgstr "=A1=0 => VERDADERO"
+
+#: empty_cells.xhp#par_id7623828.help.text
+msgid "=A1=\"\" => TRUE"
+msgstr "=A1=\"\" => VERDADERO"
+
+#: empty_cells.xhp#par_id2861720.help.text
+msgid "=ISNUMBER(B1) => FALSE (MS-Excel: TRUE)"
+msgstr "=ESNÚMERO(B1) => FALSO (MS-Excel: VERDADERO)"
+
+#: empty_cells.xhp#par_id9604480.help.text
+msgctxt "empty_cells.xhp#par_id9604480.help.text"
+msgid "=ISTEXT(B1) => FALSE"
+msgstr "=ESTEXTO(B1) => FALSO"
+
+#: empty_cells.xhp#par_id2298959.help.text
+msgctxt "empty_cells.xhp#par_id2298959.help.text"
+msgid "=B1=0 => TRUE"
+msgstr "=B1=0 => VERDADERO"
+
+#: empty_cells.xhp#par_id4653767.help.text
+msgid "=B1=\"\" => TRUE (MS-Excel: FALSE)"
+msgstr "=B1=\"\" => VERDADERO (MS-Excel: FALSO)"
+
+#: empty_cells.xhp#par_id8801538.help.text
+msgid "C1: =VLOOKUP(...) with empty cell result => displays empty (MS-Excel: displays 0)"
+msgstr "C1: =BUSCARV(...) con una celda vacía resulta => mostrar vacío (MS-Excel: muestra 0)"
+
+#: empty_cells.xhp#par_id6746421.help.text
+msgid "=ISNUMBER(VLOOKUP(...)) => FALSE"
+msgstr "=ESNÚMERO(BUSCARV(...)) => FALSO"
+
+#: empty_cells.xhp#par_id4876247.help.text
+msgid "=ISTEXT(VLOOKUP(...)) => FALSE"
+msgstr "=ESTEXTO(BUSCARV(...)) => FALSO"
+
+#: empty_cells.xhp#par_id7458723.help.text
+msgid "=ISNUMBER(C1) => FALSE (MS-Excel: TRUE)"
+msgstr "=ESNÚMERO(C1) => FALSO (MS-Excel: VERDADERO)"
+
+#: empty_cells.xhp#par_id2753379.help.text
+msgctxt "empty_cells.xhp#par_id2753379.help.text"
+msgid "=ISTEXT(C1) => FALSE"
+msgstr "=ESTEXTO(C1) => FALSO"
+
+#: 02140000.xhp#tit.help.text
+msgid "Error Codes in %PRODUCTNAME Calc"
+msgstr "Códigos de error en %PRODUCTNAME Calc"
+
+#: 02140000.xhp#bm_id3146797.help.text
+msgid "<bookmark_value>error codes;list of</bookmark_value>"
+msgstr "<bookmark_value>error de código;lista de</bookmark_value>"
+
+#: 02140000.xhp#hd_id3146797.1.help.text
+msgid "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error Codes in %PRODUCTNAME Calc\">Error Codes in <item type=\"productname\">%PRODUCTNAME</item> Calc</link>"
+msgstr "<link href=\"text/scalc/05/02140000.xhp\" name=\"Códigos de error en %PRODUCTNAME Calc\">Códigos de error en <item type=\"productname\">%PRODUCTNAME</item> Calc</link>"
+
+#: 02140000.xhp#par_id3150275.2.help.text
+msgid "The following table is an overview of the error messages for <item type=\"productname\">%PRODUCTNAME</item> Calc. If the error occurs in the cell that contains the cursor, the error message is displayed on the <emph>Status Bar</emph>."
+msgstr "El siguiente tabla contiene un sobrevista de los mensajes de error para <item type=\"productname\">%PRODUCTNAME</item> Calc. Si el error ocurre en la celda que contiene el cursor, el mensaje de error esta mostrado en la <emph>Barra de Estatus</emph>."
+
+#: 02140000.xhp#bm_id0202201010205429.help.text
+msgid "<bookmark_value>### error message</bookmark_value>"
+msgstr "<bookmark_value>mensaje de error ###</bookmark_value>"
+
+#: 02140000.xhp#bm_id3154634.help.text
+msgid "<bookmark_value>invalid references; error messages</bookmark_value> <bookmark_value>error messages;invalid references</bookmark_value> <bookmark_value>#REF error message</bookmark_value>"
+msgstr "<bookmark_value>referencias inválidas; mensajes de error</bookmark_value> <bookmark_value>mensajes de error;referencias inválidas</bookmark_value><bookmark_value>mensaje de error #REF</bookmark_value>"
+
+#: 02140000.xhp#bm_id3148428.help.text
+msgid "<bookmark_value>invalid names; error messages</bookmark_value> <bookmark_value>#NAME error message</bookmark_value>"
+msgstr "<bookmark_value>nombres inválidos; mensajes de error</bookmark_value> <bookmark_value>mensaje de error #NOMBRE</bookmark_value>"
+
+#: 02140000.xhp#par_id3153968.3.help.text
+msgid "Error Code"
+msgstr "<emph>Código de error</emph>"
+
+#: 02140000.xhp#par_id3125863.4.help.text
+msgid "Message"
+msgstr "Mensaje"
+
+#: 02140000.xhp#par_id3151112.5.help.text
+msgid "Explanation"
+msgstr "<emph>Explicación</emph>"
+
+#: 02140000.xhp#par_id1668467.help.text
+msgid "###"
+msgstr "###"
+
+#: 02140000.xhp#par_id3165766.13.help.text
+msgid "none"
+msgstr "ninguno"
+
+#: 02140000.xhp#par_id3169266.14.help.text
+msgid "The cell is not wide enough to display the contents."
+msgstr "La celda no es suficientemente ancha como para mostrar el contenido."
+
+#: 02140000.xhp#par_id3153188.6.help.text
+msgid "501"
+msgstr "501"
+
+#: 02140000.xhp#par_id3148645.7.help.text
+msgid "Invalid character"
+msgstr "Carácter no válido"
+
+#: 02140000.xhp#par_id3155854.8.help.text
+msgid "Character in a formula is not valid."
+msgstr "Caracteres en una formula no es valida."
+
+#: 02140000.xhp#par_id3145253.9.help.text
+msgid "502"
+msgstr "502"
+
+#: 02140000.xhp#par_id3147397.10.help.text
+msgid "Invalid argument"
+msgstr "Argumento no válido"
+
+#: 02140000.xhp#par_id3153160.11.help.text
+msgid "Function argument is not valid. For example, a negative number for the SQRT() function, for this please use IMSQRT()."
+msgstr ""
+
+#: 02140000.xhp#par_id3154015.12.help.text
+msgid "503<br/>#NUM!"
+msgstr ""
+
+#: 02140000.xhp#par_id3155766.13.help.text
+msgid "Invalid floating point operation"
+msgstr "Operación en coma flotante no válida"
+
+#: 02140000.xhp#par_id3159266.14.help.text
+msgid "A calculation results in an overflow of the defined value range."
+msgstr "El resultado de un calculo resulta en desbordamiento del rango definido."
+
+#: 02140000.xhp#par_id3149258.15.help.text
+msgid "504"
+msgstr "504"
+
+#: 02140000.xhp#par_id3147344.16.help.text
+msgid "Parameter list error"
+msgstr "Error en la lista de parámetros"
+
+#: 02140000.xhp#par_id3147003.17.help.text
+msgid "Function parameter is not valid, for example, text instead of a number, or a domain reference instead of cell reference."
+msgstr "Un parámetro de función no es válido; por ejemplo, un texto en lugar de un número o una referencia de dominio en lugar de una referencia de celda."
+
+#: 02140000.xhp#par_id3154532.27.help.text
+msgid "508"
+msgstr "508"
+
+#: 02140000.xhp#par_id3150107.28.help.text
+msgid "Error: Pair missing"
+msgstr "Error en los paréntesis"
+
+#: 02140000.xhp#par_id3149129.29.help.text
+msgid "Missing bracket, for example, closing brackets, but no opening brackets"
+msgstr "Falta un paréntesis; por ejemplo, si se ha especificado el paréntesis derecho pero no el paréntesis izquierdo"
+
+#: 02140000.xhp#par_id3149895.30.help.text
+msgid "509"
+msgstr "509"
+
+#: 02140000.xhp#par_id3155097.31.help.text
+msgid "Missing operator"
+msgstr "Falta un operador"
+
+#: 02140000.xhp#par_id3154649.32.help.text
+msgid "Operator is missing, for example, \"=2(3+4) * \", where the operator between \"2\" and \"(\" is missing."
+msgstr "Falta un operador; por ejemplo, en \"=2(3+4) * \" falta el operador entre \"2\" y \"(\"."
+
+#: 02140000.xhp#par_id3153813.33.help.text
+msgid "510"
+msgstr "510"
+
+#: 02140000.xhp#par_id3153483.34.help.text
+msgctxt "02140000.xhp#par_id3153483.34.help.text"
+msgid "Missing variable"
+msgstr "Falta una variable"
+
+#: 02140000.xhp#par_id3154710.35.help.text
+msgid "Variable is missing, for example when two operators are together \"=1+*2\"."
+msgstr "Falta una variable; por ejemplo, cuando aparecen dos operadores juntos \"=1+*2\"."
+
+#: 02140000.xhp#par_id3154739.36.help.text
+msgid "511"
+msgstr "511"
+
+#: 02140000.xhp#par_id3145112.37.help.text
+msgctxt "02140000.xhp#par_id3145112.37.help.text"
+msgid "Missing variable"
+msgstr "Falta una variable"
+
+#: 02140000.xhp#par_id3145319.38.help.text
+msgid "Function requires more variables than are provided, for example, AND() and OR()."
+msgstr "La función necesita más variables que las especificadas; por ejemplo, Y() y O()."
+
+#: 02140000.xhp#par_id3149050.39.help.text
+msgid "512"
+msgstr "512"
+
+#: 02140000.xhp#par_id3150393.40.help.text
+msgid "Formula overflow"
+msgstr "Fórmula demasiado larga"
+
+#: 02140000.xhp#par_id3159259.41.help.text
+msgid " <emph>Compiler:</emph> the total number of internal tokens, (that is, operators, variables, brackets) in the formula exceeds 512."
+msgstr " <emph>Compilador:</emph> el número total de elementos internos, (esto es, operadores, variables, paréntesis) en la fórmula excede 512."
+
+#: 02140000.xhp#par_id3150537.42.help.text
+msgid "513"
+msgstr "513"
+
+#: 02140000.xhp#par_id3147412.43.help.text
+msgid "String overflow"
+msgstr "Cadena de caracteres demasiado larga"
+
+#: 02140000.xhp#par_id3145635.44.help.text
+msgid " <emph>Compiler:</emph> an identifier in the formula exceeds 64 KB in size. <emph>Interpreter:</emph> a result of a string operation exceeds 64 KB in size."
+msgstr " <emph>Compilador:</emph> el tamaño de uno de los identificadores de la fórmula excede los 64KB. <emph>Intérprete:</emph> el tamaño del resultado de una operación sobre cadenas de caracteres excede los 64 KB."
+
+#: 02140000.xhp#par_id3149147.45.help.text
+msgid "514"
+msgstr "514"
+
+#: 02140000.xhp#par_id3157904.46.help.text
+msgctxt "02140000.xhp#par_id3157904.46.help.text"
+msgid "Internal overflow"
+msgstr "Desbordamiento interno"
+
+#: 02140000.xhp#par_id3149352.47.help.text
+msgid "Sort operation attempted on too much numerical data (max. 100000) or a calculation stack overflow."
+msgstr "Se ha intentado efectuar una operación de ordenación con un número excesivo de datos numéricos (máximo 100000) o ha habido un desbordamiento de la pila de cálculo."
+
+#: 02140000.xhp#par_id3154841.51.help.text
+msgid "516"
+msgstr "516"
+
+#: 02140000.xhp#par_id3147423.52.help.text
+msgctxt "02140000.xhp#par_id3147423.52.help.text"
+msgid "Internal syntax error"
+msgstr "Error interno de sintaxis"
+
+#: 02140000.xhp#par_id3148437.53.help.text
+msgid "Matrix is expected on the calculation stack, but is not available."
+msgstr "Se esperaba una matriz en la pila de cálculo, pero no se ha encontrado."
+
+#: 02140000.xhp#par_id3155261.54.help.text
+msgid "517"
+msgstr "517"
+
+#: 02140000.xhp#par_id3153934.55.help.text
+msgctxt "02140000.xhp#par_id3153934.55.help.text"
+msgid "Internal syntax error"
+msgstr "Error interno de sintaxis"
+
+#: 02140000.xhp#par_id3149507.56.help.text
+msgid "Unknown code, for example, a document with a newer function is loaded in an older version that does not contain the function."
+msgstr "Código desconocido; por ejemplo, un documento con una función nueva se carga en una versión antigua que no contiene la función."
+
+#: 02140000.xhp#par_id3148585.57.help.text
+msgid "518"
+msgstr "518"
+
+#: 02140000.xhp#par_id3149189.58.help.text
+msgctxt "02140000.xhp#par_id3149189.58.help.text"
+msgid "Internal syntax error"
+msgstr "Error interno de sintaxis"
+
+#: 02140000.xhp#par_id3149545.59.help.text
+msgid "Variable is not available"
+msgstr "Variable no disponible"
+
+#: 02140000.xhp#par_id3146142.60.help.text
+msgid "519<br/>#VALUE"
+msgstr ""
+
+#: 02140000.xhp#par_id3155954.61.help.text
+msgid "No result (#VALUE is in the cell rather than Err:519!)"
+msgstr "No hay resultado (En la celda no aparece Err:519, sino #VALOR!)"
+
+#: 02140000.xhp#par_id3153108.62.help.text
+msgid "The formula yields a value that does not correspond to the definition; or a cell that is referenced in the formula contains text instead of a number."
+msgstr "La formula regresa un valor que no corresponde a la definición; o una celda que esta llamada dentro de una formula contiene texto en vez de un numero."
+
+#: 02140000.xhp#par_id3150338.63.help.text
+msgid "520"
+msgstr "520"
+
+#: 02140000.xhp#par_id3150017.64.help.text
+msgctxt "02140000.xhp#par_id3150017.64.help.text"
+msgid "Internal syntax error"
+msgstr "Error interno de sintaxis"
+
+#: 02140000.xhp#par_id3148758.65.help.text
+msgid "Compiler creates an unknown compiler code."
+msgstr "El compilador crea un código de compilador desconocido."
+
+#: 02140000.xhp#par_id3154324.66.help.text
+msgid "521"
+msgstr "521"
+
+#: 02140000.xhp#par_id3153737.67.help.text
+msgctxt "02140000.xhp#par_id3153737.67.help.text"
+msgid "Internal syntax error"
+msgstr "Error interno de sintaxis"
+
+#: 02140000.xhp#par_id3155436.68.help.text
+msgid "No result."
+msgstr "Sin resultado."
+
+#: 02140000.xhp#par_id3153045.69.help.text
+msgid "522"
+msgstr "522"
+
+#: 02140000.xhp#par_id3149008.70.help.text
+msgid "Circular reference"
+msgstr "Referencia circular"
+
+#: 02140000.xhp#par_id3157972.71.help.text
+msgid "Formula refers directly or indirectly to itself and the <emph>Iterations</emph> option is not set under <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate."
+msgstr "La fórmula se refiere directa o indirectamente a sí misma y no se ha activado la opción de <emph>iteraciones</emph> en <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientass - Opciones</defaultinline></switchinline> - %PRODUCTNAME Calc - Calcular."
+
+#: 02140000.xhp#par_id3149538.72.help.text
+msgid "523"
+msgstr "523"
+
+#: 02140000.xhp#par_id3150930.73.help.text
+msgid "The calculation procedure does not converge"
+msgstr "El comportamiento de cálculo no converge"
+
+#: 02140000.xhp#par_id3150272.74.help.text
+msgid "Function missed a targeted value, or <link href=\"text/shared/optionen/01060500.xhp\">iterative references</link> do not reach the minimum change within the maximum steps that are set."
+msgstr "Falta un valor de destino de una función o las <link href=\"text/shared/optionen/01060500.xhp\">referencias iterativas</link> no llegan al cambio mínimo dentro del número máximo de pasos establecido."
+
+#: 02140000.xhp#par_id3153544.75.help.text
+msgid "524<br/>#REF"
+msgstr ""
+
+#: 02140000.xhp#par_id3154634.76.help.text
+msgid "invalid references (instead of Err:524 cell contains #REF)"
+msgstr "Referencia no válida (en la celda no aparece Err:524, sino #REF!)"
+
+#: 02140000.xhp#par_id3147539.77.help.text
+msgid " <emph>Compiler:</emph> a column or row description name could not be resolved. <emph>Interpreter:</emph> in a formula, the column, row, or sheet that contains a referenced cell is missing."
+msgstr " <emph>Compilador:</emph> no se ha podido determinar el nombre descriptivo de una columna o fila. <emph>Intérprete:</emph> no se encuentra la columna, fila u hoja que contiene una de las celdas a la que se hace referencia en la fórmula."
+
+#: 02140000.xhp#par_id3155984.78.help.text
+msgid "525<br/>#NAME?"
+msgstr ""
+
+#: 02140000.xhp#par_id3148428.79.help.text
+msgid "invalid names (instead of Err:525 cell contains #NAME?)"
+msgstr "Nombre no válido (en la celda no aparece Err:525, sino #NOMBRE?)"
+
+#: 02140000.xhp#par_id3156259.80.help.text
+msgid "An identifier could not be evaluated, for example, no valid reference, no valid domain name, no column/row label, no macro, incorrect decimal divider, add-in not found."
+msgstr "No se ha podido evaluar un identificador; por ejemplo, no hay referencia válida, nombre de dominio válido, etiqueta de columna/fila, macro, separador de decimales incorrecto, no se ha encontrado add-in."
+
+#: 02140000.xhp#par_id3153720.81.help.text
+msgid "526"
+msgstr "526"
+
+#: 02140000.xhp#par_id3154315.82.help.text
+msgctxt "02140000.xhp#par_id3154315.82.help.text"
+msgid "Internal syntax error"
+msgstr "Error interno de sintaxis"
+
+#: 02140000.xhp#par_id3083286.83.help.text
+msgid "Obsolete, no longer used, but could come from old documents if the result is a formula from a domain."
+msgstr "Obsoleto, no utilizado actualmente, pero puede proceder de documentos antiguos si el resultado es una fórmula de un dominio."
+
+#: 02140000.xhp#par_id3152483.84.help.text
+msgid "527"
+msgstr "527"
+
+#: 02140000.xhp#par_id3152966.85.help.text
+msgctxt "02140000.xhp#par_id3152966.85.help.text"
+msgid "Internal overflow"
+msgstr "Desbordamiento interno"
+
+#: 02140000.xhp#par_id3149709.86.help.text
+msgid " <emph>Interpreter: </emph>References, such as when a cell references a cell, are too encapsulated."
+msgstr " <emph>Intérprete: </emph>Las referencias están demasiado encapsuladas, como sucede cuando una celda hace referencia a otra celda."
+
+#: 02140000.xhp#par_id5324564.help.text
+msgid "532<br/>#DIV/0!"
+msgstr ""
+
+#: 02140000.xhp#par_id7941831.help.text
+msgid "Division by zero"
+msgstr "División por cero"
+
+#: 02140000.xhp#par_id5844294.help.text
+msgid "Division operator / if the denominator is 0<br/>Some more functions return this error, for example:<br/>VARP with less than 1 argument<br/>STDEVP with less than 1 argument<br/>VAR with less than 2 arguments<br/>STDEV with less than 2 arguments<br/>STANDARDIZE with stdev=0<br/>NORMDIST with stdev=0"
+msgstr "Operador divisor / si el denominador es 0<br/>Algunas otras funciones devolveran este error, por ejemplo:<br/>VARP con menos que 1 argumento<br/>STDEVP con menos de 1 argumento<br/>VAR con menos de 2 argumentos<br/>DESVEST con menos de 2 argumentos<br/>STANDARDIZE con stdev=0<br/>NORMDIST con stdev=0"
diff --git a/source/es/helpcontent2/source/text/scalc/guide.po b/source/es/helpcontent2/source/text/scalc/guide.po
new file mode 100644
index 00000000000..2d0c230afe5
--- /dev/null
+++ b/source/es/helpcontent2/source/text/scalc/guide.po
@@ -0,0 +1,5859 @@
+#. extracted from helpcontent2/source/text/scalc/guide.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fscalc%2Fguide.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-06-25 15:21+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: year2000.xhp#tit.help.text
+msgid "19xx/20xx Years"
+msgstr "Años 19xx/20xx"
+
+#: year2000.xhp#bm_id3150439.help.text
+msgid "<bookmark_value>years; 2-digits</bookmark_value><bookmark_value>dates; 19xx/20xx</bookmark_value>"
+msgstr "<bookmark_value>años;de 2 dígitos</bookmark_value><bookmark_value>fechas;19xx/20xx</bookmark_value><bookmark_value>fechas;de 2 dígitos</bookmark_value>"
+
+#: year2000.xhp#hd_id3150439.18.help.text
+msgid "<variable id=\"year2000\"><link href=\"text/scalc/guide/year2000.xhp\" name=\"19xx/20xx Years\">19xx/20xx Years</link></variable>"
+msgstr "<variable id=\"year2000\"><link href=\"text/scalc/guide/year2000.xhp\" name=\"Años 19xx/20xx\">Años 19xx/20xx</link></variable>"
+
+#: year2000.xhp#par_id3151116.17.help.text
+msgid "The year in a date entry is often entered as two digits. Internally, the year is managed by $[officename] as four digits, so that in the calculation of the difference from 1/1/99 to 1/1/01, the result will correctly be two years."
+msgstr "En una entrada de fecha, el año suele escribirse con dos dígitos. Internamente, $[officename] gestiona los años con cuatro dígitos, por lo que el resultado del cálculo de la diferencia entre 1/1/99 y 1/1/01 será el correcto: dos años."
+
+#: year2000.xhp#par_id3154011.19.help.text
+msgid "Under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - General</emph> you can define the century that is used when you enter a year with only two digits. The default is 1930 to 2029."
+msgstr "En <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - $[officename] - General</emph> puede definir el siglo que se usa cuando escribe un año con sólo dos dígitos. El intervalo de fechas predeterminado es desde 1930 hasta 2029."
+
+#: year2000.xhp#par_id3150010.20.help.text
+msgid "This means that if you enter a date of 1/1/30 or higher, it will be treated internally as 1/1/1930 or higher. All lower two-digit years apply to the 20xx century. So, for example, 1/1/20 is converted into 1/1/2020."
+msgstr "Esto significa que, al escribir una fecha de 1/1/30 o posterior, dicha fecha se tratará internamente como 1/1/1930 o posterior. Los años de dos dígitos menores hacen referencia al siglo XXI. Por ejemplo, 1/1/20 se convierte en 1/1/2020."
+
+#: currency_format.xhp#tit.help.text
+msgid "Cells in Currency Format"
+msgstr "Celdas con formato de moneda"
+
+#: currency_format.xhp#bm_id3156329.help.text
+msgid "<bookmark_value>currency formats; spreadsheets</bookmark_value><bookmark_value>cells; currency formats</bookmark_value><bookmark_value>international currency formats</bookmark_value><bookmark_value>formats; currency formats in cells</bookmark_value><bookmark_value>currencies; default currencies</bookmark_value><bookmark_value>defaults;currency formats</bookmark_value><bookmark_value>changing;currency formats</bookmark_value>"
+msgstr "<bookmark_value>formatos de moneda;hojas de cálculo</bookmark_value><bookmark_value>celdas;formatos de moneda</bookmark_value><bookmark_value>formatos de moneda internacionales</bookmark_value><bookmark_value>formatos;formatos de moneda en celdas</bookmark_value><bookmark_value>monedas;monedas predeterminadas</bookmark_value><bookmark_value>valores predeterminados;formatos de moneda</bookmark_value><bookmark_value>cambiar;formatos de moneda</bookmark_value>"
+
+#: currency_format.xhp#hd_id3156329.46.help.text
+msgid "<variable id=\"currency_format\"><link href=\"text/scalc/guide/currency_format.xhp\" name=\"Cells in Currency Format\">Cells in Currency Format</link></variable>"
+msgstr "<variable id=\"currency_format\"><link href=\"text/scalc/guide/currency_format.xhp\" name=\"Celdas con formato de moneda\">Celdas con formato de moneda</link></variable>"
+
+#: currency_format.xhp#par_id3153968.47.help.text
+msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can give numbers any currency format. When you click the <item type=\"menuitem\">Currency</item> icon <image id=\"img_id3150791\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3150791\">Icon</alt></image> in the <item type=\"menuitem\">Formatting</item> bar to format a number, the cell is given the default currency format set under <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</item>."
+msgstr "<item type=\"productname\">%PRODUCTNAME</item> Calc permite asignar a los números cualquier formato de moneda. Al hacer clic en el ícono <item type=\"menuitem\">Moneda</item> <image id=\"img_id3150791\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3150791\">Ícono</alt></image> de la barra <item type=\"menuitem\">Formato</item> para formatear un número, se asigna a la celda el formato de moneda predeterminado, establecido en <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - Configuración de idioma - Idiomas</item>."
+
+#: currency_format.xhp#par_id3150010.48.help.text
+msgid "Exchanging of <item type=\"productname\">%PRODUCTNAME</item> Calc documents can lead to misunderstandings, if your <item type=\"productname\">%PRODUCTNAME</item> Calc document is loaded by a user who uses a different default currency format."
+msgstr "El intercambio de documentos de <item type=\"productname\">%PRODUCTNAME</item> Calc puede inducir a confusión si un usuario con un formato de moneda predeterminado distinto carga su documento de <item type=\"productname\">%PRODUCTNAME</item> Calc."
+
+#: currency_format.xhp#par_id3156442.52.help.text
+msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can define that a number that you have formatted as \"1,234.50 €\", still remains in euros in another country and does not become dollars."
+msgstr "En $[officename] Calc se puede establecer que un número formateado como \"1,234.50 €\" siga representando euros en otro país y no se convierta en dólares."
+
+#: currency_format.xhp#par_id3151075.49.help.text
+msgid "You can change the currency format in the <item type=\"menuitem\">Format Cells</item> dialog (choose <item type=\"menuitem\">Format - Cells - Numbers</item> tab) by two country settings. In the <item type=\"menuitem\">Language</item> combo box select the basic setting for decimal and thousands separators. In the <item type=\"menuitem\">Format</item> list box you can select the currency symbol and its position."
+msgstr "En el diálogo <item type=\"menuitem\">Formato de celdas</item> (ficha <item type=\"menuitem\">Formato - Celda - ficha Números) </item>) se pueden modificar dos parámetros de país del formato de moneda. En el cuadro combinado <item type=\"menuitem\">Idioma</item>, seleccione la configuración básica para separadores de decimales y de millares. En el cuadro de lista <item type=\"menuitem\">Formato</item>, puede seleccionar el símbolo de moneda y su posición."
+
+#: currency_format.xhp#par_id3150749.50.help.text
+msgid "For example, if the language is set to \"Default\" and you are using a german locale setting, the currency format will be \"1.234,00 €\". A point is used before the thousand digits and a comma before the decimal places. If you now select the subordinate currency format \"$ English (US)\" from the <item type=\"menuitem\">Format</item> list box , you will get the following format: \"$ 1.234,00\". As you can see, the separators have remained the same. Only the currency symbol has been changed and converted, but the underlying format of the notation remains the same as in the locale setting."
+msgstr "Por ejemplo, si el idioma se define en \"Predeterminado\" y utiliza la configuración regional de alemán, el formato de moneda será \"1.234,00 €\". Por lo tanto, el punto se usa antes de los dígitos de los millares y la coma, antes de las posiciones decimales. Si selecciona el formato de moneda subordinada \"$ Inglés (EE. UU.)\" en el cuadro de lista <item type=\"menuitem\">Formato</item>, recibirá el siguiente formato: \"$ 1.234,00\". Como puede ver, los separadores no han cambiado. Sólo se ha cambiado y convertido el símbolo de moneda, pero el formato subyacente de la notación se mantiene en la configuración regional local."
+
+#: currency_format.xhp#par_id3145640.51.help.text
+msgid "If, under <item type=\"menuitem\">Language</item>, you convert the cells to \"English (US)\", the English-language locale setting is also transferred and the default currency format is now \"$ 1,234.00\"."
+msgstr "Si, en <item type=\"menuitem\">Idioma</item>, convierte las celdas a \"Inglés (EE. UU.)\", también se transferirá la configuración regional de inglés y el formato de moneda predeterminado será \"$ 1,234.00\"."
+
+#: currency_format.xhp#par_id3154255.53.help.text
+msgctxt "currency_format.xhp#par_id3154255.53.help.text"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Formato - Celdas - Números</link>"
+
+#: goalseek.xhp#tit.help.text
+msgid "Applying Goal Seek"
+msgstr "Aplicar la búsqueda del valor destino"
+
+#: goalseek.xhp#bm_id3145068.help.text
+msgid "<bookmark_value>goal seeking;example</bookmark_value><bookmark_value>equations in goal seek</bookmark_value><bookmark_value>calculating;variables in equations</bookmark_value><bookmark_value>variables;calculating equations</bookmark_value><bookmark_value>examples;goal seek</bookmark_value>"
+msgstr "<bookmark_value>busqueda de valor objetivo;ejemplo</bookmark_value><bookmark_value>ecuaciones de búsqueda de valor objetivo</bookmark_value><bookmark_value>calcular;variables en ecuaciones</bookmark_value><bookmark_value>variables;calcular ecuaciones</bookmark_value><bookmark_value>ejemplos;busqueda de valor objetivo</bookmark_value>"
+
+#: goalseek.xhp#hd_id3145068.22.help.text
+msgid "<variable id=\"goalseek\"><link href=\"text/scalc/guide/goalseek.xhp\" name=\"Applying Goal Seek\">Applying Goal Seek</link></variable>"
+msgstr "<variable id=\"goalseek\"><link href=\"text/scalc/guide/goalseek.xhp\" name=\"Aplicar la búsqueda del valor destino\">Aplicar la búsqueda del valor destino</link></variable>"
+
+#: goalseek.xhp#par_id3145171.2.help.text
+msgid "With the help of Goal Seek you can calculate a value that, as part of a formula, leads to the result you specify for the formula. You thus define the formula with several fixed values and one variable value and the result of the formula."
+msgstr "Con el valor destino se determina un valor que, como parte de una fórmula, le conduce a un resultado que usted haya especificado. Esto es, usted define la fórmula con varios valores fijos, un valor variable y el resultado de la fórmula."
+
+#: goalseek.xhp#hd_id3153966.14.help.text
+msgid "Goal Seek Example"
+msgstr "Ejemplo de valor destino"
+
+#: goalseek.xhp#par_id3150871.4.help.text
+msgid "To calculate annual interest (I), create a table with the values for the capital (C), number of years (n), and interest rate (i). The formula is:"
+msgstr "Para calcular los intereses anuales (I), cree primero una tabla con los valores relativos al capital (C), los años (n) y el tipo de interés (i). La fórmula es:"
+
+#: goalseek.xhp#par_id3152596.5.help.text
+msgid "I = C * n* i"
+msgstr "I = C * n* i"
+
+#: goalseek.xhp#par_id3155335.15.help.text
+msgid "Let us assume that the interest rate <item type=\"literal\">i</item> of 7.5% and the number of years <item type=\"literal\">n</item> (1) will remain constant. However, you want to know how much the investment capital <item type=\"literal\">C</item> would have to be modified in order to attain a particular return <item type=\"literal\">I</item>. For this example, calculate how much capital <item type=\"literal\">C</item> would be required if you want an annual return of $15,000."
+msgstr "Supongamos que el tipo de interés <item type=\"literal\">i</item> del 7,5% y la cantidad de años <item type=\"literal\">n</item> (1) son constantes. No obstante, se plantea la cuestión de en qué medida debe cambiarse el empleo de capital <item type=\"literal\">C</item> para lograr un determinado rédito<item type=\"literal\">I</item>. Para este ejemplo, calcule el capital <item type=\"literal\">C</item> que necesita si desea un rendimiento anual de 15.000 $."
+
+#: goalseek.xhp#par_id3155960.6.help.text
+msgid "Enter each of the values for Capital <item type=\"literal\">C</item> (an arbitrary value like <item type=\"literal\">$100,000</item>), number of years <item type=\"literal\">n </item>(<item type=\"literal\">1</item>), and interest rate <item type=\"literal\">i</item> (<item type=\"literal\">7.5%</item>) in one cell each. Enter the formula to calculate the interest <item type=\"literal\">I</item> in another cell. Instead of <item type=\"literal\">C</item>, <item type=\"literal\">n</item>, and <item type=\"literal\">i</item> use the <link href=\"text/scalc/guide/relativ_absolut_ref.xhp\">reference to the cell</link> with the corresponding value."
+msgstr "Introduzca los valores para el capital <item type=\"literal\">C</item> (un valor arbitrario como <item type=\"literal\">100.000 $</item>), la cantidad de años <item type=\"literal\">n </item>(<item type=\"literal\">1</item>) y un tipo de interés <item type=\"literal\">i</item> (<item type=\"literal\">7,5%</item>) en cada celda. Introduzca la fórmula para calcular el interés <item type=\"literal\">I</item> en otra celda. En lugar de <item type=\"literal\">C</item>, <item type=\"literal\">n</item> y <item type=\"literal\">i</item>, utilice la <link href=\"text/scalc/guide/relativ_absolut_ref.xhp\">referencia a la celda</link> con el valor correspondiente."
+
+#: goalseek.xhp#par_id3147001.16.help.text
+msgid "Place the cursor in the cell containing the interest <item type=\"literal\">I</item>, and choose <emph>Tools - Goal Seek</emph>. The <emph>Goal Seek</emph> dialog appears."
+msgstr "Coloque el cursor en la celda que contenga el interés <item type=\"literal\">I</item> y seleccione <emph>Herramientas - Búsqueda del valor destino</emph>. Aparece el diálogo <emph>Buscar valor destino</emph>."
+
+#: goalseek.xhp#par_id3150088.17.help.text
+msgid "The correct cell is already entered in the field <emph>Formula Cell</emph>."
+msgstr "En el campo <emph>Celda de fórmula</emph> ya se indica la celda correcta."
+
+#: goalseek.xhp#par_id3166426.18.help.text
+msgid "Place the cursor in the field <emph>Variable Cell</emph>. In the sheet, click in the cell that contains the value to be changed, in this example it is the cell with the capital value <item type=\"literal\">C</item>."
+msgstr "Coloque el cursor en el campo <emph>Celda variable</emph>. En la hoja, haga clic en la celda que contiene el valor que desee cambiar; en este ejemplo, es la celda con el valor efectivo <item type=\"literal\">C</item>."
+
+#: goalseek.xhp#par_id3150369.19.help.text
+msgid "Enter the expected result of the formula in the <emph>Target Value</emph> text box. In this example, the value is 15,000. Click <emph>OK</emph>."
+msgstr "Escriba el resultado esperado de la fórmula en el cuadro de texto <emph>Valor de destino</emph>. En este ejemplo, el valor es 15.000. Pulse <emph>Aceptar</emph>."
+
+#: goalseek.xhp#par_id3146978.20.help.text
+msgid "A dialog appears informing you that the Goal Seek was successful. Click <emph>Yes</emph> to enter the result in the cell with the variable value."
+msgstr "Aparece un diálogo para indicar que la búsqueda del valor destino ha finalizado con éxito. Haga clic en <emph>Sí</emph> para introducir el resultado en la celda con el valor variable."
+
+#: goalseek.xhp#par_id3149409.23.help.text
+msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
+msgstr "<link href=\"text/scalc/01/06040000.xhp\" name=\"Búsqueda del valor de destino\">Búsqueda del valor de destino</link>"
+
+#: table_rotate.xhp#tit.help.text
+msgid "Rotating Tables (Transposing)"
+msgstr "Girar tablas (transponer)"
+
+#: table_rotate.xhp#bm_id3154346.help.text
+msgid "<bookmark_value>tables; transposing</bookmark_value><bookmark_value>transposing tables</bookmark_value><bookmark_value>inverting tables</bookmark_value><bookmark_value>swapping tables</bookmark_value><bookmark_value>columns; swap with rows</bookmark_value><bookmark_value>rows; swapping with columns</bookmark_value><bookmark_value>tables; rotating</bookmark_value><bookmark_value>rotating; tables</bookmark_value>"
+msgstr "<bookmark_value>tablas;transponer</bookmark_value><bookmark_value>transponer tablas</bookmark_value><bookmark_value>tablas;invertir</bookmark_value><bookmark_value>invertir tablas</bookmark_value><bookmark_value>tablas;intercambiar</bookmark_value><bookmark_value>intercambiar tablas</bookmark_value><bookmark_value>columnas;intercambiar con filas</bookmark_value><bookmark_value>filas;intercambiar con columnas</bookmark_value><bookmark_value>tablas;girar</bookmark_value><bookmark_value>girar;tablas</bookmark_value>"
+
+#: table_rotate.xhp#hd_id3154346.1.help.text
+msgid "<variable id=\"table_rotate\"><link href=\"text/scalc/guide/table_rotate.xhp\" name=\"Rotating Tables (Transposing)\">Rotating Tables (Transposing)</link></variable>"
+msgstr "<variable id=\"table_rotate\"><link href=\"text/scalc/guide/table_rotate.xhp\" name=\"Girar tablas (transponer)\">Girar tablas (transponer)</link></variable>"
+
+#: table_rotate.xhp#par_id3154013.2.help.text
+msgid "In $[officename] Calc, there is a way to \"rotate\" a spreadsheet so that rows become columns and columns become rows."
+msgstr "En $[officename] Calc es posible \"girar\" una hoja de cálculo de forma que las funciones pasen a ser columnas y las columnas, filas."
+
+#: table_rotate.xhp#par_id3153142.3.help.text
+msgid "Select the cell range that you want to transpose."
+msgstr "Seleccione primero el área de la tabla que desee transponer."
+
+#: table_rotate.xhp#par_id3153191.4.help.text
+msgid "Choose <emph>Edit - Cut</emph>."
+msgstr "Seleccione la opción de menú <emph>Editar - Cortar</emph>."
+
+#: table_rotate.xhp#par_id3148575.6.help.text
+msgid "Click the cell that is to be the top left cell in the result."
+msgstr "Pulse sobre la celda que se convertirá en la celda superior izquierda en el resultado."
+
+#: table_rotate.xhp#par_id3156286.7.help.text
+msgid "Choose <emph>Edit - Paste Special</emph>."
+msgstr "Seleccione la opción del menú <emph>Editar - Pegado especial</emph>."
+
+#: table_rotate.xhp#par_id3144764.8.help.text
+msgid "In the dialog, mark <emph>Paste all</emph> and <emph>Transpose</emph>."
+msgstr "En el diálogo seleccione las opciones <emph>Pegar todo</emph> y <emph>Transponer</emph>."
+
+#: table_rotate.xhp#par_id3155600.9.help.text
+msgid "If you now click OK the columns and rows are transposed."
+msgstr "Si ahora pulsa en el botón <emph>Aceptar</emph> las columnas y filas se intercambiarán."
+
+#: table_rotate.xhp#par_id3146969.10.help.text
+msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
+msgstr "<link href=\"text/shared/01/02070000.xhp\" name=\"Pegado especial\">Pegado especial</link>"
+
+#: relativ_absolut_ref.xhp#tit.help.text
+msgid "Addresses and References, Absolute and Relative"
+msgstr "Direcciones y referencias, absolutas y relativas"
+
+#: relativ_absolut_ref.xhp#bm_id3156423.help.text
+msgid "<bookmark_value>addressing; relative and absolute</bookmark_value><bookmark_value>references; absolute/relative</bookmark_value><bookmark_value>absolute addresses in spreadsheets</bookmark_value><bookmark_value>relative addresses</bookmark_value><bookmark_value>absolute references in spreadsheets</bookmark_value><bookmark_value>relative references</bookmark_value><bookmark_value>references; to cells</bookmark_value><bookmark_value>cells; references</bookmark_value>"
+msgstr "<bookmark_value>direcciones en hojas de cálculo</bookmark_value><bookmark_value>referencias;absolutas/relativas</bookmark_value><bookmark_value>direcciones absolutas en hojas de cálculo</bookmark_value><bookmark_value>direcciones relativas</bookmark_value><bookmark_value>referencias absolutas en hojas de cálculo</bookmark_value><bookmark_value>referencias relativas</bookmark_value><bookmark_value>referencias;a celdas</bookmark_value><bookmark_value>referencias;marcar por color</bookmark_value><bookmark_value>celdas;referencias</bookmark_value>"
+
+#: relativ_absolut_ref.xhp#hd_id3156423.53.help.text
+msgid "<variable id=\"relativ_absolut_ref\"><link href=\"text/scalc/guide/relativ_absolut_ref.xhp\" name=\"Addresses and References, Absolute and Relative\">Addresses and References, Absolute and Relative</link></variable>"
+msgstr "<variable id=\"relativ_absolut_ref\"><link href=\"text/scalc/guide/relativ_absolut_ref.xhp\" name=\"Direcciones y referencias, absolutas y relativas\">Direcciones y referencias, absolutas y relativas</link></variable>"
+
+#: relativ_absolut_ref.xhp#hd_id3163712.3.help.text
+msgid "Relative Addressing"
+msgstr "Referencia relativa"
+
+#: relativ_absolut_ref.xhp#par_id3146119.4.help.text
+msgid "The cell in column A, row 1 is addressed as A1. You can address a range of adjacent cells by first entering the coordinates of the upper left cell of the area, then a colon followed by the coordinates of the lower right cell. For example, the square formed by the first four cells in the upper left corner is addressed as A1:B2."
+msgstr "A1 hace referencia a la celda en la columna A y fila 1. La referencia a un área contigua se consigue indicando la esquina superior izquierda del área, luego dos puntos y finalmente la celda inferior derecha del área. El área cuadrada de las primeras cuatro celdas en la esquina superior izquierda se llamaría de este modo A1:B2."
+
+#: relativ_absolut_ref.xhp#par_id3154730.5.help.text
+msgid "By addressing an area in this way, you are making a relative reference to A1:B2. Relative here means that the reference to this area will be adjusted automatically when you copy the formulas."
+msgstr "En esta forma de referencia a un área, la referencia a A1:B2 será una referencia relativa. Relativa significa en este contexto que la referencia se ajusta al área al copiar las fórmulas."
+
+#: relativ_absolut_ref.xhp#hd_id3149377.6.help.text
+msgid "Absolute Addressing"
+msgstr "Referencia absoluta"
+
+#: relativ_absolut_ref.xhp#par_id3154943.7.help.text
+msgid "Absolute references are the opposite of relative addressing. A dollar sign is placed before each letter and number in an absolute reference, for example, $A$1:$B$2."
+msgstr "En oposición a las referencias relativas existen las referencias absolutas que se escriben de la siguiente forma: $A$1:$B$2. Delante de cada dato usado como absoluto deberá figurar el signo del dólar."
+
+#: relativ_absolut_ref.xhp#par_id3147338.36.help.text
+msgid "$[officename] can convert the current reference, in which the cursor is positioned in the input line, from relative to absolute and vice versa by pressing Shift +F4. If you start with a relative address such as A1, the first time you press this key combination, both row and column are set to absolute references ($A$1). The second time, only the row (A$1), and the third time, only the column ($A1). If you press the key combination once more, both column and row references are switched back to relative (A1)"
+msgstr "$[officename] puede transcribir, en la línea de entrada actual, todas las referencias relativas a absolutas y viceversa si pulsa la combinación de teclas (Mayús) (F4). Si comienza con una dirección relativa como A1, ocurre lo siguiente: Con la primera pulsación las filas y columnas se convertirán en absolutas ($A$1); con la siguiente lo hará sólo la fila (A$1), luego sólo la columna ($A1), y después se convertirán ambas de nuevo en relativas (A1)."
+
+#: relativ_absolut_ref.xhp#par_id3153963.52.help.text
+msgid "$[officename] Calc shows the references to a formula. If, for example you click the formula =SUM(A1:C5;D15:D24) in a cell, the two referenced areas in the sheet will be highlighted in color. For example, the formula component \"A1:C5\" may be in blue and the cell range in question bordered in the same shade of blue. The next formula component \"D15:D24\" can be marked in red in the same way."
+msgstr "$[officename] Calc le muestra de manera esquemática las referencias a una fórmula. Si pulsa p.ej. en una celda sobre la fórmula =SUMA(A1:C5;D15:D24), ambas áreas referenciadas se destacarán en color. La parte de la fórmula \"A1:C5\" puede p.ej. aparecer en azul y el marco del área de celda referenciada en un tono azul. La siguiente parte de la fórmula \"D15:D24\" puede aparecer seleccionada de forma semejante en rojo."
+
+#: relativ_absolut_ref.xhp#hd_id3154704.29.help.text
+msgid "When to Use Relative and Absolute References"
+msgstr "¿Cuándo usar referencias relativas y cuándo absolutas?"
+
+#: relativ_absolut_ref.xhp#par_id3147346.8.help.text
+msgid "What distinguishes a relative reference? Assume you want to calculate in cell E1 the sum of the cells in range A1:B2. The formula to enter into E1 would be: =SUM(A1:B2). If you later decide to insert a new column in front of column A, the elements you want to add would then be in B1:C2 and the formula would be in F1, not in E1. After inserting the new column, you would therefore have to check and correct all formulas in the sheet, and possibly in other sheets."
+msgstr "¿Cómo se distingue una referencia relativa? Supongamos que desea calcular en la celda E1 la suma de las celdas en el área A1:B2. La fórmula que debe introducir en E1 debe ser: =SUMA(A1:B2). Si más tarde decide insertar una columna nueva delante de la columna A, los elementos que quiere sumar aparecerán entonces en B1:C2 y la fórmula en F1, en lugar de en E1. Por consiguiente, tras insertar la nueva columna, debería comprobar y corregir todas las fórmulas de la hoja, y posiblemente en otras hojas."
+
+#: relativ_absolut_ref.xhp#par_id3155335.9.help.text
+msgid "Fortunately, $[officename] does this work for you. After having inserted a new column A, the formula =SUM(A1:B2) will be automatically updated to =SUM(B1:C2). Row numbers will also be automatically adjusted when a new row 1 is inserted. Absolute and relative references are always adjusted in $[officename] Calc whenever the referenced area is moved. But be careful if you are copying a formula since in that case only the relative references will be adjusted, not the absolute references."
+msgstr "Afortunadamente, $[officename] se encarga de ello. Después de insertar una nueva columna A, la fórmula =SUMA(A1:B2) se actualiza a =SUMA(B1:C2) de forma automática. Los números de fila también se ajustan automáticamente al insertar una nueva fila 1. Las referencias absolutas y relativas se ajustan en $[officename] Calc siempre que se desplaza el área a la que se hace referencia. Tenga cuidado, no obstante, al copiar una fórmula, ya que en ese caso únicamente se ajustan las referencias relativas, no las absolutas."
+
+#: relativ_absolut_ref.xhp#par_id3145791.39.help.text
+msgid "Absolute references are used when a calculation refers to one specific cell in your sheet. If a formula that refers to exactly this cell is copied relatively to a cell below the original cell, the reference will also be moved down if you did not define the cell coordinates as absolute."
+msgstr "Las referencias absolutas se utilizan cuando un cálculo hace referencia a una celda específica de la hoja. Si una fórmula que hace referencia precisamente a esa celda se copia a una celda situada más abajo que la original, la referencia se desplazará hacia abajo si no se han definido las coordenadas como absolutas."
+
+#: relativ_absolut_ref.xhp#par_id3147005.10.help.text
+msgid "Aside from when new rows and columns are inserted, references can also change when an existing formula referring to particular cells is copied to another area of the sheet. Assume you entered the formula =SUM(A1:A9) in row 10. If you want to calculate the sum for the adjacent column to the right, simply copy this formula to the cell to the right. The copy of the formula in column B will be automatically adjusted to =SUM(B1:B9)."
+msgstr "Aparte de con la inserción de nuevas filas y columnas, las referencias también pueden cambiar si una fórmula que hace referencia a celdas específicas se copia en otra área de la hoja. Suponiendo que ha introducido la fórmula =SUMA(A1:A9) en la fila 10, si desea calcular la suma de la columna adyacente a la derecha, sólo tiene que copiar esta fórmula en la celda de la derecha. La copia de la fórmula en la columna B se ajustará automáticamente para obtener =SUMA(B1:B9)."
+
+#: formula_value.xhp#tit.help.text
+msgid "Displaying Formulas or Values"
+msgstr "Mostrar fórmulas o valores"
+
+#: formula_value.xhp#bm_id3153195.help.text
+msgid "<bookmark_value>formulas; displaying in cells</bookmark_value><bookmark_value>values; displaying in tables</bookmark_value><bookmark_value>tables; displaying formulas/values</bookmark_value><bookmark_value>results display vs. formulas display</bookmark_value><bookmark_value>displaying; formulas instead of results</bookmark_value>"
+msgstr "<bookmark_value>fórmulas; mostrar en celdas</bookmark_value><bookmark_value>valores; mostrar en tablas</bookmark_value><bookmark_value>tablas; mostrar fórmulas/valores</bookmark_value><bookmark_value>mostrar resultados o mostrar fórmulas</bookmark_value><bookmark_value>mostrar; fórmulas en lugar de resultados</bookmark_value>"
+
+#: formula_value.xhp#hd_id3153195.1.help.text
+msgid "<variable id=\"formula_value\"><link href=\"text/scalc/guide/formula_value.xhp\" name=\"Displaying Formulas or Values\">Displaying Formulas or Values</link></variable>"
+msgstr "<variable id=\"formula_value\"><link href=\"text/scalc/guide/formula_value.xhp\" name=\"Mostrar fórmulas o valores\">Mostrar fórmulas o valores</link></variable>"
+
+#: formula_value.xhp#par_id3150010.2.help.text
+msgid "If you want to display the formulas in the cells, for example in the form =SUM(A1:B5), proceed as follows:"
+msgstr "Si desea que se muestren las fórmulas en las celdas, como, por ejemplo, =SUMA(A1:B5), siga estos pasos:"
+
+#: formula_value.xhp#par_id3151116.3.help.text
+msgctxt "formula_value.xhp#par_id3151116.3.help.text"
+msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph>."
+msgstr "Elija <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - %PRODUCTNAME Calc - Ver</emph>."
+
+#: formula_value.xhp#par_id3146120.4.help.text
+msgid "In the <emph>Display</emph> area mark the <emph>Formulas</emph> box. Click OK."
+msgstr "En el área <emph>Mostrar</emph> marque el campo <emph>Fórmulas</emph>. Pulse en Aceptar."
+
+#: formula_value.xhp#par_id3147396.5.help.text
+msgid "If you want to view the calculation results instead of the formula, do not mark the Formulas box."
+msgstr "Si desea ver los resultados de los cálculos en lugar de las fórmulas, no seleccione la opción Fórmulas."
+
+#: formula_value.xhp#par_id3153157.6.help.text
+#, fuzzy
+msgctxt "formula_value.xhp#par_id3153157.6.help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Hojas de cálculo - Ver\">%PRODUCTNAME Calc - Ver</link>"
+
+#: database_define.xhp#tit.help.text
+msgid "Defining Database Ranges"
+msgstr "Definir áreas de bases de datos"
+
+#: database_define.xhp#bm_id3154758.help.text
+msgid "<bookmark_value>tables; database ranges</bookmark_value> <bookmark_value>database ranges; defining</bookmark_value> <bookmark_value>ranges; defining database ranges</bookmark_value> <bookmark_value>defining;database ranges</bookmark_value>"
+msgstr "<bookmark_value>tablas; áreas de bases de datos</bookmark_value> <bookmark_value>áreas de bases de datos; definir</bookmark_value> <bookmark_value>áreas; definir áreas de base de datos</bookmark_value> <bookmark_value>definir;áreas de base de datos</bookmark_value>"
+
+#: database_define.xhp#hd_id3154758.31.help.text
+msgid "<variable id=\"database_define\"><link href=\"text/scalc/guide/database_define.xhp\" name=\"Defining Database Ranges\">Defining a Database Range</link></variable>"
+msgstr "<variable id=\"database_define\"><link href=\"text/scalc/guide/database_define.xhp\" name=\"Definir áreas de bases de datos\">Definir un área de base de datos</link></variable>"
+
+#: database_define.xhp#par_id3153768.81.help.text
+msgid "You can define a range of cells in a spreadsheet to use as a database. Each row in this database range corresponds to a database record and each cell in a row corresponds to a database field. You can sort, group, search, and perform calculations on the range as you would in a database."
+msgstr "Puede definir un área de celdas en una hoja de datos para utilizarla como base de datos. Cada fila de esta área de base de datos corresponde a un registro de base de datos y cada celda de una fila corresponde a un campo de base de datos. Puede organizar, agrupar, buscar y realizar cálculos en el área, del mismo modo que en una base de datos."
+
+#: database_define.xhp#par_id3145801.82.help.text
+msgid "You can only edit and access a database range in the spreadsheet that contains the range. You cannot access the database range in the %PRODUCTNAME Data Sources view. "
+msgstr "Sólo puede editar y acceder al área de base de datos de la hoja que contenga el área. No es posible acceder al área de base de datos de la Vista de origen de datos de %PRODUCTNAME. "
+
+#: database_define.xhp#par_idN10648.help.text
+msgid "To define a database range"
+msgstr "Para definir un área de base de datos"
+
+#: database_define.xhp#par_id3155064.41.help.text
+msgid "Select the range of cells that you want to define as a database range."
+msgstr "Seleccione el área de celdas que desee definir como área de base de datos."
+
+#: database_define.xhp#par_idN10654.help.text
+msgid "Choose <item type=\"menuitem\">Data - Define Range</item>."
+msgstr "Seleccione <item type=\"menuitem\">Datos - Definir área</item>."
+
+#: database_define.xhp#par_id3153715.72.help.text
+msgid "In the <emph>Name</emph> box, enter a name for the database range."
+msgstr "En el cuadro <emph>Nombre</emph>, introduzca un nombre para el área de base de datos."
+
+#: database_define.xhp#par_idN1066A.help.text
+msgid "Click <emph>More</emph>."
+msgstr "Haga clic en <emph>Opciones</emph>."
+
+#: database_define.xhp#par_id3154253.42.help.text
+msgid "Specify the options for the database range."
+msgstr "Especifique las opciones del área de base de datos."
+
+#: database_define.xhp#par_idN10675.help.text
+msgctxt "database_define.xhp#par_idN10675.help.text"
+msgid "Click <emph>OK</emph>."
+msgstr "Haga clic en <emph>Aceptar</emph>."
+
+#: background.xhp#tit.help.text
+msgid "Defining Background Colors or Background Graphics"
+msgstr "Definiendo los Colores o Gráficos de Fondo."
+
+#: background.xhp#bm_id3149346.help.text
+msgid "<bookmark_value>spreadsheets; backgrounds</bookmark_value> <bookmark_value>backgrounds;cell ranges</bookmark_value> <bookmark_value>tables; backgrounds</bookmark_value> <bookmark_value>cells; backgrounds</bookmark_value> <bookmark_value>rows, see also cells</bookmark_value> <bookmark_value>columns, see also cells</bookmark_value>"
+msgstr "<bookmark_value>hojas de cálculo; fondos</bookmark_value> <bookmark_value>fondos;áreas de celdas</bookmark_value> <bookmark_value>tablas; fondos</bookmark_value> <bookmark_value>celdas; fondos</bookmark_value> <bookmark_value>filas, ver también celdas</bookmark_value> <bookmark_value>columnas, ver también celdas</bookmark_value>"
+
+#: background.xhp#hd_id3149346.1.help.text
+msgid "<variable id=\"background\"><link href=\"text/scalc/guide/background.xhp\" name=\"Defining Background Colors or Background Graphics\">Defining Background Colors or Background Graphics</link></variable>"
+msgstr "<variable id=\"background\"><link href=\"text/scalc/guide/background.xhp\" name=\"Defining Background Colors or Background Graphics\">Definir colores de fondo o gráficos de fondo</link></variable>"
+
+#: background.xhp#par_id9520249.help.text
+msgid "You can define a background color or use a graphic as a background for cell ranges in $[officename] Calc."
+msgstr "Puede utilizar un color o un gráfico como fondo para un rango de celdas $[officename] Calc."
+
+#: background.xhp#hd_id3144760.16.help.text
+msgid "Applying a Background Color to a $[officename] Calc Spreadsheet"
+msgstr "Aplicar color de fondo para $[officename] una hoja de cálculo Calc "
+
+#: background.xhp#par_id3155429.17.help.text
+msgid "Select the cells."
+msgstr "Seleccione las celdas."
+
+#: background.xhp#par_id3149260.18.help.text
+msgid "Choose <emph>Format - Cells</emph> (or <emph>Format Cells</emph> from the context menu)."
+msgstr "Elegir <emph>Formato - Celdas</emph> (o <emph>Formato de Celdas</emph> desde el menú te texto)."
+
+#: background.xhp#par_id3152938.19.help.text
+msgid "On the <emph>Background</emph> tab page, select the background color."
+msgstr "En la pestaña <emph>Fondo</emph>, puede seleccionar el color de fondo."
+
+#: background.xhp#hd_id3146974.20.help.text
+msgid "Graphics in the Background of Cells"
+msgstr "Gráficos en el fondo de las celdas"
+
+#: background.xhp#par_id3155414.21.help.text
+msgid "Choose <emph>Insert - Picture - From File</emph>."
+msgstr "Elija <emph>Insertar - Imagen - A partir de Archivo</emph>."
+
+#: background.xhp#par_id3149664.22.help.text
+msgid "Select the graphic and click <emph>Open</emph>."
+msgstr "Seleccione la gráfica y haga clic en <emph>Abrir</emph>"
+
+#: background.xhp#par_id3153575.23.help.text
+msgid "The graphic is inserted anchored to the current cell. You can move and scale the graphic as you want. In your context menu you can use the <emph>Arrange - To Background</emph> command to place this in the background. To select a graphic that has been placed in the background, use the <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link></caseinline><defaultinline>Navigator</defaultinline></switchinline>."
+msgstr "El gráfico es insertado y delimitado a la celda actual. Puede mover y cambiar el tamaño del gráfico como lo desee. Usted puede usar el comando <emph>Posición – Enviar al Fondo</emph> en el menú contextual, para colocarlo en el fondo. Use el <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navegador</link> </caseinline><defaultinline>Navegador</defaultinline></switchinline> para seleccionar un gráfico que esta posicionado en el fondo."
+
+#: background.xhp#par_id51576.help.text
+msgid "<link href=\"text/shared/guide/background.xhp\">Watermarks</link>"
+msgstr "<link href=\"text/shared/guide/background.xhp\">Marcas de Agua</link>"
+
+#: background.xhp#par_id3156180.30.help.text
+msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Background tab page\"><emph>Background</emph> tab page</link>"
+msgstr "<link href=\"text/shared/01/05030600.xhp\" name=\"Background tab page\">Ficha<emph>Fondo</emph></link>"
+
+#: background.xhp#par_id7601245.help.text
+msgid "<link href=\"text/scalc/guide/format_table.xhp\">Formatting Spreadsheets</link>"
+msgstr "<link href=\"text/scalc/guide/format_table.xhp\">Formateando hojas de cálculo</link>"
+
+#: text_numbers.xhp#tit.help.text
+msgid "Formatting Numbers as Text"
+msgstr "Dar formato a números como texto"
+
+#: text_numbers.xhp#bm_id3145068.help.text
+msgid "<bookmark_value>numbers;entering as text</bookmark_value> <bookmark_value>text formats; for numbers</bookmark_value> <bookmark_value>formats; numbers as text</bookmark_value> <bookmark_value>cell formats; text/numbers</bookmark_value> <bookmark_value>formatting;numbers as text</bookmark_value>"
+msgstr "<bookmark_value>números; escribir como texto</bookmark_value> <bookmark_value>formatos de texto; para números</bookmark_value> <bookmark_value>formatos; números como texto</bookmark_value> <bookmark_value>formatos de celda; texto o números</bookmark_value> <bookmark_value>formatear;números como texto</bookmark_value>"
+
+#: text_numbers.xhp#hd_id3145068.46.help.text
+msgid "<variable id=\"text_numbers\"><link href=\"text/scalc/guide/text_numbers.xhp\" name=\"Formatting Numbers as Text\">Formatting Numbers as Text</link></variable>"
+msgstr "<variable id=\"text_numbers\"><link href=\"text/scalc/guide/text_numbers.xhp\" name=\"Formatear números como texto\">Formatear números como texto</link></variable>"
+
+#: text_numbers.xhp#par_id3156280.43.help.text
+msgid "You can format numbers as text in $[officename] Calc. Open the context menu of a cell or range of cells and choose <emph>Format Cells - Numbers</emph>, then select \"Text\" from the <emph>Category</emph> list. Any numbers subsequently entered into the formatted range are interpreted as text. The display of these \"numbers\" is left-justified, just as with other text."
+msgstr "En $[officename] Calc se pueden formatear los números como si fuesen texto. Abra el menú contextual de la celda o área de celdas y elija <emph>Formatear celdas - Números</emph> y, a continuación, seleccione \"Texto\" en la lista <emph>Categoría</emph>. Todos los números que se escriban a partir de ahora en el área formateada se interpretarán como texto. Estos \"números\" se presentan alineados a la izquierda, como cualquier texto."
+
+#: text_numbers.xhp#par_id3149377.44.help.text
+msgid "If you have already entered normal numbers in cells and have afterwards changed the format of the cells to \"Text\", the numbers will remain normal numbers. They will not be converted. Only numbers entered afterwards, or numbers which are then edited, will become text numbers."
+msgstr "Si ya ha introducido números en celdas y luego ha cambiado el formato de éstas a \"Texto\", aquéllos seguirán siendo números normales. Es decir, no se convertirán en texto. Sólo los números introducidos después de asignar el formato, o aquéllos que se editen después, se convertirán en formato texto."
+
+#: text_numbers.xhp#par_id3144765.45.help.text
+msgid "If you decide to enter a number directly as text, enter an apostrophe (') first. For example, for years in column headings, you can enter '1999, '2000 and '2001. The apostrophe is not visible in the cell, it only indicates that the entry is to be recognized as a text. This is useful if, for example, you enter a telephone number or postal code that begins with a zero (0), because a zero (0) at the start of a sequence of digits is removed in normal number formats."
+msgstr "Si decide introducir un número directamente como texto, escriba en primer lugar un apóstrofe ('). Por ejemplo, en el caso de años que actúan como encabezados de columna, puede escribir '1999, '2000 y '2001. El apóstrofe no es visible en la celda; únicamente indica que la entrada debe interpretarse como texto. Esta característica resulta práctica, por ejemplo, para escribir un número de teléfono o un código postal que empiece por cero (0) ya que, en los formatos numéricos normales, los ceros que anteceden a una secuencia de dígitos se eliminan."
+
+#: text_numbers.xhp#par_id3156284.47.help.text
+msgctxt "text_numbers.xhp#par_id3156284.47.help.text"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Formato - Celdas - Números</link>"
+
+#: note_insert.xhp#tit.help.text
+msgid "Inserting and Editing Comments"
+msgstr "Insertar y editar comentarios"
+
+#: note_insert.xhp#bm_id3153968.help.text
+msgid "<bookmark_value>comments; on cells</bookmark_value> <bookmark_value>cells;comments</bookmark_value> <bookmark_value>remarks on cells</bookmark_value> <bookmark_value>formatting;comments on cells</bookmark_value> <bookmark_value>viewing;comments on cells</bookmark_value> <bookmark_value>displaying; comments</bookmark_value>"
+msgstr "<bookmark_value>comentarios; en celdas</bookmark_value> <bookmark_value>celdas;comentarios</bookmark_value> <bookmark_value>observaciones en celdas</bookmark_value> <bookmark_value>formatear;comentarios en celdas</bookmark_value> <bookmark_value>ver;comentarios en celdas</bookmark_value> <bookmark_value>mostrar; comentarios</bookmark_value>"
+
+#: note_insert.xhp#hd_id3153968.31.help.text
+msgid "<variable id=\"note_insert\"><link href=\"text/scalc/guide/note_insert.xhp\" name=\"Inserting and Editing Comments\">Inserting and Editing Comments</link></variable>"
+msgstr "<variable id=\"note_insert\"><link href=\"text/scalc/guide/note_insert.xhp\" name=\"Inserting and Editing Comments\">Insertar y editar comentarios</link></variable>"
+
+#: note_insert.xhp#par_id3150440.32.help.text
+msgid "You can assign a comment to each cell by choosing <link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Comment\"><emph>Insert - Comment</emph></link>. The comment is indicated by a small red square, the comment indicator, in the cell."
+msgstr "Puede asignar un comentario a cada celda; para ello, seleccione <link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Comment\"><emph>Insertar - Comentario</emph></link>. El comentario se indica mediante un cuadrado rojo pequeño; el indicador del comentario, en la celda."
+
+#: note_insert.xhp#par_id3145750.34.help.text
+msgid "The comment is visible whenever the mouse pointer is over the cell, provided you have activated <emph>Help - Tips</emph> or - <emph>Extended Tips</emph>."
+msgstr "El comentario es visible cuando el puntero del ratón está sobre la celda, siempre que haya activado <emph>Ayuda - Sugerencias</emph> o - <emph>Ayuda activa</emph>."
+
+#: note_insert.xhp#par_id3148575.33.help.text
+msgid "When you select the cell, you can choose <emph>Show Comment</emph> from the context menu of the cell. Doing so keeps the comment visible until you deactivate the <emph>Show Comment</emph> command from the same context menu."
+msgstr "Cuando se selecciona la celda, puede elegir <emph>Mostrar comentario</emph> en el menú contextual de la celda. De esta forma, el comentario se mantiene visible hasta que desactive el comando <emph>Mostrar comentario</emph> en el mismo menú contextual."
+
+#: note_insert.xhp#par_id3149958.35.help.text
+msgid "To edit a permanently visible comment, just click in it. If you delete the entire text of the comment, the comment itself is deleted."
+msgstr "Para editar un comentario permanentemente visible, haga clic en él. Si elimina todo el texto del comentario, el comentario se elimina."
+
+#: note_insert.xhp#par_idN10699.help.text
+msgid "Move or resize each comment as you like."
+msgstr "Mueva o cambie el tamaño de cada comentario a su conveniencia."
+
+#: note_insert.xhp#par_idN1069D.help.text
+msgid "Format each comment by specifying background color, transparency, border style, and text alignment. Choose the commands from the context menu of the comment."
+msgstr "Aplique formato a cada comentario especificando el color de fondo, la transparencia, el estilo de borde y la alineación del texto. Elija los comandos en el menú contextual del comentario."
+
+#: note_insert.xhp#par_id3144764.38.help.text
+msgid "To show or hide the comment indicator, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph> and mark or unmark the <emph>Comment indicator</emph> check box."
+msgstr "Para mostrar u ocultar el indicador de comentarios, elija <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - %PRODUCTNAME Calc - Ver</emph> y marque o desmarque la casilla <emph>Indicador de comentarios</emph>."
+
+#: note_insert.xhp#par_id3150715.39.help.text
+msgid "To display a help tip for a selected cell, use <emph>Data - Validity - Input Help</emph>."
+msgstr "Para mostrar una ayuda emergente de una celda seleccionada, utilice <emph>Datos - Validez - Ayuda de entrada</emph>."
+
+#: note_insert.xhp#par_id3153707.36.help.text
+msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Comment\">Insert - Comment</link>"
+msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Comment\">Insertar - Comentario</link>"
+
+#: value_with_name.xhp#tit.help.text
+msgid "Naming Cells"
+msgstr "Dar nombre a celdas"
+
+#: value_with_name.xhp#bm_id3147434.help.text
+msgid "<bookmark_value>cells; defining names</bookmark_value> <bookmark_value>names; defining for cells</bookmark_value> <bookmark_value>values; defining names</bookmark_value> <bookmark_value>constants definition</bookmark_value> <bookmark_value>variables; defining names</bookmark_value> <bookmark_value>cell ranges; defining names</bookmark_value> <bookmark_value>defining;names for cell ranges</bookmark_value> <bookmark_value>formulas; defining names</bookmark_value> <bookmark_value>addressing; by defined names</bookmark_value> <bookmark_value>cell names; defining/addressing</bookmark_value> <bookmark_value>references; by defined names</bookmark_value> <bookmark_value>allowed cell names</bookmark_value> <bookmark_value>renaming;cells</bookmark_value>"
+msgstr "<bookmark_value>celdas; definir nombres</bookmark_value> <bookmark_value>nombres, definir para celdas</bookmark_value> <bookmark_value>valores, definir nombres</bookmark_value> <bookmark_value>definición de constantes</bookmark_value> <bookmark_value>variables; definir nombres</bookmark_value> <bookmark_value>rangos de celdas, definir nombres</bookmark_value> <bookmark_value>definir, nombres para rangos de celdas</bookmark_value> <bookmark_value>fórmulas, definir nombres</bookmark_value> <bookmark_value>direccionamiento; por nombres definidos</bookmark_value> <bookmark_value>nombres de celdas; definir/direccionar</bookmark_value> <bookmark_value>referencias, por nombres definidos</bookmark_value> <bookmark_value>nombres de celdas permitidos</bookmark_value> <bookmark_value>renombrar, celdas</bookmark_value>"
+
+#: value_with_name.xhp#hd_id3147434.1.help.text
+msgid "<variable id=\"value_with_name\"><link href=\"text/scalc/guide/value_with_name.xhp\" name=\"Naming Cells\">Naming Cells</link></variable>"
+msgstr "<variable id=\"value_with_name\"><link href=\"text/scalc/guide/value_with_name.xhp\" name=\"Dar nombre a celdas\">Dar nombre a celdas</link></variable>"
+
+#: value_with_name.xhp#hd_id4391918.help.text
+msgid "Allowed names"
+msgstr "Nombres permitidos"
+
+#: value_with_name.xhp#par_id2129581.help.text
+msgid "Names in Calc can contain letters, numeric characters, and some special characters. Names must start with a letter or an underline character."
+msgstr "Nombres dentro de Calc puede contener letras, caracteres numericos, y algunos caracteres especiales. Los nombres debe comenzar con una letra o un caracter de guion bajo."
+
+#: value_with_name.xhp#par_id1120029.help.text
+msgid "Allowed special characters:"
+msgstr "Caracteres especiales permitidos:"
+
+#: value_with_name.xhp#par_id3362224.help.text
+msgid "underline (_) "
+msgstr "subrayado (_)"
+
+#: value_with_name.xhp#par_id4891506.help.text
+msgid "period (.) - allowed within a name, but not as first or last character"
+msgstr "punto (.) - permitido dentro de un nombre, pero como primer o último caracter"
+
+#: value_with_name.xhp#par_id2816553.help.text
+msgid "blank ( ) - allowed within a name, but not as first or last character, and not for a cell range"
+msgstr "blank ( ) - permitido dentro de un nombre, pero no como caracter inicial o final, y no para rangos de celda."
+
+#: value_with_name.xhp#par_id328989.help.text
+msgid "Names must not be the same as cell references. For example, the name A1 is invalid because A1 is a cell reference to the top left cell."
+msgstr "Los nombres deben ser diferente de la celda de referencia. Por ejemplo, el nombre A1 es invalido porque A1 la referencia de la celda superior izquierda."
+
+#: value_with_name.xhp#par_id32898987.help.text
+msgid "Names must not start with the letter R followed by a number. See the ADDRESS function for more information."
+msgstr ""
+
+#: value_with_name.xhp#par_id4769737.help.text
+msgid "Names for cell ranges must not include blanks. Blanks are allowed within names for single cells, sheets and documents."
+msgstr "Los nombres de los rangos de celdas no deben incluir espacios. Los espacios son permitidos dentro de los nombres de celdas sencillas, hojas y documentos."
+
+#: value_with_name.xhp#hd_id1226233.help.text
+msgid "Naming cells and formulas"
+msgstr "Nombre de celdas y formulas"
+
+#: value_with_name.xhp#par_id5489364.help.text
+msgid "A good way of making the references to cells and cell ranges in formulas legible is to give the ranges names. For example, you can name the range A1:B2 <emph>Start</emph>. You can then write a formula such as \"=SUM(Start)\". Even after you insert or delete rows or columns, $[officename] still correctly assigns the ranges identified by name. Range names must not contain any spaces."
+msgstr "Un buen método para que las referencias a celdas o rangos de celdas en fórmulas sean fáciles de reconocer es asignarles un nombre. Por ejemplo, puede asignar al rango A1:B2 el nombre <emph>Inicio</emph>. A continuación, puede escribir una fórmula como \"=SUMA(Inicio)\". Incluso aunque inserte o elimine filas o columnas, $[officename] sigue reconociendo los rangos identificados con un nombre. Los nombres de rangos no deben contener espacios."
+
+#: value_with_name.xhp#par_id953398.help.text
+msgid "For example, it is much easier to read a formula for sales tax if you can write \"= Amount * Tax_rate\" instead of \"= A5 * B12\". In this case, you would name cell A5 \"Amount\" and cell B12 \"Tax_rate.\""
+msgstr "Por ejemplo, es mucho más fácil leer una fórmula relativa a impuestos en una venta si escribe \"= cantidad * tipo_impositivo\" en lugar de \"= A5 * B12\". En este caso, se asignaría el nombre \"cantidad\" a la celda A5 y \"tipo_impositivo\" a la celda B12."
+
+#: value_with_name.xhp#par_id4889675.help.text
+msgid "Use the <emph>Define Names</emph> dialog to define names for formulas or parts of formulas you need more often. In order to specify range names,"
+msgstr "El diálogo <emph>Definir nombres</emph> se utiliza para definir nombres de las fórmulas o partes de ellas que se necesitan con más frecuencia. Para especificar nombres de rangos,"
+
+#: value_with_name.xhp#par_id3153954.3.help.text
+msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
+msgstr "Seleccione una celda o área de celdas y elija <emph>Insertar - Nombres - Definir</emph>. Se abre el diálogo <emph>Definir nombres</emph>."
+
+#: value_with_name.xhp#par_id3156283.4.help.text
+msgid "Type the name of the selected area in the <emph>Name</emph> field. Click <emph>Add</emph>. The newly defined name appears in the list below. Click OK to close the dialog."
+msgstr "Escriba el nombre del área seleccionada en el campo <emph>Nombre</emph>. Pulse <emph>Agregar</emph>. El nombre definido aparecerá en la lista situada más abajo. Pulse Aceptar para cerrar el diálogo."
+
+#: value_with_name.xhp#par_id5774101.help.text
+msgid "You can also name other cell ranges in this dialog by entering the name in the field and then selecting the respective cells."
+msgstr "También puede asignar nombres a otros rangos de celdas en este diálogo. Para ello, escriba el nombre en el campo y, a continuación, seleccione las celdas correspondientes."
+
+#: value_with_name.xhp#par_id3154942.5.help.text
+msgid "If you type the name in a formula, after the first few characters entered you will see the entire name as a tip."
+msgstr "Si escribe el nombre en una fórmula, al escribir los primeros caracteres verá un letrero con el nombre completo."
+
+#: value_with_name.xhp#par_id3154510.6.help.text
+msgid "Press the Enter key in order to accept the name from the tip."
+msgstr "Pulse la tecla Entrar para aceptar el nombre de la ayuda emergente."
+
+#: value_with_name.xhp#par_id3150749.7.help.text
+msgid "If more than one name starts with the same characters, you can scroll through all the names using the Tab key."
+msgstr "Si hubiera varios nombres con los mismos caracteres, podrá pasar de uno a otro mediante la tecla del tabulador."
+
+#: value_with_name.xhp#par_id3153711.8.help.text
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
+msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insertar - Nombres - Definir\">Insertar - Nombres - Definir</link>"
+
+#: mark_cells.xhp#tit.help.text
+msgid "Selecting Multiple Cells"
+msgstr "Seleccionar varias celdas"
+
+#: mark_cells.xhp#bm_id3153361.help.text
+msgid "<bookmark_value>cells; selecting</bookmark_value> <bookmark_value>marking cells</bookmark_value> <bookmark_value>selecting;cells</bookmark_value> <bookmark_value>multiple cells selection</bookmark_value> <bookmark_value>selection modes in spreadsheets</bookmark_value> <bookmark_value>tables; selecting ranges</bookmark_value>"
+msgstr "<bookmark_value>celdas; seleccionar</bookmark_value> <bookmark_value>marcar celdas</bookmark_value> <bookmark_value>seleccionar;celdas</bookmark_value> <bookmark_value>selección de varias celdas</bookmark_value> <bookmark_value>modos de selección en hojas de cálculo</bookmark_value> <bookmark_value>tablas; seleccionar intervalos</bookmark_value>"
+
+#: mark_cells.xhp#hd_id3153361.1.help.text
+msgid "<variable id=\"mark_cells\"><link href=\"text/scalc/guide/mark_cells.xhp\" name=\"Selecting Multiple Cells\">Selecting Multiple Cells</link></variable>"
+msgstr "<variable id=\"mark_cells\"><link href=\"text/scalc/guide/mark_cells.xhp\" name=\"Seleccionar varias celdas\">Seleccionar varias celdas</link></variable>"
+
+#: mark_cells.xhp#hd_id3145272.2.help.text
+msgid "Select a rectangular range"
+msgstr "Seleccione un área rectangular"
+
+#: mark_cells.xhp#par_id3149261.3.help.text
+msgid "With the mouse button pressed, drag from one corner to the diagonally opposed corner of the range."
+msgstr "Arrastre, manteniendo pulsada la tecla del ratón, de una esquina a la esquina diagonalmente opuesta del área."
+
+#: mark_cells.xhp#hd_id3151119.4.help.text
+msgid "Mark a single cell"
+msgstr "Marque una única celda"
+
+#: mark_cells.xhp#par_id3146975.19.help.text
+msgctxt "mark_cells.xhp#par_id3146975.19.help.text"
+msgid "Do one of the following:"
+msgstr "Siga uno de estos procedimientos:"
+
+#: mark_cells.xhp#par_id3163710.20.help.text
+msgid "Click, then Shift-click the cell."
+msgstr "Pulse sobre la celda y a continuación pulse la tecla Mayús."
+
+#: mark_cells.xhp#par_id3149959.5.help.text
+msgid "Pressing the mouse button, drag a range across two cells, do not release the mouse button, and then drag back to the first cell. Release the mouse button. You can now move the individual cell by drag and drop."
+msgstr "Con el botón del ratón pulsado, forme un área de dos celdas y, sin soltar el botón, vuelva de nuevo hacia la primera celda. Una vez que haya soltado el botón del ratón, podrá mover la celda mediante arrastrar y soltar."
+
+#: mark_cells.xhp#hd_id3154942.6.help.text
+msgid "Select various dispersed cells"
+msgstr "Seleccionar varias celdas dispersadas"
+
+#: mark_cells.xhp#par_id1001200901072060.help.text
+msgctxt "mark_cells.xhp#par_id1001200901072060.help.text"
+msgid "Do one of the following:"
+msgstr "Siga uno de estos procedimientos:"
+
+#: mark_cells.xhp#par_id3156284.7.help.text
+msgid "Mark at least one cell. Then while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, click each of the additional cells."
+msgstr "Marque al menos una celda. A continuación, mientras pulsa <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline>, haga clic en cada una de las celdas adicionales."
+
+#: mark_cells.xhp#par_id1001200901072023.help.text
+msgid "Click the STD / EXT / ADD area in the status bar until it shows ADD. Now click all cells that you want to select."
+msgstr "Haga clic sobre el área STD / EXT / AGR de la barra de estado hasta que muestre AGR. A continuación haga clic sobre todas las celdas que desea seleccionar."
+
+#: mark_cells.xhp#hd_id3146971.8.help.text
+msgid "Switch marking mode"
+msgstr "Conmutación del modo de selección"
+
+#: mark_cells.xhp#par_id3155064.9.help.text
+msgid "On the status bar, click the box with the legend STD / EXT / ADD to switch the marking mode:"
+msgstr "En la barra de estado, pulse en el cuadro STD/EXT/AGR para cambiar el modo de selección:"
+
+#: mark_cells.xhp#par_id3159264.10.help.text
+msgid "Field contents"
+msgstr "<emph>Contenido del campo</emph>"
+
+#: mark_cells.xhp#par_id3155337.11.help.text
+msgid "Effect of clicking the mouse"
+msgstr "<emph>Efecto de pulsar con el ratón</emph>"
+
+#: mark_cells.xhp#par_id3149568.12.help.text
+msgid "STD"
+msgstr "STD"
+
+#: mark_cells.xhp#par_id3148486.13.help.text
+msgid "A mouse click selects the cell you have clicked on. Unmarks all marked cells."
+msgstr "Una pulsación del ratón selecciona la celda sobre la que ha pulsado. Deselecciona las celdas seleccionadas."
+
+#: mark_cells.xhp#par_id3150090.14.help.text
+msgid "EXT"
+msgstr "ER"
+
+#: mark_cells.xhp#par_id3150305.15.help.text
+msgid "A mouse click marks a rectangular range from the current cell to the cell you clicked. Alternatively, Shift-click a cell."
+msgstr "Con un clic del ratón se marca un intervalo rectangular desde la celda actual hasta la celda sobre la que hizo clic. O bien, presione \"Mayúsculas\" y haga clic sobre una celda."
+
+#: mark_cells.xhp#par_id3145587.16.help.text
+msgid "ADD"
+msgstr "ERG"
+
+#: mark_cells.xhp#par_id3154368.17.help.text
+msgid "A mouse click in a cell adds it to the already marked cells. A mouse click in a marked cell unmarks it. Alternatively, <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-click the cells."
+msgstr "Un clic del ratón en una celda la agrega a las celdas ya marcadas. Un clic del ratón en una celda marcado la desmarca. De forma alternativa , el<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-clic en las celdas ."
+
+#: mark_cells.xhp#par_id3154487.18.help.text
+msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status bar\">Status bar</link>"
+msgstr "<link href=\"text/scalc/main0208.xhp\" name=\"Barra de estado\">Barra de estado</link>"
+
+#: formula_copy.xhp#tit.help.text
+msgid "Copying Formulas"
+msgstr "Copiar fórmulas"
+
+#: formula_copy.xhp#bm_id3151113.help.text
+msgid "<bookmark_value>formulas; copying and pasting</bookmark_value><bookmark_value>copying; formulas</bookmark_value><bookmark_value>pasting;formulas</bookmark_value>"
+msgstr "<bookmark_value>fórmulas; copiar y pegar</bookmark_value><bookmark_value>copiar; fórmulas</bookmark_value><bookmark_value>pegar;fórmulas</bookmark_value>"
+
+#: formula_copy.xhp#hd_id3151113.54.help.text
+msgid "<variable id=\"formula_copy\"><link href=\"text/scalc/guide/formula_copy.xhp\" name=\"Copying Formulas\">Copying Formulas</link></variable>"
+msgstr "<variable id=\"formula_copy\"><link href=\"text/scalc/guide/formula_copy.xhp\" name=\"Copying Formulas\">Copiar fórmulas</link></variable>"
+
+#: formula_copy.xhp#par_id3156424.11.help.text
+msgid "There are various ways to copy a formula. One suggested method is:"
+msgstr "Los procedimientos para copiar una fórmula son diversos. Uno de los métodos propuestos es:"
+
+#: formula_copy.xhp#par_id3150439.30.help.text
+msgctxt "formula_copy.xhp#par_id3150439.30.help.text"
+msgid "Select the cell containing the formula."
+msgstr "Seleccione la celda que contenga la fórmula."
+
+#: formula_copy.xhp#par_id3154319.31.help.text
+msgid "Choose <emph>Edit - Copy</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C to copy it."
+msgstr "Seleccione <emph>Edición - Copiar</emph>, o pulse <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ C para copiarla."
+
+#: formula_copy.xhp#par_id3159155.32.help.text
+msgid "Select the cell into which you want the formula to be copied."
+msgstr "Seleccione la celda en la que se deba copiar la fórmula."
+
+#: formula_copy.xhp#par_id3153728.33.help.text
+msgid "Choose <emph>Edit - Paste</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V. The formula will be positioned in the new cell."
+msgstr "Seleccione <emph>Edición - Pegar</emph>, o pulse <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V. La fórmula se insertará en la nueva celda."
+
+#: formula_copy.xhp#par_id3149961.34.help.text
+msgid "If you want to copy a formula into multiple cells, there is a quick and easy way to copy into adjacent cell areas:"
+msgstr "Si desea copiar una fórmula en varias celdas, la forma más fácil de copiarla en áreas adyacentes es:"
+
+#: formula_copy.xhp#par_id3149400.12.help.text
+msgctxt "formula_copy.xhp#par_id3149400.12.help.text"
+msgid "Select the cell containing the formula."
+msgstr "Seleccione la celda que contenga la fórmula."
+
+#: formula_copy.xhp#par_id3154018.13.help.text
+msgid "Position the mouse on the bottom right of the highlighted border of the cell, and continue holding down the mouse button until the pointer changes to a cross-hair symbol."
+msgstr "Pulse en la parte inferior derecha en el marco destacado que rodea la celda y mantenga pulsado el botón del ratón. El puntero del ratón se convierte en un retículo."
+
+#: formula_copy.xhp#par_id3150749.14.help.text
+msgid "With the mouse button pressed, drag it down or to the right over all the cells into which you want to copy the formula."
+msgstr "Mantenga pulsado el botón del ratón y tire hacia abajo o hacia la derecha sobre las celdas en las que desee copiar la fórmula."
+
+#: formula_copy.xhp#par_id3153714.15.help.text
+msgid "When you release the mouse button, the formula will be copied into the cells and automatically adjusted."
+msgstr "Suelte el botón del ratón. La fórmula se copiará en las celdas y se adaptará automáticamente."
+
+#: formula_copy.xhp#par_id3156385.53.help.text
+msgid "If you do not want values and texts to be automatically adjusted, then hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key when dragging. Formulas, however, are always adjusted accordingly."
+msgstr "Si no quiere que los valores y el texto se ajusten automáticamente, pulse la tecla <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline> al arrastrar. Las fórmulas siempre se ajustan."
+
+#: print_details.xhp#tit.help.text
+msgid "Printing Sheet Details"
+msgstr "Imprimir detalles de hojas"
+
+#: print_details.xhp#bm_id3154346.help.text
+msgid "<bookmark_value>printing;sheet details</bookmark_value><bookmark_value>sheets; printing details</bookmark_value><bookmark_value>grids; printing sheet grids</bookmark_value><bookmark_value>formulas; printing, instead of results</bookmark_value><bookmark_value>comments; printing</bookmark_value><bookmark_value>charts;printing</bookmark_value><bookmark_value>sheet grids; printing</bookmark_value><bookmark_value>cells; printing grids</bookmark_value><bookmark_value>borders; printing cells</bookmark_value><bookmark_value>zero values; printing</bookmark_value><bookmark_value>null values; printing</bookmark_value><bookmark_value>draw objects;printing</bookmark_value>"
+msgstr "<bookmark_value>imprimir;detalles de hoja</bookmark_value><bookmark_value>hojas; imprimir detalles</bookmark_value><bookmark_value>cuadrículas; imprimir cuadrículas de hojas</bookmark_value><bookmark_value>fórmulas; imprimir, en lugar de los resultados</bookmark_value><bookmark_value>comentarios; imprimir</bookmark_value><bookmark_value>gráficos;imprimir</bookmark_value><bookmark_value>cuadrículas de hojas; imprimir</bookmark_value><bookmark_value>celdas; imprimir cuadrículas</bookmark_value><bookmark_value>bordes; imprimir celdas</bookmark_value><bookmark_value>valores cero; imprimir</bookmark_value><bookmark_value>valores nulos; imprimir</bookmark_value><bookmark_value>objetos de dibujo;imprimir</bookmark_value>"
+
+#: print_details.xhp#hd_id3154346.1.help.text
+msgid "<variable id=\"print_details\"><link href=\"text/scalc/guide/print_details.xhp\" name=\"Printing Sheet Details\">Printing Sheet Details</link></variable>"
+msgstr "<variable id=\"print_details\"><link href=\"text/scalc/guide/print_details.xhp\" name=\"Imprimir detalles de hojas\">Imprimir detalles de hojas</link></variable>"
+
+#: print_details.xhp#par_id3153728.2.help.text
+msgid "When printing a sheet you can select which details are to be printed:"
+msgstr "Al imprimir una tabla podrá seleccionar qué detalles se deben imprimir:"
+
+#: print_details.xhp#par_id3150010.3.help.text
+msgid "Row and column headers"
+msgstr "Títulos de filas y de columnas"
+
+#: print_details.xhp#par_id3154013.4.help.text
+msgid "Sheet grid"
+msgstr "Cuadrícula"
+
+#: print_details.xhp#par_id3145273.5.help.text
+msgid "Comments"
+msgstr "Comentarios"
+
+#: print_details.xhp#par_id3145801.6.help.text
+msgid "Objects and graphics"
+msgstr "Objetos e imágenes"
+
+#: print_details.xhp#par_id3154491.7.help.text
+msgid "Charts"
+msgstr "Diagramas"
+
+#: print_details.xhp#par_id3154731.8.help.text
+msgid "Drawing objects"
+msgstr "Objetos de dibujo"
+
+#: print_details.xhp#par_id3149400.9.help.text
+msgid "Formulas"
+msgstr "Fórmulas"
+
+#: print_details.xhp#par_id3150752.10.help.text
+msgid "To choose the details proceed as follows:"
+msgstr "Para seleccionar detalles proceda de la siguiente manera:"
+
+#: print_details.xhp#par_id3145640.11.help.text
+msgid "Select the sheet you want to print."
+msgstr "Pase a la hoja que desee imprimir."
+
+#: print_details.xhp#par_id3150042.12.help.text
+msgctxt "print_details.xhp#par_id3150042.12.help.text"
+msgid "Choose <emph>Format - Page</emph>."
+msgstr "Active el comando <emph>Formato - Página</emph>."
+
+#: print_details.xhp#par_id3147340.13.help.text
+msgid "The command is not visible if the sheet was opened with write protection on. In that case, click the <emph>Edit File </emph>icon on the <emph>Standard</emph> Bar."
+msgstr "El comando no se ve si la hoja se ha abierto con la protección contra escritura activada. En ese caso, haga clic en el símbolo <emph>Editar archivo</emph> de la barra <emph>estándar</emph>."
+
+#: print_details.xhp#par_id3146916.14.help.text
+msgid "Select the <emph>Sheet</emph> tab. In the <emph>Print </emph>area mark the details to be printed and click OK."
+msgstr "Seleccione la pestaña <emph>Hoja</emph>. En el área <emph>Imprimir</emph>, marque los detalles que desea imprimir y haga clic en Aceptar."
+
+#: print_details.xhp#par_id3145789.15.help.text
+msgid "Print the document."
+msgstr "Imprima el documento."
+
+#: print_details.xhp#par_id3150345.16.help.text
+msgctxt "print_details.xhp#par_id3150345.16.help.text"
+msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">View - Page Break Preview</link>"
+msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"Ver - Previsualizacion del salto de página\">Ver - Previsualizacion del salto de página</link>"
+
+#: cell_unprotect.xhp#tit.help.text
+msgid "Unprotecting Cells"
+msgstr "Desproteger celdas"
+
+#: cell_unprotect.xhp#bm_id3153252.help.text
+msgid "<bookmark_value>cell protection; unprotecting</bookmark_value> <bookmark_value>protecting; unprotecting cells</bookmark_value> <bookmark_value>unprotecting cells</bookmark_value>"
+msgstr "<bookmark_value>protección de celdas; desproteger</bookmark_value> <bookmark_value>proteger; desproteger celdas</bookmark_value> <bookmark_value>desproteger celdas</bookmark_value>"
+
+#: cell_unprotect.xhp#hd_id3153252.14.help.text
+msgid "<variable id=\"cell_unprotect\"><link href=\"text/scalc/guide/cell_unprotect.xhp\" name=\"Unprotecting Cells\">Unprotecting Cells</link> </variable>"
+msgstr "<variable id=\"cell_unprotect\"><link href=\"text/scalc/guide/cell_unprotect.xhp\" name=\"Unprotecting Cells\">Desproteger Celdas</link> </variable>"
+
+#: cell_unprotect.xhp#par_id3151112.15.help.text
+msgid "Click the sheet for which you want to cancel the protection."
+msgstr "Cambie a la tabla cuya protección desee retirar."
+
+#: cell_unprotect.xhp#par_id3149656.16.help.text
+msgid "Select <emph>Tools - Protect Document</emph>, then choose <emph>Sheet</emph> or <emph>Document</emph> to remove the check mark indicating the protected status."
+msgstr "Seleccione <emph>Herramientas - Proteger documento</emph> y <emph>Hoja de cálculo</emph> o <emph>Documento</emph> y retire la marca de la casilla de verificación."
+
+#: cell_unprotect.xhp#par_id3145171.17.help.text
+msgid "If you have assigned a password, enter it in this dialog and click <emph>OK</emph>."
+msgstr "Si asignó una contraseña, deberá escribirla en el diálogo y confirmarla con Aceptar."
+
+#: cell_unprotect.xhp#par_id3153771.18.help.text
+msgid "The cells can now be edited, the formulas can be viewed, and all cells can be printed until you reactivate the protection for the sheet or document."
+msgstr "A continuación podrá editar las celdas, mostrar las fórmulas e imprimir todas las celdas hasta que reactive la protección de la hoja de cálculo o el documento."
+
+#: cell_enter.xhp#tit.help.text
+msgid "Entering Values"
+msgstr "Ingresar valores"
+
+#: cell_enter.xhp#bm_id3150868.help.text
+msgid "<bookmark_value>values; inserting in multiple cells</bookmark_value> <bookmark_value>inserting;values</bookmark_value> <bookmark_value>cell ranges;selecting for data entries</bookmark_value> <bookmark_value>areas, see also cell ranges</bookmark_value>"
+msgstr "<bookmark_value>valores; insertar en varias celdas</bookmark_value> <bookmark_value>insertar;valores</bookmark_value> <bookmark_value>áreas de celdas;seleccionar para entrada de datos</bookmark_value> <bookmark_value>áreas, véase también áreas de celdas</bookmark_value>"
+
+#: cell_enter.xhp#hd_id3405255.help.text
+msgid "<variable id=\"cell_enter\"><link href=\"text/scalc/guide/cell_enter.xhp\">Entering Values</link></variable>"
+msgstr "<variable id=\"cell_enter\"><link href=\"text/scalc/guide/cell_enter.xhp\">Introducir valores</link></variable>"
+
+#: cell_enter.xhp#par_id7147129.help.text
+msgid "Calc can simplify entering data and values into multiple cells. You can change some settings to conform to your preferences."
+msgstr "Calc puede simplificar el ingreso de datos y valores a celdas múltiples. Puede cambiar algunas configuraciones para ajustar a su preferencias."
+
+#: cell_enter.xhp#hd_id5621509.help.text
+msgid "To Enter Values Into a Range of Cells Manually"
+msgstr "Escribir valores manualmente en un área de celdas"
+
+#: cell_enter.xhp#par_id8200018.help.text
+msgid "There are two features that assist you when you enter a block of data manually."
+msgstr "Hay dos características que ayuda cuando entra un bloque de datos manualmente."
+
+#: cell_enter.xhp#hd_id1867427.help.text
+msgid "Area Detection for New Rows"
+msgstr "Detección de área para nuevas filas"
+
+#: cell_enter.xhp#par_id7908871.help.text
+msgid "In the row below a heading row, you can advance from one cell to the next with the Tab key. After you enter the value into the last cell in the current row, press Enter. Calc positions the cursor below the first cell of the current block."
+msgstr "En la fila debajo de una fila de encabezado, puede avanzar de una celda a la siguiente con la tecla Tab. Después de especificar el valor en la última celda de la fila actual, pulse Intro. Calc coloca el cursor debajo de la primera celda del bloque actual."
+
+#: cell_enter.xhp#par_id6196783.help.text
+msgid "<image id=\"img_id6473586\" src=\"res/helpimg/area1.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id6473586\">area detection</alt></image>"
+msgstr "<image id=\"img_id6473586\" src=\"res/helpimg/area1.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id6473586\">detección de área</alt></image>"
+
+#: cell_enter.xhp#par_id8118839.help.text
+msgid "In row 3, press Tab to advance from cell B3 to C3, D3, and E3. Then press Enter to advance to B4."
+msgstr "En la fila 3, pulse Tab para avanzar de la celda B3 a C3, D3, y E3. A continuación, pulse Intro para avanzar a B4."
+
+#: cell_enter.xhp#hd_id3583788.help.text
+msgid "Area Selection"
+msgstr "Selección de área"
+
+#: cell_enter.xhp#par_id2011780.help.text
+msgid "Use drag-and-drop to select the area where you want to input values. But start dragging from the last cell of the area and release the mouse button when you have selected the first cell. Now you can start to input values. Always press the Tab key to advance to the next cell. You will not leave the selected area."
+msgstr "Utilice el método de arrastrar y colocar para seleccionar el área donde desea escribir los valores. Inicie arrastrando desde la última celda del área y suelte el botón del ratón cuando haya seleccionado la primera celda. Ya puede comenzar a introducir valores. Pulse siempre la tecla Tab para avanzar a la siguiente celda. No saldrá del área seleccionada."
+
+#: cell_enter.xhp#par_id7044282.help.text
+msgid "<image id=\"img_id2811365\" src=\"res/helpimg/area2.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id2811365\">area selection</alt></image>"
+msgstr "<image id=\"img_id2811365\" src=\"res/helpimg/area2.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id2811365\">selección de área</alt></image>"
+
+#: cell_enter.xhp#par_id3232520.help.text
+msgid "Select the area from E7 to B3. Now B3 is waiting for your input. Press Tab to advance to the next cell within the selected area."
+msgstr "Seleccione el área de E7 a B3. Ahora, B3 espera la entrada de datos. Pulse Tab para avanzar a la siguiente celda en el área seleccionada."
+
+#: cell_enter.xhp#hd_id8950163.help.text
+msgid "To Enter Values to a Range of Cells Automatically"
+msgstr "Para escribir valores automáticamente en un área de celdas"
+
+#: cell_enter.xhp#par_id633869.help.text
+msgid "See <link href=\"text/scalc/guide/calc_series.xhp\">Automatically Filling in Data Based on Adjacent Cells</link>."
+msgstr "Ver <link href=\"text/scalc/guide/calc_series.xhp\">Automáticamente Rellenando Datos basado en Celdas Adyacente</link>."
+
+#: autoformat.xhp#tit.help.text
+msgid "Using AutoFormat for Tables"
+msgstr "Usar AutoFormato para tablas"
+
+#: autoformat.xhp#bm_id3155132.help.text
+msgid "<bookmark_value>tables; AutoFormat function</bookmark_value> <bookmark_value>defining;AutoFormat function for tables</bookmark_value> <bookmark_value>AutoFormat function</bookmark_value> <bookmark_value>formats; automatically formatting spreadsheets</bookmark_value> <bookmark_value>automatic formatting in spreadsheets</bookmark_value> <bookmark_value>sheets;AutoFormat function</bookmark_value>"
+msgstr "<bookmark_value>tablas; función autoformatear</bookmark_value> <bookmark_value>definir;función autoformatear para para tablas</bookmark_value> <bookmark_value>autoformatear</bookmark_value> <bookmark_value>formatos;formatear automáticamente las hojas de cálculo</bookmark_value> <bookmark_value>formatear automáticamente las hojas de cálculo</bookmark_value> <bookmark_value>hojas;función autoformatear</bookmark_value>"
+
+#: autoformat.xhp#hd_id3155132.11.help.text
+msgid "<variable id=\"autoformat\"><link href=\"text/scalc/guide/autoformat.xhp\" name=\"Using AutoFormat for Tables\">Applying Automatic Formatting to a Selected Cell Range</link></variable>"
+msgstr "<variable id=\"autoformat\"><link href=\"text/scalc/guide/autoformat.xhp\" name=\"Usar el autoformateado de tablas\">Aplicar automáticamente un formato a un rango de celdas seleccionadas</link></variable>"
+
+#: autoformat.xhp#par_id3149401.12.help.text
+msgid "You can use the AutoFormat feature to quickly apply a format to a sheet or a selected cell range."
+msgstr "Puede utilizar la función AutoFormato para aplicar rápidamente formato a una hoja o un área de celdas seleccionada."
+
+#: autoformat.xhp#par_idN10702.help.text
+msgid "To Apply an AutoFormat to a Sheet or Selected Cell Range"
+msgstr "Para aplicar un autoformato a una hoja o un rango de celdas seleccionada"
+
+#: autoformat.xhp#par_idN106CE.help.text
+msgid "Select the cells, including the column and row headers, that you want to format."
+msgstr "Seleccione las celdas, incluidos los encabezados de fila y columna, a los que desee dar formato."
+
+#: autoformat.xhp#par_idN106D5.help.text
+msgctxt "autoformat.xhp#par_idN106D5.help.text"
+msgid "Choose <item type=\"menuitem\">Format - AutoFormat</item>."
+msgstr "Elija <item type=\"menuitem\">Formato - AutoFormato</item>."
+
+#: autoformat.xhp#par_id3151242.27.help.text
+msgid "To select which properties to include in an AutoFormat, click <emph>More</emph>."
+msgstr "Para seleccionar las propiedades que desea incluir en el AutoFormato, haga clic en <emph>Más</emph>."
+
+#: autoformat.xhp#par_idN10715.help.text
+msgctxt "autoformat.xhp#par_idN10715.help.text"
+msgid "Click <emph>OK</emph>."
+msgstr "Haga clic en <emph>Aceptar</emph>."
+
+#: autoformat.xhp#par_idN1075D.help.text
+msgid "The format is applied to the selected range of cells."
+msgstr "El formato se aplicará al área de celdas seleccionada."
+
+#: autoformat.xhp#par_id3149210.14.help.text
+msgid "If you do not see any change in color of the cell contents, choose <item type=\"menuitem\">View - Value Highlighting</item>."
+msgstr "Si no observa ningún cambio de color en el contenido de las celdas, elija <item type=\"menuitem\">Ver - Destacar valores</item>."
+
+#: autoformat.xhp#par_id3155379.22.help.text
+msgid "To Define an AutoFormat for Spreadsheets"
+msgstr "Definir un autoformato para hojas de cálculo"
+
+#: autoformat.xhp#par_id3148868.26.help.text
+msgid "You can define a new AutoFormat that is available to all spreadsheets."
+msgstr "Puede definir un nuevo AutoFormato que esté disponible para todas las hojas de cálculo."
+
+#: autoformat.xhp#par_id3152985.23.help.text
+msgid "Format a sheet."
+msgstr "Dar formato a una hoja."
+
+#: autoformat.xhp#par_id3145384.24.help.text
+msgid "Choose <item type=\"menuitem\">Edit - Select All</item>."
+msgstr "Elija <item type=\"menuitem\">Editar - Seleccionar todo</item>."
+
+#: autoformat.xhp#par_id3153815.25.help.text
+msgctxt "autoformat.xhp#par_id3153815.25.help.text"
+msgid "Choose <item type=\"menuitem\">Format - AutoFormat</item>."
+msgstr "Elija <item type=\"menuitem\">Formato - AutoFormato</item>."
+
+#: autoformat.xhp#par_idN107A9.help.text
+msgid "Click <emph>Add</emph>."
+msgstr "Haga clic en <emph>Agregar</emph>."
+
+#: autoformat.xhp#par_idN10760.help.text
+msgid "In the <emph>Name</emph> box of the <emph>Add AutoFormat</emph> dialog, enter a name for the format."
+msgstr "En el cuadro <emph>Nombre</emph> del diálogo <emph>Agregar AutoFormato</emph>, introduzca un nombre para el formato."
+
+#: autoformat.xhp#par_idN107C3.help.text
+msgctxt "autoformat.xhp#par_idN107C3.help.text"
+msgid "Click <emph>OK</emph>."
+msgstr "Haga clic en <emph>Aceptar</emph>."
+
+#: autoformat.xhp#par_id3159203.28.help.text
+msgid "<link href=\"text/scalc/01/05110000.xhp\" name=\"Format - AutoFormat\">Format - AutoFormat</link>"
+msgstr "<link href=\"text/scalc/01/05110000.xhp\" name=\"Formato - AutoFormato\">Formato - AutoFormato</link>"
+
+#: datapilot_deletetable.xhp#tit.help.text
+#, fuzzy
+msgid "Deleting Pivot Tables"
+msgstr "Eliminar tablas del Piloto de datos"
+
+#: datapilot_deletetable.xhp#bm_id3153726.help.text
+#, fuzzy
+msgid "<bookmark_value>pivot table function; deleting tables</bookmark_value> <bookmark_value>deleting;pivot tables</bookmark_value>"
+msgstr "<bookmark_value>Piloto de datos;eliminar tablas</bookmark_value> <bookmark_value>eliminar;tablas del Piloto de datos</bookmark_value>"
+
+#: datapilot_deletetable.xhp#hd_id3153726.31.help.text
+#, fuzzy
+msgid "<variable id=\"datapilot_deletetable\"><link href=\"text/scalc/guide/datapilot_deletetable.xhp\" name=\"Deleting Pivot Tables\">Deleting Pivot Tables</link></variable>"
+msgstr "<variable id=\"datapilot_deletetable\"><link href=\"text/scalc/guide/datapilot_deletetable.xhp\" name=\"Deleting DataPilot Tables\">Eliminar la hoja del Piloto de datos</link></variable>"
+
+#: datapilot_deletetable.xhp#par_id3154014.32.help.text
+#, fuzzy
+msgid "In order to delete a pivot table, click any cell in the pivot table, then choose <emph>Delete</emph> in the context menu."
+msgstr "Para eliminar la hoja del Piloto de datos, seleccione una celda cualquiera de la hoja de análisis de datos y a continuación active el comando <emph>Datos - Piloto de datos - Eliminar</emph>."
+
+#: dbase_files.xhp#tit.help.text
+msgid "Importing and Exporting dBASE Files "
+msgstr " Importar y exportar archivos dBASE"
+
+#: dbase_files.xhp#bm_id1226844.help.text
+msgid "<bookmark_value>exporting;spreadsheets to dBASE</bookmark_value> <bookmark_value>importing;dBASE files</bookmark_value> <bookmark_value>dBASE import/export</bookmark_value> <bookmark_value>spreadsheets; importing from/exporting to dBASE files</bookmark_value> <bookmark_value>tables in databases;importing dBASE files</bookmark_value>"
+msgstr "<bookmark_value>exportar;hojas de cálculo a dBASE</bookmark_value> <bookmark_value>importar;archivos dBASE </bookmark_value> <bookmark_value>importar/ exportar dBASE</bookmark_value> <bookmark_value>hojas de cálculo; importar desde/exportar a archivos dBASE</bookmark_value> <bookmark_value>tablas en bases de datos;importar archivos dBASE</bookmark_value>"
+
+#: dbase_files.xhp#par_idN10738.help.text
+msgid "<variable id=\"dbase_files\"><link href=\"text/scalc/guide/dbase_files.xhp\">Importing and Exporting dBASE Files</link></variable>"
+msgstr "<variable id=\"dbase_files\"><link href=\"text/scalc/guide/dbase_files.xhp\">Importar y Exportar archivos dBASE</link></variable>"
+
+#: dbase_files.xhp#par_idN10756.help.text
+msgid "You can open and save data in the dBASE file format (*.dbf file extension) in $[officename] Base or a spreadsheet. In %PRODUCTNAME Base, a dBASE database is a folder that contains files with the .dbf file extension. Each file corresponds to a table in the database. Formulas and formatting are lost when you open and save a dBASE file from %PRODUCTNAME."
+msgstr "Puede abrir y guardar datos en el formato de archivo dBASE (archivo con extensión *.dbf) en $[officename] Base o en hoja de cálculo. En %PRODUCTNAME Base, una base de datos dBASE es una carpeta que contiene los archivos con extensión .dbf. Cada archivo corresponde a una tabla. Las fórmulas y el formato se pierde cuando abre y guarda un archivo dBASE de %PRODUCTNAME."
+
+#: dbase_files.xhp#par_idN10759.help.text
+msgid "To Import a dBASE File Into a Spreadsheet"
+msgstr "Para importar un archivo dBASE en una Hoja de Cálculo"
+
+#: dbase_files.xhp#par_idN10760.help.text
+msgctxt "dbase_files.xhp#par_idN10760.help.text"
+msgid "Choose <emph>File - Open</emph>."
+msgstr "Elija <emph>Archivo - Abrir</emph>."
+
+#: dbase_files.xhp#par_idN1071F.help.text
+msgid "Locate the *.dbf file that you want to import. "
+msgstr "Busque el archivo *.dbf que desee importar. "
+
+#: dbase_files.xhp#par_idN10768.help.text
+msgid "Click <emph>Open</emph>."
+msgstr "Haga clic en <emph>Abrir</emph>."
+
+#: dbase_files.xhp#par_idN10730.help.text
+msgid "The <emph>Import dBASE files</emph> dialog opens."
+msgstr "El diálogo <emph>Importar archivo dBASE</emph> se abre."
+
+#: dbase_files.xhp#par_idN10774.help.text
+msgctxt "dbase_files.xhp#par_idN10774.help.text"
+msgid "Click <emph>OK</emph>."
+msgstr "Haga clic en <emph>Aceptar</emph>."
+
+#: dbase_files.xhp#par_idN10777.help.text
+msgid "The dBASE file opens as a new Calc spreadsheet."
+msgstr "El archivo dBASE se abre como una nueva hoja de cálculo de Calc."
+
+#: dbase_files.xhp#par_idN1074E.help.text
+msgid "If you want to save the spreadsheet as a dBASE file, do not alter or delete the first row in the imported file. This row contains information that is required by a dBASE database."
+msgstr "Si desea guardar la hoja de cálculo como un archivo dBASE, no cambie ni borre la primera fila del archivo importado. Esta fila contiene la información requerida por la base de datos dBASE."
+
+#: dbase_files.xhp#par_idN1077A.help.text
+msgid "To Import a dBASE File Into a Database Table"
+msgstr "Para importar un archivo dBASE en una tabla de base de datos"
+
+#: dbase_files.xhp#par_idN1076C.help.text
+msgid "A %PRODUCTNAME Base database table is actually a link to an existing database."
+msgstr "Una tabla de base de datos de %PRODUCTNAME Base de hecho es un vínculo a una base de datos existente."
+
+#: dbase_files.xhp#par_idN10796.help.text
+msgid "Choose <item type=\"menuitem\">File - New - Database</item>."
+msgstr "Seleccione <item type=\"menuitem\">Archivo - Nuevo - Base de datos</item>."
+
+#: dbase_files.xhp#par_idN10786.help.text
+msgid "In the <emph>File name</emph> box of the <emph>Save As</emph> dialog, enter a name for the database."
+msgstr "En el cuadro <emph>Nombre de archivo</emph> del diálogo <emph>Guardar como</emph>, asigne un nombre a la base de datos."
+
+#: dbase_files.xhp#par_idN10792.help.text
+msgctxt "dbase_files.xhp#par_idN10792.help.text"
+msgid "Click <emph>Save</emph>."
+msgstr "Haga clic en <emph>Guardar</emph>."
+
+#: dbase_files.xhp#par_idN1079A.help.text
+msgid "In the <emph>Database type </emph>box of the <emph>Database Properties</emph> dialog, select \"dBASE\"."
+msgstr "En el cuadro <emph>Tipo de base de datos</emph> del diálogo <emph>Propiedades de la base de datos</emph>, seleccione \"dBASE\"."
+
+#: dbase_files.xhp#par_idN107A6.help.text
+msgid "Click <emph>Next</emph>."
+msgstr "Haga clic en <emph>Siguiente</emph>."
+
+#: dbase_files.xhp#par_idN107AE.help.text
+msgid "Click <emph>Browse</emph>."
+msgstr "Haga clic en <emph>Examinar</emph>."
+
+#: dbase_files.xhp#par_idN107B6.help.text
+msgid "Locate the directory that contains the dBASE file, and click <emph>OK</emph>."
+msgstr "Ubique el directorio que contiene el archivo dBASE, y presione clic en <emph>Aceptar</emph>."
+
+#: dbase_files.xhp#par_idN107BE.help.text
+msgid "Click <emph>Create</emph>."
+msgstr "Haga clic en <emph>Crear</emph>."
+
+#: dbase_files.xhp#par_idN107F1.help.text
+msgid "To Save a Spreadsheet as a dBASE File"
+msgstr "Para guardar una hoja de cálculo como un archivo dBASE"
+
+#: dbase_files.xhp#par_idN107F8.help.text
+msgid "Choose <emph>File - Save As</emph>."
+msgstr "Elija <emph>Archivo - Guardar como</emph>."
+
+#: dbase_files.xhp#par_idN10800.help.text
+msgid "In the <emph>File format</emph> box, select \"dBASE file\"."
+msgstr "En la casilla <emph>Formato Archivo</emph>, seleccione \"archivo dBASE\"."
+
+#: dbase_files.xhp#par_idN107F9.help.text
+msgid "In the <emph>File name</emph> box, type a name for the dBASE file."
+msgstr "En la casilla <emph>Nombre de archivo</emph>, introduzca un nombre para el archivo dBASE."
+
+#: dbase_files.xhp#par_idN10801.help.text
+msgctxt "dbase_files.xhp#par_idN10801.help.text"
+msgid "Click <emph>Save</emph>."
+msgstr "Haga clic en <emph>Guardar</emph>."
+
+#: dbase_files.xhp#par_idN10808.help.text
+msgid "Only the data on the current sheet is exported."
+msgstr "Sólo se exportan los datos de la hoja actual."
+
+#: format_value_userdef.xhp#tit.help.text
+msgid "User-defined Number Formats"
+msgstr "Formatos numéricos definidos por el usuario"
+
+#: format_value_userdef.xhp#bm_id3143268.help.text
+msgid "<bookmark_value>numbers;user-defined formatting</bookmark_value> <bookmark_value>formatting; user-defined numbers</bookmark_value> <bookmark_value>number formats; millions</bookmark_value> <bookmark_value>format codes; user-defined number formats</bookmark_value>"
+msgstr "<bookmark_value>números; formato definido por el usuario</bookmark_value> <bookmark_value>formato;números definidos por el usuario</bookmark_value> <bookmark_value>formatos de números; millones</bookmark_value> <bookmark_value>códigos de formatos; formatos numéricos definidos por el usuario</bookmark_value>"
+
+#: format_value_userdef.xhp#hd_id3143268.26.help.text
+msgid "<variable id=\"format_value_userdef\"><link href=\"text/scalc/guide/format_value_userdef.xhp\" name=\"User-defined Number Formats\">User-defined Number Formats</link></variable>"
+msgstr "<variable id=\"format_value_userdef\"><link href=\"text/scalc/guide/format_value_userdef.xhp\" name=\"Formatos numéricos definidos por el usuario\">Formatos numéricos definidos por el usuario</link></variable>"
+
+#: format_value_userdef.xhp#par_id3150400.1.help.text
+msgid "You can define your own number formats to display numbers in <item type=\"productname\">%PRODUCTNAME</item> Calc."
+msgstr "$[officename] Calc permite definir formatos propios para la presentación de valores numéricos."
+
+#: format_value_userdef.xhp#par_id3150767.2.help.text
+msgid "As an example, to display the number 10,200,000 as 10.2 Million:"
+msgstr "Por ejemplo, para mostrar el número 10.200.000 como 10,2 millones:"
+
+#: format_value_userdef.xhp#par_id3150868.3.help.text
+msgid "Select the cells to which you want to apply a new, user-defined format."
+msgstr "Seleccione las celdas a las que desea aplicar un nuevo formato definido por el usuario."
+
+#: format_value_userdef.xhp#par_id3149664.4.help.text
+msgid "Choose <emph>Format - Cells - Numbers</emph>."
+msgstr "Seleccione <emph>Formato - Celda - Números</emph>."
+
+#: format_value_userdef.xhp#par_id3149260.5.help.text
+msgid "In the <emph>Categories</emph> list box select \"User-defined\"."
+msgstr "Seleccione \"Definido por el usuario\" en el listado <emph>Categoría</emph>."
+
+#: format_value_userdef.xhp#par_id3148646.6.help.text
+msgid "In the <emph>Format code</emph> text box enter the following code:"
+msgstr "Escriba el siguiente código en el cuadro de texto <emph>Código del formato</emph>:"
+
+#: format_value_userdef.xhp#par_id3152596.7.help.text
+msgctxt "format_value_userdef.xhp#par_id3152596.7.help.text"
+msgid "0.0,, \"Million\""
+msgstr "0.0,, \"millones\""
+
+#: format_value_userdef.xhp#par_id3144764.8.help.text
+msgid "Click OK."
+msgstr "Pulse Aceptar."
+
+#: format_value_userdef.xhp#par_id3155417.9.help.text
+msgid "The following table shows the effects of rounding, thousands delimiters (,), decimal delimiters (.) and the placeholders # and 0."
+msgstr "En la tabla siguiente se muestran los efectos del redondeo, el separador de miles (,), el separador de decimales (.) y los comodines # y 0."
+
+#: format_value_userdef.xhp#par_id3146971.10.help.text
+msgid "Number"
+msgstr "Número"
+
+#: format_value_userdef.xhp#par_id3154757.11.help.text
+msgid ".#,, \"Million\""
+msgstr ".#,, \"millones\""
+
+#: format_value_userdef.xhp#par_id3147338.12.help.text
+msgctxt "format_value_userdef.xhp#par_id3147338.12.help.text"
+msgid "0.0,, \"Million\""
+msgstr "0.0,, \"millones\""
+
+#: format_value_userdef.xhp#par_id3146920.13.help.text
+msgid "#,, \"Million\""
+msgstr "#,, \"millones\""
+
+#: format_value_userdef.xhp#par_id3147344.14.help.text
+msgid "10200000"
+msgstr "10200000"
+
+#: format_value_userdef.xhp#par_id3147003.15.help.text
+msgctxt "format_value_userdef.xhp#par_id3147003.15.help.text"
+msgid "10.2 Million"
+msgstr "10.2 millones"
+
+#: format_value_userdef.xhp#par_id3166426.16.help.text
+msgctxt "format_value_userdef.xhp#par_id3166426.16.help.text"
+msgid "10.2 Million"
+msgstr "10.2 millones"
+
+#: format_value_userdef.xhp#par_id3155113.17.help.text
+msgid "10 Million"
+msgstr "10 millones"
+
+#: format_value_userdef.xhp#par_id3150369.18.help.text
+msgid "500000"
+msgstr "500000"
+
+#: format_value_userdef.xhp#par_id3145585.19.help.text
+msgid ".5 Million"
+msgstr ".5 millones"
+
+#: format_value_userdef.xhp#par_id3154486.20.help.text
+msgid "0.5 Million"
+msgstr "0.5 millones"
+
+#: format_value_userdef.xhp#par_id3146114.21.help.text
+msgid "1 Million"
+msgstr "1 millones"
+
+#: format_value_userdef.xhp#par_id3155810.22.help.text
+msgid "100000000"
+msgstr "100000000"
+
+#: format_value_userdef.xhp#par_id3153818.23.help.text
+msgid "100. Million"
+msgstr "100. millones"
+
+#: format_value_userdef.xhp#par_id3151241.24.help.text
+msgid "100.0 Million"
+msgstr "100.0 millones"
+
+#: format_value_userdef.xhp#par_id3144771.25.help.text
+msgid "100 Million"
+msgstr "100 millones"
+
+#: borders.xhp#tit.help.text
+msgid "User Defined Borders in Cells "
+msgstr "Bordes definidos por el usuario en celdas "
+
+#: borders.xhp#bm_id3457441.help.text
+msgid "<bookmark_value>cells;borders</bookmark_value> <bookmark_value>line arrangements with cells</bookmark_value> <bookmark_value>borders;cells</bookmark_value>"
+msgstr "<bookmark_value>celdas;bordes</bookmark_value> <bookmark_value>disposición en celdas</bookmark_value> <bookmark_value>bordes;celdas</bookmark_value>"
+
+#: borders.xhp#hd_id4544816.help.text
+msgid "<variable id=\"borders\"><link href=\"text/scalc/guide/borders.xhp\">User Defined Borders in Cells</link></variable>"
+msgstr "<variable id=\"borders\"><link href=\"text/scalc/guide/borders.xhp\">Bordes definidos por el usuario en celdas</link></variable>"
+
+#: borders.xhp#par_id2320017.help.text
+msgid "You can apply a variety of different lines to selected cells."
+msgstr "Puede aplicar a las celdas seleccionadas distintas clases de líneas."
+
+#: borders.xhp#par_id8055665.help.text
+msgid "Select the cell or a block of cells."
+msgstr "Seleccione una celda o un bloque de celdas."
+
+#: borders.xhp#par_id9181188.help.text
+msgid "Choose <item type=\"menuitem\">Format - Cells</item>."
+msgstr "Elija <item type=\"menuitem\">Formato - Celdas</item>."
+
+#: borders.xhp#par_id9947508.help.text
+msgid "In the dialog, click the <emph>Borders</emph> tab."
+msgstr "En el diálogo, haga clic en la pestaña <emph>Bordes</emph>."
+
+#: borders.xhp#par_id7907956.help.text
+msgid "Choose the border options you want to apply and click OK."
+msgstr "Una vez seleccionadas las opciones para los bordes, haga clic en Aceptar para aplicarlas."
+
+#: borders.xhp#par_id1342204.help.text
+msgid "The options in the <emph>Line arrangement</emph> area can be used to apply multiple border styles."
+msgstr "Las opciones del área <emph>Disposición de líneas</emph> pueden usarse para aplicar varios estilos de borde."
+
+#: borders.xhp#hd_id4454481.help.text
+msgid "Selection of cells"
+msgstr "Selección de celdas"
+
+#: borders.xhp#par_id7251503.help.text
+msgid "Depending on the selection of cells, the area looks different."
+msgstr "El aspecto del área cambia en función de las celdas que se seleccionen."
+
+#: borders.xhp#par_id8716696.help.text
+msgid "Selection"
+msgstr "Selección"
+
+#: borders.xhp#par_id4677877.help.text
+msgid "Line arrangement area"
+msgstr "Área de disposición de líneas"
+
+#: borders.xhp#par_id807824.help.text
+msgid "One cell"
+msgstr "Una celda"
+
+#: borders.xhp#par_id8473464.help.text
+msgid "<image id=\"img_id1737113\" src=\"res/helpimg/border_ca_1.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1737113\">borders with one cell selected</alt></image>"
+msgstr "<image id=\"img_id1737113\" src=\"res/helpimg/border_ca_1.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1737113\">bordes con una celda seleccionada</alt></image>"
+
+#: borders.xhp#par_id3509933.help.text
+msgid "Cells in a column"
+msgstr "Celdas en una columna"
+
+#: borders.xhp#par_id6635639.help.text
+msgid "<image id=\"img_id1680959\" src=\"res/helpimg/border_ca_2.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1680959\">borders with a column selected</alt></image>"
+msgstr "<image id=\"img_id1680959\" src=\"res/helpimg/border_ca_2.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1680959\">bordes con una columna seleccionada</alt></image>"
+
+#: borders.xhp#par_id8073366.help.text
+msgid "Cells in a row"
+msgstr "Celdas en una fila"
+
+#: borders.xhp#par_id6054567.help.text
+msgid "<image id=\"img_id9623096\" src=\"res/helpimg/border_ca_3.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id9623096\">borders with a row selected</alt></image>"
+msgstr "<image id=\"img_id9623096\" src=\"res/helpimg/border_ca_3.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id9623096\">bordes con una fila seleccionada</alt></image>"
+
+#: borders.xhp#par_id466322.help.text
+msgid "Cells in a block of 2x2 or more"
+msgstr "Celdas en un bloque de 2x2 o más"
+
+#: borders.xhp#par_id4511551.help.text
+msgid "<image id=\"img_id8139591\" src=\"res/helpimg/border_ca_4.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id8139591\">borders with a block selected</alt></image>"
+msgstr "<image id=\"img_id8139591\" src=\"res/helpimg/border_ca_4.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id8139591\">bordes con un bloque seleccionado</alt></image>"
+
+#: borders.xhp#par_id5383465.help.text
+msgid "You cannot apply borders to multiple selections."
+msgstr "Los bordes no se pueden aplicar a varias selecciones."
+
+#: borders.xhp#hd_id7790154.help.text
+msgid "Default Settings"
+msgstr "Configuración predeterminada"
+
+#: borders.xhp#par_id2918485.help.text
+msgid "Click one of the <emph>Default</emph> icons to set or reset multiple borders."
+msgstr "Haga clic en uno de los iconos <emph>Predeterminado</emph> para ajustar o restablecer varios bordes."
+
+#: borders.xhp#par_id1836909.help.text
+msgid "The thin gray lines inside an icon show the borders that will be reset or cleared."
+msgstr "Las líneas finas grises dentro de un icono muestran los bordes que se restablecerán o suprimirán."
+
+#: borders.xhp#par_id5212561.help.text
+msgid "The dark lines inside an icon show the lines that will be set using the selected line style and color."
+msgstr "Las líneas oscuras dentro de un icono muestran las líneas que se ajustarán mediante el estilo de línea y el color que se haya seleccionado."
+
+#: borders.xhp#par_id4818872.help.text
+msgid "The thick gray lines inside an icon show the lines that will not be changed."
+msgstr "Las líneas gruesas grises dentro de un icono muestran las líneas que no se van a cambiar."
+
+#: borders.xhp#hd_id8989226.help.text
+msgctxt "borders.xhp#hd_id8989226.help.text"
+msgid "Examples"
+msgstr "Ejemplos"
+
+#: borders.xhp#par_id622577.help.text
+msgid "Select a block of about 8x8 cells, then choose <emph>Format - Cells - Borders</emph>."
+msgstr "Seleccione un bloque de 8x8 celdas, aproximadamente, y elija <emph>Formato - Celdas - Bordes</emph>."
+
+#: borders.xhp#par_id8119754.help.text
+msgid "<image id=\"img_id7261268\" src=\"res/helpimg/border_ca_5.png\" width=\"1.0937in\" height=\"0.2189in\"><alt id=\"alt_id7261268\">default icon row of Borders tab page</alt></image>"
+msgstr "<image id=\"img_id7261268\" src=\"res/helpimg/border_ca_5.png\" width=\"1.0937in\" height=\"0.2189in\"><alt id=\"alt_id7261268\">fila de símbolos predeterminados de la ficha Bordes</alt></image>"
+
+#: borders.xhp#par_id8964201.help.text
+msgid "Click the left icon to clear all lines. This removes all outer borders, all inner lines, and all diagonal lines."
+msgstr "Haga clic en el icono de la izquierda para suprimir todas las líneas. Esta acción quita todos los bordes externos, así como todas las líneas internas y en diagonal."
+
+#: borders.xhp#par_id6048463.help.text
+msgid "Click the second icon from the left to set an outer border and to remove all other lines."
+msgstr "Haga clic en el segundo icono de la izquierda para establecer un borde exterior y quitar todas las demás líneas."
+
+#: borders.xhp#par_id1495406.help.text
+msgid "Click the rightmost icon to set an outer border. The inner lines are not changed, except the diagonal lines, which will be removed."
+msgstr "Haga clic en el icono situado más a la derecha para establecer un borde exterior. Las líneas internas no se modifican, salvo las diagonales, que se quitan."
+
+#: borders.xhp#par_id9269386.help.text
+msgid "Now you can continue to see which lines the other icons will set or remove."
+msgstr "A partir de aquí, prosiga para comprobar las líneas que establecen o quitan los demás iconos."
+
+#: borders.xhp#hd_id3593554.help.text
+msgid "User Defined Settings"
+msgstr "Configuración definida por el usuario"
+
+#: borders.xhp#par_id4018066.help.text
+msgid "In the <emph>User defined</emph> area, you can click to set or remove individual lines. The preview shows lines in three different states. "
+msgstr "En el área <emph>definida por el usuario</emph>, puede hacer clic para establecer o quitar líneas determinadas. La vista previa muestra las líneas en tres estados. "
+
+#: borders.xhp#par_id8004699.help.text
+msgid "Repeatedly click an edge or a corner to switch through the three different states."
+msgstr "Para alternar entre los tres, haga clic repetidamente en un extremo o una esquina."
+
+#: borders.xhp#par_id8037659.help.text
+msgid "Line types"
+msgstr "Tipos de línea"
+
+#: borders.xhp#par_id2305978.help.text
+msgid "Image"
+msgstr "Imagen"
+
+#: borders.xhp#par_id8716086.help.text
+msgid "Meaning"
+msgstr "Significado"
+
+#: borders.xhp#par_id3978087.help.text
+msgid "A black line"
+msgstr "Línea negra"
+
+#: borders.xhp#par_id4065065.help.text
+msgid "<image id=\"img_id9379863\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9379863\">solid line for user defined border</alt></image>"
+msgstr "<image id=\"img_id9379863\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9379863\">línea continua para borde definido por el usuario</alt></image>"
+
+#: borders.xhp#par_id6987823.help.text
+msgid "A black line sets the corresponding line of the selected cells. The line is shown as a dotted line when you choose the 0.05 pt line style. Double lines are shown when you select a double line style."
+msgstr "La línea negra establece la línea correspondiente de las celdas seleccionadas. La línea se muestra discontinua si selecciona el estilo de línea de 0,05 pt. Se muestran líneas dobles al seleccionar un estilo de línea doble."
+
+#: borders.xhp#par_id1209143.help.text
+msgid "A gray line"
+msgstr "Línea gris"
+
+#: borders.xhp#par_id6653340.help.text
+msgid "<image id=\"img_id6972563\" src=\"res/helpimg/border_ca_gray.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id6972563\">gray line for user defined border</alt></image>"
+msgstr "<image id=\"img_id6972563\" src=\"res/helpimg/border_ca_gray.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id6972563\">línea gris para borde definido por el usuario</alt></image>"
+
+#: borders.xhp#par_id2278817.help.text
+msgid "A gray line is shown when the corresponding line of the selected cells will not be changed. No line will be set or removed at this position."
+msgstr "Cuando no se va a cambiar la línea correspondiente a las celdas seleccionadas, se muestra una línea gris. En esta posición no se agrega ni quita ninguna línea."
+
+#: borders.xhp#par_id5374919.help.text
+msgid "A white line"
+msgstr "Línea blanca"
+
+#: borders.xhp#par_id52491.help.text
+msgid "<image id=\"img_id3801080\" src=\"res/helpimg/border_ca_white.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id3801080\">white line for user defined border</alt></image>"
+msgstr "<image id=\"img_id3801080\" src=\"res/helpimg/border_ca_white.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id3801080\">línea blanca para borde definido por el usuario</alt></image>"
+
+#: borders.xhp#par_id372325.help.text
+msgid "A white line is shown when the corresponding line of the selected cells will be removed."
+msgstr "Cuando se va a quitar la línea correspondiente a las celdas seleccionadas, se muestra una línea blanca."
+
+#: borders.xhp#hd_id7282937.help.text
+msgctxt "borders.xhp#hd_id7282937.help.text"
+msgid "Examples"
+msgstr "Ejemplos"
+
+#: borders.xhp#par_id4230780.help.text
+msgid "Select a single cell, then choose <emph>Format - Cells - Borders</emph>."
+msgstr "Seleccione una celda y elija <emph>Formato - Celdas - Bordes</emph>."
+
+#: borders.xhp#par_id1712393.help.text
+msgid "Click the lower edge to set a very thin line as a lower border. All other lines will be removed from the cell."
+msgstr "Haga clic en el extremo inferior para definir como borde inferior una línea muy fina. Las demás líneas se quitarán de la celda."
+
+#: borders.xhp#par_id5149693.help.text
+msgid "<image id=\"img_id9467452\" src=\"res/helpimg/border_ca_6.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9467452\">setting a thin lower border</alt></image>"
+msgstr "<image id=\"img_id9467452\" src=\"res/helpimg/border_ca_6.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9467452\">definición de borde inferior con una línea fina</alt></image>"
+
+#: borders.xhp#par_id5759453.help.text
+msgid "Choose a thicker line style and click the lower edge. This sets a thicker line as a lower border."
+msgstr "Seleccione un estilo de línea más gruesa y haga clic en el extremo inferior. De esta forma, la línea más gruesa se convierte en un borde inferior."
+
+#: borders.xhp#par_id6342051.help.text
+msgid "<image id=\"img_id7431562\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id7431562\">setting a thick line as a border</alt></image>"
+msgstr "<image id=\"img_id7431562\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id7431562\">definición de borde inferior con una línea gruesa</alt></image>"
+
+#: borders.xhp#par_id5775322.help.text
+msgid "Click the second <emph>Default</emph> icon from the left to set all four borders. Then repeatedly click the lower edge until a white line is shown. This removes the lower border."
+msgstr "Haga clic en el segundo icono <emph>Predeterminado</emph> de la izquierda para establecer los cuatro bordes. A continuación, haga clic sucesivamente en el extremo inferior hasta que se muestre una línea blanca. Esta acción quita el borde inferior."
+
+#: borders.xhp#par_id2882778.help.text
+msgid "<image id=\"img_id8155766.00000001\" src=\"res/helpimg/border_ca_8.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id8155766.00000001\">removing lower border</alt></image>"
+msgstr "<image id=\"img_id8155766.00000001\" src=\"res/helpimg/border_ca_8.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id8155766.00000001\">supresión del borde inferior</alt></image>"
+
+#: borders.xhp#par_id8102053.help.text
+msgid "You can combine several line types and styles. The last image shows how to set thick outer borders (the thick black lines), while any diagonal lines inside the cell will not be touched (gray lines)."
+msgstr "Se pueden combinar distintos tipos y estilos de línea. En la última imagen se ilustra la forma de establecer bordes exteriores con líneas gruesas (las líneas negras gruesas) sin modificar las líneas en diagonal (líneas grises) que hay dentro de la celda."
+
+#: borders.xhp#par_id2102420.help.text
+msgid "<image id=\"img_id5380718\" src=\"res/helpimg/border_ca_9.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id5380718\">advanced example for cell borders</alt></image>"
+msgstr "<image id=\"img_id5380718\" src=\"res/helpimg/border_ca_9.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id5380718\">ejemplo complejo de bordes de celda</alt></image>"
+
+#: datapilot_tipps.xhp#tit.help.text
+#, fuzzy
+msgid "Selecting Pivot Table Output Ranges"
+msgstr "Seleccionar el área de resultado del Piloto de datos"
+
+#: datapilot_tipps.xhp#bm_id3148663.help.text
+#, fuzzy
+msgid "<bookmark_value>pivot table function; preventing data overwriting</bookmark_value><bookmark_value>output ranges of pivot tables</bookmark_value>"
+msgstr "<bookmark_value>Piloto de datos;evitar sobrescribir datos</bookmark_value><bookmark_value>áreas de resultado de tablas del Piloto de datos</bookmark_value>"
+
+#: datapilot_tipps.xhp#hd_id3148663.19.help.text
+#, fuzzy
+msgid "<variable id=\"datapilot_tipps\"><link href=\"text/scalc/guide/datapilot_tipps.xhp\" name=\"Selecting Pivot Table Output Ranges\">Selecting Pivot Table Output Ranges</link></variable>"
+msgstr "<variable id=\"datapilot_tipps\"><link href=\"text/scalc/guide/datapilot_tipps.xhp\" name=\"Seleccionar el área de resultado de la hoja del Piloto de datos\">Seleccionar el área de resultado de la hoja del Piloto de datos</link></variable>"
+
+#: datapilot_tipps.xhp#par_id3154123.20.help.text
+#, fuzzy
+msgid "Click the button <emph>More</emph> in the <emph>Pivot Table</emph> dialog. The dialog will be extended."
+msgstr "En el diálogo <emph>Piloto de datos</emph>, pulse en el botón <emph>Opciones</emph>. El diálogo se ampliará."
+
+#: datapilot_tipps.xhp#par_id3153771.21.help.text
+#, fuzzy
+msgid "You can select a named range in which the pivot table is to be created, from the <emph>Results to</emph> box. If the results range does not have a name, enter the coordinates of the upper left cell of the range into the field to the right of the <emph>Results to</emph> box. You can also click on the appropriate cell to have the coordinates entered accordingly."
+msgstr "En el listado <emph>Resultado en</emph> es posible seleccionar un área ya dotada de nombre en la cual colocar la hoja de cálculo del Piloto de datos. Si esta área carece de nombre, escriba las coordenadas de la celda superior izquierda del área en el campo que se muestra a la derecha del listado <emph>Resultado en</emph>. También puede pulsar en la celda para insertar directamente las coordenadas."
+
+#: datapilot_tipps.xhp#par_id3146974.23.help.text
+#, fuzzy
+msgid "If you mark the <emph>Ignore empty rows</emph> check box, they will not be taken into account when the pivot table is created."
+msgstr "Si selecciona la casilla de verificación <emph>Ignorar las filas vacías</emph>, éstas no se tendrán en cuenta para la creación de la tabla de Piloto de datos."
+
+#: datapilot_tipps.xhp#par_id3145273.24.help.text
+#, fuzzy
+msgid "If the <emph>Identify categories</emph> check box is marked, the categories will be identified by their headings and assigned accordingly when the pivot table is created."
+msgstr "Si selecciona la casilla <emph>Identificar las categorías</emph>, éstas quedarán identificadas mediante sus encabezados y asignadas según corresponda al crear la tabla de Piloto de datos."
+
+#: sorted_list.xhp#tit.help.text
+msgid "Applying Sort Lists"
+msgstr "Aplicar ordenación de listas"
+
+#: sorted_list.xhp#bm_id3150870.help.text
+msgid "<bookmark_value>filling;customized lists</bookmark_value><bookmark_value>sort lists;applying</bookmark_value><bookmark_value>defining;sort lists</bookmark_value><bookmark_value>geometric lists</bookmark_value><bookmark_value>arithmetic lists</bookmark_value><bookmark_value>series;sort lists</bookmark_value><bookmark_value>lists; user-defined</bookmark_value><bookmark_value>customized lists</bookmark_value>"
+msgstr "<bookmark_value>rellenar;listas personalizadas</bookmark_value><bookmark_value>ordenar listas;aplicar</bookmark_value><bookmark_value>aplicar;ordenar listas</bookmark_value><bookmark_value>definir;ordenar listas</bookmark_value><bookmark_value>listas geométricas</bookmark_value><bookmark_value>listas aritméticas</bookmark_value><bookmark_value>series;ordenar listas</bookmark_value><bookmark_value>listas; definidas por el usuario</bookmark_value><bookmark_value>listas personalizadas</bookmark_value>"
+
+#: sorted_list.xhp#hd_id3150870.3.help.text
+msgid "<variable id=\"sorted_list\"><link href=\"text/scalc/guide/sorted_list.xhp\" name=\"Applying Sort Lists\">Applying Sort Lists</link> </variable>"
+msgstr "<variable id=\"sorted_list\"><link href=\"text/scalc/guide/sorted_list.xhp\" name=\"Applying Sort Lists\">Aplicar Listas de Clasificación</link> </variable>"
+
+#: sorted_list.xhp#par_id3159154.7.help.text
+msgid "Sort lists allow you to type one piece of information in a cell, then drag it to fill in a consecutive list of items."
+msgstr "Las listas de clasificación permiten escribir un fragmento de información en una celda y arrastrarlo para convertirlo en una lista de elementos consecutivos."
+
+#: sorted_list.xhp#par_id3148645.4.help.text
+msgid "For example, enter the text \"Jan\" or \"January\" in an empty cell. Select the cell and click the mouse on the lower right corner of the cell border. Then drag the selected cell a few cells to the right or downwards. When you release the mouse button, the highlighted cells will be filled with the names of the months."
+msgstr "Por ejemplo, escriba el texto \"Ene\" o \"Enero\" en una celda vacía. Seleccione la celda y pulse el botón del ratón en la esquina inferior derecha del borde. Arrastre la celda seleccionada algunas celdas hacia la derecha o hacia abajo. Al soltar el botón del ratón, las celdas destacadas se rellenarán con los nombres de los meses."
+
+#: sorted_list.xhp#par_id2367931.help.text
+msgctxt "sorted_list.xhp#par_id2367931.help.text"
+msgid "Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> if you do not want to fill the cells with different values."
+msgstr ""
+
+#: sorted_list.xhp#par_id3152577.5.help.text
+msgid "The predefined series can be found under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists</emph>. You can also create your own lists of text strings tailored to your needs, such as a list of your company's branch offices. When you use the information in these lists later (for example, as headings), just enter the first name in the list and expand the entry by dragging it with your mouse."
+msgstr "The predefined series can be found under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - %PRODUCTNAME Calc - Listas ordenadas</emph>. Puede crear listas propias adaptadas a sus necesidades. por ejemplo: una lista de las oficinas regionales de su empresa. Al usar la información de estas listas (por ejemplo, como encabezados), sólo debe introducir el primer nombre de la lista y expandir los elementos arrastrándola con el ratón."
+
+#: sorted_list.xhp#par_id3147434.6.help.text
+msgctxt "sorted_list.xhp#par_id3147434.6.help.text"
+msgid "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">Sort lists</link>"
+msgstr "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Listas de clasificación\">Listas de clasificación</link>"
+
+#: calculate.xhp#tit.help.text
+msgid "Calculating in Spreadsheets"
+msgstr "Calcular en hojas de cálculo"
+
+#: calculate.xhp#bm_id3150791.help.text
+#, fuzzy
+msgid "<bookmark_value>spreadsheets; calculating</bookmark_value><bookmark_value>calculating; spreadsheets</bookmark_value><bookmark_value>formulas; calculating</bookmark_value>"
+msgstr "<bookmark_value>hojas de cálculo; calcular</bookmark_value> <bookmark_value>calcular; hojas de cálculo</bookmark_value> <bookmark_value>fórmulas; calcular</bookmark_value>"
+
+#: calculate.xhp#hd_id3150791.help.text
+msgid "<variable id=\"calculate\"><link href=\"text/scalc/guide/calculate.xhp\" name=\"Calculating in Spreadsheets\">Calculating in Spreadsheets</link></variable>"
+msgstr "<variable id=\"calculate\"><link href=\"text/scalc/guide/calculate.xhp\" name=\"Calcular en una hoja de cálculo\">Calcular en una hoja de cálculo</link></variable>"
+
+#: calculate.xhp#par_id3146120.help.text
+msgid "The following is an example of a calculation in $[officename] Calc."
+msgstr "A continuación, se muestra un ejemplo de cálculo en $[officename] Calc."
+
+#: calculate.xhp#par_id3153951.help.text
+msgid "Click in a cell, and type a number"
+msgstr "Haga clic en una celda y escriba un número"
+
+#: calculate.xhp#par_idN10656.help.text
+#, fuzzy
+msgid "Press Enter."
+msgstr "Pulse Intro."
+
+#: calculate.xhp#par_idN1065D.help.text
+msgid "The cursor moves down to the next cell."
+msgstr "El cursor se mueve hacia abajo, hasta la celda siguiente."
+
+#: calculate.xhp#par_id3155064.help.text
+msgid "Enter another number."
+msgstr "Escriba otro número."
+
+#: calculate.xhp#par_idN1066F.help.text
+msgid "Press the Tab key."
+msgstr ""
+
+#: calculate.xhp#par_idN10676.help.text
+msgid "The cursor moves to the right into the next cell."
+msgstr "El cursor se mueve a la derecha, hasta la celda siguiente."
+
+#: calculate.xhp#par_id3154253.help.text
+msgid "Type in a formula, for example, <item type=\"literal\">=A3 * A4 / 100.</item>"
+msgstr "Escriba una fórmula, por ejemplo <item type=\"literal\">=A3 * A4 / 100.</item>"
+
+#: calculate.xhp#par_idN1068B.help.text
+#, fuzzy
+msgid " Press Enter."
+msgstr "Pulse Intro."
+
+#: calculate.xhp#par_id3147343.help.text
+msgid "The result of the formula appears in the cell. If you want, you can edit the formula in the input line of the Formula bar."
+msgstr "El resultado de la fórmula aparece en la celda. Si lo desea, puede editar la fórmula en la línea de entrada de la barra de fórmulas."
+
+#: calculate.xhp#par_id3155378.help.text
+msgid "When you edit a formula, the new result is calculated automatically."
+msgstr "Al editar una fórmula, el resultado nuevo se calcula de forma automática."
+
+#: rounding_numbers.xhp#tit.help.text
+msgid "Using Rounded Off Numbers"
+msgstr "Utilizar números redondeados"
+
+#: rounding_numbers.xhp#bm_id3153361.help.text
+msgid "<bookmark_value>numbers; rounded off</bookmark_value><bookmark_value>rounded off numbers</bookmark_value><bookmark_value>exact numbers in $[officename] Calc</bookmark_value><bookmark_value>decimal places; showing</bookmark_value><bookmark_value>changing;number of decimal places</bookmark_value><bookmark_value>values;rounded in calculations</bookmark_value><bookmark_value>calculating;rounded off values</bookmark_value><bookmark_value>numbers; decimal places</bookmark_value><bookmark_value>precision as shown</bookmark_value><bookmark_value>rounding precision</bookmark_value><bookmark_value>spreadsheets; values as shown</bookmark_value>"
+msgstr "<bookmark_value>números; redondeados</bookmark_value><bookmark_value>números redondeados</bookmark_value><bookmark_value>números exactos en $[officename] Calc</bookmark_value><bookmark_value>número de decimales; mostrar</bookmark_value><bookmark_value>cambiar;número de decimales</bookmark_value><bookmark_value>valores;redondeados en cálculos</bookmark_value><bookmark_value>calcular;valores redondeados</bookmark_value><bookmark_value>números; número de decimales</bookmark_value><bookmark_value>precisión tal como se muestra</bookmark_value><bookmark_value>precisión de redondeado</bookmark_value><bookmark_value>tablas en hojas de cálculo; valores tal como se muestran</bookmark_value>"
+
+#: rounding_numbers.xhp#hd_id3156422.2.help.text
+msgid "<variable id=\"rounding_numbers\"><link href=\"text/scalc/guide/rounding_numbers.xhp\" name=\"Using Rounded Off Numbers\">Using Rounded Off Numbers</link></variable>"
+msgstr "<variable id=\"rounding_numbers\"><link href=\"text/scalc/guide/rounding_numbers.xhp\" name=\"Utilizar números redondeados\">Utilizar números redondeados</link></variable>"
+
+#: rounding_numbers.xhp#par_id3153726.3.help.text
+msgid "In $[officename] Calc, all decimal numbers are displayed rounded off to two decimal places."
+msgstr "En $[officename] Calc todos los decimales se redondearán a dos."
+
+#: rounding_numbers.xhp#hd_id3152596.4.help.text
+msgid "To change this for selected cells"
+msgstr "¿Puedo modificar esto en celdas seleccionadas?"
+
+#: rounding_numbers.xhp#par_id3154321.5.help.text
+msgid "Mark all the cells you want to modify."
+msgstr "Seleccione todas las celdas cuyo formato de número desee modificar."
+
+#: rounding_numbers.xhp#par_id3147428.6.help.text
+msgid "Choose <emph>Format - Cells</emph> and go to the <emph>Numbers</emph> tab page."
+msgstr "Seleccione <emph>Formato - Celda</emph> y vaya a la pestaña <emph>Números</emph>."
+
+#: rounding_numbers.xhp#par_id3153876.7.help.text
+msgid "In the <emph>Category</emph> field, select <emph>Number</emph>. Under <emph>Options</emph>, change the number of <emph>Decimal places</emph> and exit the dialog with OK."
+msgstr "En el campo <emph>Categoría</emph> seleccione la entrada <emph>Número</emph>. En <emph>Opciones</emph> modifique el número de los <emph>Decimales</emph> y cierre el diálogo con Aceptar."
+
+#: rounding_numbers.xhp#hd_id3155415.8.help.text
+msgid "To change this everywhere"
+msgstr "Para cambiar esto en todos lados"
+
+#: rounding_numbers.xhp#par_id3150715.9.help.text
+msgctxt "rounding_numbers.xhp#par_id3150715.9.help.text"
+msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph>."
+msgstr "Elija <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - %PRODUCTNAME Calc</emph>."
+
+#: rounding_numbers.xhp#par_id3153707.10.help.text
+msgid "Go to the <emph>Calculate</emph> page. Modify the number of <emph>Decimal places</emph> and exit the dialog with OK."
+msgstr "Pulse sobre <emph>Calcular</emph> y modifique el número de <emph>Decimales</emph>. Finalice el diálogo con Aceptar."
+
+#: rounding_numbers.xhp#hd_id3154755.11.help.text
+msgid "To calculate with the rounded off numbers instead of the internal exact values"
+msgstr "¿Puedo calcular con los valores redondeados mostrados en lugar de con los valores reales internos?"
+
+#: rounding_numbers.xhp#par_id3150045.12.help.text
+msgctxt "rounding_numbers.xhp#par_id3150045.12.help.text"
+msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph>."
+msgstr "Elija <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - %PRODUCTNAME Calc</emph>."
+
+#: rounding_numbers.xhp#par_id3146920.13.help.text
+msgid "Go to the <emph>Calculate</emph> page. Mark the <emph>Precision as shown</emph> field and exit the dialog with OK."
+msgstr "Vaya a la página <emph>Calcular</emph>. Marque la casilla <emph>Precisión acorde a lo mostrado</emph> y salga del diálogo pulsando \"Aceptar\"."
+
+#: rounding_numbers.xhp#par_id3145790.14.help.text
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Números</link>"
+
+#: rounding_numbers.xhp#par_id3147005.15.help.text
+msgid "<link href=\"text/shared/optionen/01060500.xhp\" name=\"Calculate\">Calculate</link>"
+msgstr "<link href=\"text/shared/optionen/01060500.xhp\" name=\"Calculate\">Calcular</link>"
+
+#: datapilot.xhp#tit.help.text
+#, fuzzy
+msgid "Pivot Table"
+msgstr "Tabla dinámica"
+
+#: datapilot.xhp#bm_id3150448.help.text
+#, fuzzy
+msgid "<bookmark_value>pivot table function; introduction</bookmark_value><bookmark_value>DataPilot, see pivot table function</bookmark_value>"
+msgstr "<bookmark_value>Piloto de datos;introducción</bookmark_value><bookmark_value>tabla dinámica, véase Piloto de datos</bookmark_value>"
+
+#: datapilot.xhp#hd_id3150448.7.help.text
+#, fuzzy
+msgid "<variable id=\"datapilot\"><link href=\"text/scalc/guide/datapilot.xhp\" name=\"Pivot Table\">Pivot Table</link></variable>"
+msgstr "<variable id=\"datapilot\"><link href=\"text/scalc/guide/datapilot.xhp\" name=\"DataPilot\">Piloto de datos</link></variable>"
+
+#: datapilot.xhp#par_id3156024.2.help.text
+#, fuzzy
+msgid "The <emph>pivot table</emph> (formerly known as <emph>DataPilot</emph>) allows you to combine, compare, and analyze large amounts of data. You can view different summaries of the source data, you can display the details of areas of interest, and you can create reports."
+msgstr "El Piloto de datos permite combinar, comparar y analizar grandes cantidades de datos. Se pueden ver distintos tipos de resumen de los datos fuente, así como mostrar detalles de las áreas de interés y generar informes."
+
+#: datapilot.xhp#par_id3145069.9.help.text
+#, fuzzy
+msgid "A table that has been created as a <link href=\"text/scalc/01/12090000.xhp\" name=\"pivot table\">pivot table</link> is an interactive table. Data can be arranged, rearranged or summarized according to different points of view."
+msgstr "Las tablas creadas mediante el <link href=\"text/scalc/01/12090000.xhp\" name=\"DataPilot\">Piloto de datos</link> son interactivas. Los datos se pueden disponer, redistribuir o resumir según distintos puntos de vista."
+
+#: formulas.xhp#tit.help.text
+msgid "Calculating With Formulas"
+msgstr "Calcular con fórmulas"
+
+#: formulas.xhp#bm_id3155411.help.text
+msgid "<bookmark_value>formulas;calculating with</bookmark_value><bookmark_value>calculating; with formulas</bookmark_value><bookmark_value>examples;formula calculation</bookmark_value>"
+msgstr "<bookmark_value>fórmulas;calcular con</bookmark_value><bookmark_value>calcular; con fórmulas</bookmark_value><bookmark_value>ejemplos;cálculo con fórmula</bookmark_value>"
+
+#: formulas.xhp#hd_id3155411.20.help.text
+msgid "<variable id=\"formulas\"><link href=\"text/scalc/guide/formulas.xhp\" name=\"Calculating With Formulas\">Calculating With Formulas</link></variable>"
+msgstr "<variable id=\"formulas\"> <link href=\"text/scalc/guide/formulas.xhp\" name=\" Calcular con fórmulas\"> Calcular con fórmulas</link> </variable>"
+
+#: formulas.xhp#par_id3156281.21.help.text
+msgid "All formulas begin with an equals sign. The formulas can contain numbers, text, arithmetic operators, logic operators, or functions."
+msgstr "Todos los formulas empiezan con el signo igual. Los formulas puede contener números, texto, operadores aritméticas, lógicas o funciones"
+
+#: formulas.xhp#par_id3145272.39.help.text
+msgid "Remember that the basic arithmetic operators (+, -, *, /) can be used in formulas using the \"Multiplication and Division before Addition and Subtraction\" rule. Instead of writing =SUM(A1:B1) you can write =A1+B1."
+msgstr "Recuerda que los operadores (+, -, *, /) puede ser usado en formulas usando la regla, \"Multiplicar y Dividir antes que Sumar y Restar\". En vez de escribir =SUM(A1:B1) puede escribir =A1+B1."
+
+#: formulas.xhp#par_id3146119.42.help.text
+msgid "Parentheses can also be used. The result of the formula =(1+2)*3 produces a different result than =1+2*3."
+msgstr "Se pueden utilizar paréntesis. El resultado de la fórmula =(1+2)*3 es distinto del resultado de =1+2*3."
+
+#: formulas.xhp#par_id3156285.23.help.text
+msgid "Here are a few examples of $[officename] Calc formulas:"
+msgstr "Aquí dispone de algunos ejemplos de fórmulas de $[officename] Calc:"
+
+#: formulas.xhp#par_id3154015.24.help.text
+msgid "=A1+10"
+msgstr "=A1+10"
+
+#: formulas.xhp#par_id3146972.25.help.text
+msgid "Displays the contents of cell A1 plus 10."
+msgstr "Muestra el contenido de A1 elevado a 10."
+
+#: formulas.xhp#par_id3145643.45.help.text
+msgid "=A1*16%"
+msgstr "=A1*16%"
+
+#: formulas.xhp#par_id3154255.46.help.text
+msgid "Displays 16% of the contents of A1."
+msgstr "Muestra un 16 porciento del contenido de A1."
+
+#: formulas.xhp#par_id3146917.47.help.text
+msgid "=A1 * A2"
+msgstr "=A1 * A2"
+
+#: formulas.xhp#par_id3146315.48.help.text
+msgid "Displays the result of the multiplication of A1 and A2."
+msgstr "Muestra el resultado de la multiplicación de A1 y A2."
+
+#: formulas.xhp#par_id3154022.26.help.text
+msgid "=ROUND(A1;1)"
+msgstr "=REDONDEAR(A1;1)"
+
+#: formulas.xhp#par_id3150363.27.help.text
+msgid "Displays the contents of cell A1 rounded to one decimal place."
+msgstr "Muestra el contenido de la celda A1 redondeado un decimal."
+
+#: formulas.xhp#par_id3150209.28.help.text
+msgid "=EFFECTIVE(5%;12)"
+msgstr "=INT.EFECTIVO(5%;12)"
+
+#: formulas.xhp#par_id3150883.29.help.text
+msgid "Calculates the effective interest for 5% annual nominal interest with 12 payments a year."
+msgstr "Calcula el interés efectivo para un interés nominal del 5% con 12 pagos anuales."
+
+#: formulas.xhp#par_id3146114.33.help.text
+msgid "=B8-SUM(B10:B14)"
+msgstr "=B8-SUMA(B10:B14)"
+
+#: formulas.xhp#par_id3154486.34.help.text
+msgid "Calculates B8 minus the sum of the cells B10 to B14."
+msgstr "Calcula B8 menos la suma de las celdas B10 a B14."
+
+#: formulas.xhp#par_id3152890.35.help.text
+msgid "=SUM(B8;SUM(B10:B14))"
+msgstr "=SUMA(B8;SUMA(B10:B14))"
+
+#: formulas.xhp#par_id3159171.36.help.text
+msgid "Calculates the sum of cells B10 to B14 and adds the value to B8."
+msgstr "Calcula la suma de las celdas B10 hasta B14 y añade el valor a B8"
+
+#: formulas.xhp#par_id3150109.30.help.text
+msgid "It is also possible to nest functions in formulas, as shown in the example. You can also nest functions within functions. The Function Wizard assists you with nested functions."
+msgstr "Como se muestra en el ejemplo, es posible anidar funciones dentro de fórmulas. También se pueden anidar funciones dentro de funciones. El Asistente para funciones sirve de ayuda para anidar funciones."
+
+#: formulas.xhp#par_id3150213.44.help.text
+msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"Functions list\">Functions list</link>"
+msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"Lista de las funciones\">Lista de las funciones</link>"
+
+#: formulas.xhp#par_id3152869.43.help.text
+msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Function Wizard</link>"
+msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"Asistente para funciones\">Asistente para funciones</link>"
+
+#: html_doc.xhp#tit.help.text
+msgid "Saving and Opening Sheets in HTML"
+msgstr "Guardar y abrir una hoja como HTML"
+
+#: html_doc.xhp#bm_id3150542.help.text
+msgid "<bookmark_value>HTML; sheets</bookmark_value><bookmark_value>sheets; HTML</bookmark_value><bookmark_value>saving; sheets in HTML</bookmark_value><bookmark_value>opening; sheets in HTML</bookmark_value>"
+msgstr "<bookmark_value>HTML;hojas</bookmark_value><bookmark_value>hojas;HTML</bookmark_value><bookmark_value>guardar;hojas en HTML</bookmark_value><bookmark_value>abrir;hojas en HTML</bookmark_value>"
+
+#: html_doc.xhp#hd_id3150542.1.help.text
+msgid "<variable id=\"html_doc\"><link href=\"text/scalc/guide/html_doc.xhp\" name=\"Saving and Opening Sheets in HTML\">Saving and Opening Sheets in HTML</link></variable>"
+msgstr "<variable id=\"html_doc\"><link href=\"text/scalc/guide/html_doc.xhp\" name=\"Guardar y abrir una hoja como HTML\">Guardar y abrir una hoja como HTML</link></variable>"
+
+#: html_doc.xhp#hd_id3154124.2.help.text
+msgid "Saving Sheets in HTML"
+msgstr "Guardar una hoja como HTML"
+
+#: html_doc.xhp#par_id3145785.3.help.text
+msgid "<item type=\"productname\">%PRODUCTNAME</item> Calc saves all the sheets of a Calc document together as an HTML document. At the beginning of the HTML document, a heading and a list of hyperlinks are automatically added which lead to the individual sheets within the document."
+msgstr "$[officename] Calc guarda todas las hojas de un documento de Calc en un único documento HTML. Al principio de dicho documento se agregan un encabezado y una lista de hipervínculos a cada una de las hojas individuales del documento."
+
+#: html_doc.xhp#par_id3155854.4.help.text
+msgid "Numbers are shown as written. In addition, in the <SDVAL> HTML tag, the exact internal number value is written so that after opening the HTML document with <item type=\"productname\">%PRODUCTNAME</item> you know you have the exact values."
+msgstr "Los números se escriben tal como se ven. Además en el HTML-Tag <SDVAL> se escribirá el valor interno exacto del número, de manera que después de abrir el documento HTML con $[officename] se podrá contar con los valores exactos."
+
+#: html_doc.xhp#par_id3153188.5.help.text
+msgid "To save the current Calc document as HTML, choose <emph>File - Save As</emph>."
+msgstr "Para guardar el documento actual de Calc como documento HTML, active <emph>Archivo - Guardar como</emph>."
+
+#: html_doc.xhp#par_id3148645.6.help.text
+msgid "In the <emph>File type</emph> list box, in the area with the other <item type=\"productname\">%PRODUCTNAME</item> Calc filters, choose the file type \"HTML Document (<item type=\"productname\">%PRODUCTNAME</item> Calc)\"."
+msgstr "En el cuadro de lista <emph>Tipo de archivo</emph>, en el área con otros filtros de Calc <item type=\"productname\">%PRODUCTNAME</item>, elija el tipo de archivo \"Documento HTML (<item type=\"productname\">%PRODUCTNAME</item> Calc)\"."
+
+#: html_doc.xhp#par_id3154729.7.help.text
+msgid "Enter a <emph>File name</emph> and click <emph>Save</emph>."
+msgstr "Escriba un <emph>Nombre de archivo</emph> y pulse en <emph>Guardar</emph>."
+
+#: html_doc.xhp#hd_id3149379.8.help.text
+msgid "Opening Sheets in HTML"
+msgstr "Abrir una hoja como HTML"
+
+#: html_doc.xhp#par_id3149959.10.help.text
+msgid "<item type=\"productname\">%PRODUCTNAME</item> offers various filters for opening HTML files, which you can select under <emph>File - Open</emph> in the <emph>Files of type</emph> list box:"
+msgstr "<item type=\"productname\">%PRODUCTNAME</item> incluye varios filtros para abrir archivos HTML, que pueden seleccionarse en <emph>Archivo - Abrir</emph> en el cuadro de lista <emph>Archivos de tipo</emph>:"
+
+#: html_doc.xhp#par_id3146969.15.help.text
+msgid "Choose the file type \"HTML Document (<item type=\"productname\">%PRODUCTNAME</item> Calc)\" to open in <item type=\"productname\">%PRODUCTNAME</item> Calc."
+msgstr "Elija el tipo de archivo \"Documento HTML ($[officename] Calc)\" para abrirlo en $[officename] Calc."
+
+#: html_doc.xhp#par_id3155446.16.help.text
+msgid "All <item type=\"productname\">%PRODUCTNAME</item> Calc options are now available to you. However, not all options that <item type=\"productname\">%PRODUCTNAME</item> Calc offers for editing can be saved in HTML format."
+msgstr "Todas las opciones de $[officename] Calc están disponibles. No obstante, no todas las opciones de edición de $[officename] Calc pueden guardarse en formato HTML."
+
+#: html_doc.xhp#par_id3150370.17.help.text
+msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"File - Open\">File - Open</link>"
+msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Archivo - Abrir\">Archivo - Abrir</link>"
+
+#: html_doc.xhp#par_id3150199.18.help.text
+msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"File - Save As\">File - Save As</link>"
+msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Archivo - Guardar como\">Archivo - Guardar como</link>"
+
+#: text_wrap.xhp#tit.help.text
+msgid "Writing Multi-line Text"
+msgstr "Escribir texto en varias líneas"
+
+#: text_wrap.xhp#bm_id3154346.help.text
+msgid "<bookmark_value>text in cells; multi-line</bookmark_value><bookmark_value>cells; text breaks</bookmark_value><bookmark_value>breaks in cells</bookmark_value><bookmark_value>multi-line text in cells</bookmark_value>"
+msgstr "<bookmark_value>texto de celdas;varias líneas</bookmark_value><bookmark_value>celdas;saltos de texto</bookmark_value><bookmark_value>saltos en celdas</bookmark_value><bookmark_value>texto de varias líneas en celdas</bookmark_value>"
+
+#: text_wrap.xhp#hd_id3154346.42.help.text
+msgid "<variable id=\"text_wrap\"><link href=\"text/scalc/guide/text_wrap.xhp\" name=\"Writing Multi-line Text\">Writing Multi-line Text</link></variable>"
+msgstr "<variable id=\"text_wrap\"><link href=\"text/scalc/guide/text_wrap.xhp\" name=\"Escribir texto en varias líneas\">Escribir texto en varias líneas</link></variable>"
+
+#: text_wrap.xhp#par_id3156280.41.help.text
+msgid "Pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter keys inserts a manual line break. This shortcut only works directly in the cell, not in the input line."
+msgstr "Al pulsar las teclas <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Control</defaultinline></switchinline> + Intro se inserta un salto de línea manual. Esta combinación de teclas sólo surte efecto en la celda, no en la línea de entrada."
+
+#: text_wrap.xhp#par_id3153142.43.help.text
+msgid "If you want the text to automatically break at the right border of the cell, proceed as follows:"
+msgstr "Para obtener saltos de línea de texto automáticos a la derecha de una celda, proceda de esta forma:"
+
+#: text_wrap.xhp#par_id3153951.44.help.text
+msgid "Select all the cells where you want the text to break at the right border."
+msgstr "Seleccione todas las celdas en las que el texto deba saltar al llegar al borde derecho."
+
+#: text_wrap.xhp#par_id3148575.45.help.text
+msgid "In <emph>Format - Cells - Alignment</emph>, mark the <emph>Wrap text automatically</emph> option and click OK."
+msgstr "En <emph>Formato - Celda - Alineación</emph> seleccione la opción <emph>Ajustar texto automáticamente</emph> y pulse Aceptar."
+
+#: text_wrap.xhp#par_id3145799.46.help.text
+msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cell\">Format - Cell</link>"
+msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Formato - Celda\">Formato - Celda</link>"
+
+#: database_sort.xhp#tit.help.text
+msgid "Sorting Data "
+msgstr "Ordenar datos "
+
+#: database_sort.xhp#bm_id3150767.help.text
+msgid "<bookmark_value>database ranges; sorting</bookmark_value> <bookmark_value>sorting; database ranges</bookmark_value> <bookmark_value>data;sorting in databases</bookmark_value>"
+msgstr "<bookmark_value>áreas de bases de datos;ordenar</bookmark_value> <bookmark_value>ordenar;áreas de bases de datos</bookmark_value> <bookmark_value>datos;ordenar en bases de datos</bookmark_value>"
+
+#: database_sort.xhp#hd_id3150767.44.help.text
+msgid "<variable id=\"database_sort\"><link href=\"text/scalc/guide/database_sort.xhp\" name=\"Sorting Database Ranges\">Sorting Data</link></variable>"
+msgstr "<variable id=\"database_sort\"><link href=\"text/scalc/guide/database_sort.xhp\" name=\"Sorting Database Ranges\">Ordenar datos</link></variable>"
+
+#: database_sort.xhp#par_id3145751.45.help.text
+msgid "Click in a database range."
+msgstr "Haga clic en un área de base de datos."
+
+#: database_sort.xhp#par_id121020081121549.help.text
+msgid "If you select a range of cells, only these cells will get sorted. If you just click one cell without selecting, then the whole database range will get sorted."
+msgstr "Si selecciona un área de celdas, sólo se ordenarán dichas celdas. Si sólo hace clic en una celda sin seleccionarla, se ordenará toda el área de la base de datos."
+
+#: database_sort.xhp#par_idN10635.help.text
+msgid "Choose <item type=\"menuitem\">Data - Sort</item>."
+msgstr "Elija <item type=\"menuitem\">Datos - Ordenar</item>."
+
+#: database_sort.xhp#par_id121020081121547.help.text
+msgid "The range of cells that will get sorted is shown in inverted colors."
+msgstr "El área de celdas que se ordenará se muestra en colores invertidos."
+
+#: database_sort.xhp#par_idN10645.help.text
+msgid "Select the sort options that you want."
+msgstr "Seleccione las opciones de ordenación que necesite."
+
+#: database_sort.xhp#par_idN1063D.help.text
+msgctxt "database_sort.xhp#par_idN1063D.help.text"
+msgid "Click <emph>OK</emph>."
+msgstr "Haga clic en <emph>Aceptar</emph>."
+
+#: database_sort.xhp#par_id1846980.help.text
+msgctxt "database_sort.xhp#par_id1846980.help.text"
+msgid "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\">Wiki page about defining a data range</link>"
+msgstr ""
+
+#: finding.xhp#tit.help.text
+msgid "Finding and Replacing in Calc"
+msgstr "Buscar y reemplazar en Calc"
+
+#: finding.xhp#bm_id3769341.help.text
+msgid "<bookmark_value>searching, see also finding</bookmark_value><bookmark_value>finding;formulas/values/text/objects</bookmark_value><bookmark_value>replacing; cell contents</bookmark_value><bookmark_value>formatting;multiple cell texts</bookmark_value>"
+msgstr "<bookmark_value>buscar</bookmark_value><bookmark_value>buscar;fórmulas/valores/texto/objetos</bookmark_value><bookmark_value>reemplazar; contenidos de celdas</bookmark_value><bookmark_value>dar formato;texto de varias celdas</bookmark_value>"
+
+#: finding.xhp#hd_id3149204.help.text
+msgid "<variable id=\"finding\"><link href=\"text/scalc/guide/finding.xhp\">Finding and Replacing in Calc</link></variable>"
+msgstr "<variable id=\"finding\"><link href=\"text/scalc/guide/finding.xhp\">Buscar y reemplazar en Calc</link></variable>"
+
+#: finding.xhp#par_id9363689.help.text
+msgid "In spreadsheet documents you can find words, formulas, and styles. You can navigate from one result to the next, or you can highlight all matching cells at once, then apply another format or replace the cell content by other content."
+msgstr "En documentos de hojas de cálculo se pueden buscar palabras, fórmulas y estilos. Puede ir de un resultado a otro o destacar todas las celdas que coinciden con la búsqueda para, a continuación, aplicar otro formato o reemplazar el contenido de la celda con otro contenido distinto."
+
+#: finding.xhp#hd_id3610644.help.text
+msgid "The Find & Replace dialog"
+msgstr "Diálogo Buscar y reemplazar"
+
+#: finding.xhp#par_id2224494.help.text
+msgid "Cells can contain text or numbers that were entered directly as in a text document. But cells can also contain text or numbers as the result of a calculation. For example, if a cell contains the formula =1+2 it displays the result 3. You must decide whether to search for the 1 respective 2, or to search the 3."
+msgstr "Las celdas pueden contener texto o números introducidos directamente como si se tratase de un documento de texto. Pero también pueden contener texto o números producto de un cálculo. Por ejemplo, si una celda contiene la fórmula =1+2, mostrará el resultado 3. Debe decidir si va a buscar el 1 y el 2, o el 3."
+
+#: finding.xhp#hd_id2423780.help.text
+msgid "To find formulas or values"
+msgstr "Para buscar fórmulas o valores"
+
+#: finding.xhp#par_id2569658.help.text
+msgid "You can specify in the Find & Replace dialog either to find the parts of a formula or the results of a calculation."
+msgstr "Puede especificar en el diálogo Buscar y reemplazar si desea buscar partes de una fórmula o el resultado de un cálculo."
+
+#: finding.xhp#par_id6394238.help.text
+msgctxt "finding.xhp#par_id6394238.help.text"
+msgid "Choose <emph>Edit - Find & Replace</emph> to open the Find & Replace dialog."
+msgstr "Seleccione <emph>Editar - Buscar y reemplazar</emph> para abrir el diálogo Buscar y reemplazar."
+
+#: finding.xhp#par_id7214270.help.text
+msgid "Click <emph>More Options</emph> to expand the dialog."
+msgstr "Haga clic en <emph>Más opciones</emph> para expandir el diálogo."
+
+#: finding.xhp#par_id2186346.help.text
+msgid "Select \"Formulas\" or \"Values\" in the <emph>Search in</emph> list box."
+msgstr "Seleccione \"Fórmulas\" o \"Valores\" en el cuadro de lista <emph>Buscar en</emph>."
+
+#: finding.xhp#par_id1331217.help.text
+msgid "With \"Formulas\" you will find all parts of the formulas. "
+msgstr "Si selecciona \"Fórmulas\" la herramienta de búsqueda buscará en todas la fórmulas. "
+
+#: finding.xhp#par_id393993.help.text
+msgid "With \"Values\" you will find the results of the calculations. "
+msgstr "Si selecciona \"Valores\" la herramienta de búsqueda buscará en los resultados de los cálculos. "
+
+#: finding.xhp#par_id3163853.help.text
+msgid "Cell contents can be formatted in different ways. For example, a number can be formatted as a currency, to be displayed with a currency symbol. You see the currency symbol in the cell, but you cannot search for it."
+msgstr "El formato del contenido de las celdas puede modificarse de diversas maneras. Por ejemplo, un número puede tener formato de divisa, para que aparezca con el símbolo de la divisa correspondiente. Puede ver el símbolo de la divisa pero no puede buscarlo."
+
+#: finding.xhp#hd_id7359233.help.text
+msgid "Finding text"
+msgstr "Buscar texto"
+
+#: finding.xhp#par_id6549272.help.text
+msgctxt "finding.xhp#par_id6549272.help.text"
+msgid "Choose <emph>Edit - Find & Replace</emph> to open the Find & Replace dialog."
+msgstr "Seleccione <emph>Editar - Buscar y reemplazar</emph> para abrir el diálogo Buscar y reemplazar."
+
+#: finding.xhp#par_id6529740.help.text
+msgid "Enter the text to find in the <emph>Search for</emph> text box."
+msgstr "Introduzca el texto que desea buscar en el cuadro de texto <emph>Buscar</emph>."
+
+#: finding.xhp#par_id9121982.help.text
+msgid "Either click <emph>Find</emph> or <emph>Find All</emph>."
+msgstr "Puede hacer clic en <emph>Buscar</emph> o en <emph>Buscar todo</emph>."
+
+#: finding.xhp#par_id3808404.help.text
+msgid "When you click <emph>Find</emph>, Calc will select the next cell that contains your text. You can watch and edit the text, then click <emph>Find</emph> again to advance to the next found cell. "
+msgstr "Al hacer clic en <emph>Buscar</emph>, Calc selecciona la siguiente celda que contiene el texto que busca. Puede ver y editar el texto y, a continuación, hacer clic en <emph>Buscar</emph> de nuevo para avanzar a la siguiente celda que contenga el texto. "
+
+#: finding.xhp#par_id2394482.help.text
+msgid "If you closed the dialog, you can press a key combination (<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F) to find the next cell without opening the dialog. "
+msgstr "Si se ha cerrado el diálogo, puede presionar la combinación de teclas (<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Mayúsc+F) para encontrar la próxima celda sin abrir el diálogo . "
+
+#: finding.xhp#par_id631733.help.text
+msgid "By default, Calc searches the current sheet. Click <emph>More Options</emph>, then enable <emph>Search in all sheets</emph> to search through all sheets of the document."
+msgstr "De forma predeterminada, Calc busca en la hoja activa. Haga clic en <emph>Más opciones</emph> y active la opción <emph>Buscar en todas las hojas</emph> para buscar en todas las hojas del documento."
+
+#: finding.xhp#par_id7811822.help.text
+msgid "When you click <emph>Find All</emph>, Calc selects all cells that contain your entry. Now you can for example set all found cells to bold, or apply a Cell Style to all at once."
+msgstr "Al hacer clic en <emph>Buscar todo</emph>, Calc selecciona todas las celdas que contiene el texto introducido. De este modo puede, por ejemplo, aplicar a todas las celdas coincidentes el formato de negrita o aplicar un estilo de celda determinado a todas a la vez."
+
+#: finding.xhp#hd_id8531449.help.text
+msgid "The Navigator"
+msgstr "El Navegador"
+
+#: finding.xhp#par_id9183935.help.text
+msgid "Choose <emph>View - Navigator</emph> to open the Navigator window."
+msgstr "Seleccione <emph>Editar - Navegador</emph> para abrir el Navegador."
+
+#: finding.xhp#par_id946684.help.text
+msgid "The Navigator is the main tool for finding and selecting objects."
+msgstr "El Navegador es la herramienta principal para buscar y seleccionar objetos."
+
+#: finding.xhp#par_id9607226.help.text
+msgid "Use the Navigator for inserting objects and links within the same document or from other open documents."
+msgstr "Utilice el Navegador para insertar objetos y vínculos dentro de un mismo documento o de otros documentos abiertos."
+
+#: row_height.xhp#tit.help.text
+msgid "Changing Row Height or Column Width"
+msgstr "Cambiar la altura de filas o la anchura de columnas"
+
+#: row_height.xhp#bm_id3145748.help.text
+msgid "<bookmark_value>heights of cells</bookmark_value><bookmark_value>cell heights</bookmark_value><bookmark_value>cell widths</bookmark_value><bookmark_value>cells; heights and widths</bookmark_value><bookmark_value>widths of cells</bookmark_value><bookmark_value>column widths</bookmark_value><bookmark_value>rows; heights</bookmark_value><bookmark_value>columns; widths</bookmark_value><bookmark_value>changing;row heights/column widths</bookmark_value>"
+msgstr "<bookmark_value>altos de celda</bookmark_value><bookmark_value>altos de celda</bookmark_value><bookmark_value>anchos de celda</bookmark_value><bookmark_value>celdas;altos y anchos</bookmark_value><bookmark_value>anchos de celda</bookmark_value><bookmark_value>anchos de columna</bookmark_value><bookmark_value>filas;altos</bookmark_value><bookmark_value>columnas;anchos</bookmark_value><bookmark_value>cambiar;altos de fila/anchos de columna</bookmark_value>"
+
+#: row_height.xhp#hd_id3145748.1.help.text
+msgid "<variable id=\"row_height\"><link href=\"text/scalc/guide/row_height.xhp\" name=\"Changing Row Height or Column Width\">Changing Row Height or Column Width</link></variable>"
+msgstr "<variable id=\"row_height\"><link href=\"text/scalc/guide/row_height.xhp\" name=\"Modificar altura de fila o ancho de columna\">Modificar altura de fila o ancho de columna</link></variable>"
+
+#: row_height.xhp#par_id3154017.2.help.text
+msgid "You can change the height of the rows with the mouse or through the dialog."
+msgstr "Podrá modificar la altura de las filas mediante el ratón o mediante un diálogo."
+
+#: row_height.xhp#par_id3154702.3.help.text
+msgid "What is described here for rows and row height applies accordingly for columns and column width."
+msgstr "Lo que aquí se describe sobre filas y altura de filas también es válido para las columnas y ancho de columnas."
+
+#: row_height.xhp#hd_id3153963.4.help.text
+msgid "Using the mouse to change the row height or column width"
+msgstr "Modicar altura de filas o ancho de columnas con el ratón"
+
+#: row_height.xhp#par_id3154020.5.help.text
+msgid "Click the area of the headers on the separator below the current row, keep the mouse button pressed and drag up or down in order to change the row height."
+msgstr "Pulse en el área del encabezado de las filas en la línea divisoria bajo la fila actual, mantenga el botón del ratón pulsado y arrastre hacia arriba o hacia abajo para modificar la altura de la fila."
+
+#: row_height.xhp#par_id3159237.6.help.text
+msgid "Select the optimal row height by double-clicking the separator below the row."
+msgstr "Podrá seleccionar la altura ideal de filas pulsando dos veces en la línea divisoria bajo la fila."
+
+#: row_height.xhp#hd_id3154659.7.help.text
+msgid "Using the dialog to change the row height or column width"
+msgstr "Modificar la altura de la fila o el ancho de la columna mediante diálogo"
+
+#: row_height.xhp#par_id3150367.8.help.text
+msgid "Click the row so that you achieve the focus."
+msgstr "Pulse en la fila para que esta se convierta en el foco."
+
+#: row_height.xhp#par_id3166432.9.help.text
+msgid "Start the context menu on the header at the left-hand side."
+msgstr "Active el menú contextual en el encabezado de fila a la izquierda."
+
+#: row_height.xhp#par_id3150519.10.help.text
+msgid "You will see the commands <emph>Row Height</emph> and <emph>Optimal row height</emph>. Choosing either opens a dialog."
+msgstr "Se pueden observar los comandos <emph>Altura de fila</emph> y <emph>Altura óptima de fila</emph>. Al seleccionar alguno de estos comandos se abrirá una caja de diálogo."
+
+#: row_height.xhp#par_id3154487.11.help.text
+msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Row height\">Row height</link>"
+msgstr "<link href=\"text/shared/01/05340100.xhp\" name=\"Altura de fila\">Altura de fila</link>"
+
+#: row_height.xhp#par_id3149408.12.help.text
+msgid "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal row height\">Optimal row height</link>"
+msgstr "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimar altura de fila\">Optimar altura de fila</link>"
+
+#: row_height.xhp#par_id3153305.13.help.text
+msgid "<link href=\"text/shared/01/05340200.xhp\" name=\"Column width\">Column width</link>"
+msgstr "<link href=\"text/shared/01/05340200.xhp\" name=\"Ancho de columna\">Ancho de columna</link>"
+
+#: row_height.xhp#par_id3153815.14.help.text
+msgid "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal column width\">Optimal column width</link>"
+msgstr "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimar ancho de columna\">Optimar ancho de columna</link>"
+
+#: format_value.xhp#tit.help.text
+msgid "Formatting Numbers With Decimals"
+msgstr "Dar formato a números con decimales"
+
+#: format_value.xhp#bm_id3145367.help.text
+msgid "<bookmark_value>numbers;formatting decimals</bookmark_value> <bookmark_value>formats; numbers in tables</bookmark_value> <bookmark_value>tables; number formats</bookmark_value> <bookmark_value>defaults; number formats in spreadsheets</bookmark_value> <bookmark_value>decimal places;formatting numbers</bookmark_value> <bookmark_value>formatting;numbers with decimals</bookmark_value> <bookmark_value>formatting;adding/deleting decimal places</bookmark_value> <bookmark_value>number formats; adding/deleting decimal places in cells</bookmark_value> <bookmark_value>deleting; decimal places</bookmark_value> <bookmark_value>decimal places; adding/deleting</bookmark_value>"
+msgstr "<bookmark_value>números; formatear decimales</bookmark_value> <bookmark_value>formatos; números en tablas</bookmark_value> <bookmark_value>tablas; formatos numéricos</bookmark_value> <bookmark_value>predeterminados; formatos numéricos en hojas de cálculo</bookmark_value> <bookmark_value>lugares decimales;formatear números</bookmark_value> <bookmark_value>formatear;números con decimales</bookmark_value> <bookmark_value>formatear;agregar o eliminar lugares decimales</bookmark_value> <bookmark_value>formatos numéricos; agregar o eliminar lugares decimales en celdas</bookmark_value> <bookmark_value>eliminar; lugares decimales</bookmark_value> <bookmark_value>lugares decimales; agregar o eliminar</bookmark_value>"
+
+#: format_value.xhp#hd_id3145367.4.help.text
+msgid "<variable id=\"format_value\"><link href=\"text/scalc/guide/format_value.xhp\" name=\"Formatting Numbers With Decimals\">Formatting Numbers With Decimals</link></variable>"
+msgstr "<variable id=\"format_value\"><link href=\"text/scalc/guide/format_value.xhp\" name=\"Formatear números con decimales\">Formatear números con decimales</link></variable>"
+
+#: format_value.xhp#par_id3148576.5.help.text
+msgid "Enter a number into the sheet, for example, 1234.5678. This number will be displayed in the default number format, with two decimal places. You will see 1234.57 when you confirm the entry. Only the display in the document will be rounded off; internally, the number retains all four decimal places after the decimal point."
+msgstr "Escriba un número en una hoja, por ejemplo 1234,5678. Este número se mostrará en formato estándar para números, el cual admite dos decimales, es decir, se verá: 1234,57. Este redondeo de decimales atañe sólo a la visualización en el documento, pues internamente el número contiene cuatro decimales."
+
+#: format_value.xhp#par_id3154012.12.help.text
+msgid "To format numbers with decimals:"
+msgstr "Para formatear números con decimales:"
+
+#: format_value.xhp#par_id3147394.6.help.text
+msgid "Set the cursor at the number and choose <emph>Format - Cells</emph> to start the <emph>Format Cells</emph> dialog."
+msgstr "Coloque el cursor junto al número y seleccione <emph>Formato - Celda</emph> para abrir el diálogo <emph>Formateado de celdas</emph>."
+
+#: format_value.xhp#par_id3153157.9.help.text
+msgid "On the <emph>Numbers</emph> tab you will see a selection of predefined number formats. In the bottom right in the dialog you will see a preview of how your current number would look if you were to give it a particular format."
+msgstr "En la pestaña <emph>Números</emph> verá una selección de formatos numéricos predeterminados. En la parte inferior derecha del diálogo verá la previsualización del aspecto del número actual, con el formato que se le haya asignado."
+
+#: format_value.xhp#par_id3155766.help.text
+msgid "<image id=\"img_id3149021\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149021\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149021\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149021\">Ícono</alt></image>"
+
+#: format_value.xhp#par_id3149256.10.help.text
+msgid "If you only want to modify the number of the decimal places displayed, the easiest method is to use the <emph>Number Format: Add Decimal Place</emph> or <emph>Number Format: Delete Decimal Place</emph> icons on the Formatting Bar."
+msgstr "Si sólo quiere modificar el número de posiciones decimales mostradas, lo más sencillo es utilizar los iconos <emph>Formato numérico: Agregar decimal</emph> o <emph>Formato numérico: Borrar decimal</emph> de la barra Formato."
+
+#: consolidate.xhp#tit.help.text
+msgid "Consolidating Data"
+msgstr "Consolidar datos"
+
+#: consolidate.xhp#bm_id3150791.help.text
+msgid "<bookmark_value>consolidating data</bookmark_value> <bookmark_value>ranges; combining</bookmark_value> <bookmark_value>combining;cell ranges</bookmark_value> <bookmark_value>tables; combining</bookmark_value> <bookmark_value>data; merging cell ranges</bookmark_value> <bookmark_value>merging;data ranges</bookmark_value>"
+msgstr "<bookmark_value>consolidar datos</bookmark_value> <bookmark_value>áreas; combinar</bookmark_value> <bookmark_value>combinar;áreas de celdas</bookmark_value> <bookmark_value>tablas; combinar</bookmark_value> <bookmark_value>datos; unir áreas de celdas</bookmark_value> <bookmark_value>unir;rangos de datos</bookmark_value>"
+
+#: consolidate.xhp#hd_id3150791.5.help.text
+msgid "<variable id=\"consolidate\"><link href=\"text/scalc/guide/consolidate.xhp\" name=\"Consolidating Data\">Consolidating Data</link></variable>"
+msgstr "<variable id=\"consolidate\"><link href=\"text/scalc/guide/consolidate.xhp\" name=\"Consolidar datos\">Consolidar datos</link></variable>"
+
+#: consolidate.xhp#par_id3153191.34.help.text
+msgid "During consolidation, the contents of the cells from several sheets will be combined in one place."
+msgstr "Durante la consolidación, el contenido de las celdas de diversas hojas se combina en un único lugar."
+
+#: consolidate.xhp#hd_id892056.help.text
+msgid "To Combine Cell Contents"
+msgstr "Para combinar el contenido de celdas"
+
+#: consolidate.xhp#par_id3151073.6.help.text
+msgid "Open the document that contains the cell ranges to be consolidated."
+msgstr "Vaya al documento en el que se encuentren las áreas que se deban consolidar."
+
+#: consolidate.xhp#par_id3154513.7.help.text
+msgid "Choose <item type=\"menuitem\">Data - Consolidate</item> to open the <emph>Consolidate</emph> dialog."
+msgstr "Elija <item type=\"menuitem\">Datos - Consolidar</item> para abrir el diálogo <emph>Consolidar</emph>."
+
+#: consolidate.xhp#par_id3147345.8.help.text
+msgid "From the <emph>Source data area</emph> box select a source cell range to consolidate with other areas."
+msgstr "En el cuadro <emph>Área de datos fuente</emph> seleccione un área de celdas fuente para consolidar con otras áreas."
+
+#: consolidate.xhp#par_id3149209.9.help.text
+msgid "If the range is not named, click in the field next to the <emph>Source data area</emph>. A blinking text cursor appears. Type a reference for the first source data range or select the range with the mouse."
+msgstr "Si el área no tiene nombre, haga clic sobre el campo de entrada de la derecha, junto al listado <emph>Área de datos fuente</emph>. Observe que el cursor de texto parpadea. Escriba ahí la referencia del primer área de datos fuente, o bien realice la selección en la hoja con el ratón."
+
+#: consolidate.xhp#par_id3155529.10.help.text
+msgid "Click <emph>Add</emph> to insert the selected range in the <emph>Consolidation areas</emph> field."
+msgstr "Haga clic en <emph>Agregar</emph> para insertar el área seleccionada en el campo <emph>Áreas de consolidación</emph>."
+
+#: consolidate.xhp#par_id3153816.11.help.text
+msgid "Select additional ranges and click <emph>Add</emph> after each selection."
+msgstr "A continuación seleccione las demás áreas siguiendo uno de los procedimientos indicados, y después de cada área pulse <emph>Agregar</emph>."
+
+#: consolidate.xhp#par_id3157983.12.help.text
+msgid "Specify where you want to display the result by selecting a target range from the <emph>Copy results to</emph> box."
+msgstr "Especifique dónde desea mostrar el resultado mediante la selección de un área destino en el cuadro <emph>Resultado a partir de</emph>."
+
+#: consolidate.xhp#par_id3150215.13.help.text
+msgid "If the target range is not named, click in the field next to <emph>Copy results to</emph> and enter the reference of the target range. Alternatively, you can select the range using the mouse or position the cursor in the top left cell of the target range."
+msgstr "Si el rango no es mencionado, haga clic en el campo situado junto a <emph>Copiar resultados para</emph> y entrar en la referencia del rango. También puede seleccionar el área con el ratón o situar el cursor en la celda superior izquierda de la misma."
+
+#: consolidate.xhp#par_id3153813.14.help.text
+msgid "Select a function from the <emph>Function</emph> box. The function specifies how the values of the consolidation ranges are linked. The \"Sum\" function is the default setting."
+msgstr "Seleccione una función en el cuadro <emph>Función</emph>. La función especifica de qué modo se relacionarán los valores de las áreas de consolidación. La función predeterminada es \"Suma\"."
+
+#: consolidate.xhp#par_id3149315.15.help.text
+msgid "Click <emph>OK</emph> to consolidate the ranges."
+msgstr "Haga clic en <emph>Aceptar</emph> para consolidar las áreas."
+
+#: consolidate.xhp#par_idN107DE.help.text
+msgid "Additional Settings"
+msgstr "Configuración adicional"
+
+#: consolidate.xhp#par_id3147250.16.help.text
+msgid "Click <emph>More</emph> in the <emph>Consolidate</emph> dialog to display additional settings:"
+msgstr "Haga clic en <emph>Opciones</emph> del diálogo <emph>Consolidar</emph> para mostrar la configuración adicional:"
+
+#: consolidate.xhp#par_id3156400.17.help.text
+msgid "Select <emph>Link to source data</emph> to insert the formulas that generate the results in the target range, rather than the actual results. If you link the data, any values modified in the source range are automatically updated in the target range."
+msgstr "Marque el campo <emph>Vincular con datos fuente</emph>. Ahora en el área de destino de la consolidación no se guardarán los resultados del cálculo como valores, sino las fórmulas con las que se han obtenido dichos resultados. De este modo, las modificaciones posteriores de una de las áreas fuente también modificarán el área de destino correspondiente."
+
+#: consolidate.xhp#par_id3150538.18.help.text
+msgid "The corresponding cell references in the target range are inserted in consecutive rows, which are automatically ordered and then hidden from view. Only the final result, based on the selected function, is displayed."
+msgstr "Las referencias de celdas conjuntas del área de destino se introducen en celdas seguidas; dichas celdas se estructuran y ocultan automáticamente y sólo se muestra el resultado final, correspondiente a la función seleccionada."
+
+#: consolidate.xhp#par_id3149945.19.help.text
+msgid "Under <emph>Consolidate by</emph>, select either <emph>Row labels</emph> or <emph>Column labels</emph> if the cells of the source data range are not to be consolidated corresponding to the identical position of the cell in the range, but instead according to a matching row label or column label."
+msgstr "En <emph>Consolidar según</emph>, seleccione <emph>Títulos de fila</emph> o <emph>Títulos de columna</emph> si las celdas del rango fuente de datos no se van a consolidar en relación con la posición idéntica de la celda en el rango, sino en relación con un título de fila o de columna que concuerde."
+
+#: consolidate.xhp#par_id3157871.20.help.text
+msgid "To consolidate by row labels or column labels, the label must be contained in the selected source ranges."
+msgstr "Para consolidar por títulos de fila o de columna la etiqueta debe contenerse en los rangos fuentes seleccionados."
+
+#: consolidate.xhp#par_id3150478.21.help.text
+msgid "The text in the labels must be identical, so that rows or columns can be accurately matched. If the row or column label does not match any that exist in the target range, it will be appended as a new row or column."
+msgstr "El texto de los títulos debe ser idéntico, de manera que las filas o las columnas se pueden hacer coincidir con precisión. Si el título de la fila o de la columna no coincide con ninguno que exista en el rango destino se agregará como una nueva fila o columna."
+
+#: consolidate.xhp#par_id3147468.22.help.text
+msgid "The data from the consolidation ranges and target range will be saved when you save the document. If you later open a document in which consolidation has been defined, this data will again be available."
+msgstr "Se guardarán los datos de las áreas de consolidación y de destino. Al abrir un documento en el que se haya definido una consolidación, los datos volverán a estar disponibles."
+
+#: consolidate.xhp#par_id3153039.33.help.text
+msgid "<link href=\"text/scalc/01/12070000.xhp\" name=\"Data - Consolidate\">Data - Consolidate</link>"
+msgstr "<link href=\"text/scalc/01/12070000.xhp\" name=\"Datos - Consolidar\">Datos - Consolidar</link>"
+
+#: address_auto.xhp#tit.help.text
+msgid "Recognizing Names as Addressing"
+msgstr "Reconocer nombres como referencia"
+
+#: address_auto.xhp#bm_id3148797.help.text
+msgid "<bookmark_value>automatic addressing in tables</bookmark_value> <bookmark_value>natural language addressing</bookmark_value> <bookmark_value>formulas; using row/column labels</bookmark_value> <bookmark_value>text in cells; as addressing</bookmark_value> <bookmark_value>addressing; automatic</bookmark_value> <bookmark_value>name recognition on/off</bookmark_value> <bookmark_value>row headers;using in formulas</bookmark_value> <bookmark_value>column headers;using in formulas</bookmark_value> <bookmark_value>columns; finding labels automatically</bookmark_value> <bookmark_value>rows; finding labels automatically</bookmark_value> <bookmark_value>recognizing; column and row labels</bookmark_value>"
+msgstr "<bookmark_value>direccionamiento automático en tablas</bookmark_value><bookmark_value>direccionamiento de lenguaje natural</bookmark_value><bookmark_value>fórmulas; uso de etiquetas de fila/columna</bookmark_value><bookmark_value>texto de celdas; como direccionamiento</bookmark_value><bookmark_value>direccionamiento; automático</bookmark_value><bookmark_value>reconocimiento de nombres activado/desactivado</bookmark_value><bookmark_value>encabezados de fila;usar en fórmulas</bookmark_value><bookmark_value>encabezados de columna;usar en fórmulas</bookmark_value><bookmark_value>columnas; detectar etiquetas automáticamente</bookmark_value><bookmark_value>filas; detectar etiquetas automáticamente</bookmark_value><bookmark_value>reconocer; etiquetas de columnas y filas</bookmark_value>"
+
+#: address_auto.xhp#hd_id3148797.20.help.text
+msgid "<variable id=\"address_auto\"><link href=\"text/scalc/guide/address_auto.xhp\" name=\"Recognizing Names as Addressing\">Recognizing Names as Addressing</link></variable>"
+msgstr "<variable id=\"address_auto\"><link href=\"text/scalc/guide/address_auto.xhp\" name=\"Recognizing Names as Addressing\">Reconocer un nombre como referencia</link></variable>"
+
+#: address_auto.xhp#par_id3152597.21.help.text
+msgid "You can use cells with text to refer to the rows or to the columns that contain the cells."
+msgstr "Puede utilizar celdas con texto para hacer referencia a las filas o las columnas que las contienen."
+
+#: address_auto.xhp#par_id3156283.help.text
+msgid "<image id=\"img_id3154942\" src=\"res/helpimg/names_as_addressing.png\" width=\"2.1291in\" height=\"0.8709in\" localize=\"true\"><alt id=\"alt_id3154942\">Example spreadsheet</alt></image>"
+msgstr "<image id=\"img_id3154942\" src=\"res/helpimg/names_as_addressing.png\" width=\"2.1291in\" height=\"0.8709in\" localize=\"true\"><alt id=\"alt_id3154942\">Hoja de cálculo de ejemplo</alt></image>"
+
+#: address_auto.xhp#par_id3154512.22.help.text
+msgid "In the example spreadsheet, you can use the string <item type=\"literal\">'Column One'</item> in a formula to refer to the cell range <item type=\"literal\">B3</item> to <item type=\"literal\">B5</item>, or <item type=\"literal\">'Column Two'</item> for the cell range <item type=\"literal\">C2</item> to <item type=\"literal\">C5</item>. You can also use <item type=\"literal\">'Row One'</item> for the cell range <item type=\"literal\">B3</item> to <item type=\"literal\">D3</item>, or <item type=\"literal\">'Row Two'</item> for the cell range <item type=\"literal\">B4</item> to <item type=\"literal\">D4</item>. The result of a formula that uses a cell name, for example, <item type=\"literal\">SUM('Column One')</item>, is 600."
+msgstr "En la hoja de cálculo de ejemplo, puede usar la cadena <item type=\"literal\">'Columna uno'</item> en una fórmula para hacer referencia al área de celdas <item type=\"literal\">B3</item> a <item type=\"literal\">B5</item>, o <item type=\"literal\">'Columna dos'</item> para el área de celdas <item type=\"literal\">C2</item> a <item type=\"literal\">C5</item>. También puede utilizar <item type=\"literal\">'Fila uno'</item> para el área de celdas <item type=\"literal\">B3</item> a <item type=\"literal\">D3</item>, o <item type=\"literal\">'Fila dos'</item> para el área de celdas <item type=\"literal\">B4</item> a <item type=\"literal\">D4</item>. El resultado de una fórmula que utiliza un nombre de celda, por ejemplo <item type=\"literal\">SUMA('Columna uno')</item>, es 600."
+
+#: address_auto.xhp#par_id3155443.24.help.text
+msgid "This function is active by default. To turn this function off, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate</emph> and clear the <emph>Automatically find column and row labels</emph> check box."
+msgstr "Esta función está activada de forma predeterminada. Para desactivarla, elija <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - %PRODUCTNAME Calc - Calcular</emph> y desmarque la casilla <emph>Buscar automáticamente las etiquetas de filas y columnas</emph>."
+
+#: address_auto.xhp#par_id3149210.37.help.text
+msgid "If you want a name to be automatically recognized by Calc, the name must start with a letter and be composed of alphanumeric characters. If you enter the name in the formula yourself, enclose the name in single quotation marks ('). If a single quotation mark appears in a name, you must enter a backslash in front of the quotation mark, for example, <item type=\"literal\">'Harry\\'s Bar'.</item>"
+msgstr "Si desea que Calc reconozca un nombre de forma automática, el nombre debe empezar por una letra y estar compuesto por caracteres alfanuméricos. Si introduce el nombre en la fórmula, el nombre debe ir entre comillas simples ('). Si el nombre contiene una sola comilla, debe introducir delante de ella una barra oblicua inversa, por ejemplo <item type=\"literal\">'Ene\\'99'.</item>."
+
+#: calc_timevalues.xhp#tit.help.text
+msgid "Calculating Time Differences"
+msgstr "Calcular diferencias temporales"
+
+#: calc_timevalues.xhp#bm_id3150769.help.text
+msgid "<bookmark_value>calculating;time differences</bookmark_value><bookmark_value>time differences</bookmark_value>"
+msgstr "<bookmark_value>calcular;diferencias temporales</bookmark_value>"
+
+#: calc_timevalues.xhp#hd_id3150769.53.help.text
+msgid "<variable id=\"calc_timevalues\"><link href=\"text/scalc/guide/calc_timevalues.xhp\" name=\"Calculating Time Differences\">Calculating Time Differences</link></variable>"
+msgstr "<variable id=\"calc_timevalues\"><link href=\"text/scalc/guide/calc_timevalues.xhp\" name=\"Calcular diferencias temporales\">Calcular diferencias temporales</link></variable>"
+
+#: calc_timevalues.xhp#par_id3149263.54.help.text
+msgid "If you want to calculate time differences, for example, the time between 23:30 and 01:10 in the same night, use the following formula:"
+msgstr "Para calcular diferencias de tiempo como, por ejemplo, el tiempo transcurrido entre las 23:30 y la 01:10 de una misma noche, utilice la fórmula siguiente:"
+
+#: calc_timevalues.xhp#par_id3159153.55.help.text
+msgid "=(B2<A2)+B2-A2"
+msgstr "=(B2<A2)+B2-A2"
+
+#: calc_timevalues.xhp#par_id3152598.56.help.text
+msgid "The later time is B2 and the earlier time is A2. The result of the example is 01:40 or 1 hour and 40 minutes."
+msgstr "La hora final se escribe en B2 y la inicial en A2. El resultado del ejemplo es 01:40, esto es, 1 hora y 40 minutos."
+
+#: calc_timevalues.xhp#par_id3145271.57.help.text
+msgid "In the formula, an entire 24-hour day has a value of 1 and one hour has a value of 1/24. The logical value in parentheses is 0 or 1, corresponding to 0 or 24 hours. The result returned by the formula is automatically issued in time format due to the sequence of the operands."
+msgstr "La fórmula parte de la base de que un día entero con sus 24 horas tiene el valor 1 y que, por lo tanto, una hora representa 1/24 parte de ese valor. El valor lógico entre paréntesis es 0 ó 1 que corresponde a 0 ó 24 horas. El resultado de la fórmula se mostrará automáticamente en formato de hora gracias al orden de los operandos."
+
+#: integer_leading_zero.xhp#tit.help.text
+msgid "Entering a Number with Leading Zeros"
+msgstr "Escribir un número con ceros a la izquierda"
+
+#: integer_leading_zero.xhp#bm_id3147560.help.text
+msgid "<bookmark_value>zero values; entering leading zeros</bookmark_value> <bookmark_value>numbers; with leading zeros</bookmark_value> <bookmark_value>leading zeros</bookmark_value> <bookmark_value>integers with leading zeros</bookmark_value> <bookmark_value>cells; changing text/number formats</bookmark_value> <bookmark_value>formats; changing text/number</bookmark_value> <bookmark_value>text in cells; changing to numbers</bookmark_value> <bookmark_value>converting;text with leading zeros, into numbers</bookmark_value>"
+msgstr "<bookmark_value>valores cero; escribir ceros a la izquierda</bookmark_value> <bookmark_value>números; con ceros a la izquierda</bookmark_value> <bookmark_value>ceros a la izquierda</bookmark_value> <bookmark_value>enteros con ceros a la izquierda</bookmark_value> <bookmark_value>celdas; cambiar formatos de texto o de número</bookmark_value> <bookmark_value>formatos; cambiar texto o número</bookmark_value> <bookmark_value>texto de celdas; cambiar a números</bookmark_value> <bookmark_value>convertir; texto con ceros a la izquierda a números</bookmark_value>"
+
+#: integer_leading_zero.xhp#hd_id3147560.67.help.text
+msgid "<variable id=\"integer_leading_zero\"><link href=\"text/scalc/guide/integer_leading_zero.xhp\" name=\"Entering a Number with Leading Zeros\">Entering a Number with Leading Zeros</link></variable>"
+msgstr "<variable id=\"integer_leading_zero\"><link href=\"text/scalc/guide/integer_leading_zero.xhp\" name=\"Escribir un número con ceros a la izquierda\">Escribir un número con ceros a la izquierda</link></variable>"
+
+#: integer_leading_zero.xhp#par_id3153194.55.help.text
+msgid "There are various ways to enter integers starting with a zero:"
+msgstr "Si desea introducir <emph>números enteros con ceros en primera posición</emph> dispone de las siguientes posibilidades:"
+
+#: integer_leading_zero.xhp#par_id3146119.56.help.text
+msgid "Enter the number as text. The easiest way is to enter the number starting with an apostrophe (for example, <item type=\"input\">'0987</item>). The apostrophe will not appear in the cell, and the number will be formatted as text. Because it is in text format, however, you cannot calculate with this number."
+msgstr "Inserte el número como texto. La manera más fácil es ingresar el número anteponiendo un apóstrofe (por ejemplo, <item type=\"input\">'0987</item>). El apóstrofe no aparecerá en la celda, y el número será formateado como texto. Debido a que está en formato de texto, no podrá calcular como si fuera un número ."
+
+#: integer_leading_zero.xhp#par_id3154013.57.help.text
+msgid "Format a cell with a number format such as <item type=\"input\">\\0000</item>. This format can be assigned in the <emph>Format code</emph> field under the <emph>Format - Cells - Numbers</emph> tab, and defines the cell display as \"always put a zero first and then the integer, having at least three places, and filled with zeros at the left if less than three digits\"."
+msgstr "Formatear una celda con un número de formato tal como <item type=\"input\">\\0000</item>. Éste formato puede ser asignado en el campo <emph>Código de Formato</emph> en la pestaña <emph>Formato - Celdas - Números</emph> , y define que la celda sea mostrada como \" siempre poner un cero primero y después el entero teniendo al menos tres lugares, y llenados con ceros a la izquierda si hay menos de tres dígitos. \"."
+
+#: integer_leading_zero.xhp#par_id3153158.58.help.text
+msgid "If you want to apply a numerical format to a column of numbers in text format (for example, text \"000123\" becomes number \"123\"), do the following:"
+msgstr "Si desea aplicar un formato numérico a una columna de números con formato de texto (por ejemplo, el texto \"000123\" se convierte en el número \"123\"), siga este procedimiento:"
+
+#: integer_leading_zero.xhp#par_id3149377.59.help.text
+msgid "Select the column in which the digits are found in text format. Set the cell format in that column as \"Number\"."
+msgstr "Seleccione la columna en la que figuren estos números en \"formato de texto\". Defina como \"número\" el formato de celda de la columna."
+
+#: integer_leading_zero.xhp#par_id3154944.60.help.text
+msgid "Choose <emph>Edit - Find & Replace</emph> "
+msgstr "Elija <emph>Editar - Buscar y reemplazar</emph> "
+
+#: integer_leading_zero.xhp#par_id3154510.61.help.text
+msgid "In the <emph>Search for</emph> box, enter <item type=\"input\">^[0-9]</item> "
+msgstr "En el cuadro <emph>Buscar</emph> escriba <item type=\"input\">^[0-9]</item>"
+
+#: integer_leading_zero.xhp#par_id3155068.62.help.text
+msgid "In the <emph>Replace with</emph> box, enter <item type=\"input\">&</item> "
+msgstr "En el cuadro <emph>Reemplazar por</emph> escriba <item type=\"input\">&</item>"
+
+#: integer_leading_zero.xhp#par_id3149018.63.help.text
+msgid "Check <emph>Regular expressions</emph> "
+msgstr "Marque <emph>Expresiones regulares</emph>"
+
+#: integer_leading_zero.xhp#par_id3156382.64.help.text
+msgid "Check <emph>Current selection only</emph> "
+msgstr "Marque <emph>Sólo en la selección actual</emph>"
+
+#: integer_leading_zero.xhp#par_id3146916.65.help.text
+msgid "Click <emph>Replace All</emph> "
+msgstr "Haga clic sobre <emph>Reemplazar todo</emph>"
+
+#: print_landscape.xhp#tit.help.text
+msgid "Printing Sheets in Landscape Format"
+msgstr "Imprimir hojas en orientación horizontal"
+
+#: print_landscape.xhp#bm_id3153418.help.text
+msgid "<bookmark_value>printing; sheet selections</bookmark_value> <bookmark_value>sheets; printing in landscape</bookmark_value> <bookmark_value>printing; landscape</bookmark_value> <bookmark_value>landscape printing</bookmark_value>"
+msgstr "<bookmark_value>imprimir;selecciones de hoja</bookmark_value> <bookmark_value>hojas;imprimir apaisado</bookmark_value> <bookmark_value>imprimir;apaisado</bookmark_value> <bookmark_value>impresión apaisada</bookmark_value>"
+
+#: print_landscape.xhp#hd_id3153418.1.help.text
+msgid "<variable id=\"print_landscape\"><link href=\"text/scalc/guide/print_landscape.xhp\" name=\"Printing Sheets in Landscape Format\">Printing Sheets in Landscape Format</link></variable>"
+msgstr "<variable id=\"print_landscape\"><link href=\"text/scalc/guide/print_landscape.xhp\" name=\"Printing Sheets in Landscape Format\">Imprimir Hojas en Formato Horizontal</link> </variable>"
+
+#: print_landscape.xhp#par_id3149257.2.help.text
+msgid "In order to print a sheet you have a number of interactive options available under <emph>View - Page Break Preview</emph>. Drag the delimiter lines to define the range of printed cells on each page."
+msgstr "En <emph>Ver - Previsualización del salto de página</emph> dispone de diversas opciones interactivas para imprimir una hoja. Arrastre las líneas delimitadoras para definir el área de celdas impresas en cada página."
+
+#: print_landscape.xhp#par_id3153963.15.help.text
+msgid "To print in landscape format, proceed as follows:"
+msgstr "Para imprimir en orientación horizontal, siga este procedimiento:"
+
+#: print_landscape.xhp#par_id3154020.3.help.text
+msgctxt "print_landscape.xhp#par_id3154020.3.help.text"
+msgid "Go to the sheet to be printed."
+msgstr "Vaya a la hoja que se debe imprimir."
+
+#: print_landscape.xhp#par_id3150786.4.help.text
+msgctxt "print_landscape.xhp#par_id3150786.4.help.text"
+msgid "Choose <emph>Format - Page</emph>."
+msgstr "Active el comando <emph>Formato - Página</emph>."
+
+#: print_landscape.xhp#par_id3150089.5.help.text
+msgid "The command is not visible if the sheet has been opened with write protection on. In that case, click the <emph>Edit File </emph>icon on the <emph>Standard</emph> bar."
+msgstr "El comando no se ve si la hoja se ha abierto con la protección contra escritura activada. En ese caso, haga clic en el símbolo <emph>Editar archivo</emph> de la barra <emph>estándar</emph>."
+
+#: print_landscape.xhp#par_id3166430.6.help.text
+msgid "Select the <emph>Page</emph> tab. Select the <emph>Landscape</emph> paper format and click OK."
+msgstr "Pase a la pestaña <emph>Página</emph>. Seleccione el formato de papel <emph>horizontal</emph> y pulse en Aceptar."
+
+#: print_landscape.xhp#par_id3150885.7.help.text
+msgid "Choose <emph>File - Print</emph>. You will see the <emph>Print</emph> dialog."
+msgstr "Seleccione <emph>Archivo - Imprimir</emph>. Se abrirá el diálogo <emph>Imprimir</emph>."
+
+#: print_landscape.xhp#par_id3156288.8.help.text
+msgid "Depending on the printer driver and the operating system, it may be necessary to click the <emph>Properties</emph> button and to change your printer to landscape format there."
+msgstr "Dependiendo del controlador de la impresora y del sistema operativo, puede ser que tenga que pulsar el botón <emph>Propiedades</emph> y ahí cambiar el formato de la impresora al horizontal."
+
+#: print_landscape.xhp#par_id3149404.9.help.text
+msgid "In the <emph>Print </emph>dialog in the <emph>General</emph> tab page, select the contents to be printed:"
+msgstr "En la página <emph>General</emph> del diálogo <emph>Imprimir </emph>, seleccione el contenido que se deba imprimir:"
+
+#: print_landscape.xhp#par_id3153305.10.help.text
+msgid " <emph>All sheets</emph> - All sheets will be printed."
+msgstr " <emph>Todas las hojas</emph> - Se imprimirán todas las hojas."
+
+#: print_landscape.xhp#par_id3148871.12.help.text
+msgid " <emph>Selected sheets</emph> - Only the selected sheets will be printed. All sheets whose names (at the bottom on the sheet tabs) are selected will be printed. By pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> while clicking a sheet name you can change this selection."
+msgstr " <emph>Hojas seleccionadas</emph> - Sólo se imprirán las hojas seleccionadas. Se imprimirán todas las hojas cuyos nombres (ubicados en la parte inferior sobre las pestañas de la hojas) se hayan seleccionado. Puede cambiar esta selección presionando <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline> mientras hace clic sobre el nombre de una hoja."
+
+#: print_landscape.xhp#par_id3764763.help.text
+msgid " <emph>Selected cells</emph> - All selected cells are printed."
+msgstr " <emph>Celdas seleccionadas</emph> - Se imprimirán todas las celdas seleccionadas."
+
+#: print_landscape.xhp#par_id5538804.help.text
+msgid "From all the paper pages that result from the above selection, you can select the range of paper pages to be printed:"
+msgstr "De entre todas las páginas de papel que se generan en la selección anterior, puede elegir el intervalo de páginas que desea imprimir:"
+
+#: print_landscape.xhp#par_id14343.help.text
+msgid " <emph>All pages</emph> - Print all resulting pages."
+msgstr " <emph>Todas las páginas</emph> - Imprimir todas las páginas generadas."
+
+#: print_landscape.xhp#par_id3148699.11.help.text
+msgid " <emph>Pages</emph> - Enter the pages to be printed. The pages will also be numbered from the first sheet onwards. If you see in the Page Break Preview that Sheet1 will be printed on 4 pages and you want to print the first two pages of Sheet2, enter 5-6 here."
+msgstr " <emph>Páginas</emph> - Escriba las páginas que desa imprimir. Las páginas se numerarán desde la primer hoja en adelante. Si ve en la vista previa del salto de página que la Hoja1 se va a imprimir en 4 páginas y desea imprimir sólo las dos primeras paginas de la Hoja2, escriba 5-6."
+
+#: print_landscape.xhp#par_id3145076.13.help.text
+msgid "If under <emph>Format - Print ranges</emph> you have defined one or more print ranges, only the contents of these print ranges will be printed."
+msgstr "Si en <emph>Formato - Áreas de impresión</emph> ha definido una o más áreas de impresión, solamente se imprimirá el contenido de estas áreas de impresión."
+
+#: print_landscape.xhp#par_id3156019.14.help.text
+msgctxt "print_landscape.xhp#par_id3156019.14.help.text"
+msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">View - Page Break Preview</link>"
+msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"Ver - Previsualización del salto de página\">Ver - Previsualización del salto de página</link>"
+
+#: print_landscape.xhp#par_id8254646.help.text
+msgid "<link href=\"text/scalc/guide/printranges.xhp\">Defining Print Ranges on a Sheet</link>"
+msgstr "<link href=\"text/scalc/guide/printranges.xhp\">Definir Áreas de Impresión en una Hoja</link>"
+
+#: super_subscript.xhp#tit.help.text
+msgid "Text Superscript / Subscript"
+msgstr "Texto superíndice / subíndice"
+
+#: super_subscript.xhp#bm_id3151112.help.text
+msgid "<bookmark_value>superscript text in cells</bookmark_value><bookmark_value>subscript text in cells</bookmark_value><bookmark_value>cells; text super/sub</bookmark_value><bookmark_value>characters;superscript/subscript</bookmark_value>"
+msgstr "<bookmark_value>texto de superíndice en celdas</bookmark_value><bookmark_value>texto de subíndice en celdas</bookmark_value><bookmark_value>celdas;texto super/sub</bookmark_value><bookmark_value>caracteres;superíndice/subíndice</bookmark_value>"
+
+#: super_subscript.xhp#hd_id3151112.1.help.text
+msgid "<variable id=\"super_subscript\"><link href=\"text/scalc/guide/super_subscript.xhp\" name=\"Text Superscript / Subscript\">Text Superscript / Subscript</link></variable>"
+msgstr "<variable id=\"super_subscript\"><link href=\"text/scalc/guide/super_subscript.xhp\" name=\"Texto superíndice/subíndice\">Texto superíndice/subíndice</link></variable>"
+
+#: super_subscript.xhp#par_id3154684.2.help.text
+msgid "In the cell, select the character that you want to put in superscript or subscript."
+msgstr "Seleccione en la celda los caracteres que desee colocar como superíndice o subíndice."
+
+#: super_subscript.xhp#par_id3150439.3.help.text
+msgid "If, for example, you want to write H20 with a subscript 2, select the 2 in the cell (not in the input line)."
+msgstr "Si, por ejemplo, desea escribir H20 con subíndice 2, seleccione el 2 en la celda (no en la línea de entrada)."
+
+#: super_subscript.xhp#par_id3149260.4.help.text
+msgid "Open the context menu for the selected character and choose <emph>Character</emph>. You will see the <emph>Character</emph> dialog."
+msgstr "Abra el menú contextual del carácter seleccionado y seleccione <emph>Carácter</emph>. Se abrirá el diálogo <emph>Carácter</emph>."
+
+#: super_subscript.xhp#par_id3153142.5.help.text
+msgid "Click the <emph>Font Position</emph> tab."
+msgstr "Pulse la pestaña <emph>Posición de fuente</emph>."
+
+#: super_subscript.xhp#par_id3153954.6.help.text
+msgid "Select the <emph>Subscript</emph> option and click OK."
+msgstr "Seleccione la opción <emph>Subíndice</emph> y pulse en Aceptar."
+
+#: super_subscript.xhp#par_id3153876.7.help.text
+msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Context menu - Character - Font Position\">Context menu - Character - Font Position</link>"
+msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Menú contextual - Carácter - Posición de fuente\">Menú contextual - Carácter - Posición de fuente</link>"
+
+#: cellreference_dragdrop.xhp#tit.help.text
+msgid "Referencing Cells by Drag-and-Drop"
+msgstr "Referencia a celdas mediante arrastrar y soltar"
+
+#: cellreference_dragdrop.xhp#bm_id3154686.help.text
+msgid "<bookmark_value>drag and drop; referencing cells</bookmark_value> <bookmark_value>cells; referencing by drag and drop </bookmark_value> <bookmark_value>references;inserting by drag and drop</bookmark_value> <bookmark_value>inserting;references, by drag and drop</bookmark_value>"
+msgstr "<bookmark_value>arrastrar y colocar; referencia a celdas</bookmark_value> <bookmark_value>celdas; referencia mediante arrastrar y colocar</bookmark_value> <bookmark_value>referencias;insertar mediante arrastrar y colocar</bookmark_value> <bookmark_value>insertar; referencias, mediante arrastrar y colocar</bookmark_value>"
+
+#: cellreference_dragdrop.xhp#hd_id3154686.16.help.text
+msgid "<variable id=\"cellreference_dragdrop\"><link href=\"text/scalc/guide/cellreference_dragdrop.xhp\" name=\"Referencing Cells by Drag-and-Drop\">Referencing Cells by Drag-and-Drop</link></variable>"
+msgstr "<variable id=\"cellreference_dragdrop\"><link href=\"text/scalc/guide/cellreference_dragdrop.xhp\" name=\"Referencia a celdas mediante arrastrar y soltar\">Referencia a celdas mediante arrastrar y soltar</link></variable>"
+
+#: cellreference_dragdrop.xhp#par_id3156444.17.help.text
+msgid "With the help of the Navigator you can reference cells from one sheet to another sheet in the same document or in a different document. The cells can be inserted as a copy, link, or hyperlink. The range to be inserted must be defined with a name in the original file so that it can be inserted in the target file."
+msgstr "El navegador permite hacer referencias a celdas entre una hoja y otra del mismo documento o de un documento distinto. Las celdas se pueden insertar en forma de copia, vínculo o hipervínculo. El área que se va a insertar debe tener un nombre definido en el archivo original para que pueda insertarse en el archivo destino."
+
+#: cellreference_dragdrop.xhp#par_id3152576.25.help.text
+msgid "Open the document that contains the source cells."
+msgstr "Abra un documento que contenga las celdas fuente."
+
+#: cellreference_dragdrop.xhp#par_id3154011.26.help.text
+msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
+msgstr "Para establecer el rango fuente como el área seleccione las celdas y elija <emph>Insertar - Nombres - Definir</emph>. Guarde el documento fuente y no lo cierre."
+
+#: cellreference_dragdrop.xhp#par_id3151073.18.help.text
+msgid "Open the sheet in which you want to insert something."
+msgstr "Abra la hoja donde desee insertar algún elemento."
+
+#: cellreference_dragdrop.xhp#par_id3154732.19.help.text
+msgid "Open the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>. In the lower box of the Navigator select the source file."
+msgstr "Abra el <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navegador</link>. En el cuadro inferior del Navegado seleccione el archivo fuente."
+
+#: cellreference_dragdrop.xhp#par_id3150752.22.help.text
+msgid "In the Navigator, the source file object appears under \"Range names\"."
+msgstr "En el Navegador, el objeto del archivo fuente aparecerá en \"Nombres de las áreas\"."
+
+#: cellreference_dragdrop.xhp#par_id3154754.27.help.text
+msgid "Using the <emph>Drag Mode</emph> icon in Navigator, choose whether you want the reference to be a hyperlink, link, or copy."
+msgstr "Mediante el símbolo <emph>Modo Arrastrar</emph> del Navegador, elija si desea que la referencia sea un hipervínculo, un vínculo o una copia."
+
+#: cellreference_dragdrop.xhp#par_id3154256.23.help.text
+msgid "Click the name under \"Range names\" in the Navigator, and drag into the cell of the current sheet where you want to insert the reference."
+msgstr "Haga clic en el nombre en \"Nombres de las áreas\" del Navegador y arrastre el área deseada a la celda de la hoja activa en la que desee insertar la referencia."
+
+#: cellreference_dragdrop.xhp#par_id3149565.24.help.text
+msgid "This method can also be used to insert a range from another sheet of the same document into the current sheet. Select the active document as source in step 4 above."
+msgstr "Este método se puede utilizar también para insertar un área de otra hoja del mismo documento en la hoja activa. Seleccione el documento activo como fuente en el paso 4 anterior."
+
+#: table_view.xhp#tit.help.text
+msgid "Changing Table Views"
+msgstr "Cambiar vistas de tabla"
+
+#: table_view.xhp#bm_id3147304.help.text
+msgid "<bookmark_value>row headers; hiding</bookmark_value><bookmark_value>column headers; hiding</bookmark_value><bookmark_value>tables; views</bookmark_value><bookmark_value>views; tables</bookmark_value><bookmark_value>grids;hiding lines in sheets</bookmark_value><bookmark_value>hiding;headers/grid lines</bookmark_value><bookmark_value>changing;table views</bookmark_value>"
+msgstr "<bookmark_value>encabezados de fila;ocultar</bookmark_value><bookmark_value>encabezados de columna;ocultar</bookmark_value><bookmark_value>tablas;vistas</bookmark_value><bookmark_value>vistas;tablas</bookmark_value><bookmark_value>cuadrículas;ocultar líneas en hojas</bookmark_value><bookmark_value>ocultar;líneas de cuadrícula/encabezados</bookmark_value><bookmark_value>cambiar;vistas de tabla</bookmark_value>"
+
+#: table_view.xhp#hd_id3147304.1.help.text
+msgid "<variable id=\"table_view\"><link href=\"text/scalc/guide/table_view.xhp\" name=\"Changing Table Views\">Changing Table Views</link></variable>"
+msgstr "<variable id=\"table_view\"><link href=\"text/scalc/guide/table_view.xhp\" name=\"Cambiar vistas de tabla\">Cambiar vistas de tabla</link></variable>"
+
+#: table_view.xhp#par_id3153192.2.help.text
+msgid "To hide column and line headers in a table:"
+msgstr "Para ocultar los encabezados de fila y de columna en una tabla:"
+
+#: table_view.xhp#par_id3153768.3.help.text
+msgid "Under the menu item <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc,</emph> go to the <emph>View</emph> tab page. Unmark<emph> Column/row headers</emph>. Confirm with <emph>OK</emph>."
+msgstr "En el elemento de menú <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - %PRODUCTNAME Calc,</emph> vaya a la página <emph>Ver</emph>. Desmarque <emph>Títulos de filas y columnas</emph>. Confirme con <emph>Aceptar</emph>."
+
+#: table_view.xhp#par_id3147436.4.help.text
+msgid "To hide grid lines:"
+msgstr "Para ocultar las líneas de cuadrícula:"
+
+#: table_view.xhp#par_id3153726.5.help.text
+msgid "Under the menu item <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph><emph>,</emph> go to the <emph>View</emph> tab page. Unmark <emph>Grid lines</emph>. Confirm with <emph>OK</emph>."
+msgstr ""
+
+#: autofilter.xhp#tit.help.text
+msgid "Applying AutoFilter"
+msgstr "Aplicar filtro automático"
+
+#: autofilter.xhp#bm_id3156423.help.text
+msgid "<bookmark_value>filters, see also AutoFilter function</bookmark_value> <bookmark_value>AutoFilter function;applying</bookmark_value> <bookmark_value>sheets; filter values</bookmark_value> <bookmark_value>numbers; filter sheets</bookmark_value> <bookmark_value>columns; AutoFilter function</bookmark_value> <bookmark_value>drop-down menus in sheet columns</bookmark_value> <bookmark_value>database ranges; AutoFilter function</bookmark_value>"
+msgstr "<bookmark_value>filtros, vea también Autofiltro</bookmark_value> <bookmark_value>Autofiltro;aplicación</bookmark_value> <bookmark_value>hojas; valores de filtro</bookmark_value> <bookmark_value>número; hojas de filtro</bookmark_value> <bookmark_value>columnas; Autofiltro</bookmark_value> <bookmark_value>menú desplegables en columnas de hoja</bookmark_value> <bookmark_value>áreas de base de datos; Autofiltro</bookmark_value>"
+
+#: autofilter.xhp#hd_id3156423.6.help.text
+msgid "<variable id=\"autofilter\"><link href=\"text/scalc/guide/autofilter.xhp\" name=\"Applying AutoFilter\">Applying AutoFilter</link></variable>"
+msgstr "<variable id=\"autofilter\"><link href=\"text/scalc/guide/autofilter.xhp\" name=\"Applying AutoFilter\">Aplicar el AutoFiltro</link></variable>"
+
+#: autofilter.xhp#par_id3147427.7.help.text
+msgid "The <emph>AutoFilter</emph> function inserts a combo box on one or more data columns that lets you select the records (rows) to be displayed."
+msgstr "La función <emph>AutoFilter</emph> inserta en una o más columnas de datos un cuadro combinado que permite seleccionar los registros (filas) que se deben mostrar."
+
+#: autofilter.xhp#par_id3152576.9.help.text
+msgid "Select the columns you want to use AutoFilter on."
+msgstr "Seleccione las columnas en las que desee utilizar el AutoFilter."
+
+#: autofilter.xhp#par_id3153157.10.help.text
+msgid "Choose <emph>Data - Filter - AutoFilter</emph>. The combo box arrows are visible in the first row of the range selected."
+msgstr "Elija <emph>Datos - Filtro - AutoFiltro </emph>. Las flechas del cuadro combinado se muestran en la primera fila del área seleccionada."
+
+#: autofilter.xhp#par_id3154510.11.help.text
+msgid "Run the filter by clicking the drop-down arrow in the column heading and choosing an item."
+msgstr "Ejecute el filtro haciendo clic en la flecha desplegable del encabezado de la columna y elija un elemento."
+
+#: autofilter.xhp#par_id3155064.13.help.text
+msgid "Only those rows whose contents meet the filter criteria are displayed. The other rows are filtered. You can see if rows have been filtered from the discontinuous row numbers. The column that has been used for the filter is identified by a different color for the arrow button."
+msgstr "Sólo se muestran las filas cuyo contenido cumple los criterios de filtro. Las otras filas se filtran. Es posible ver si las filas se han filtrado a partir de números de fila discontinuos. La columna que se ha utilizado para el filtro se identifica mediante un botón de flecha de color distinto."
+
+#: autofilter.xhp#par_id9216589.help.text
+msgid "When you apply an additional AutoFilter on another column of a filtered data range, then the other combo boxes list only the filtered data."
+msgstr "Cuando aplica un Autofiltro adicional en otra columna de un rango de datos filtrado, entonces los demás cuadros combinados listan solamente los datos filtrado."
+
+#: autofilter.xhp#par_id3153714.12.help.text
+msgid "To display all records again, select the \"all<emph>\"</emph> entry in the AutoFilter combo box. If you choose \"Standard<emph>\"</emph>, the <item type=\"menuitem\">Standard Filter</item> dialog appears, allowing you to set up a standard filter. Choose \"Top 10\" to display the highest 10 values only. "
+msgstr "Para mostrar todos los registros de nuevo, seleccione \"toda<emph>\"</emph> la entrada en el cuadro combinado Autofiltro. Si elige \"Estándar<emph>\"</emph>, aparecerá el cuadro de diálogo <item type=\"menuitem\">Filtro predeterminado</item>, que permite establecer un filtro predeterminado. Seleccione \"10 superiores\" para mostrar únicamente los 10 valores más altos. "
+
+#: autofilter.xhp#par_id3147340.19.help.text
+msgid "To stop using AutoFilter, reselect all cells selected in step 1 and once again choose <emph>Data - Filter - AutoFilter</emph>."
+msgstr "Para dejar de utilizar el AutoFilter, vuelva a seleccionar todas las celdas seleccionadas en el paso 1 y seleccione de nuevo <emph>Datos - Filtro - AutoFilter</emph>."
+
+#: autofilter.xhp#par_id4303415.help.text
+msgid "To assign different AutoFilters to different sheets, you must first define a database range on each sheet."
+msgstr "Para asignar diferentes AutoFiltros a diferentes hojas, debes primero definir el rango de la base de datos en cada hoja."
+
+#: autofilter.xhp#par_id3159236.14.help.text
+msgid "The arithmetic functions also take account of the cells that are not visible due to an applied filter. For example, a sum of an entire column will also total the values in the filtered cells. Apply the <link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link> function if only the cells visible after the application of a filter are to be taken into account."
+msgstr "Las funciones aritméticas también tienen en cuenta las celdas que no están visibles debido a la aplicación de un filtro. Por ejemplo, la suma total una columna incluye también los valores que se encuentran en celdas filtradas. Aplique la función <link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTALS\">SUBTOTALES</link> si sólo se deben tener en cuenta las celdas visibles tras la aplicación de un filtro."
+
+#: autofilter.xhp#par_id3152985.16.help.text
+msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"Data - Filter - AutoFilter\">Data - Filter - AutoFilter</link>"
+msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"Datos - Filtros - AutoFiltro\">Datos - Filtros - AutoFiltro</link>"
+
+#: autofilter.xhp#par_id3154484.17.help.text
+msgid "<link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link>"
+msgstr "<link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTALES\">SUBTOTALES</link>"
+
+#: rename_table.xhp#tit.help.text
+msgid "Renaming Sheets"
+msgstr "Cambiar el nombre de las hojas"
+
+#: rename_table.xhp#bm_id3150398.help.text
+msgid "<bookmark_value>renaming;sheets</bookmark_value> <bookmark_value>sheet tabs;renaming</bookmark_value> <bookmark_value>tables;renaming</bookmark_value> <bookmark_value>names; sheets</bookmark_value>"
+msgstr "<bookmark_value>cambiar nombre;hojas</bookmark_value> <bookmark_value>fichas de hoja;cambiar nombre</bookmark_value> <bookmark_value>tablas;cambiar nombre</bookmark_value> <bookmark_value>nombres; hojas</bookmark_value>"
+
+#: rename_table.xhp#hd_id3150398.11.help.text
+msgid "<variable id=\"rename_table\"><link href=\"text/scalc/guide/rename_table.xhp\" name=\"Renaming Sheets\">Renaming Sheets</link></variable>"
+msgstr "<variable id=\"rename_table\"><link href=\"text/scalc/guide/rename_table.xhp\" name=\"Cambiar el nombre de las hojas\">Cambiar el nombre de las hojas</link></variable>"
+
+#: rename_table.xhp#par_id3155131.12.help.text
+msgid "Click the name of the sheet that you want to change."
+msgstr "Pulse en el nombre de la hoja que desea cambiar."
+
+#: rename_table.xhp#par_id3146976.13.help.text
+msgid "Open the context menu and choose the <emph>Rename Sheet</emph> command. A dialog box appears where you can enter a new name."
+msgstr "Abrir el menú contextual y seleccionar el comando <emph>Cambiar nombre a la hoja</emph>. Ingresar el nuevo nombre en el cuadro de diálogo que aparece."
+
+#: rename_table.xhp#par_id3149260.15.help.text
+msgid "Enter a new name for the sheet and click <emph>OK</emph>."
+msgstr "Escriba el nuevo nombre de la hoja y pulse sobre <emph>Aceptar</emph>."
+
+#: rename_table.xhp#par_id3149667.27.help.text
+msgid "Alternatively, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option key</caseinline><defaultinline>Alt key</defaultinline></switchinline> and click on any sheet name and enter the new name directly."
+msgstr "Otra posibilidad es mantener pulsada la tecla <switchinline select=\"sys\"><caseinline select=\"MAC\">Opción</caseinline><defaultinline>Alt</defaultinline></switchinline>, hacer clic en el nombre de cualquier hoja, y escribir directamente el nombre nuevo ."
+
+#: rename_table.xhp#par_id0909200810502833.help.text
+msgid "Sheet names can contain almost any character. Some naming restrictions apply when you want to save the spreadsheet to Microsoft Excel format."
+msgstr "Los nombres de las Hojas pueden contener casi cualquier caracter Se aplican algunas restricciones de nombre cuando se quiere guardar Hoja de cálculo en formato de Microsoft Excel."
+
+#: rename_table.xhp#par_id090920081050283.help.text
+msgid "When saving to Microsoft Excel format, the following characters are not allowed in sheet names:"
+msgstr "Cuando se guarda en formato Microsoft Excel, no se permiten los siguientes caracteres en los nombres de hoja:"
+
+#: rename_table.xhp#par_id090920081050281.help.text
+msgid "colon :"
+msgstr "dos puntos :"
+
+#: rename_table.xhp#par_id0909200810502897.help.text
+msgid "back slash \\"
+msgstr "barra oblicua \\"
+
+#: rename_table.xhp#par_id090920081050299.help.text
+msgid "forward slash /"
+msgstr "barra /"
+
+#: rename_table.xhp#par_id0909200810502913.help.text
+msgid "question mark ?"
+msgstr "¿ marcar pregunta ? "
+
+#: rename_table.xhp#par_id090920081050298.help.text
+msgid "asterisk *"
+msgstr "asterisco *"
+
+#: rename_table.xhp#par_id0909200810502969.help.text
+msgid "left square bracket ["
+msgstr "corchete izquierdo ["
+
+#: rename_table.xhp#par_id0909200810502910.help.text
+msgid "right square bracket ]"
+msgstr "corchete derecho ]"
+
+#: rename_table.xhp#par_id0909200810502971.help.text
+msgid "single quote ' as the first or last character of the name"
+msgstr "comilla simple ' como primer o último caracter de un nombre "
+
+#: rename_table.xhp#par_id090920081050307.help.text
+msgid "In cell references, a sheet name has to be enclosed in single quotes ' if the name contains other characters than alphanumeric or underscore. A single quote contained within a name has to be escaped by doubling it (two single quotes). For example, you want to reference the cell A1 on a sheet with the following name:"
+msgstr "En la referencia de celdas, un nombre de hoja debe estar encerrado entre comillas simples ' si el nombre contiene caracteres distintos de los alfanuméricos o guión bajo. una comilla simple dentro de un nombre debe ser escapada poniéndola doble (dos comillas simples ). Por ejemplo, si quiere referenciar una celda A1 en una hoja con el siguiente nombre :"
+
+#: rename_table.xhp#par_id0909200810503071.help.text
+msgid "This year's sheet"
+msgstr "Hoja p' este año "
+
+#: rename_table.xhp#par_id0909200810503054.help.text
+msgid "The reference must be enclosed in single quotes, and the one single quote inside the name must be doubled:"
+msgstr "La referencia se debe encerrar en comillas simples, y la comilla en el nombre debe ponerse doble :"
+
+#: rename_table.xhp#par_id0909200810503069.help.text
+msgid "'This year''s sheet'.A1"
+msgstr "'Hoja p'' este año'.A1"
+
+#: rename_table.xhp#par_id3155444.16.help.text
+msgid "The name of a sheet is independent of the name of the spreadsheet. You enter the spreadsheet name when you save it for the first time as a file. The document can contain up to 256 individual sheets, which can have different names."
+msgstr "El nombre de una hoja es independiente del nombre de la hoja de cálculo. Entre el nombre de una hoja de cálculo cuando la guarde como archivo por primera vez. El documento puede contener hasta 256 hojas individuales que pueden tener nombres diferentes."
+
+#: datapilot_grouping.xhp#tit.help.text
+#, fuzzy
+msgid "Grouping Pivot Tables"
+msgstr "Agrupar tablas del Piloto de datos"
+
+#: datapilot_grouping.xhp#bm_id4195684.help.text
+#, fuzzy
+msgid "<bookmark_value>grouping; pivot tables</bookmark_value><bookmark_value>pivot table function;grouping table entries</bookmark_value><bookmark_value>ungrouping entries in pivot tables</bookmark_value>"
+msgstr "<bookmark_value>agrupar;tablas del Piloto de datos</bookmark_value><bookmark_value>Piloto de datos;agrupar entradas de tabla</bookmark_value><bookmark_value>desagrupar entradas en tablas del Piloto de datos</bookmark_value>"
+
+#: datapilot_grouping.xhp#par_idN10643.help.text
+#, fuzzy
+msgid "<variable id=\"datapilot_grouping\"><link href=\"text/scalc/guide/datapilot_grouping.xhp\">Grouping Pivot Tables</link></variable>"
+msgstr "<variable id=\"datapilot_grouping\"><link href=\"text/scalc/guide/datapilot_grouping.xhp\">Agrupar tablas del Piloto de datos</link></variable>"
+
+#: datapilot_grouping.xhp#par_idN10661.help.text
+#, fuzzy
+msgid "The resulting pivot table can contain many different entries. By grouping the entries, you can improve the visible result."
+msgstr "La tabla del Piloto de datos resultante puede contener múltiples entradas distintas. Al agrupar las entradas, puede mejorar el resultado visible."
+
+#: datapilot_grouping.xhp#par_idN10667.help.text
+#, fuzzy
+msgid "Select a cell or range of cells in the pivot table."
+msgstr "Seleccione una celda o un rango de celdas en la tabla del Piloto de datos."
+
+#: datapilot_grouping.xhp#par_idN1066B.help.text
+msgid "Choose <emph>Data - Group and Outline - Group</emph>."
+msgstr "Seleccione <emph>Datos - Esquema - Agrupar</emph>."
+
+#: datapilot_grouping.xhp#par_idN1066E.help.text
+#, fuzzy
+msgid "Depending on the format of the selected cells, either a new group field is added to the pivot table, or you see one of the two <link href=\"text/scalc/01/12090400.xhp\">Grouping</link> dialogs, either for numeric values, or for date values."
+msgstr "En función del formato de las celdas seleccionadas, se agrega un nuevo campo de grupo a la tabla del Piloto de datos, o se muestra uno de los dos diálogos <link href=\"text/scalc/01/12090400.xhp\">Agrupación</link>, para valores numéricos o para valores de datos."
+
+#: datapilot_grouping.xhp#par_id3328653.help.text
+#, fuzzy
+msgid "The pivot table must be organized in a way that grouping can be applied."
+msgstr "La tabla DataPilot debe estar organizada de modo que se pueda aplicar agrupación."
+
+#: datapilot_grouping.xhp#par_idN10682.help.text
+msgid "To remove a grouping, click inside the group, then choose <emph>Data - Group and Outline - Ungroup</emph>."
+msgstr "Para eliminar una agrupación, haga clic dentro del grupo y elija <emph>Datos - Esquema - Desagrupar</emph>."
+
+#: numbers_text.xhp#tit.help.text
+msgid "Converting Text to Numbers"
+msgstr "Convertir texto a números"
+
+#: numbers_text.xhp#bm_id3145068.help.text
+msgid "<bookmark_value>formats; text as numbers</bookmark_value> <bookmark_value>time format conversion</bookmark_value> <bookmark_value>date formats;conversion</bookmark_value> <bookmark_value>converting;text, into numbers</bookmark_value>"
+msgstr "<bookmark_value>formatos; texto como números</bookmark_value> <bookmark_value>conversión al formato de hora</bookmark_value> <bookmark_value>formatos de fecha;conversión</bookmark_value> <bookmark_value>convertir;texto, en números</bookmark_value>"
+
+#: numbers_text.xhp#hd_id0908200901265171.help.text
+msgid "<variable id=\"numbers_text\"><link href=\"text/scalc/guide/numbers_text.xhp\" name=\"Converting Text to Numbers\">Converting Text to Numbers</link></variable>"
+msgstr "<variable id=\"numbers_text\"><link href=\"text/scalc/guide/numbers_text.xhp\" name=\"Converting Text to Numbers\">Convertir texto a números</link></variable>"
+
+#: numbers_text.xhp#par_id0908200901265127.help.text
+msgid "Calc converts text inside cells to the respective numeric values if an unambiguous conversion is possible. If no conversion is possible, Calc returns a #VALUE! error."
+msgstr "Calc convierte el texto en las celdas a los valores numéricos respectivos si es posible una conversión sin ambigüedades. Si no es posible realizar ninguna conversión, Calc muestra un error #VALOR!"
+
+#: numbers_text.xhp#par_id0908200901265196.help.text
+msgid "Only integer numbers including exponent are converted, and ISO 8601 dates and times in their extended formats with separators. Anything else, like fractional numbers with decimal separators or dates other than ISO 8601, is not converted, as the text string would be locale dependent. Leading and trailing blanks are ignored."
+msgstr "Sólo se convierten los números enteros incluidos los exponentes, y las fechas y horas ISO 8601 en sus formatos ampliados con separadores. Cualquier otra cosa, como números fraccionarios con separadores decimales o fechas distintas a las de ISO 8601 no se convierte, ya que la cadena de texto dependerá de la configuración regional. Los espacios en blanco iniciales y finales se ignorarán."
+
+#: numbers_text.xhp#par_id0908200901265220.help.text
+msgid "The following ISO 8601 formats are converted:"
+msgstr "Se convierten los siguientes formatos ISO 8601:"
+
+#: numbers_text.xhp#par_id0908200901265288.help.text
+msgid "CCYY-MM-DD"
+msgstr "SSAA-MM-DD"
+
+#: numbers_text.xhp#par_id0908200901265267.help.text
+msgid "CCYY-MM-DDThh:mm"
+msgstr "SSAA-MM-DDThh:mm"
+
+#: numbers_text.xhp#par_id0908200901265248.help.text
+msgid "CCYY-MM-DDThh:mm:ss"
+msgstr "SSAA-MM-DDThh:mm:ss"
+
+#: numbers_text.xhp#par_id0908200901265374.help.text
+msgid "CCYY-MM-DDThh:mm:ss,s"
+msgstr "SSAA-MM-DDThh:mm:ss,s"
+
+#: numbers_text.xhp#par_id0908200901265327.help.text
+msgid "CCYY-MM-DDThh:mm:ss.s"
+msgstr "SSAA-MM-DDThh:mm:ss.s"
+
+#: numbers_text.xhp#par_id0908200901265399.help.text
+msgid "hh:mm"
+msgstr "hh:mm"
+
+#: numbers_text.xhp#par_id0908200901265347.help.text
+msgid "hh:mm:ss"
+msgstr "hh:mm:ss"
+
+#: numbers_text.xhp#par_id0908200901265349.help.text
+msgid "hh:mm:ss,s"
+msgstr "hh:mm:ss,s"
+
+#: numbers_text.xhp#par_id0908200901265342.help.text
+msgid "hh:mm:ss.s"
+msgstr "hh:mm:ss.s"
+
+#: numbers_text.xhp#par_id0908200901265491.help.text
+msgid "The century code CC may not be omitted. Instead of the T date and time separator, exactly one space character may be used."
+msgstr "El código de siglo SS no debe omitirse. En vez de la fecha T y el separador de horas, se puede utilizar exactamente un carácter de un espacio."
+
+#: numbers_text.xhp#par_id0908200901265467.help.text
+msgid "If a date is given, it must be a valid Gregorian calendar date. In this case the optional time must be in the range 00:00 to 23:59:59.99999..."
+msgstr "Si se proporciona una fecha, debe ser una fecha válida del calendario gregoriano. En este caso, la hora opcional debe encontrarse dentro del intervalo entre 00:00 y 23:59:59.99999..."
+
+#: numbers_text.xhp#par_id0908200901265420.help.text
+msgid "If only a time string is given, it may have an hours value of more than 24, while minutes and seconds can have a maximum value of 59."
+msgstr "Si sólo se proporciona una cadena de tiempo, puede tener un valor de horas de más de 24, mientras que los minutos y los segundos pueden tener un valor máximo de 59."
+
+#: numbers_text.xhp#par_id0908200901265448.help.text
+msgid "The conversion is done for single arguments only, as in =A1+A2, or =\"1E2\"+1. Cell range arguments are not affected, so SUM(A1:A2) differs from A1+A2 if at least one of the two cells contain a convertible string."
+msgstr "La conversión se realiza únicamente para argumentos sencillos, como en =A1+A2, o =\"1E2\"+1. Los argumentos de rangos de celdas no se ven afectados, por lo que SUMA(A1:A2) difiere de A1+A2 si al menos una de las dos celdas contiene una cadena convertible."
+
+#: numbers_text.xhp#par_id090820090126540.help.text
+msgid "Strings inside formulas are also converted, such as in =\"1999-11-22\"+42, which returns the date 42 days after November 22nd, 1999. Calculations involving localized dates as strings inside the formula return an error. For example, the localized date string \"11/22/1999\" or \"22.11.1999\" cannot be used for the automatic conversion."
+msgstr "Las cadenas dentro de las fórmulas también se convierten, como =\"1999-11-22\"+42, que devuelve la fecha 42 días después del 22 de noviembre de 1999. Los cálculos que implican fechas localizadas como cadenas dentro de la fórmula dan como resultado un error. Por ejemplo, la cadena de fecha localizada \"11/22/1999\" o \"22.11.1999\" no se puede utilizar para la conversión automática."
+
+#: numbers_text.xhp#hd_id1005200903485368.help.text
+msgid "Example"
+msgstr "Ejemplo"
+
+#: numbers_text.xhp#par_id1005200903485359.help.text
+msgid "In A1 enter the text <item type=\"literal\">'1e2</item> (which is converted to the number 100 internally)."
+msgstr "En A1 escriba el texto <item type=\"literal\">'1e2</item> (que se convierte de forma interna en el número 100)."
+
+#: numbers_text.xhp#par_id1005200903485341.help.text
+msgid "In A2 enter <item type=\"literal\">=A1+1</item> (which correctly results in 101)."
+msgstr "En A2 escriba <item type=\"literal\">=A1+1</item> (que da como resultado correcto 101)."
+
+#: numbers_text.xhp#par_id0908200901265544.help.text
+msgctxt "numbers_text.xhp#par_id0908200901265544.help.text"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Formato - Celdas - Números</link>"
+
+#: table_cellmerge.xhp#tit.help.text
+msgid "Merging and Splitting Cells"
+msgstr "Combinar y dividir celdas"
+
+#: table_cellmerge.xhp#bm_id3147240.help.text
+msgid "<bookmark_value>cells; merging/unmerging</bookmark_value> <bookmark_value>tables; merging cells</bookmark_value> <bookmark_value>cell merges</bookmark_value> <bookmark_value>unmerging cells</bookmark_value> <bookmark_value>splitting cells</bookmark_value> <bookmark_value>merging;cells</bookmark_value>"
+msgstr ""
+
+#: table_cellmerge.xhp#hd_id8005005.help.text
+msgid "<variable id=\"table_cellmerge\"><link href=\"text/scalc/guide/table_cellmerge.xhp\" name=\"Merging and Unmerging Cells\">Merging and Unmerging Cells</link></variable>"
+msgstr "<variable id=\"table_cellmerge\"><link href=\"text/scalc/guide/table_cellmerge.xhp\" name=\"Agrupar y desagrupar celdas\">Agrupar y desagrupar celdas</link></variable>"
+
+#: table_cellmerge.xhp#par_id8049867.help.text
+msgid "You can select adjacent cells, then merge them into a single cell. Conversely, you can take a large cell that has been created by merging single cells, and divide it back into individual cells."
+msgstr "Puede seleccionar celdas adyacentes y agruparlas en una sola celda. También puede transformar una celda grande creada agrupando varias celdas y volver a dividirla en celdas individuales."
+
+#: table_cellmerge.xhp#par_id0509200913480176.help.text
+msgid "When you copy cells into a target range containing merged cells, the target range gets unmerged first, then the copied cells are pasted in. If the copied cells are merged cells, they retain their merge state."
+msgstr "Cuando copia celdas en un área de destino que contiene celdas unidas, primero se desune el área de destino, luego se pegan las celdas copiadas. Si las celdas copiadas son celdas unidas, mantienen su estado de unión."
+
+#: table_cellmerge.xhp#hd_id235602.help.text
+msgid "Merging Cells"
+msgstr "Agrupar celdas"
+
+#: table_cellmerge.xhp#par_id1272927.help.text
+msgid "Select the adjacent cells."
+msgstr "Seleccione las celdas adyacentes."
+
+#: table_cellmerge.xhp#par_id6424146.help.text
+msgid "Choose <emph>Format - Merge Cells - Merge Cells</emph>. If you choose <emph>Format - Merge Cells - Merge and Center Cells</emph>, the cell content will be centered in the merged cell."
+msgstr ""
+
+#: table_cellmerge.xhp#hd_id451368.help.text
+msgid "Splitting Cells"
+msgstr ""
+
+#: table_cellmerge.xhp#par_id7116611.help.text
+msgid "Place the cursor in the cell to be split."
+msgstr "Coloque el cursor en la celda que quiera dividir."
+
+#: table_cellmerge.xhp#par_id9493087.help.text
+msgid "Choose <emph>Format - Merge Cells - Split Cells</emph>."
+msgstr ""
+
+#: cellstyle_by_formula.xhp#tit.help.text
+msgid "Assigning Formats by Formula"
+msgstr "Asignar formato mediante fórmulas"
+
+#: cellstyle_by_formula.xhp#bm_id3145673.help.text
+msgid "<bookmark_value>formats; assigning by formulas</bookmark_value> <bookmark_value>cell formats; assigning by formulas</bookmark_value> <bookmark_value>STYLE function example</bookmark_value> <bookmark_value>cell styles;assigning by formulas</bookmark_value> <bookmark_value>formulas;assigning cell formats</bookmark_value>"
+msgstr "<bookmark_value>formatos; asignar mediante fórmulas</bookmark_value> <bookmark_value>formatos de celda; asignar mediante fórmulas</bookmark_value> <bookmark_value>ejemplo de función ESTILO</bookmark_value> <bookmark_value>estilos de celda;asignar mediante fórmulas</bookmark_value> <bookmark_value>fórmulas;asignar formatos de celda</bookmark_value>"
+
+#: cellstyle_by_formula.xhp#hd_id3145673.13.help.text
+msgid "<variable id=\"cellstyle_by_formula\"><link href=\"text/scalc/guide/cellstyle_by_formula.xhp\" name=\"Assigning Formats by Formula\">Assigning Formats by Formula</link> </variable>"
+msgstr "<variable id=\"cellstyle_by_formula\"><link href=\"text/scalc/guide/cellstyle_by_formula.xhp\" name=\"Assigning Formats by Formula\">Asignar Formatos mediante Formula</link> </variable>"
+
+#: cellstyle_by_formula.xhp#par_id3150275.14.help.text
+msgid "The STYLE() function can be added to an existing formula in a cell. For example, together with the CURRENT function, you can color a cell depending on its value. The formula =...+STYLE(IF(CURRENT()>3; \"Red\"; \"Green\")) applies the cell style \"Red\" to cells if the value is greater than 3, otherwise the cell style \"Green\" is applied."
+msgstr "La función ESTILO() puede agregarse a una fórmula de una celda. Por ejemplo, en combinación con la función ACTUAL, puede asignarse el color a una celda según su valor. La fórmula =... + ESTILO(SI(ACTUAL()>3;\"Rojo\";\"Verde\")) aplica el estilo \"Rojo\" a la celda si el valor es mayor que 3; si es menor, se aplica el estilo \"Verde\"."
+
+#: cellstyle_by_formula.xhp#par_id3151385.15.help.text
+msgid "If you would like to apply a formula to all cells in a selected area, you can use the<emph/> <item type=\"menuitem\">Find & Replace</item> dialog."
+msgstr "Si desea aplicar una fórmula a todas las celdas de un área seleccionada, utilice el cuadro de diálogo<emph/> <item type=\"menuitem\">Buscar y reemplazar</item>."
+
+#: cellstyle_by_formula.xhp#par_id3149456.16.help.text
+msgid "Select all the desired cells."
+msgstr "Seleccione todas las celdas deseadas."
+
+#: cellstyle_by_formula.xhp#par_id3148797.17.help.text
+msgid "Select the menu command <emph>Edit - Find & Replace</emph>."
+msgstr "Seleccione la orden de menú <emph>Editar - Buscar y reemplazar</emph>."
+
+#: cellstyle_by_formula.xhp#par_id3150767.18.help.text
+msgid "For the <item type=\"menuitem\">Search for</item> term, enter: .<item type=\"literal\">*</item> "
+msgstr "Para el término <item type=\"menuitem\">Buscar</item>, escriba: .<item type=\"literal\">*</item> "
+
+#: cellstyle_by_formula.xhp#par_id3153770.19.help.text
+msgid "\".*\" is a regular expression that designates the contents of the current cell."
+msgstr "\".*\" es una expresión regular que designa el contenido de la celda activa."
+
+#: cellstyle_by_formula.xhp#par_id3153143.20.help.text
+msgid "Enter the following formula in the <item type=\"menuitem\">Replace with</item> field: <item type=\"literal\">=&+STYLE(IF(CURRENT()>3;\"Red\";\"Green\"))</item> "
+msgstr "Especifique la siguiente fórmula en el campo <item type=\"menuitem\">Reemplazar con</item>: <item type=\"literal\">=&+ESTILO(SI(ACTUAL()>3;\"Rojo\";\"Verde\"))</item> "
+
+#: cellstyle_by_formula.xhp#par_id3146975.21.help.text
+msgid "The \"&\" symbol designates the current contents of the <emph>Search for</emph> field. The line must begin with an equal sign, since it is a formula. It is assumed that the cell styles \"Red\" and \"Green\" already exist."
+msgstr "El símbolo \"&\" designa el contenido actual del campo <emph>Buscar</emph>. La línea debe empezar con el signo igual, ya que se trata de una fórmula. Se supone que los estilos de celda \"Rojo\" y \"Verde\" ya existen."
+
+#: cellstyle_by_formula.xhp#par_id3149262.22.help.text
+msgid "Mark the fields <link href=\"text/shared/01/02100000.xhp\" name=\"Regular expressions\"><emph>Regular expressions</emph></link> and <emph>Current selection only</emph>. Click <emph>Find All</emph>."
+msgstr "Seleccione las opciones <link href=\"text/shared/01/02100000.xhp\" name=\"Expresión regular\"><emph>Expresión regular</emph></link> y <emph>Sólo en la selección</emph>. Pulse <emph>Buscar todo</emph>."
+
+#: cellstyle_by_formula.xhp#par_id3144767.24.help.text
+msgid "All cells with contents that were included in the selection are now highlighted."
+msgstr "Todas las celdas con contenido que se encontraban en la selección aparecerán ahora destacadas."
+
+#: cellstyle_by_formula.xhp#par_id3147127.23.help.text
+msgid "Click<emph/> <item type=\"menuitem\">Replace all</item>."
+msgstr "Haga clic en<emph/> <item type=\"menuitem\">Reemplazar todo</item>."
+
+#: fraction_enter.xhp#tit.help.text
+msgid "Entering Fractions "
+msgstr "Introducir fracciones"
+
+#: fraction_enter.xhp#bm_id3155411.help.text
+msgid "<bookmark_value>fractions; entering</bookmark_value><bookmark_value>numbers; entering fractions </bookmark_value><bookmark_value>inserting;fractions</bookmark_value>"
+msgstr "<bookmark_value>fracciones;escribir</bookmark_value><bookmark_value>números;escribir fracciones </bookmark_value><bookmark_value>insertar;fraccciones</bookmark_value>"
+
+#: fraction_enter.xhp#hd_id3155411.41.help.text
+msgid "<variable id=\"fraction_enter\"><link href=\"text/scalc/guide/fraction_enter.xhp\" name=\"Entering Fractions \">Entering Fractions </link></variable>"
+msgstr "<variable id=\"fraction_enter\"><link href=\"text/scalc/guide/fraction_enter.xhp\" name=\"Introducir fracciones\">Introducir fracciones</link></variable>"
+
+#: fraction_enter.xhp#par_id3153968.40.help.text
+msgid "You can enter a fractional number in a cell and use it for calculation:"
+msgstr "Se puede introducir un número fraccionario en una celda y utilizarlo en cálculos:"
+
+#: fraction_enter.xhp#par_id3155133.42.help.text
+msgid "Enter \"0 1/5\" in a cell (without the quotation marks) and press the input key. In the input line above the spreadsheet you will see the value 0.2, which is used for the calculation."
+msgstr "Escriba en una celda \"0 1/5\" (sin las comillas) y pulse Intro. En la línea de entrada situada sobre la hoja verá el valor 0,2, que es el que se utilizará en los cálculos."
+
+#: fraction_enter.xhp#par_id3145750.43.help.text
+msgid "If you enter \"0 1/2\" AutoCorrect causes the three characters 1, / and 2 to be replaced by a single character. The same applies to 1/4 and 3/4. This replacement is defined in <emph>Tools - AutoCorrect Options - Options</emph> tab."
+msgstr "Si escribe \"0 1/2\", la Autocorrección sustituye los caracteres 1, / y 2 por un único carácter. Lo mismo ocurre con 1/4 y 3/4. Esta sustitución se configura en la ficha <emph>Herramientas - Opciones de autocorrección - Opciones</emph>."
+
+#: fraction_enter.xhp#par_id3145367.44.help.text
+msgid "If you want to see multi-digit fractions such as \"1/10\", you must change the cell format to the multi-digit fraction view. Open the context menu of the cell, and choose <emph>Format cells. </emph>Select \"Fraction\" from the <emph>Category</emph> field, and then select \"-1234 10/81\". You can then enter fractions such as 12/31 or 12/32 - the fractions are, however, automatically reduced, so that in the last example you would see 3/8."
+msgstr "Si desea ver fracciones de varios dígitos deberá cambiar el formato de la celda para que se muestren las fracciones con varios dígitos. Abra el menú contextual de la celda y seleccione <emph>Formato de celdas. </emph>Seleccione \"Fracción\" en el campo <emph>Categoría</emph> y, a continuación, seleccione \"-1234 10/81\". Ahora podrá escribir fracciones como 12/31 o 12/32; sin embargo, las fracciones se simplifican de forma automática, por lo que en el caso del último ejemplo se mostrará 3/8."
+
+#: datapilot_edittable.xhp#tit.help.text
+#, fuzzy
+msgid "Editing Pivot Tables"
+msgstr "Editar tablas del Piloto de datos"
+
+#: datapilot_edittable.xhp#bm_id3148663.help.text
+#, fuzzy
+msgid "<bookmark_value>pivot table function; editing tables</bookmark_value><bookmark_value>editing;pivot tables</bookmark_value>"
+msgstr "<bookmark_value>Piloto de datos; editar tablas</bookmark_value> <bookmark_value>editar;tablas del Piloto de datos</bookmark_value>"
+
+#: datapilot_edittable.xhp#hd_id3148663.25.help.text
+#, fuzzy
+msgid "<variable id=\"datapilot_edittable\"><link href=\"text/scalc/guide/datapilot_edittable.xhp\" name=\"Editing Pivot Tables\">Editing Pivot Tables</link></variable>"
+msgstr "<variable id=\"datapilot_edittable\"><link href=\"text/scalc/guide/datapilot_edittable.xhp\" name=\"Editing DataPilot Tables\">Editar tablas de Piloto de datos</link></variable>"
+
+#: datapilot_edittable.xhp#par_id3150868.26.help.text
+#, fuzzy
+msgid "Click one of the buttons in the pivot table and hold the mouse button down. A special symbol will appear next to the mouse pointer."
+msgstr "Haga clic sobre la hoja que haya creado el Piloto de datos, en uno de los botones y mantenga pulsado el botón del ratón. En el puntero se mostrará un símbolo especial."
+
+#: datapilot_edittable.xhp#par_id3145786.27.help.text
+msgid "By dragging the button to a different position in the same row you can alter the order of the columns. If you drag a button to the left edge of the table into the row headings area, you can change a column into a row."
+msgstr "Se puede modificar el orden de las columnas arrastrando el botón a una posición distinta en la misma fila. Arrastrando un botón al extremo izquierdo de la tabla, a la zona de encabezados de fila, se puede convertir una columna en una fila."
+
+#: datapilot_edittable.xhp#par_id1648915.help.text
+#, fuzzy
+msgid "In the Pivot Table dialog, you can drag a button to the <emph>Page Fields</emph> area to create a button and a listbox on top of the pivot table. The listbox can be used to filter the pivot table by the contents of the selected item. You can use drag-and-drop within the pivot table to use another page field as a filter."
+msgstr "En el diálogo Piloto de datos, puede arrastrar un botón al área <emph>Campos de página</emph> para crear un botón y un cuadro de lista en la parte superior de la tabla generada del Piloto de datos. El cuadro de lista se puede utilizar para filtrar la tabla del Piloto de datos mediante el contenido del elemento seleccionado. En la tabla del Piloto de datos, puede arrastrar y colocar para utilizar otro campo de página como filtro."
+
+#: datapilot_edittable.xhp#par_id3147434.29.help.text
+#, fuzzy
+msgid "To remove a button from the table, just drag it out of the pivot table. Release the mouse button when the mouse pointer positioned within the sheet has become a 'not allowed' icon. The button is deleted."
+msgstr "Para eliminar un botón de la tabla, arrástrelo fuera de la misma. Cuando el puntero del ratón se convierta en una señal de prohibición dentro de la hoja, suelte el ratón. De este modo se elimina el botón."
+
+#: datapilot_edittable.xhp#par_id3156442.40.help.text
+#, fuzzy
+msgid "To edit the pivot table, click a cell inside the pivot table and open the context menu. In the context menu you find the command <emph>Edit Layout</emph>, which displays the <emph>Pivot Table</emph> dialog for the current pivot table."
+msgstr "Para editar la tabla de Piloto de datos, pulse en una celda de la tabla y abra el menú contextual. En el menú contextual se encuentra la orden <emph>Activar</emph> que abre el diálogo <emph>Piloto de datos</emph> correspondiente a la tabla de Piloto de datos actual."
+
+#: datapilot_edittable.xhp#par_id2666096.help.text
+#, fuzzy
+msgid "In the pivot table, you can use drag-and-drop or cut/paste commands to rearrange the order of data fields."
+msgstr "En la tabla del Piloto de Datos, puede usar Arrastrar y Soltar o cortar/pegar para organizar el orden de los campos de datos."
+
+#: datapilot_edittable.xhp#par_id266609688.help.text
+msgid "You can assign custom display names to fields, field members, subtotals (with some restrictions), and grand totals inside pivot tables. A custom display name is assigned to an item by overwriting the original name with another name."
+msgstr ""
+
+#: cellcopy.xhp#tit.help.text
+msgid "Only Copy Visible Cells"
+msgstr "Copiar sólo celdas visibles"
+
+#: cellcopy.xhp#bm_id3150440.help.text
+msgid "<bookmark_value>cells; copying/deleting/formatting/moving</bookmark_value> <bookmark_value>rows;visible and invisible</bookmark_value> <bookmark_value>copying; visible cells only</bookmark_value> <bookmark_value>formatting;visible cells only</bookmark_value> <bookmark_value>moving;visible cells only</bookmark_value> <bookmark_value>deleting;visible cells only</bookmark_value> <bookmark_value>invisible cells</bookmark_value> <bookmark_value>filters;copying visible cells only</bookmark_value> <bookmark_value>hidden cells</bookmark_value>"
+msgstr "<bookmark_value>celdas; copiar/eliminar/dar formato/mover</bookmark_value> <bookmark_value>filas;visibles e invisibles</bookmark_value> <bookmark_value>copiar; sólo celdas visibles</bookmark_value> <bookmark_value>dar formato;sólo celdas visibles</bookmark_value> <bookmark_value>mover;sólo celdas visibles</bookmark_value> <bookmark_value>eliminar;sólo celdas visibles</bookmark_value> <bookmark_value>celdas invisibles</bookmark_value> <bookmark_value>filtros;copiar sólo celdas visibles</bookmark_value> <bookmark_value>celdas ocultas</bookmark_value>"
+
+#: cellcopy.xhp#hd_id3150440.1.help.text
+msgid "<variable id=\"cellcopy\"><link href=\"text/scalc/guide/cellcopy.xhp\" name=\"Only Copy Visible Cells\">Only Copy Visible Cells</link></variable>"
+msgstr "<variable id=\"cellcopy\"><link href=\"text/scalc/guide/cellcopy.xhp\" name=\"Copiar sólo celdas visibles\">Copiar sólo celdas visibles</link></variable>"
+
+#: cellcopy.xhp#par_id3148577.2.help.text
+msgid "Assume you have hidden a few rows in a cell range. Now you want to copy, delete, or format only the remaining visible rows."
+msgstr "Imagine que en un área de celdas ha ocultado algunas filas o columnas y ahora desea copiar sólo las celdas que han quedado visibles."
+
+#: cellcopy.xhp#par_id3154729.3.help.text
+msgid "$[officename] behavior depends on how the cells were made invisible, by a filter or manually."
+msgstr "$[officename] reaccionará de manera diversa en el procedimiento de copia según el método que haya seguido para ocultar las celdas (que ya no se ven en la pantalla) y según el motivo que lo haya llevado a ello."
+
+#: cellcopy.xhp#par_id3155603.4.help.text
+msgid "Method and Action"
+msgstr "Método y acción"
+
+#: cellcopy.xhp#par_id3150751.5.help.text
+msgctxt "cellcopy.xhp#par_id3150751.5.help.text"
+msgid "Result"
+msgstr "<emph>Resultado</emph>"
+
+#: cellcopy.xhp#par_id3149018.6.help.text
+msgid "Cells were filtered by AutoFilters, standard filters or advanced filters."
+msgstr "Las celdas se filtraron con Filtros automáticos, filtros predeterminados o filtros avanzados."
+
+#: cellcopy.xhp#par_id3150044.7.help.text
+msgctxt "cellcopy.xhp#par_id3150044.7.help.text"
+msgid "Copy, delete, move, or format a selection of currently visible cells."
+msgstr "<emph>Copie</emph> las celdas visibles con la función de copiar y pegar en el portapapeles o con el botón central o arrástrelas y colóquelas pulsando la tecla Control."
+
+#: cellcopy.xhp#par_id3146918.8.help.text
+msgid "Only the visible cells of the selection are copied, deleted, moved, or formatted."
+msgstr "Se copian sólo las celdas aún visibles."
+
+#: cellcopy.xhp#par_id3166427.12.help.text
+msgid "Cells were hidden using the <emph>Hide</emph> command in the context menu of the row or column headers, or through an <link href=\"text/scalc/01/12080000.xhp\" name=\"outline\">outline</link>."
+msgstr "Las celdas se han ocultado manualmente mediante la orden <emph>Ocultar</emph> del menú contextual de los encabezamientos de fila o columna, o a través de un <link href=\"text/scalc/01/12080000.xhp\" name=\"esquema\">esquema</link>."
+
+#: cellcopy.xhp#par_id3152990.13.help.text
+msgctxt "cellcopy.xhp#par_id3152990.13.help.text"
+msgid "Copy, delete, move, or format a selection of currently visible cells."
+msgstr "Copie, elimine, mueva o aplique formato a una selección de celdas visibles."
+
+#: cellcopy.xhp#par_id3154371.14.help.text
+msgid "All cells of the selection, including the hidden cells, are copied, deleted, moved, or formatted."
+msgstr "Se copian o desplazan todas las celdas, incluso las ocultas."
+
+#: filters.xhp#tit.help.text
+msgid "Applying Filters"
+msgstr "Aplicar filtros"
+
+#: filters.xhp#bm_id3153896.help.text
+msgid "<bookmark_value>filters; applying/removing</bookmark_value> <bookmark_value>rows;removing/redisplaying with filters</bookmark_value> <bookmark_value>removing;filters</bookmark_value>"
+msgstr "<bookmark_value>filtros; aplicar/quitar</bookmark_value> <bookmark_value>filas;quitar/volver a mostrar con filtros</bookmark_value> <bookmark_value>quitar;filtros</bookmark_value>"
+
+#: filters.xhp#hd_id3153896.70.help.text
+msgid "<variable id=\"filters\"><link href=\"text/scalc/guide/filters.xhp\" name=\"Applying Filters\">Applying Filters</link></variable>"
+msgstr "<variable id=\"filters\"><link href=\"text/scalc/guide/filters.xhp\" name=\"Aplicar filtros\">Aplicar filtros</link></variable>"
+
+#: filters.xhp#par_id3150869.2.help.text
+msgid "Filters and advanced filters allow you to work on certain filtered rows (records) of a data range. In the spreadsheets in $[officename] there are various possibilities for applying filters."
+msgstr "Los diferentes tipos de filtros permiten garantizar que sólo algunas de las filas (registros) de un área de datos sean visibles. Las hojas de cálculo de $[officename] disponen de diversas posibilidades para la aplicación de filtros."
+
+#: filters.xhp#par_id3155131.3.help.text
+msgid "One use for the <emph>AutoFilter</emph> function is to quickly restrict the display to records with identical entries in a data field."
+msgstr "Utilice la función <emph>AutoFiltro</emph> para mostrar únicamente aquellos registros de datos que coincidan con el campo de datos."
+
+#: filters.xhp#par_id3146119.4.help.text
+msgid "In the <emph>Standard Filter</emph> dialog, you can also define ranges which contain the values in particular data fields. You can use the standard filter to connect the conditions with either a logical AND or a logical OR operator."
+msgstr "En el cuadro de diálogo <emph>Filtro predeterminado</emph>, también puede definir áreas que contengan los valores en determinados campos de datos. Puede utilizar el filtro predeterminado para conectar las condiciones con el operador lógico Y u O."
+
+#: filters.xhp#par_id3150010.5.help.text
+msgid "The <emph>Advanced filter</emph> allows up to a total of eight filter conditions. With advanced filters you enter the conditions directly into the sheet."
+msgstr "El <emph>Filtro avanzado</emph> permite hasta un total de ocho condiciones de filtro. Con los filtros avanzados, las condiciones se especifican directamente en la hoja."
+
+#: filters.xhp#par_id9384746.help.text
+msgid "To remove a filter, so that you see all cells again, click inside the area where the filter was applied, then choose <item type=\"menuitem\">Data - Filter - Remove Filter</item>."
+msgstr "Para eliminar un filtro, de forma que pueda ver todas las celdas nuevamente, presione clic dentro del área que tiene el filtro aplicado, luego escoja <item type=\"menuitem\">Datos - Filtros - Eliminar Filtro</item>."
+
+#: filters.xhp#par_idN10663.help.text
+msgid "When you select multiple rows from an area where a filter was applied, then this selection can include rows that are visible and rows that are hidden by the filter. If you then apply formatting, or delete the selected rows, this action then applies only to the visible rows. The hidden rows are not affected. "
+msgstr "Cuando seleccione múltiples filas de una área con el filtro aplicado, es decir, esta selección incluye filas visibles y ocultas por el filtro. Si posteriormente aplica formato, o borra las filas seleccionadas, esta acción aplica únicamente a las filas visibles. Las filas ocultas no se afectan."
+
+#: filters.xhp#par_id218817.help.text
+msgid "This is the opposite to rows that you have hidden manually by the <emph>Format - Rows - Hide Rows</emph> command. Manually hidden rows are deleted when you delete a selection that contains them."
+msgstr "Esto es lo contrario a las filas que le han sido ocultadas manualmente por el comando <emph>Formato - Filas - Ocultar filas</emph>. Las filas manualmente ocultas se suprimen cuando se borra una selección que las contiene."
+
+#: datapilot_filtertable.xhp#tit.help.text
+#, fuzzy
+msgid "Filtering Pivot Tables"
+msgstr "Filtrar tablas del Piloto de datos"
+
+#: datapilot_filtertable.xhp#bm_id3150792.help.text
+#, fuzzy
+msgid "<bookmark_value>pivot table function; filtering tables</bookmark_value><bookmark_value>filtering;pivot tables</bookmark_value>"
+msgstr "<bookmark_value>Piloto de datos; filtrar tablas</bookmark_value> <bookmark_value>filtrar;tablas del Piloto de datos</bookmark_value>"
+
+#: datapilot_filtertable.xhp#hd_id3150792.help.text
+#, fuzzy
+msgid "<variable id=\"datapilot_filtertable\"><link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"Filtering Pivot Tables\">Filtering Pivot Tables</link></variable>"
+msgstr "<variable id=\"datapilot_filtertable\"><link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"Filtering DataPilot Tables\">Filtrar la hoja del Piloto de datos</link></variable>"
+
+#: datapilot_filtertable.xhp#par_id3153192.help.text
+#, fuzzy
+msgid "You can use filters to remove unwanted data from a pivot table."
+msgstr "Aunque la hoja del Piloto de datos se crea según lo determine el usuario, puede que no todos los datos que proporciona la hoja sean de interés. En este caso, se utilizarán filtros que extraigan los datos correspondientes a partir de la hoja disponible con ayuda de ciertos criterios."
+
+#: datapilot_filtertable.xhp#par_id3150441.help.text
+#, fuzzy
+msgid "Click the <emph>Filter</emph> button in the sheet to call up the dialog for the filter conditions. Alternatively, call up the context menu of the pivot table and select the <emph>Filter</emph> command. The <link href=\"text/scalc/01/12090103.xhp\" name=\"Filter\"><emph>Filter</emph></link> dialog appears. Here you can filter the pivot table."
+msgstr "Haga clic en el botón <emph>Filtro</emph> de la hoja para abrir el diálogo de condiciones de filtro. Otra posibilidad es abrir el menú contextual de la tabla del Piloto de datos y seleccionar el comando <emph>Filtrar</emph>. Se abre el diálogo <link href=\"text/scalc/01/12090103.xhp\" name=\"Filtro\"><emph>Filtro</emph></link>. Puede utilizar dicho diálogo para filtrar la tabla del Piloto de datos."
+
+#: datapilot_filtertable.xhp#par_id315044199.help.text
+msgid "You can also click the arrow on a button in the pivot table to show a pop-up window. In this pop-up window, you can edit the visibility settings of the associated field."
+msgstr ""
+
+#: datapilot_filtertable.xhp#par_id0720201001344485.help.text
+msgid "The pop-up window displays a list of field members associated with that field. A check box is placed to the left of each field member name. When a field has an alternative display name that differs from its original name, that name is displayed in the list."
+msgstr ""
+
+#: datapilot_filtertable.xhp#par_id0720201001344449.help.text
+msgid "Enable or disable a checkbox to show or hide the associated field member in the pivot table."
+msgstr ""
+
+#: datapilot_filtertable.xhp#par_id0720201001344493.help.text
+#, fuzzy
+msgid "Enable or disable the <emph>All</emph> checkbox to show all or none of the field members."
+msgstr "Activa la caja de verficación con <emph>Vincular a archivo</emph> para insertar el archivo como un vinculo."
+
+#: datapilot_filtertable.xhp#par_id0720201001344431.help.text
+msgid "Select a field member in the pop-up window and click the <item type=\"menuitem\">Show only the current item</item> button to show only the selected field member. All other field members are hidden in the pivot table."
+msgstr ""
+
+#: datapilot_filtertable.xhp#par_id0720201001344484.help.text
+msgid "Select a field member in the pop-up window and click the <item type=\"menuitem\">Hide only the current item</item> button to hide only the selected field member. All other field members are shown in the pivot table."
+msgstr ""
+
+#: datapilot_filtertable.xhp#par_id0720201001344578.help.text
+msgid "Commands enable you to sort the field members in ascending order, descending order, or using a custom sort list."
+msgstr ""
+
+#: datapilot_filtertable.xhp#par_id0720201001344584.help.text
+#, fuzzy
+msgid "To edit the custom sort lists, open <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists."
+msgstr "Elija <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - %PRODUCTNAME Calc - Ver</emph>."
+
+#: datapilot_filtertable.xhp#par_id0720201001344811.help.text
+msgid "The arrow to open the pop-up window is normally black. When the field contains one or more hidden field members, the arrow is blue and displays a tiny square at its lower-right corner."
+msgstr ""
+
+#: datapilot_filtertable.xhp#par_id0720201001344884.help.text
+#, fuzzy
+msgid "You can also open the pop-up window by positioning the cell cursor at the button and pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+D."
+msgstr "Puede hacer clic en la página de Ayuda y presionar <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F."
+
+#: specialfilter.xhp#tit.help.text
+msgid "Filter: Applying Advanced Filters"
+msgstr "Filtro: Aplicar filtros avanzados"
+
+#: specialfilter.xhp#bm_id3148798.help.text
+msgid "<bookmark_value>filters;defining advanced filters </bookmark_value><bookmark_value>advanced filters</bookmark_value><bookmark_value>defining; advanced filters</bookmark_value><bookmark_value>database ranges; advanced filters</bookmark_value>"
+msgstr "<bookmark_value>filtros;definir filtros avanzados </bookmark_value><bookmark_value>filtros avanzados</bookmark_value><bookmark_value>definir; filtros avanzados</bookmark_value><bookmark_value>rangos de base de datos; filtros avanzados</bookmark_value>"
+
+#: specialfilter.xhp#hd_id3148798.18.help.text
+msgid "<variable id=\"specialfilter\"><link href=\"text/scalc/guide/specialfilter.xhp\" name=\"Filter: Applying Advanced Filters\">Filter: Applying Advanced Filters</link> </variable>"
+msgstr "<variable id=\"specialfilter\"><link href=\"text/scalc/guide/specialfilter.xhp\" name=\"Filter: Applying Advanced Filters\">Filtro: Aplicando Filtros Avanzados</link> </variable>"
+
+#: specialfilter.xhp#par_id3145785.19.help.text
+msgid "Copy the column headers of the sheet ranges to be filtered into an empty area of the sheet, and then enter the criteria for the filter in a row beneath the headers. Horizontally arranged data in a row will always be logically connected with AND, and vertically arranged data in a column will always be logically connected with OR."
+msgstr "Copie en un área vacía de la hoja los encabezados de columna de las áreas de hoja que serán filtrados, y luego, introduzca el criterio para el filtro en una fila situada mas abajo de los encabezados. Los datos dispuestos horizontalmente en una fila estarán siempre conectados mediante el operador lógico AND, mientras que los dispuestos verticalmente en una columna lo estarán mediante el operador OR."
+
+#: specialfilter.xhp#par_id3153142.20.help.text
+msgid "Once you have created a filter matrix, select the sheet ranges to be filtered. Open the <emph>Advanced Filter</emph> dialog by choosing <emph>Data - Filter - Advanced Filter</emph>, and define the filter conditions."
+msgstr "Una vez creada la matriz de filtro, seleccione las áreas de la hoja que se deben filtrar. Abra el diálogo <emph>Filtro especial</emph> mediante <emph>Datos - Filtro - Filtro especial</emph> y defina las condiciones del filtro."
+
+#: specialfilter.xhp#par_id3153726.21.help.text
+msgid "Then click OK, and you will see that only the rows from the original sheet whose contents have met the search criteria are still visible. All other rows are temporarily hidden and can be made to reappear with the <emph>Format - Row - Show </emph>command."
+msgstr "A continuación pulse Aceptar; comprobará que las únicas filas visibles son aquellas de la hoja original cuyo contenido cumple los criterios de filtro. Las demás filas se han ocultado de forma temporal; para hacer que reaparezcan utilice la orden <emph>Formato - Fila - Mostrar</emph>."
+
+#: specialfilter.xhp#par_id3149664.22.help.text
+msgid " <emph>Example</emph> "
+msgstr "<emph>Ejemplo</emph>"
+
+#: specialfilter.xhp#par_id3147427.23.help.text
+msgid "Load a spreadsheet with a large number of records. We are using a fictional <emph>Turnover</emph> document, but you can just as easily use any other document. The document has the following layout:"
+msgstr "Cargue una hoja de cálculo con un gran número de registros. Utilizaremos el documento ficticio <emph>Rendimiento</emph>, pero puede servir cualquier otro. El diseño del documento es el siguiente:"
+
+#: specialfilter.xhp#par_id3154510.24.help.text
+msgctxt "specialfilter.xhp#par_id3154510.24.help.text"
+msgid " <emph>A</emph> "
+msgstr "<emph>A</emph>"
+
+#: specialfilter.xhp#par_id3150327.25.help.text
+msgctxt "specialfilter.xhp#par_id3150327.25.help.text"
+msgid " <emph>B</emph> "
+msgstr "<emph>B</emph>"
+
+#: specialfilter.xhp#par_id3154756.26.help.text
+msgctxt "specialfilter.xhp#par_id3154756.26.help.text"
+msgid " <emph>C</emph> "
+msgstr "<emph>C</emph>"
+
+#: specialfilter.xhp#par_id3155335.27.help.text
+msgctxt "specialfilter.xhp#par_id3155335.27.help.text"
+msgid " <emph>D</emph> "
+msgstr "<emph>D</emph>"
+
+#: specialfilter.xhp#par_id3146315.28.help.text
+msgctxt "specialfilter.xhp#par_id3146315.28.help.text"
+msgid " <emph>E</emph> "
+msgstr "<emph>E</emph>"
+
+#: specialfilter.xhp#par_id3145790.29.help.text
+msgid " <emph>1</emph> "
+msgstr "<emph>1</emph>"
+
+#: specialfilter.xhp#par_id3159239.30.help.text
+msgctxt "specialfilter.xhp#par_id3159239.30.help.text"
+msgid "Month"
+msgstr "Mes"
+
+#: specialfilter.xhp#par_id3150086.31.help.text
+msgctxt "specialfilter.xhp#par_id3150086.31.help.text"
+msgid "Standard"
+msgstr "Predeterminado"
+
+#: specialfilter.xhp#par_id3150202.32.help.text
+msgctxt "specialfilter.xhp#par_id3150202.32.help.text"
+msgid "Business"
+msgstr "Business"
+
+#: specialfilter.xhp#par_id3150883.33.help.text
+msgctxt "specialfilter.xhp#par_id3150883.33.help.text"
+msgid "Luxury"
+msgstr "Lujo"
+
+#: specialfilter.xhp#par_id3152987.34.help.text
+msgctxt "specialfilter.xhp#par_id3152987.34.help.text"
+msgid "Suite"
+msgstr "Suite"
+
+#: specialfilter.xhp#par_id3154486.35.help.text
+msgid " <emph>2</emph> "
+msgstr "<emph>2</emph>"
+
+#: specialfilter.xhp#par_id3148839.36.help.text
+msgctxt "specialfilter.xhp#par_id3148839.36.help.text"
+msgid "January"
+msgstr "Enero"
+
+#: specialfilter.xhp#par_id3153816.37.help.text
+msgid "125600"
+msgstr "125600"
+
+#: specialfilter.xhp#par_id3157978.38.help.text
+msgid "200500"
+msgstr "200500"
+
+#: specialfilter.xhp#par_id3155268.39.help.text
+msgid "240000"
+msgstr "240000"
+
+#: specialfilter.xhp#par_id3153286.40.help.text
+msgctxt "specialfilter.xhp#par_id3153286.40.help.text"
+msgid "170000"
+msgstr "170000"
+
+#: specialfilter.xhp#par_id3146782.41.help.text
+msgid " <emph>3</emph> "
+msgstr "<emph>3</emph>"
+
+#: specialfilter.xhp#par_id3149900.42.help.text
+msgid "February"
+msgstr "Febrero"
+
+#: specialfilter.xhp#par_id3154763.43.help.text
+msgid "160000"
+msgstr "160000"
+
+#: specialfilter.xhp#par_id3150050.44.help.text
+msgid "180300"
+msgstr "180300"
+
+#: specialfilter.xhp#par_id3153801.45.help.text
+msgid "362000"
+msgstr "362000"
+
+#: specialfilter.xhp#par_id3154708.46.help.text
+msgid "220000"
+msgstr "220000"
+
+#: specialfilter.xhp#par_id3151191.47.help.text
+msgid " <emph>4</emph> "
+msgstr "<emph>4</emph>"
+
+#: specialfilter.xhp#par_id3147250.48.help.text
+msgid "March"
+msgstr "Marzo"
+
+#: specialfilter.xhp#par_id3153334.49.help.text
+msgctxt "specialfilter.xhp#par_id3153334.49.help.text"
+msgid "170000"
+msgstr "170000"
+
+#: specialfilter.xhp#par_id3151391.50.help.text
+msgid "and so on..."
+msgstr "etc."
+
+#: specialfilter.xhp#par_id3147300.51.help.text
+msgid "Copy row 1 with the row headers (field names), to row 20, for example. Enter the filter conditions linked with OR in rows 21, 22, and so on."
+msgstr "Copie la fila 1, con los encabezamientos = nombres de campos de datos, en la fila 20, por ejemplo. Introduzca las condiciones de filtro asociadas con \"O\" en las filas 21, 22, etc. El área tendría este aspecto:"
+
+#: specialfilter.xhp#par_id3159115.52.help.text
+msgctxt "specialfilter.xhp#par_id3159115.52.help.text"
+msgid " <emph>A</emph> "
+msgstr "<emph>A</emph>"
+
+#: specialfilter.xhp#par_id3146886.53.help.text
+msgctxt "specialfilter.xhp#par_id3146886.53.help.text"
+msgid " <emph>B</emph> "
+msgstr "<emph>B</emph>"
+
+#: specialfilter.xhp#par_id3153124.54.help.text
+msgctxt "specialfilter.xhp#par_id3153124.54.help.text"
+msgid " <emph>C</emph> "
+msgstr "<emph>C</emph>"
+
+#: specialfilter.xhp#par_id3152979.55.help.text
+msgctxt "specialfilter.xhp#par_id3152979.55.help.text"
+msgid " <emph>D</emph> "
+msgstr "<emph>D</emph>"
+
+#: specialfilter.xhp#par_id3145827.56.help.text
+msgctxt "specialfilter.xhp#par_id3145827.56.help.text"
+msgid " <emph>E</emph> "
+msgstr "<emph>E</emph>"
+
+#: specialfilter.xhp#par_id3149892.57.help.text
+msgid " <emph>20</emph> "
+msgstr "<emph>20</emph>"
+
+#: specialfilter.xhp#par_id3150693.58.help.text
+msgctxt "specialfilter.xhp#par_id3150693.58.help.text"
+msgid "Month"
+msgstr "Mes"
+
+#: specialfilter.xhp#par_id3147475.59.help.text
+msgctxt "specialfilter.xhp#par_id3147475.59.help.text"
+msgid "Standard"
+msgstr "Predeterminado"
+
+#: specialfilter.xhp#par_id3154846.60.help.text
+msgctxt "specialfilter.xhp#par_id3154846.60.help.text"
+msgid "Business"
+msgstr "Business"
+
+#: specialfilter.xhp#par_id3153082.61.help.text
+msgctxt "specialfilter.xhp#par_id3153082.61.help.text"
+msgid "Luxury"
+msgstr "Lujo"
+
+#: specialfilter.xhp#par_id3149506.62.help.text
+msgctxt "specialfilter.xhp#par_id3149506.62.help.text"
+msgid "Suite"
+msgstr "Suite"
+
+#: specialfilter.xhp#par_id3149188.63.help.text
+msgid " <emph>21</emph> "
+msgstr "<emph>21</emph>"
+
+#: specialfilter.xhp#par_id3149956.64.help.text
+msgctxt "specialfilter.xhp#par_id3149956.64.help.text"
+msgid "January"
+msgstr "Enero"
+
+#: specialfilter.xhp#par_id3150865.65.help.text
+msgid " <emph>22</emph> "
+msgstr "<emph>22</emph>"
+
+#: specialfilter.xhp#par_id3155957.66.help.text
+msgid "<160000"
+msgstr "<160000"
+
+#: specialfilter.xhp#par_id3153566.67.help.text
+msgid "Specify that only rows which either have the value <item type=\"literal\">January</item> in the <emph>Month</emph> cells OR a value of under 160000 in the <emph>Standard</emph> cells will be displayed."
+msgstr "Especifique que sólo se muestren las filas con el valor <item type=\"literal\">Enero</item> en las celdas <emph>Mes</emph> O un valor por debajo de 160.000 en las celdas <emph>Predeterminadas</emph>."
+
+#: specialfilter.xhp#par_id3147372.68.help.text
+msgid "Choose <emph>Data - Filter - Advanced Filter</emph>, and then select the range A20:E22. After you click OK, only the filtered rows will be displayed. The other rows will be hidden from view."
+msgstr "Elija <emph>Datos - Filtro - Filtro especial</emph> y a continuación seleccione el área A20:E22. Después de pulsar Aceptar se mostrarán únicamente las filas filtradas. El resto de filas quedarán ocultas."
+
+#: print_exact.xhp#tit.help.text
+msgid "Defining Number of Pages for Printing"
+msgstr "Definir el número de páginas para imprimir"
+
+#: print_exact.xhp#bm_id3153194.help.text
+msgid "<bookmark_value>printing; sheet counts</bookmark_value><bookmark_value>sheets; printing sheet counts</bookmark_value><bookmark_value>page breaks; spreadsheet preview</bookmark_value><bookmark_value>editing;print ranges</bookmark_value><bookmark_value>viewing;print ranges</bookmark_value><bookmark_value>previews;page breaks for printing</bookmark_value>"
+msgstr "<bookmark_value>imprimir;número de hojas</bookmark_value><bookmark_value>hojas;imprimir número de hojas</bookmark_value><bookmark_value>saltos de página;vista previa de hoja de cálculo</bookmark_value><bookmark_value>editar;áreas de impresión</bookmark_value><bookmark_value>ver;áreas de impresión</bookmark_value><bookmark_value>vistas previas;saltos de página para impresión</bookmark_value>"
+
+#: print_exact.xhp#hd_id3153194.1.help.text
+msgid "<variable id=\"print_exact\"><link href=\"text/scalc/guide/print_exact.xhp\" name=\"Defining Number of Pages for Printing\">Defining Number of Pages for Printing</link></variable>"
+msgstr "<variable id=\"print_exact\"><link href=\"text/scalc/guide/print_exact.xhp\" name=\"Definir el número de páginas para imprimir\">Definir el número de páginas para imprimir</link></variable>"
+
+#: print_exact.xhp#par_id3153771.2.help.text
+msgid "If a sheet is too large for a single printed page, $[officename] Calc will print the current sheet evenly divided over several pages. Since the automatic page break does not always take place in the optimal position, you can define the page distribution yourself."
+msgstr "Si la hoja actual es demasiado grande para imprimirla en una página, $[officename] Calc la dividirá en varias. Como el salto de página automático no siempre se efectua en el lugar que usted desea, usted mismo podrá determinar en qué lugar dividir la página:"
+
+#: print_exact.xhp#par_id3159155.3.help.text
+msgctxt "print_exact.xhp#par_id3159155.3.help.text"
+msgid "Go to the sheet to be printed."
+msgstr "Vaya a la hoja a imprimir."
+
+#: print_exact.xhp#par_id3150012.4.help.text
+msgctxt "print_exact.xhp#par_id3150012.4.help.text"
+msgid "Choose <emph>View - Page Break Preview</emph>."
+msgstr "Active <emph>Ver - Previsualización del salto de página</emph>."
+
+#: print_exact.xhp#par_id3146974.5.help.text
+msgid "You will see the automatic distribution of the sheet across the print pages. The automatically created print ranges are indicated by dark blue lines, and the user-defined ones by light blue lines. The page breaks (line breaks and column breaks) are marked as black lines."
+msgstr "En las páginas a imprimir verá la distribución automática de la hoja. Las áreas de impresión creadas automáticamente se señalizan mediante líneas de color azul oscuro y las áreas de impresión personalizadas mediante líneas azul cielo. Los saltos de página (saltos de fila y de columna) se marcarán con líneas negras."
+
+#: print_exact.xhp#par_id3152578.6.help.text
+msgid "You can move the blue lines with the mouse. You will find further options in the Context menu, including adding an additional print range, removing the scaling and inserting additional manual line and column breaks."
+msgstr "Las líneas azules se pueden mover con el ratón. En el menú contextual hay más opciones, incluidas agregar un área de impresión adicional, eliminar la escala, o insertar saltos de línea o columna adicionales."
+
+#: print_exact.xhp#par_id3151073.7.help.text
+msgctxt "print_exact.xhp#par_id3151073.7.help.text"
+msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">View - Page Break Preview</link>"
+msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"Ver - Previsualización del salto de página\">Ver - Previsualización del salto de página</link>"
+
+#: userdefined_function.xhp#tit.help.text
+msgid "User-Defined Functions"
+msgstr "Funciones definidas por el usuario"
+
+#: userdefined_function.xhp#bm_id3155411.help.text
+msgid "<bookmark_value>functions; user-defined</bookmark_value><bookmark_value>user-defined functions</bookmark_value><bookmark_value>Basic IDE for user-defined functions</bookmark_value><bookmark_value>IDE; Basic IDE</bookmark_value><bookmark_value>programming;functions</bookmark_value>"
+msgstr "<bookmark_value>funciones;del usuario</bookmark_value><bookmark_value>funciones del usuario</bookmark_value><bookmark_value>IDE de Basic para funciones del usuario</bookmark_value><bookmark_value>IDE;IDE de Basic</bookmark_value><bookmark_value>programar;funciones</bookmark_value>"
+
+#: userdefined_function.xhp#hd_id3155411.1.help.text
+msgid "<variable id=\"userdefined_function\"><link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Defining Functions Yourself\">User-Defined Functions</link></variable>"
+msgstr "<variable id=\"userdefined_function\"><link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Definir funciones uno mismo\">Funciones del usuario</link></variable>"
+
+#: userdefined_function.xhp#par_id3153969.2.help.text
+msgid "You can apply user-defined functions in $[officename] Calc in the following ways:"
+msgstr "Las funciones personalizadas se pueden utilizar en $[officename] Calc de las siguientes maneras:"
+
+#: userdefined_function.xhp#par_id3145366.4.help.text
+msgid "You can define your own functions using the Basic-IDE. This method requires a basic knowledge of programming."
+msgstr "Mediante la IDE de Basic se pueden definir funciones propias, aun sin tener conocimientos avanzados de programación."
+
+#: userdefined_function.xhp#par_id3153768.3.help.text
+msgid "You can program functions as <link href=\"text/scalc/01/04060111.xhp\" name=\"add-ins\">add-ins</link>. This method requires an advanced knowledge of programming."
+msgstr "Las funciones se pueden programar como <link href=\"text/scalc/01/04060111.xhp\" name=\"add-ins\">add-ins</link>. Este método exige conocimientos avanzados de programación."
+
+#: userdefined_function.xhp#hd_id3149260.6.help.text
+msgid "Defining A Function Using %PRODUCTNAME Basic"
+msgstr "Definir una función con %PRODUCTNAME Basic"
+
+#: userdefined_function.xhp#par_id3148456.7.help.text
+msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item>."
+msgstr "Seleccione <item type=\"menuitem\">Herramientas - Macros - Organizar macros - %PRODUCTNAME Basic</item>."
+
+#: userdefined_function.xhp#par_id3154510.8.help.text
+msgid "Click the <emph>Edit</emph> button. You will now see the Basic IDE."
+msgstr "Pulse sobre el botón <emph>Editar</emph>. Verá el Basic-IDE."
+
+#: userdefined_function.xhp#par_id3150327.9.help.text
+msgid "Enter the function code. In this example, we define a <item type=\"literal\">VOL(a; b; c)</item> function that calculates the volume of a rectangular solid with side lengths <item type=\"literal\">a</item>, <item type=\"literal\">b</item> and <item type=\"literal\">c</item>:"
+msgstr "Introduzca el código de función. En este ejemplo, se define la función <item type=\"literal\">VOL(a; b; c)</item>, que calcula el volumen de un cuerpo sólido rectangular con longitudes <item type=\"literal\">a</item>, <item type=\"literal\">b</item> y <item type=\"literal\">c</item> en los lados:"
+
+#: userdefined_function.xhp#par_id3155443.10.help.text
+msgid "Close the Basic-IDE window."
+msgstr "Cierre la ventana de la IDE de Basic."
+
+#: userdefined_function.xhp#par_id3150043.11.help.text
+msgid "Your function is automatically saved in the default module and is now available. If you apply the function in a Calc document that is to be used on another computer, you can copy the function to the Calc document as described in the next section."
+msgstr "La función se guarda automáticamente en el módulo predeterminado y queda disponible. Si va a aplicar la función en un documento de Calc que se va a utilizar en otro equipo, puede copiar la función en el documento de Calc como se describe en el apartado siguiente."
+
+#: userdefined_function.xhp#hd_id3147340.18.help.text
+msgid "Copying a Function To a Document"
+msgstr "Copiar una función en un documento"
+
+#: userdefined_function.xhp#par_id3145232.19.help.text
+msgid "In stage 2 of \"Defining A Function Using %PRODUCTNAME Basic\", in the <emph>Macro</emph> dialog you clicked on <emph>Edit </emph>. As the default, in the <emph>Macro from</emph> field the <emph>My Macros - Standard - Module1</emph> module is selected. The <emph>Standard</emph> library resides locally in your user directory."
+msgstr "En el paso 2 de \"Definir una función con %PRODUCTNAME Basic\", en el diálogo <emph>Macro</emph> , hizo clic en <emph>Editar</emph>. De manera predeterminada, en el campo <emph>Macro desde</emph> se encuentra seleccionado el módulo <emph>Mis macros - Estándar - Módulo1</emph>. La biblioteca <emph>Estándar</emph> se encuentra en el directorio del usuario de manera local."
+
+#: userdefined_function.xhp#par_id3154022.20.help.text
+msgid "If you want to copy the user-defined function to a Calc document:"
+msgstr "Si desea copiar la función definida por el usuario en un documento de Calc:"
+
+#: userdefined_function.xhp#par_id3150304.21.help.text
+msgctxt "userdefined_function.xhp#par_id3150304.21.help.text"
+msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item> ."
+msgstr "Seleccione <item type=\"menuitem\">Herramientas - Macros - Organizar macros - %PRODUCTNAME Basic</item>."
+
+#: userdefined_function.xhp#par_id3150086.22.help.text
+msgid "In the <emph>Macro from</emph> field select <emph>My Macros - Standard - Module1</emph> and click <emph>Edit</emph>."
+msgstr "En el campo <emph>Macro desde</emph>, seleccione <emph>Mis macros - Estándar - Módulo1</emph> y haga clic en <emph>Editar</emph>."
+
+#: userdefined_function.xhp#par_id3166430.23.help.text
+msgid "In the Basic-IDE, select the source of your user-defined function and copy it to the clipboard."
+msgstr "En la IDE de Basic, seleccione el origen de la función definida por el usuario y cópielo en el portapapeles."
+
+#: userdefined_function.xhp#par_idN1081D.help.text
+msgid "Close the Basic-IDE."
+msgstr "Cierre la IDE de Basic."
+
+#: userdefined_function.xhp#par_id3150517.24.help.text
+msgctxt "userdefined_function.xhp#par_id3150517.24.help.text"
+msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item> ."
+msgstr "Seleccione <item type=\"menuitem\">Herramientas - Macros - Organizar macros - %PRODUCTNAME Basic</item>."
+
+#: userdefined_function.xhp#par_id3145384.25.help.text
+msgid "In the <emph>Macro from</emph> field select <emph>(Name of the Calc document) - Standard - Module1</emph>. Click <emph>Edit</emph>."
+msgstr "En el campo <emph>Macro desde</emph>, seleccione <emph>(Nombre de documento de Calc) - Estándar - Módulo1</emph>. Haga clic en <emph>Editar</emph>."
+
+#: userdefined_function.xhp#par_id3148699.26.help.text
+msgid "Paste the clipboard contents in the Basic-IDE of the document."
+msgstr "Pege el contenido del portapapeles en el Basic-IDE del documento."
+
+#: userdefined_function.xhp#hd_id3153305.12.help.text
+msgid "Applying a User-defined Function in $[officename] Calc"
+msgstr "Aplicar una función definida por el usuario en $[officename] Calc"
+
+#: userdefined_function.xhp#par_id3148869.13.help.text
+msgid "Once you have defined the function <item type=\"literal\">VOL(a; b; c)</item> in the Basic-IDE, you can apply it the same way as the built-in functions of $[officename] Calc."
+msgstr "Una vez definida la función <item type=\"literal\">VOL(a; b; c)</item> en la IDE de Basic, puede aplicarla del mismo modo que las funciones instaladas en $[officename] Calc."
+
+#: userdefined_function.xhp#par_id3148606.14.help.text
+msgid "Open a Calc document and enter numbers for the function parameters <item type=\"literal\">a</item>, <item type=\"literal\">b</item>, and <item type=\"literal\">c</item> in cells A1, B1, and C1."
+msgstr "Abra un documento de Calc e introduzca números para los parámetros de función <item type=\"literal\">a</item>, <item type=\"literal\">b</item> y <item type=\"literal\">c</item> en las celdas A1, B1 y C1."
+
+#: userdefined_function.xhp#par_id3156019.15.help.text
+msgid "Set the cursor in another cell and enter the following:"
+msgstr "Coloque el cursor en otra celda e introduzca lo siguiente:"
+
+#: userdefined_function.xhp#par_id3155264.16.help.text
+msgid "=VOL(A1;B1;C1)"
+msgstr "=VOL(A1;B1;C1)"
+
+#: userdefined_function.xhp#par_id3146776.17.help.text
+msgid "The function is evaluated and you will see the result in the selected cell."
+msgstr "La función se evalúa y el resultado se observa en la celda seleccionada."
+
+#: formula_enter.xhp#tit.help.text
+msgid "Entering Formulas "
+msgstr "Introducir fórmulas"
+
+#: formula_enter.xhp#bm_id3150868.help.text
+msgid "<bookmark_value>formula bar; input line</bookmark_value><bookmark_value>input line in formula bar</bookmark_value><bookmark_value>formulas; inputting</bookmark_value><bookmark_value>inserting;formulas</bookmark_value>"
+msgstr "<bookmark_value>barra de fórmulas;línea de entrada</bookmark_value><bookmark_value>línea de entrada en barra de fórmulas</bookmark_value><bookmark_value>fórmulas;introducir</bookmark_value><bookmark_value>insertar;fórmulas</bookmark_value>"
+
+#: formula_enter.xhp#hd_id3150868.9.help.text
+msgid "<variable id=\"formula_enter\"><link href=\"text/scalc/guide/formula_enter.xhp\" name=\"Entering Formulas\">Entering Formulas</link></variable>"
+msgstr "<variable id=\"formula_enter\"><link href=\"text/scalc/guide/formula_enter.xhp\" name=\"Entering Formulas\">Ingresar fórmulas</link></variable>"
+
+#: formula_enter.xhp#par_id6848353.help.text
+msgid "You can enter formulas in several ways: using the icons, or by typing on the keyboard, or by a mixture of both methods."
+msgstr "Puede entrar formulas en varios maneras: con los iconos, teclear en el teclado o una mezcla de ambos maneras."
+
+#: formula_enter.xhp#par_id3145364.10.help.text
+msgid "Click the cell in which you want to enter the formula."
+msgstr "Pulse en la celda en la que desee introducir la fórmula."
+
+#: formula_enter.xhp#par_id3150012.11.help.text
+msgid "Click the <emph>Function</emph> icon on the Formula Bar."
+msgstr "Pulse sobre el símbolo <emph>Función</emph> (con el signo de igual) de la barra de fórmulas."
+
+#: formula_enter.xhp#par_id3156441.12.help.text
+msgid "You will now see an equals sign in the input line and you can begin to input the formula."
+msgstr "En pantalla se mostrará un signo de igual para indicar que puede empezar a escribir la fórmula"
+
+#: formula_enter.xhp#par_id3153726.3.help.text
+msgid "After entering the required values, press Enter or click <emph>Accept</emph> to insert the result in the active cell. If you want to clear your entry in the input line, press Escape or click <emph>Cancel</emph>."
+msgstr "Finalice la entrada de datos pulsando sobre la tecla Entrar o sobre el símbolo (con la marca verde) <emph>Aplicar</emph>. Para interrumpir la entrada de datos y rechazar el contenido de la línea de entrada, pulse (Esc) o el símbolo (de cruz roja) <emph>Rechazar</emph>."
+
+#: formula_enter.xhp#par_id3147394.8.help.text
+msgid "You can also enter the values and the formulas directly into the cells, even if you cannot see an input cursor. Formulas must always begin with an equals sign."
+msgstr "También se pueden escribir los valores y las fórmulas directamente en las celdas, aunque no se muestre el cursor de entrada. Las fórmulas deben empezar siempre con el signo igual."
+
+#: formula_enter.xhp#par_id4206976.help.text
+msgid "You can also press the + or - key on the numerical keyboard to start a formula. NumLock must be \"on\". For example, press the following keys in succession:"
+msgstr "Para iniciar una fórmula, también puede pulsar las teclas + o – del teclado numérico. La tecla BloqNum debe estar activada. Por ejemplo pulse las teclas siguientes una detrás de otra:"
+
+#: formula_enter.xhp#par_id1836909.help.text
+msgid "+ 5 0 - 8 Enter"
+msgstr "+ 5 0 - 8 INTRO"
+
+#: formula_enter.xhp#par_id8171330.help.text
+msgid "You see the result <item type=\"literal\">42</item> in the cell. The cell contains the formula <item type=\"literal\">=+50-8</item>."
+msgstr "Ver el resultado <item type=\"literal\">42</item> en la celda. La celda contiene la formula <item type=\"literal\">=+50-8</item>."
+
+#: formula_enter.xhp#par_id3155764.6.help.text
+msgid "If you are editing a formula with references, the references and the associated cells will be highlighted with the same color. You can now resize the reference border using the mouse, and the reference in the formula displayed in the input line also changes. <emph>Show references in color</emph> can be deactivated under <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060300.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>."
+msgstr "Si está editando una fórmula con referencias, las referencias y las celdas asociadas se resaltarán con el mismo color. Puede modificar el tamaño del borde de la referencia usando el ratón, lo que cambia también la referencia en la fórmula que se me muestra en la línea de entrada. <emph>Mostrar referencias en color</emph> puede desactivarse en <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060300.xhp\" name=\"Hojas de cálculo - Ver\">%PRODUCTNAME Calc - Ver</link>."
+
+#: formula_enter.xhp#par_id3149210.7.help.text
+msgid "<variable id=\"tip\">If you would like to view the calculation of individual elements of a formula, select the respective elements and press F9. For example, in the formula =SUM(A1:B12)*SUM(C1:D12) select the section SUM(C1:D12) and press F9 to view the subtotal for this area. </variable>"
+msgstr "<variable id=\"tip\">Si desea ver el cálculo de determinados elementos de una fórmula, seleccione dichos elementos y pulse F9. Por ejemplo, en la fórmula =SUMA(A1:B12)*SUMA(C1:D12), seleccione la sección SUMA(C1:D12) y pulse F9 para ver el subtotal de esta área. </variable>"
+
+#: formula_enter.xhp#par_id3150304.5.help.text
+msgid "If an error occurs when creating the formula, an <link href=\"text/scalc/05/02140000.xhp\" name=\"error message\">error message</link> appears in the active cell."
+msgstr "Si comete un error al crear la fórmula, en la celda activa verá el <link href=\"text/scalc/05/02140000.xhp\" name=\"código de error\">código de error</link> correspondiente."
+
+#: formula_enter.xhp#par_id3152993.13.help.text
+msgid "<link href=\"text/scalc/main0206.xhp\" name=\"Formula bar\">Formula bar</link>"
+msgstr "<link href=\"text/scalc/main0206.xhp\" name=\"Barra de fórmulas\">Barra de fórmulas</link>"
+
+#: calc_series.xhp#tit.help.text
+msgid "Automatically Calculating Series"
+msgstr "Calcular series automáticamente"
+
+#: calc_series.xhp#bm_id3150769.help.text
+msgid "<bookmark_value>series; calculating</bookmark_value> <bookmark_value>calculating; series</bookmark_value> <bookmark_value>linear series</bookmark_value> <bookmark_value>growth series</bookmark_value> <bookmark_value>date series</bookmark_value> <bookmark_value>powers of 2 calculations</bookmark_value> <bookmark_value>cells; filling automatically</bookmark_value> <bookmark_value>automatic cell filling</bookmark_value> <bookmark_value>AutoFill function</bookmark_value> <bookmark_value>filling;cells, automatically</bookmark_value>"
+msgstr "<bookmark_value>series; calcular</bookmark_value> <bookmark_value>calcular; series</bookmark_value> <bookmark_value>serie lineal</bookmark_value> <bookmark_value>serie geométrica</bookmark_value> <bookmark_value>serie de fechas</bookmark_value> <bookmark_value>cálculos de potencias de 2</bookmark_value> <bookmark_value>celdas; rellenar automáticamente</bookmark_value> <bookmark_value>rellenar celdas automáticamente</bookmark_value> <bookmark_value>Relleno automático</bookmark_value> <bookmark_value>rellenar;celdas, automáticamente</bookmark_value>"
+
+#: calc_series.xhp#hd_id3150769.6.help.text
+msgid "<variable id=\"calc_series\"><link href=\"text/scalc/guide/calc_series.xhp\" name=\"Automatically Calculating Series\">Automatically Filling in Data Based on Adjacent Cells</link></variable>"
+msgstr "<variable id=\"calc_series\"><link href=\"text/scalc/guide/calc_series.xhp\" name=\"Calcular series automáticamente\">Rellenar datos automáticamente basándose en celdas adyacentes</link></variable>"
+
+#: calc_series.xhp#par_idN106A8.help.text
+msgid "You can automatically fill cells with data with the AutoFill command or the Series command."
+msgstr "La opción de AutoRellenar y el comando de serie permiten rellenar las celdas con datos automáticamente."
+
+#: calc_series.xhp#par_idN106D3.help.text
+msgid "Using AutoFill"
+msgstr "Usar el AutoRellenar"
+
+#: calc_series.xhp#par_idN106D7.help.text
+msgid "AutoFill automatically generates a data series based on a defined pattern."
+msgstr "AutoRellenar genera automáticamente una serie de datos basada en un patrón definido."
+
+#: calc_series.xhp#par_id3154319.7.help.text
+msgid "On a sheet, click in a cell, and type a number."
+msgstr "En una hoja, haga clic en una celda y escriba un número."
+
+#: calc_series.xhp#par_idN106CB.help.text
+msgid "Click in another cell and then click back in the cell where you typed the number."
+msgstr "Haga clic en otra celda y, a continuación, vuelva a hacer clic en la celda en la que ha escrito el número."
+
+#: calc_series.xhp#par_id3145272.16.help.text
+msgid "Drag the fill handle in the bottom right corner of the cell across the cells that you want to fill, and release the mouse button."
+msgstr "Arrastre la agarradera de relleno de la esquina inferior derecha de la celda por las celdas que desee rellenar, y suelte el botón del ratón."
+
+#: calc_series.xhp#par_id3145801.17.help.text
+msgid "The cells are filled with ascending numbers."
+msgstr "Las celdas se rellenan con números ascendentes."
+
+#: calc_series.xhp#par_idN106EE.help.text
+msgid "To quickly create a list of consecutive days, enter <item type=\"literal\">Monday</item> in a cell, and drag the fill handle."
+msgstr "Para crear rápidamente una lista de días consecutivos, escriba <item type=\"literal\">Lunes</item> en una celda y arrastre la agarradera de relleno."
+
+#: calc_series.xhp#par_id9720145.help.text
+msgctxt "calc_series.xhp#par_id9720145.help.text"
+msgid "Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> if you do not want to fill the cells with different values."
+msgstr ""
+
+#: calc_series.xhp#par_id3154490.18.help.text
+msgid "If you select two or more adjacent cells that contain different numbers, and drag, the remaining cells are filled with the arithmetic pattern that is recognized in the numbers. The AutoFill function also recognizes customized lists that are defined under <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists</item>."
+msgstr "Si selecciona dos o más celdas adyacentes que contienen distintos números y arrastra, las celdas restantes se rellenan con el patrón aritmético que se reconoce en los números. La función de autocompletado también reconoce las listas personalizadas que se definen en <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - %PRODUCTNAME Calc - Listas ordenadas</item>."
+
+#: calc_series.xhp#par_idN10737.help.text
+msgid "You can double-click the fill handle to automatically fill all empty columns of the current data block. For example, first enter Jan into A1 and drag the fill handle down to A12 to get the twelve months in the first column. Now enter some values into B1 and C1. Select those two cells, and double-click the fill handle. This fills automatically the data block B1:C12."
+msgstr "Se puede hacer doble clic en la manilla de relleno para que, de forma automática, rellene todas las columnas vacías del bloque de datos activo. Por ejemplo, escriba Ene en A1; a continuación, arrastre abajo la manilla de relleno hasta A12 para que en la primera columna aparezcan los doce meses del año. Acto seguido, introduzca valores en B1 y C1. Seleccione esas dos celdas y haga doble clic en la manilla de relleno. De esta forma, el bloque de datos B1:C12 se rellena automáticamente."
+
+#: calc_series.xhp#par_idN10713.help.text
+msgid "Using a Defined Series"
+msgstr "Usar una serie definida"
+
+#: calc_series.xhp#par_id3150749.9.help.text
+msgid "Select the cell range in the sheet that you want to fill."
+msgstr "Seleccione el área de celdas en la hoja que desea rellenar."
+
+#: calc_series.xhp#par_id3154754.19.help.text
+msgid "Choose <item type=\"menuitem\">Edit - Fill - Series</item>."
+msgstr "Elija <item type=\"menuitem\">Editar - Rellenar - Serie</item>."
+
+#: calc_series.xhp#par_idN10716.help.text
+msgid "Select the parameters for the series. "
+msgstr "Seleccione los parámetros para la serie. "
+
+#: calc_series.xhp#par_idN10731.help.text
+msgid "If you select a <emph>linear</emph> series, the increment that you enter is <emph>added</emph> to each consecutive number in the series to create the next value."
+msgstr "Si elige una serie <emph>aritmética</emph>, el incremento que especifique se <emph>agregará</emph> a cada número consecutivo de la línea para crear el valor siguiente."
+
+#: calc_series.xhp#par_idN1073C.help.text
+msgid "If you select a <emph>growth</emph> series, the increment that you enter is <emph>multiplied</emph> by each consecutive number to create the next value."
+msgstr "Si selecciona una serie <emph>geométrica</emph>, el incremento que especifique se <emph>multiplicará</emph> por cada número consecutivo para crear el valor siguiente."
+
+#: calc_series.xhp#par_idN10747.help.text
+msgid "If you select a <emph>date</emph> series, the increment that you enter is added to the time unit that you specify."
+msgstr "Si selecciona una serie de <emph>fecha</emph>, el incremento que especifique se agregará a la unidad de tiempo especificada."
+
+#: calc_series.xhp#par_id3159173.20.help.text
+msgctxt "calc_series.xhp#par_id3159173.20.help.text"
+msgid "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">Sort lists</link>"
+msgstr "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Listas de clasificación\">Listas de clasificación</link>"
+
+#: print_title_row.xhp#tit.help.text
+msgid "Printing Rows or Columns on Every Page"
+msgstr "Imprimir filas o columnas en cada página"
+
+#: print_title_row.xhp#bm_id3151112.help.text
+msgid "<bookmark_value>printing; sheets on multiple pages</bookmark_value><bookmark_value>sheets; printing on multiple pages</bookmark_value><bookmark_value>rows; repeating when printing</bookmark_value><bookmark_value>columns; repeating when printing</bookmark_value><bookmark_value>repeating;columns/rows on printed pages</bookmark_value><bookmark_value>title rows; printing on all sheets</bookmark_value><bookmark_value>headers; printing on sheets</bookmark_value><bookmark_value>footers; printing on sheets</bookmark_value><bookmark_value>printing; rows/columns as table headings</bookmark_value><bookmark_value>headings;repeating rows/columns as</bookmark_value>"
+msgstr "<bookmark_value>imprimir; hojas en varias páginas</bookmark_value><bookmark_value>hojas; imprimir en varias páginas</bookmark_value><bookmark_value>filas; repetir al imprimir</bookmark_value><bookmark_value>columnas; repetir al imprimir</bookmark_value><bookmark_value>repetir;columnas/filas en páginas impresas</bookmark_value><bookmark_value>filas de título; imprimir en todas las hojas</bookmark_value><bookmark_value>encabezados; imprimir en hojas</bookmark_value><bookmark_value>pies de página; imprimir en hojas</bookmark_value><bookmark_value>imprimir; filas/columnas como encabezados de tabla</bookmark_value><bookmark_value>encabezados;repetir filas/columnas como</bookmark_value>"
+
+#: print_title_row.xhp#hd_id3153727.21.help.text
+msgid "<variable id=\"print_title_row\"><link href=\"text/scalc/guide/print_title_row.xhp\" name=\"Printing Rows or Columns on Every Page\">Printing Rows or Columns on Every Page</link></variable>"
+msgstr "<variable id=\"print_title_row\"><link href=\"text/scalc/guide/print_title_row.xhp\" name=\"Imprimir una fila o columna en cada página\">Imprimir una fila o columna en cada página</link></variable>"
+
+#: print_title_row.xhp#par_id3154014.2.help.text
+msgid "If you have a sheet that is so large that it will be printed multiple pages, you can set up rows or columns to repeat on each printed page."
+msgstr "Si el tamaño de la hoja es suficientemente grande como para tener que imprimirla en varias páginas, se puede definir qué filas o columnas se deben repetir en cada una de las páginas impresas."
+
+#: print_title_row.xhp#par_id3146975.7.help.text
+msgid "As an example, If you want to print the top two rows of the sheet as well as the first column (A)on all pages, do the following:"
+msgstr "Por ejemplo, si desea imprimir las dos primeras filas y la primera columna (A) de la hoja en todas las páginas, siga estos pasos:"
+
+#: print_title_row.xhp#par_id3163710.8.help.text
+msgid "Choose <emph>Format - Print Ranges - Edit</emph>. The <emph>Edit Print Ranges</emph> dialog appears."
+msgstr "Seleccione <emph>Formato - Áreas de impresión - Editar</emph>. Se abre el diálogo <emph>Editar áreas de impresión</emph>."
+
+#: print_title_row.xhp#par_id3149958.9.help.text
+msgid "Click the icon at the far right of the <emph>Rows to repeat</emph> area."
+msgstr "Pulse sobre el símbolo \"Reducir\" a la derecha del área <emph>Fila a repetir</emph>."
+
+#: print_title_row.xhp#par_id3145800.10.help.text
+msgid "The dialog shrinks so that you can see more of the sheet."
+msgstr "El diálogo se reducirá para que pueda ver la hoja mejor."
+
+#: print_title_row.xhp#par_id3155602.11.help.text
+msgid "Select the first two rows and, for this example, click cell A1 and drag to A2."
+msgstr "Seleccione las dos primeras filas pulsando en la celda A1 y arrastrándola hasta la A2."
+
+#: print_title_row.xhp#par_id3154018.12.help.text
+msgid "In the shrunk dialog you will see $1:$2. Rows 1 and 2 are now rows to repeat."
+msgstr "En el diálogo reducido verá $1:$2. Las celdas 1 y 2 son ahora filas a repetir."
+
+#: print_title_row.xhp#par_id3153707.13.help.text
+msgid "Click the icon at the far right of the <emph>Rows to repeat</emph> area. The dialog is restored again."
+msgstr "Pulse sobre el símbolo a la derecha del área <emph>Fila a repetir.</emph> El diálogo recuperará su tamaño normal."
+
+#: print_title_row.xhp#par_id3155443.14.help.text
+msgid "If you also want column A as a column to repeat, click the icon at the far right of the <emph>Columns to repeat</emph> area."
+msgstr "Si también desea la columna A como columna a repetir, pulse sobre el símbolo \"Reducir\" a la derecha del área <emph>Columna a repetir</emph>."
+
+#: print_title_row.xhp#par_id3154256.15.help.text
+msgid "Click column A (not in the column header)."
+msgstr "Pulse en la columna A (no en el encabezado)."
+
+#: print_title_row.xhp#par_id3154704.16.help.text
+msgid "Click the icon again at the far right of the <emph>Columns to repeat</emph> area."
+msgstr "Vuelva a pulsar en el símbolo \"Reducir\" a la derecha del área <emph>Columna a repetir</emph> y pulse en Aceptar."
+
+#: print_title_row.xhp#par_id3150088.17.help.text
+msgid "Rows to repeat are rows from the sheet. You can define headers and footers to be printed on each print page independently of this in <emph>Format - Page</emph>."
+msgstr "Las filas a repetir son filas de la tabla. Encabezamientos y pies de página que se imprimen en cada página se pueden definir independientemente mediante <emph>Formato - Página</emph>."
+
+#: print_title_row.xhp#par_id3155380.18.help.text
+msgctxt "print_title_row.xhp#par_id3155380.18.help.text"
+msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">View - Page Break Preview</link>"
+msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"Ver - Previsualización del salto de página\">Ver - Previsualización del salto de página</link>"
+
+#: print_title_row.xhp#par_id3154371.19.help.text
+msgctxt "print_title_row.xhp#par_id3154371.19.help.text"
+msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">Format - Print ranges - Edit</link>"
+msgstr "<link href=\"text/scalc/01/05080300.xhp\" name=\"Formato - Áreas de impresión - Editar\">Formato - Áreas de impresión - Editar</link>"
+
+#: print_title_row.xhp#par_id3146113.20.help.text
+msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format - Page - (Header / Footer)\">Format - Page - (Header / Footer)</link>"
+msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Formato - Página - (Encabezamiento/ Pie de página)\">Formato - Página - (Encabezamiento/ Pie de página)</link>"
+
+#: format_table.xhp#tit.help.text
+msgid "Formatting Spreadsheets"
+msgstr "Formatear hojas de cálculo"
+
+#: format_table.xhp#bm_id3154125.help.text
+msgid "<bookmark_value>text in cells; formatting</bookmark_value><bookmark_value>spreadsheets;formatting</bookmark_value><bookmark_value>backgrounds;cells and pages</bookmark_value><bookmark_value>borders;cells and pages</bookmark_value><bookmark_value>formatting;spreadsheets</bookmark_value><bookmark_value>numbers; formatting options for selected cells</bookmark_value><bookmark_value>cells; number formats</bookmark_value><bookmark_value>currencies;formats</bookmark_value>"
+msgstr "<bookmark_value>texto en celdas; formatear</bookmark_value><bookmark_value>hojas de calculo;formatear</bookmark_value><bookmark_value>fondos;celdas y pagina</bookmark_value><bookmark_value>bordes;celdas y paginas</bookmark_value><bookmark_value>formatear;hojas de calculo</bookmark_value><bookmark_value>números; opciones de formato para las celdas seleccionadas</bookmark_value><bookmark_value>celdas; formato de números</bookmark_value><bookmark_value>predeterminados;formatos de moneda</bookmark_value><bookmark_value>monedas;formatos</bookmark_value>"
+
+#: format_table.xhp#hd_id3154125.6.help.text
+msgid "<variable id=\"format_table\"><link href=\"text/scalc/guide/format_table.xhp\" name=\"Designing Spreadsheets\">Formatting Spreadsheets</link></variable>"
+msgstr "<variable id=\"format_table\"><link href=\"text/scalc/guide/format_table.xhp\" name=\"Designing Spreadsheets\">Formatear Hojas de Calculo</link> </variable>"
+
+#: format_table.xhp#hd_id3153912.13.help.text
+msgid "Formatting Text in a Spreadsheet "
+msgstr "Dar formato a texto en una hoja de cálculo"
+
+#: format_table.xhp#par_id3144772.14.help.text
+msgid "Select the text you want to format."
+msgstr "Seleccione el texto que desee formatear."
+
+#: format_table.xhp#par_id3155268.15.help.text
+msgid "Choose the desired text attributes from the <emph>Formatting </emph>Bar. You can also choose <emph>Format - Cells</emph>. The <emph>Format Cells</emph> dialog will appear in which you can choose various text attributes on the <emph>Font</emph> tab page."
+msgstr "Seleccione los atributos de texto deseados en la barra <emph>Formato</emph>. También puede seleccionar <emph>Formato - Celdas</emph>. Se abrirá el diálogo <emph>Formato de celdas</emph>, que permite elegir varios atributos de texto en la pestaña<emph>Tipo de letra</emph>."
+
+#: format_table.xhp#hd_id3149899.16.help.text
+msgid "Formatting Numbers in a Spreadsheet"
+msgstr "Formatear números en una hoja de cálculo"
+
+#: format_table.xhp#par_id3159226.17.help.text
+msgid "Select the cells containing the numbers you want to format."
+msgstr "Seleccione las celdas cuya representación de números desee modificar."
+
+#: format_table.xhp#par_id3150046.18.help.text
+msgid "To format numbers in the default currency format or as percentages, use the icons on the <emph>Formatting </emph>Bar. For other formats, choose <emph>Format - Cells</emph>. You can choose from the preset formats or define your own on the <emph>Numbers</emph> tab page."
+msgstr "Si desea dar formato a números de modo que adquieran el formato de porcentajes o el formato predeterminado de divisas, utilice los iconos de la barra <emph>Formato</emph>. Para dar otros formatos, seleccione <emph>Formato - Celdas</emph>. Puede elegir uno de los formatos predefinidos o establecer uno propio en la pestaña<emph>Números</emph>."
+
+#: format_table.xhp#hd_id3153483.19.help.text
+msgid "Formatting Borders and Backgrounds for Cells and Pages"
+msgstr "Formatear los bordes y el fondo para las celdas y la página"
+
+#: format_table.xhp#par_id3154733.20.help.text
+msgid "You can assign a format to any group of cells by first selecting the cells (for multiple selection, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key when clicking), and then activating the <emph>Format Cells</emph> dialog in <item type=\"menuitem\">Format - Cell</item>. In this dialog, you can select attributes such as shadows and backgrounds."
+msgstr ""
+
+#: format_table.xhp#par_id3145116.21.help.text
+msgid "To apply formatting attributes to an entire sheet, choose <emph>Format - Page</emph>. You can define headers and footers, for example, to appear on each printed page."
+msgstr "Para formatear toda la página, active el comando <emph>Formato - Página</emph>. A continuación podrá introducir los encabezados y notas al pie que deban aparecer en cada página impresa."
+
+#: format_table.xhp#par_id3145389.22.help.text
+msgid "An image that you have loaded with <item type=\"menuitem\">Format - Page - Background</item> is only visible in print or in the page preview. To display a background image on screen as well, insert the graphic image by choosing <item type=\"menuitem\">Insert - Picture - From File</item> and arrange the image behind the cells by choosing <item type=\"menuitem\">Format - Arrange - To Background</item>. Use the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> to select the background image."
+msgstr "Una imagen cargada mediante <item type=\"menuitem\">Formato - Página - Fondo</item> sólo se ve al imprimir o en la vista previa. Para mostrar también en pantalla una imagen de fondo, inserte el gráfico en <item type=\"menuitem\">Insertar - Imagen - De archivo</item> y coloque la imagen detrás de las celdas seleccionando <item type=\"menuitem\">Formato - Posición - Enviar al fondo</item>. Utilice el <link href=\"text/scalc/01/02110000.xhp\" name=\"Navegador\">Navegador</link> para seleccionar la imagen de fondo."
+
+#: format_table.xhp#par_id2837916.help.text
+msgid "<link href=\"text/shared/01/05020300.xhp\">Number Formatting Options</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\">Opciones de Formato Numérico</link>"
+
+#: format_table.xhp#par_id2614215.help.text
+msgid "<link href=\"text/scalc/guide/background.xhp\">Backgrounds for Cells</link>"
+msgstr "<link href=\"text/scalc/guide/background.xhp\">Fondos para Celdas</link>"
+
+#: validity.xhp#tit.help.text
+msgid "Validity of Cell Contents"
+msgstr "Validez de contenidos de celda"
+
+#: validity.xhp#bm_id3156442.help.text
+msgid "<bookmark_value>values; limiting on input</bookmark_value><bookmark_value>limits; specifying value limits on input</bookmark_value><bookmark_value>permitted cell contents</bookmark_value><bookmark_value>data validity</bookmark_value><bookmark_value>validity</bookmark_value><bookmark_value>cells; validity</bookmark_value><bookmark_value>error messages; defining for incorrect input</bookmark_value><bookmark_value>actions in case of incorrect input</bookmark_value><bookmark_value>Help tips; defining text for cell input</bookmark_value><bookmark_value>comments;help text for cells</bookmark_value><bookmark_value>cells; defining input help</bookmark_value><bookmark_value>macros; running when incorrect input</bookmark_value><bookmark_value>data; validity check</bookmark_value>"
+msgstr "<bookmark_value>valores; limitar al entrar</bookmark_value><bookmark_value>limites; especificar límites de valores al entrar</bookmark_value><bookmark_value>contenido permitido de las celdas</bookmark_value><bookmark_value>validez de datos</bookmark_value><bookmark_value>validez</bookmark_value><bookmark_value>celdas; validez</bookmark_value><bookmark_value>mensajes de error; definir la entrada incorrecta</bookmark_value><bookmark_value>acciones en caso de entrada incorrecta</bookmark_value><bookmark_value>Ayuda emergente; definir texto para la entrada de las celdas</bookmark_value><bookmark_value>comentarios;texto de ayuda para las celdas</bookmark_value><bookmark_value>celdas; definir ayuda para la entrada</bookmark_value><bookmark_value>macros; ejecutar con entradas incorrectas</bookmark_value><bookmark_value>datos; comprobar validez</bookmark_value>"
+
+#: validity.xhp#hd_id3156442.22.help.text
+msgid "<variable id=\"validity\"><link href=\"text/scalc/guide/validity.xhp\" name=\"Validity of Cell Contents\">Validity of Cell Contents</link></variable>"
+msgstr "<variable id=\"validity\"><link href=\"text/scalc/guide/validity.xhp\" name=\"Validez de contenidos de celda\">Validez de contenidos de celda</link></variable>"
+
+#: validity.xhp#par_id3156283.2.help.text
+msgid "For each cell, you can define entries to be valid. Invalid entries to a cell will be rejected."
+msgstr "Puede definir las entradas que son válidas para cada celda. Las entradas no válidas en una celda se rechazarán."
+
+#: validity.xhp#par_id3145252.3.help.text
+msgid "The validity rule is activated when a new value is entered. If an invalid value has already been inserted into the cell, or if you insert a value in the cell either with drag-and-drop or by copying and pasting, the validity rule will not take effect."
+msgstr "La regla de validez se activa al especificar un valor nuevo. Si en la celda ya se ha insertado un valor incorrecto, o si se inserta un valor con los métodos de arrastrar y colocar o copiar y pegar, la regla de validez no surte efecto."
+
+#: validity.xhp#par_id5174718.help.text
+msgid "You can choose <emph>Tools - Detective</emph> at any time and choose the command <link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\"><emph>Mark Invalid Data</emph></link> to display which cells contain invalid values."
+msgstr "En cualquier momento puede seleccionar <emph>Herramientas - Detective</emph> y elegir el comando <link href=\"text/scalc/01/06030800.xhp\" name=\"Marcar datos incorrectos\"><emph>Marcar datos incorrectos</emph></link> para ver las celdas que contienen valores que no son válidos."
+
+#: validity.xhp#hd_id3155603.5.help.text
+msgid "Using Cell Contents Validity"
+msgstr "Trabajar con la validez del contenido de celdas"
+
+#: validity.xhp#par_id3155959.6.help.text
+msgid "Select the cells for which you want to define a new validity rule."
+msgstr "Seleccione las celdas para las que desea definir una regla de validez."
+
+#: validity.xhp#par_id3148837.8.help.text
+msgid "Choose <item type=\"menuitem\">Data - Validity</item>. "
+msgstr "Elija <item type=\"menuitem\">Datos - Validez</item>. "
+
+#: validity.xhp#par_id3156020.9.help.text
+msgid "On the <emph>Criteria</emph> tab page, enter the conditions for new values entered into cells. "
+msgstr "En la pestaña <emph>Criterios</emph>, especifique las condiciones de los valores nuevos que se insertan en celdas. "
+
+#: validity.xhp#par_id3159208.10.help.text
+msgid "In the <emph>Allow</emph> field, select an option."
+msgstr "En el campo <emph>Permitir</emph>, seleccione una opción."
+
+#: validity.xhp#par_id3153011.11.help.text
+msgid "If you select \"Whole Numbers\", values such as \"12.5\" are not allowed. Choosing \"Date\" allows date information both in the local date format as well as in the form of a <link href=\"text/sbasic/shared/03030101.xhp\" name=\"serial date\">serial date</link>. Similarly, the \"Time\" condition permits time values such as \"12:00\" or serial time numbers. \"Text Length\" stipulates that cells are allowed to contain text only."
+msgstr "Si selecciona \"Números enteros\", no se permiten valores del tipo \"12,5\". Al elegir \"Fecha\", los datos de las fechas pueden especificarse en formato local o como <link href=\"text/sbasic/shared/03030101.xhp\" name=\"fecha serie\">fecha serie</link>. Asimismo, la condición \"Hora\" permite especificar valores del tipo \"12:00\" o números de hora serie. La condición \"Longitud de texto\" establece que las celdas sólo pueden contener texto."
+
+#: validity.xhp#par_id9224829.help.text
+msgid "Select \"List\" to enter a list of valid entries."
+msgstr "Seleccione \"Lista\" para insertar una lista de entradas válidas."
+
+#: validity.xhp#par_id3149317.13.help.text
+msgid "Select the next condition under <emph>Data</emph>. According to what you choose, additional options will be selectable."
+msgstr "Seleccione la condición siguiente en <emph>Datos</emph>. Se podrán seleccionar otras opciones en función de lo que se elija."
+
+#: validity.xhp#par_id3151389.15.help.text
+msgid "After you have determined the conditions for cell validity, you can use the other two tab pages to create message boxes:"
+msgstr "Tras establecer las condiciones para la validez de celdas, las otras dos pestañas sirven para crear cuadros de mensaje:"
+
+#: validity.xhp#par_id3159261.16.help.text
+msgid "On the <emph>Input Help</emph> tab page, enter the title and the text of the tip, which will then be displayed if the cell is selected."
+msgstr "Escriba el título y el texto de la Ayuda emergente, que se muestra al seleccionar la celda, en la pestaña <emph>Ayuda de entrada</emph>"
+
+#: validity.xhp#par_id3156396.17.help.text
+msgid "On the <emph>Error Alert</emph> tab page, select the action to be carried out in the event of an error."
+msgstr "En la pestaña <emph>Mensaje de error</emph> seleccione la acción que deba realizarse en caso de error."
+
+#: validity.xhp#par_id3147416.18.help.text
+msgid "If you select \"Stop\" as the action, invalid entries are not accepted, and the previous cell contents are retained."
+msgstr "Si selecciona la acción \"Detener\" no se aceptan las entradas incorrectas y se conserva el contenido anterior de las celdas."
+
+#: validity.xhp#par_id3150033.19.help.text
+msgid "Select \"Warning\" or \"Information\" to display a dialog in which the entry can either be canceled or accepted."
+msgstr "Seleccione \"Aviso\" o \"Información\" para ver en pantalla un diálogo en el que poder aceptar o cancelar la entrada."
+
+#: validity.xhp#par_id3149947.20.help.text
+msgid "If you select \"Macro\", then by using the <emph>Browse</emph> button you can specify a macro to be run in the event of an error."
+msgstr "Si selecciona \"Macro\", puede utilizar el botón <emph>Buscar</emph> para especificar la macro que se debe ejecutar en caso de error."
+
+#: validity.xhp#par_id3149011.35.help.text
+msgid "To display the error message, select <emph>Show error message when invalid values are entered</emph>. "
+msgstr "Para que se vea en pantalla el mensaje de error, seleccione <emph>Mostrar mensaje de error al introducir valores incorrectos</emph>. "
+
+#: validity.xhp#par_id3148586.21.help.text
+msgid "After changing the action for a cell on the <emph>Error Alert</emph> tab page and closing the dialog with OK, you must first select another cell before the change takes effect."
+msgstr "Si en la pestaña <emph>Mensaje de error</emph> ha modificado la acción de una celda y ha salido del diálogo con Aceptar, es preciso que primero seleccione otra celda antes de que la modificación sea efectiva."
+
+#: validity.xhp#par_id3154805.30.help.text
+msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"Data - Validity\">Data - Validity</link>"
+msgstr "<link href=\"text/scalc/01/12120000.xhp\" name=\"Datos - Validez\">Datos - Validez</link>"
+
+#: design.xhp#tit.help.text
+msgid "Selecting Themes for Sheets"
+msgstr "Seleccionar temas para hojas"
+
+#: design.xhp#bm_id3150791.help.text
+msgid "<bookmark_value>theme selection for sheets</bookmark_value><bookmark_value>layout;spreadsheets</bookmark_value><bookmark_value>cell styles; selecting</bookmark_value><bookmark_value>selecting;formatting themes</bookmark_value><bookmark_value>sheets;formatting themes</bookmark_value><bookmark_value>formats;themes for sheets</bookmark_value><bookmark_value>formatting;themes for sheets</bookmark_value>"
+msgstr "<bookmark_value>seleccion de temas para hojas</bookmark_value><bookmark_value>diseño;hojas de calculo</bookmark_value><bookmark_value>estilos de celda; seleccion</bookmark_value><bookmark_value>seleccion;formateo de temas</bookmark_value><bookmark_value>hojas;formateo de temas</bookmark_value><bookmark_value>formatos;temas para hojas</bookmark_value><bookmark_value>formateo;temas para hojas</bookmark_value>"
+
+#: design.xhp#hd_id3150791.6.help.text
+msgid "<variable id=\"design\"><link href=\"text/scalc/guide/design.xhp\" name=\"Selecting Themes for Sheets\">Selecting Themes for Sheets</link> </variable>"
+msgstr "<variable id=\"design\"><link href=\"text/scalc/guide/design.xhp\" name=\"Selecting Themes for Sheets\">Seleccionar Temas para Hojas</link></variable>"
+
+#: design.xhp#par_id3145786.13.help.text
+msgid "$[officename] Calc comes with a predefined set of formatting themes that you can apply to your spreadsheets."
+msgstr "$[officename] Calc incorpora un conjunto de temas de formato predefinidos que se pueden aplicar a las hojas de cálculo."
+
+#: design.xhp#par_id3154490.16.help.text
+msgid "It is not possible to add themes to Calc, and they cannot be modified. However, you can modify their styles after you apply them to a spreadsheet."
+msgstr "No se pueden agregar temas, ni modificar los ya existentes. No obstante, se pueden modificar los estilos después de aplicarlos en una hoja de cálculo."
+
+#: design.xhp#par_id3154757.17.help.text
+msgid "Before you format a sheet with a theme, you have to apply at least one custom cell style to the cells on the sheet. You can then change the cell formatting by selecting and applying a theme in the <emph>Theme Selection</emph> dialog."
+msgstr "Antes de asignar un tema a una hoja para formatearla, deberá aplicar como mínimo un estilo de celda personalizado a las celdas de la hoja.A continuación podrá cambiar el formato de celdas seleccionando y aplicando un tema del diálogo <emph>Selección de temas</emph>."
+
+#: design.xhp#par_id3156382.18.help.text
+msgid "To apply a custom cell style to a cell, you can open the Styles and Formatting window and, in its lower list box, set the Custom Styles view. A list of the existing custom defined cell styles will be displayed. Double click a name from the Styles and Formatting window to apply this style to the selected cells."
+msgstr "Para aplicar a una celda un estilo de celda personalizado, abra la ventana Estilo y formato y elija la vista Estilos del usuario en el listado inferior. Se mostrará una lista de los estilos de celda definidos por el usuario. Pulse dos veces en un nombre de la ventana Estilo y formato para aplicar dicho estilo a las celdas seleccionadas."
+
+#: design.xhp#par_id3153963.19.help.text
+msgid "To apply a theme to a spreadsheet:"
+msgstr "Para aplicar un tema a una hoja de cálculo:"
+
+#: design.xhp#par_id3146920.15.help.text
+msgid "Click the <emph>Choose Themes</emph> icon in the <emph>Tools</emph> bar. "
+msgstr "Haga clic en el icono <emph>Selección de temas</emph> de la barra <emph>Herramientas</emph>. "
+
+#: design.xhp#par_id3148488.20.help.text
+msgid "The <emph>Theme Selection</emph> dialog appears. This dialog lists the available themes for the whole spreadsheet and the Styles and Formatting window lists the custom styles for specific cells."
+msgstr "Se abre el diálogo <emph>Selección de temas</emph>. En este diálogo se enumeran los temas disponibles para toda la hoja de cálculo y en la ventana Estilo y formato se muestra una lista de los estilos personalizados para celdas específicas."
+
+#: design.xhp#par_id3155114.9.help.text
+msgid "In the <emph>Theme Selection </emph>dialog, select the theme that you want to apply to the spreadsheet."
+msgstr "Seleccione el tema que desea aplicar a la hoja de cálculo en el diálogo <emph>Selección de temas</emph>."
+
+#: design.xhp#par_id3150090.21.help.text
+msgid "Click OK"
+msgstr "Pulse Aceptar."
+
+#: design.xhp#par_id3150201.22.help.text
+msgid "As soon as you select another theme in the <emph>Theme Selection</emph> dialog, some of the properties of the custom style will be applied to the current spreadsheet. The modifications will be immediately visible in your spreadsheet."
+msgstr "Al seleccionar otro tema en el diálogo <emph>Selección de temas</emph>, algunas de las propiedades de los estilos personalizados se aplicarán a la hoja de cálculo actual. Las modificaciones se podrán ver de forma inmediata."
+
+#: design.xhp#par_id3146979.12.help.text
+msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Theme selection\">Theme selection</link>"
+msgstr "<link href=\"text/scalc/02/06080000.xhp\" name=\"Selección de temas\">Selección de temas</link>"
+
+#: cellreferences.xhp#tit.help.text
+msgid "Referencing a Cell in Another Document"
+msgstr "Referencia a celdas de otro documento"
+
+#: cellreferences.xhp#bm_id3147436.help.text
+msgid "<bookmark_value>sheet references</bookmark_value> <bookmark_value>references; to cells in other sheets/documents</bookmark_value> <bookmark_value>cells; operating in another document</bookmark_value> <bookmark_value>documents;references</bookmark_value>"
+msgstr "<bookmark_value>referencias de hojas</bookmark_value> <bookmark_value>referencias; a celdas en otras hojas/documentos</bookmark_value> <bookmark_value>celdas; operar en otro documento</bookmark_value> <bookmark_value>documentos;referencias</bookmark_value>"
+
+#: cellreferences.xhp#hd_id3147436.9.help.text
+msgid "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\" name=\"Referencing Other Sheets\">Referencing Other Sheets</link></variable>"
+msgstr "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\" name=\"Referencias a otras hojas\">Referencias a otras hojas</link></variable>"
+
+#: cellreferences.xhp#par_id9663075.help.text
+msgid "In a sheet cell you can show a reference to a cell in another sheet."
+msgstr "Puede mostrar en una celda de una hoja una referencia a una celda de otra hoja."
+
+#: cellreferences.xhp#par_id1879329.help.text
+msgid "In the same way, a reference can also be made to a cell from another document provided that this document has already been saved as a file."
+msgstr "De la misma manera, también se puede crear una referencia en una celda de otro documento, siempre que este documento ya se haya guardado como archivo."
+
+#: cellreferences.xhp#hd_id7122409.help.text
+msgid "To Reference a Cell in the Same Document"
+msgstr "Referencia a una celda en el mismo documento"
+
+#: cellreferences.xhp#par_id2078005.help.text
+msgid "Open a new, empty spreadsheet."
+msgstr "Abra una hoja de cálculo vacía."
+
+#: cellreferences.xhp#par_id4943693.help.text
+msgid "By way of example, enter the following formula in cell A1 of Sheet1:"
+msgstr "Como ejemplo, introduzca la fórmula siguiente en la celda A1 de la Hoja1:"
+
+#: cellreferences.xhp#par_id9064302.help.text
+msgid " <item type=\"literal\">=Sheet2.A1</item> "
+msgstr " <item type=\"literal\">=Hoja2.A1</item> "
+
+#: cellreferences.xhp#par_id7609790.help.text
+msgid "Click the <emph>Sheet 2</emph> tab at the bottom of the spreadsheet. Set the cursor in cell A1 there and enter text or a number."
+msgstr "Haga clic en la pestaña <emph>Hoja 2</emph> en la parte inferior de la hoja de cálculo. Coloque el cursor en la celda A1 e introduzca texto o un número."
+
+#: cellreferences.xhp#par_id809961.help.text
+msgid "If you switch back to Sheet1, you will see the same content in cell A1 there. If the contents of Sheet2.A1 change, then the contents of Sheet1.A1 also change."
+msgstr "Si cambia a la Hoja1, verá el mismo contenido en la celda A1. Si el contenido de Hoja2.A1 cambia, también cambiará el contenido de Hoja1.A1."
+
+#: cellreferences.xhp#hd_id9209570.help.text
+msgid "To Reference a Cell in Another Document"
+msgstr "Para hacer referencia a una celda en otro documento"
+
+#: cellreferences.xhp#par_id5949278.help.text
+msgid "Choose <emph>File - Open</emph>, to load an existing spreadsheet document."
+msgstr "Elija <emph>Archivo - Abrir</emph> para cargar un documento de hoja de cálculo."
+
+#: cellreferences.xhp#par_id8001953.help.text
+msgid "Choose <emph>File - New</emph>, to open a new spreadsheet document. Set the cursor in the cell where you want to insert the external data and enter an equals sign to indicate that you want to begin a formula."
+msgstr "Elija <emph>Archivo - Nuevo</emph> para abrir un documento de hoja de cálculo. Coloque el cursor en la celda en la que desea insertar los datos externos e introduzca un signo de igual para indicar que va a introducir una fórmula."
+
+#: cellreferences.xhp#par_id8571123.help.text
+msgid "Now switch to the document you have just loaded. Click the cell with the data that you want to insert in the new document."
+msgstr "Vaya ahora al documento que acaba de cargar. Haga clic en la celda con los datos que desea insertar en el nuevo documento."
+
+#: cellreferences.xhp#par_id8261665.help.text
+msgid "Switch back to the new spreadsheet. In the input line you will now see how $[officename] Calc has added the reference to the formula for you. "
+msgstr "Vuelva a la nueva hoja de cálculo. En la línea de entrada verá cómo $[officename] Calc ha agregado automáticamente la referencia a la fórmula. "
+
+#: cellreferences.xhp#par_id5888241.help.text
+msgid "The reference to a cell of another document contains the name of the other document in single inverted commas, then a hash #, then the name of the sheet of the other document, followed by a point and the name of the cell."
+msgstr "La referencia a una celda de otro documento contiene, en este orden, el nombre del documento al que hace referencia entre comillas simples, un signo de almohadilla #, el nombre de la hoja del documento al que hace referencia seguido de un punto y el nombre de la celda."
+
+#: cellreferences.xhp#par_id7697683.help.text
+msgid "Confirm the formula by clicking the green check mark."
+msgstr "Confirme la fórmula haciendo clic en la marca de verificación verde."
+
+#: cellreferences.xhp#par_id7099826.help.text
+msgid "If you drag the box in the lower right corner of the active cell to select a range of cells, $[officename] automatically inserts the corresponding references in the adjacent cells. As a result, the sheet name is preceded with a \"$\" sign to designate it as an absolute reference."
+msgstr "Si arrastra el cuadro de la esquina inferior derecha de la celda activa para seleccionar un rango de celdas, $[officename] inserta automáticamente las referencias correspondientes en las celdas adyacentes. Como resultado, el nombre de la hoja aparece precedido del signo \"$\" para indicar que se trata de una referencia absoluta."
+
+#: cellreferences.xhp#par_id674459.help.text
+msgid "If you examine the name of the other document in this formula, you will notice that it is written as a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>. This means that you can also enter a URL from the Internet."
+msgstr "Si examina el nombre del otro documento en esta fórmula, verá que está escrito a modo de <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>. Esto significa que también puede introducir una dirección URL de Internet."
+
+#: csv_files.xhp#tit.help.text
+msgid " Importing and Exporting CSV Files "
+msgstr " Importar y exportar archivos CSV"
+
+#: csv_files.xhp#bm_id892361.help.text
+msgid "<bookmark_value>number series import</bookmark_value><bookmark_value>data series import</bookmark_value><bookmark_value>exporting; tables as text</bookmark_value><bookmark_value>importing; tables as text</bookmark_value><bookmark_value>delimited values and files</bookmark_value><bookmark_value>comma separated files and values</bookmark_value><bookmark_value>text file import and export</bookmark_value><bookmark_value>csv files;importing and exporting</bookmark_value><bookmark_value>tables; importing/exporting as text</bookmark_value><bookmark_value>text documents; importing to spreadsheets</bookmark_value><bookmark_value>opening;text csv files</bookmark_value><bookmark_value>saving;as text csv</bookmark_value>"
+msgstr "<bookmark_value>importar series de números</bookmark_value><bookmark_value>importar series de datos</bookmark_value><bookmark_value>exportar; tablas como texto</bookmark_value><bookmark_value>importar; tablas como texto</bookmark_value><bookmark_value>valores y archivos delimitados</bookmark_value><bookmark_value>archivos y valores separados por comas</bookmark_value><bookmark_value>importar y exportar archivos de texto</bookmark_value><bookmark_value>archivos csv;importar y exportar</bookmark_value><bookmark_value>tablas; importar/exportar como texto</bookmark_value><bookmark_value>documentos de texto; importar a hojas de cálculo</bookmark_value><bookmark_value>abrir;archivos csv de texto</bookmark_value><bookmark_value>guardar;como csv de texto</bookmark_value>"
+
+#: csv_files.xhp#par_idN10862.help.text
+msgid "<variable id=\"csv_files\"><link href=\"text/scalc/guide/csv_files.xhp\">Opening and Saving Text CSV Files</link></variable>"
+msgstr "<variable id=\"csv_files\"><link href=\"text/scalc/guide/csv_files.xhp\">Abrir y guardar archivos de texto CSV</link></variable>"
+
+#: csv_files.xhp#par_idN10880.help.text
+msgid "Comma Separated Values (CSV) is a text file format that you can use to exchange data from a database or a spreadsheet between applications. Each line in a Text CSV file represents a record in the database, or a row in a spreadsheet. Each field in a database record or cell in a spreadsheet row is usually separated by a comma. However, you can use other characters to delimit a field, such as a tabulator character."
+msgstr "Los archivos con valores separados por comas (CSV) son archivos de texto que puede utilizar para intercambiar datos entre aplicaciones desde una base de datos u hoja de cálculo. Cada línea de un archivo de texto CSV representa un registro de la base de datos o una fila de la hoja de cálculo. Los campos de un registro de base de datos o las celdas de una fila de hoja de cálculo suelen estar separados por comas. Sin embargo, pueden utilizarse otros caracteres para delimitar los campos, como el tabulador."
+
+#: csv_files.xhp#par_idN10886.help.text
+msgid "If the field or cell contains a comma, the field or cell <emph>must</emph> be enclosed by single quotes (') or double quotes (\")."
+msgstr "Si el contenido de un campo o una celda incluye una coma, dicho contenido <emph>debe</emph> estar encerrado entre comillas simples (') o dobles (\")."
+
+#: csv_files.xhp#par_idN10890.help.text
+msgid "To Open a Text CSV File in Calc"
+msgstr "Para abrir un Archivo CSV en Calc"
+
+#: csv_files.xhp#par_idN10897.help.text
+msgid "Choose <item type=\"menuitem\">File - Open</item>."
+msgstr "Elija <item type=\"menuitem\">Archivo - Abrir</item>."
+
+#: csv_files.xhp#par_idN1089F.help.text
+msgid "Locate the CSV file that you want to open."
+msgstr "Busque el archivo CSV que desee abrir."
+
+#: csv_files.xhp#par_idN108A2.help.text
+msgid "If the file has a *.csv extension, select the file."
+msgstr "Si el archivo tiene la extensión *.csv, selecciónelo."
+
+#: csv_files.xhp#par_idN108A5.help.text
+msgid "If the CSV file has another extension, select the file, and then select \"Text CSV\" in the <item type=\"menuitem\">File type</item> box"
+msgstr "Si el archivo CSV tiene otra extensión, seleccione el archivo y luego \"Texto CSV\" en el cuadro <item type=\"menuitem\">Tipo de archivo</item>"
+
+#: csv_files.xhp#par_idN1082D.help.text
+msgid "Click <item type=\"menuitem\">Open</item>."
+msgstr "Haga clic en <item type=\"menuitem\">Abrir</item>."
+
+#: csv_files.xhp#par_idN10834.help.text
+msgid "The <item type=\"menuitem\">Text Import</item> dialog opens."
+msgstr "Se abre el diálogo <item type=\"menuitem\">Importar texto</item>."
+
+#: csv_files.xhp#par_idN108B1.help.text
+msgid "Specify the options to divide the text in the file into columns."
+msgstr "Especifique las opciones para dividir el texto del archivo en columnas."
+
+#: csv_files.xhp#par_idN108BB.help.text
+msgid "You can preview the layout of the imported data at the bottom of the <item type=\"menuitem\">Text Import</item> dialog. "
+msgstr "En la parte inferior del diálogo <item type=\"menuitem\">Importar texto</item> obtendrá una vista previa del diseño de los datos importados. "
+
+#: csv_files.xhp#par_id8444166.help.text
+msgid "Right-click a column in the preview to set the format or to hide the column."
+msgstr "Con el botón derecho, haga clic en una columna de la vista previa para ajustar el formato u ocultar la columna."
+
+#: csv_files.xhp#par_idN108E2.help.text
+msgid "Check the text delimiter box that matches the character used as text delimiter in the file. In case of an unlisted delimiter, type the character into the input box."
+msgstr "Active la casilla de delimitador de texto que coincida con el carácter utilizado como delimitador de texto en el archivo. Si un delimitador no aparece, escriba el carácter en el cuadro de entrada."
+
+#: csv_files.xhp#par_idN108C5.help.text
+msgctxt "csv_files.xhp#par_idN108C5.help.text"
+msgid "Click <item type=\"menuitem\">OK</item>."
+msgstr "Haga clic en <item type=\"menuitem\">Aceptar</item>."
+
+#: csv_files.xhp#par_idN108FA.help.text
+msgid "To Save a Sheet as a Text CSV File"
+msgstr "Para guardar una hoja como archivo de texto CSV"
+
+#: csv_files.xhp#par_idN106FC.help.text
+msgid "When you export a spreadsheet to CSV format, only the data on the current sheet is saved. All other information, including formulas and formatting, is lost."
+msgstr "Al exportar una hoja cálculo al formato CSV, sólo se guardan los datos de la hoja actual. El resto de la información, fórmulas y formato inclusive, se pierde."
+
+#: csv_files.xhp#par_idN10901.help.text
+msgid "Open the Calc sheet that you want to save as a Text CSV file."
+msgstr "Abra la hoja de Calc que desee guardar como archivo de texto CSV."
+
+#: csv_files.xhp#par_idN107AF.help.text
+msgid "Only the current sheet can be exported."
+msgstr "Sólo se puede exportar la hoja actual."
+
+#: csv_files.xhp#par_idN10905.help.text
+msgid "Choose <item type=\"menuitem\">File - Save as</item>."
+msgstr "Active el comando <item type=\"menuitem\">Archivo - Guardar como</item>."
+
+#: csv_files.xhp#par_idN10915.help.text
+msgid "In the <item type=\"menuitem\">File name</item> box, enter a name for the file."
+msgstr "En el cuadro <item type=\"menuitem\">Nombre de archivo</item>, introduzca un nombre para el archivo."
+
+#: csv_files.xhp#par_idN1090D.help.text
+msgid "In the <item type=\"menuitem\">File type</item> box, select \"Text CSV\"."
+msgstr "En el campo <item type=\"menuitem\">Tipo de archivo</item>, seleccione \"Texto CSV\"."
+
+#: csv_files.xhp#par_idN107DD.help.text
+msgid "(Optional) Set the field options for the Text CSV file."
+msgstr "(Opcional) Configure las opciones de campo para el archivo de texto CSV."
+
+#: csv_files.xhp#par_idN1091C.help.text
+msgid "Select <item type=\"menuitem\">Edit filter settings</item>."
+msgstr "Seleccione <item type=\"menuitem\">Editar configuración de filtros</item>."
+
+#: csv_files.xhp#par_idN107ED.help.text
+msgid "In the <item type=\"menuitem\">Export of text files</item> dialog, select the options that you want."
+msgstr "En el diálogo <item type=\"menuitem\">Exportación de texto</item>, seleccione las opciones que prefiera."
+
+#: csv_files.xhp#par_idN107F4.help.text
+msgctxt "csv_files.xhp#par_idN107F4.help.text"
+msgid "Click <item type=\"menuitem\">OK</item>."
+msgstr "Haga clic en <item type=\"menuitem\">Aceptar</item>."
+
+#: csv_files.xhp#par_idN107FC.help.text
+msgid "Click <item type=\"menuitem\">Save</item>."
+msgstr "Haga clic en <item type=\"menuitem\">Guardar</item>."
+
+#: csv_files.xhp#par_id3153487.20.help.text
+msgctxt "csv_files.xhp#par_id3153487.20.help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientass - Opciones</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Hojas de cálculo - Ver\">%PRODUCTNAME Calc - Ver</link>"
+
+#: csv_files.xhp#par_id3153008.21.help.text
+msgctxt "csv_files.xhp#par_id3153008.21.help.text"
+msgid "<link href=\"text/shared/00/00000207.xhp\" name=\"Export text files\">Export text files</link>"
+msgstr "<link href=\"text/shared/00/00000207.xhp\" name=\"Exportación de texto\">Exportación de texto</link>"
+
+#: csv_files.xhp#par_id3155595.22.help.text
+msgctxt "csv_files.xhp#par_id3155595.22.help.text"
+msgid "<link href=\"text/shared/00/00000208.xhp\" name=\"Import text files\">Import text files</link>"
+msgstr "<link href=\"text/shared/00/00000208.xhp\" name=\"Exportación de texto\">Exportación de texto</link>"
+
+#: printranges.xhp#tit.help.text
+msgid "Using Print Ranges on a Spreadsheet"
+msgstr "Usar áreas de impresión en una hoja de cálculo"
+
+#: printranges.xhp#bm_id14648.help.text
+msgid "<bookmark_value>exporting;cells</bookmark_value><bookmark_value>printing; cells</bookmark_value><bookmark_value>ranges;print ranges</bookmark_value><bookmark_value>PDF export of print ranges</bookmark_value><bookmark_value>cell ranges; printing</bookmark_value><bookmark_value>cells; print ranges</bookmark_value><bookmark_value>print ranges</bookmark_value><bookmark_value>clearing, see also deleting/removing</bookmark_value><bookmark_value>defining;print ranges</bookmark_value><bookmark_value>extending print ranges</bookmark_value><bookmark_value>deleting;print ranges</bookmark_value>"
+msgstr "<bookmark_value>Exportar;celdas</bookmark_value><bookmark_value>imprimir; celdas</bookmark_value><bookmark_value>rangos;imprimir rangos</bookmark_value><bookmark_value>exportar PDF de rangos de impresión</bookmark_value><bookmark_value>rangos de celda; imprimir</bookmark_value><bookmark_value>celdas; rangos de impresión</bookmark_value><bookmark_value>rangos de impresión</bookmark_value><bookmark_value>limpiar, ver borrar/eliminar</bookmark_value><bookmark_value>definir;rangos de impresión</bookmark_value><bookmark_value>extender rangos de impresión</bookmark_value><bookmark_value>borrar;rangos de impresión</bookmark_value>"
+
+#: printranges.xhp#par_idN108D7.help.text
+msgid "<variable id=\"printranges\"><link href=\"text/scalc/guide/printranges.xhp\">Defining Print Ranges on a Sheet</link> </variable>"
+msgstr "<variable id=\"printranges\"><link href=\"text/scalc/guide/printranges.xhp\">Definir áreas de impresión en una hoja</link></variable>"
+
+#: printranges.xhp#par_idN108F5.help.text
+msgid "You can define which range of cells on a spreadsheet to print."
+msgstr "Puede definir el área de celdas de una hoja que cálculo que desea imprimir."
+
+#: printranges.xhp#par_idN108FB.help.text
+msgid "The cells on the sheet that are not part of the defined print range are not printed or exported. Sheets without a defined print range are not printed and not exported to a PDF file, unless the document uses the Excel file format."
+msgstr "Las celdas de la hoja que no forman parte del intervalo de impresión definido no se imprimen ni se exportan. Las hojas sin un intervalo de impresión definido no se imprimen ni se exportan a un archivo PDF, a menos que el documento tenga formato Excel."
+
+#: printranges.xhp#par_idN1077A.help.text
+msgid "For files opened in Excel format, all sheets that do not contain a defined print range are printed. The same behavior occurs when you export the Excel formatted spreadsheet to a PDF file."
+msgstr "En el caso de archivos que se abren en formato Excel, se imprimen todas las hojas que no disponen de un intervalo de impresión definido. Lo mismo ocurre al exportar hojas de cálculo con formato de Excel a un archivo PDF."
+
+#: printranges.xhp#par_idN108FE.help.text
+msgid "To Define a Print Range"
+msgstr "Para definir un intervalo de impresión"
+
+#: printranges.xhp#par_idN10905.help.text
+msgid "Select the cells that you want to print."
+msgstr "Seleccione las celdas que desea imprimir."
+
+#: printranges.xhp#par_idN10909.help.text
+msgid "Choose <emph>Format - Print Ranges - Define</emph>."
+msgstr "Seleccione <emph>Formato - Áreas de impresión - Definir intervalo de impresión</emph>."
+
+#: printranges.xhp#par_idN10910.help.text
+msgid "To Add Cells to a Print Range"
+msgstr "Para agregar celdas a un intervalo de impresión"
+
+#: printranges.xhp#par_idN10917.help.text
+msgid "Select the cells that you want to add to the existing print range."
+msgstr "Seleccione las celdas que desea agregar al intervalo de impresión existente."
+
+#: printranges.xhp#par_idN1091B.help.text
+msgid "Choose <emph>Format - Print Ranges - Add</emph>."
+msgstr "Seleccione <emph>Formato - Áreas de impresión - Agregar intervalo de impresión</emph>."
+
+#: printranges.xhp#par_idN10922.help.text
+msgid "To Clear a Print Range"
+msgstr "Para borrar un intervalo de impresión"
+
+#: printranges.xhp#par_idN10929.help.text
+msgid "Choose <emph>Format - Print Ranges - Remove</emph>."
+msgstr "Seleccione <emph>Formato - Áreas de impresión - Eliminar intervalo de impresión</emph>."
+
+#: printranges.xhp#par_idN10953.help.text
+msgid "Using the Page Break Preview to Edit Print Ranges"
+msgstr "Usar la vista previa del salto de página para editar áreas de impresión"
+
+#: printranges.xhp#par_idN1093E.help.text
+msgid "In the <emph>Page Break Preview</emph>, print ranges as well as page break regions are outlined by a blue border and contain a centered page number in gray. Nonprinting areas have a gray background."
+msgstr "En <emph>Vista previa del salto de página</emph>, se destacan las áreas de impresión y las zonas de saltos de página con un borde azul, y contienen un número de página centrado de color gris. Los intervalos ocultos tienen el fondo gris."
+
+#: printranges.xhp#par_id3153143.8.help.text
+msgid "To define a new page break region, drag the border to a new location. When you define a new page break region, an automatic page break is replaced by a manual page break."
+msgstr "Para definir una zona de salto de página, arrastre el borde a una nueva ubicación. Al definir una zona de salto de página nueva, se sustituye un salto de página automático con un salto de página manual."
+
+#: printranges.xhp#par_idN10930.help.text
+msgid "To View and Edit Print Ranges"
+msgstr "Para ver y editar áreas de impresión"
+
+#: printranges.xhp#par_idN10937.help.text
+msgctxt "printranges.xhp#par_idN10937.help.text"
+msgid "Choose <emph>View - Page Break Preview</emph>."
+msgstr "Seleccione <emph>Ver - Vista previa del salto de página</emph>."
+
+#: printranges.xhp#par_idN1082A.help.text
+msgid "To change the default zoom factor of the <emph>Page Break Preview</emph>, double click the percentage value on the <emph>Status</emph> bar, and select a new zoom factor."
+msgstr "Para cambiar el factor de escala predeterminado de <emph>Vista previa del salto de página</emph>, haga doble clic en el porcentaje de la <emph>barra de estado</emph> y seleccione otro factor de escala."
+
+#: printranges.xhp#par_idN10836.help.text
+msgid "Edit the print range."
+msgstr "Edite el intervalo de impresión."
+
+#: printranges.xhp#par_idN10944.help.text
+msgid "To change the size of a print range, drag a border of the range to a new location."
+msgstr "Para cambiar el tamaño de un intervalo de impresión, arrastre el borde del intervalo a una nueva ubicación."
+
+#: printranges.xhp#par_id3151075.12.help.text
+msgid "To delete a manual page break that is contained in a print range, drag the border of the page break outside of the print range."
+msgstr "Para eliminar un salto de página manual dentro de un intervalo de impresión, arrastre el borde del salto de página hacia un lugar fuera del intervalo de impresión."
+
+#: printranges.xhp#par_idN10948.help.text
+msgid "To clear a print range, drag a border of the range onto the opposite border of the range."
+msgstr "Para eliminar el intervalo de impresión, arrastre el borde del área al borde opuesto."
+
+#: printranges.xhp#par_idN10862.help.text
+msgid "To exit the <emph>Page Break Preview</emph>, choose <emph>View - Normal</emph>."
+msgstr "Para salir de la <emph>Vista previa del salto de página</emph>, elija <emph>Ver - Normal</emph>."
+
+#: printranges.xhp#par_idN109CF.help.text
+msgid "<link href=\"text/scalc/01/05080300.xhp\">Editing Print Ranges</link>"
+msgstr "<link href=\"text/scalc/01/05080300.xhp\">Editar áreas de impresión</link>"
+
+#: keyboard.xhp#tit.help.text
+msgid "Shortcut Keys (%PRODUCTNAME Calc Accessibility)"
+msgstr "Combinaciones de teclas (Accesibilidad de %PRODUCTNAME Calc)"
+
+#: keyboard.xhp#bm_id3145120.help.text
+msgid "<bookmark_value>accessibility; %PRODUCTNAME Calc shortcuts</bookmark_value><bookmark_value>shortcut keys;%PRODUCTNAME Calc accessibility</bookmark_value>"
+msgstr "<bookmark_value>accesibilidad; teclas de acceso directo de %PRODUCTNAME Calc</bookmark_value><bookmark_value>teclas de acceso directo;accesibilidad de %PRODUCTNAME Calc</bookmark_value>"
+
+#: keyboard.xhp#hd_id3145120.1.help.text
+msgid "<variable id=\"keyboard\"><link href=\"text/scalc/guide/keyboard.xhp\" name=\"Shortcut Keys (%PRODUCTNAME Calc Accessibility)\">Shortcut Keys (<item type=\"productname\">%PRODUCTNAME</item> Calc Accessibility)</link></variable>"
+msgstr "<variable id=\"keyboard\"><link href=\"text/scalc/guide/keyboard.xhp\" name=\"Combinaciones de teclas (Accesibilidad de %PRODUCTNAME Calc)\">Combinaciones de teclas (<item type=\"productname\">Accesibilidad de %PRODUCTNAME</item> Calc)</link></variable>"
+
+#: keyboard.xhp#par_id3154760.13.help.text
+msgid "Refer also to the lists of shortcut keys for <item type=\"productname\">%PRODUCTNAME</item> Calc and <item type=\"productname\">%PRODUCTNAME</item> in general."
+msgstr "Consulte también las listas de combinaciones de teclas de $[officename] Calc y de $[officename] en general."
+
+#: keyboard.xhp#hd_id3153360.12.help.text
+msgid "Cell Selection Mode"
+msgstr "Modo de selección de celdas"
+
+#: keyboard.xhp#par_id3150870.help.text
+msgid "<image id=\"img_id3150439\" src=\"formula/res/refinp1.png\" width=\"0.1327inch\" height=\"0.1327inch\"><alt id=\"alt_id3150439\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150439\" src=\"formula/res/refinp1.png\" width=\"0.1327inch\" height=\"0.1327inch\"><alt id=\"alt_id3150439\">Símbolo</alt></image>"
+
+#: keyboard.xhp#par_id3154319.11.help.text
+msgid "In a text box that has a button to minimize the dialog, press <item type=\"keycode\">F2</item> to enter the cell selection mode. Select any number of cells, then press <item type=\"keycode\">F2</item> again to show the dialog."
+msgstr "En un cuadro de texto con un botón de minimizar el diálogo, pulse <item type=\"keycode\">F2</item> para activar el modo de selección de celdas. Seleccione las celdas que desee y vuelva a pulsar <item type=\"keycode\">F2</item> para mostrar el diálogo."
+
+#: keyboard.xhp#par_id3145272.10.help.text
+msgid "In the cell selection mode, you can use the common navigation keys to select cells."
+msgstr "Este modo permite utilizar las teclas de desplazamiento habituales para seleccionar celdas."
+
+#: keyboard.xhp#hd_id3148646.14.help.text
+msgid "Controlling the Outline"
+msgstr "Controlar el esquema"
+
+#: keyboard.xhp#par_id3146120.15.help.text
+msgid "You can use the keyboard in <link href=\"text/scalc/01/12080000.xhp\" name=\"Outline\">Outline</link>:"
+msgstr "Se puede utilizar el teclado en <link href=\"text/scalc/01/12080000.xhp\" name=\"Esquema\">Esquema</link>:"
+
+#: keyboard.xhp#par_id3147394.16.help.text
+msgid "Press <item type=\"keycode\">F6</item> or <item type=\"keycode\">Shift+F6</item> until the vertical or horizontal outline window has the focus."
+msgstr "Pulse <item type=\"keycode\">F6</item> o <item type=\"keycode\">Mayús + F6</item> hasta que se resalte la ventana de esquema horizontal o vertical."
+
+#: keyboard.xhp#par_id3149379.17.help.text
+msgid "<item type=\"keycode\">Tab</item> - cycle through all visible buttons from top to bottom or from left to right."
+msgstr "<item type=\"keycode\">Tabulador</item>: recorrer todos los botones visibles de arriba abajo y de izquierda a derecha."
+
+#: keyboard.xhp#par_id3156286.18.help.text
+msgid "<item type=\"keycode\">Shift+Tab</item> - cycle through all visible buttons in the opposite direction."
+msgstr "<item type=\"keycode\">Mayús + tabulador</item>: recorrer todos los botones visibles en la dirección contraria."
+
+#: keyboard.xhp#par_id3149403.19.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+1 to Command+8</caseinline><defaultinline>Ctrl+1 to Ctrl+8</defaultinline></switchinline> - show all levels up to the specified number; hide all higher levels."
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando +1 al Comando+8</caseinline><defaultinline>Ctrl+1 al Ctrl+8</defaultinline></switchinline> - para mostrar todos los niveles superiores al número especificado; esconder todos los niveles superiores ."
+
+#: keyboard.xhp#par_id3150329.20.help.text
+msgid "Use <item type=\"keycode\">+</item> or <item type=\"keycode\">-</item> to show or hide the focused outline group."
+msgstr "Utilice <item type=\"keycode\">+</item> o <item type=\"keycode\">-</item> para mostrar u ocultar el grupo del esquema resaltado."
+
+#: keyboard.xhp#par_id3155446.21.help.text
+msgid "Press <item type=\"keycode\">Enter</item> to activate the focused button."
+msgstr "Pulse <item type=\"keycode\">Intro</item> para activar el botón resaltado."
+
+#: keyboard.xhp#par_id3154253.22.help.text
+msgid "Use <item type=\"keycode\">Up</item>, <item type=\"keycode\">Down</item>, <item type=\"keycode\">Left</item>, or <item type=\"keycode\">Right</item> arrow to cycle through all buttons in the current level."
+msgstr "Utilice las teclas de flecha <item type=\"keycode\">arriba</item>, <item type=\"keycode\">abajo</item>, <item type=\"keycode\">izquierda</item> o <item type=\"keycode\">derecha</item> para recorrer todos los botones del nivel actual."
+
+#: keyboard.xhp#hd_id3147343.8.help.text
+msgid "Selecting a Drawing Object or a Graphic"
+msgstr "Seleccionar un objeto de dibujo o una imagen"
+
+#: keyboard.xhp#par_idN107AA.help.text
+msgid "Choose View - Toolbars - Drawing to open the Drawing toolbar."
+msgstr "Seleccione Ver - Barras de herramientas - Dibujo para abrir la barra de herramientas Dibujo."
+
+#: keyboard.xhp#par_id3155333.7.help.text
+msgid "Press <item type=\"keycode\">F6</item> until the <emph>Drawing</emph> toolbar is selected."
+msgstr "Pulse <item type=\"keycode\">F6</item> hasta seleccionar la barra de herramientas <emph>Dibujo</emph>."
+
+#: keyboard.xhp#par_id3150345.4.help.text
+msgid "If the selection tool is active, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter. This selects the first drawing object or graphic in the sheet."
+msgstr "Si la herramienta de selección está activa, presione <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Intro. Esto selecciona el primero objeto dibujado o gráfico en la Hoja ."
+
+#: keyboard.xhp#par_id3159240.3.help.text
+msgid "With <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 you set the focus to the document."
+msgstr "Con el <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 usted configura el foco en el documento ."
+
+#: keyboard.xhp#par_id3155379.2.help.text
+msgid "Now you can use <item type=\"keycode\">Tab</item> to select the next drawing object or graphic and <item type=\"keycode\">Shift+Tab</item> to select the previous one."
+msgstr "Ahora puede utilizar el <item type=\"keycode\">tabulador</item> para seleccionar el siguiente objeto de dibujo o imagen, y <item type=\"keycode\">Mayús + tabulador</item> para seleccionar el anterior."
+
+#: text_rotate.xhp#tit.help.text
+msgid "Rotating Text"
+msgstr "Rotar un texto"
+
+#: text_rotate.xhp#bm_id3151112.help.text
+msgid "<bookmark_value>cells; rotating text</bookmark_value> <bookmark_value>rotating; text in cells</bookmark_value> <bookmark_value>text in cells; writing vertically</bookmark_value>"
+msgstr " <bookmark_value>celdas; girar texto</bookmark_value> <bookmark_value>girar; texto en celdas</bookmark_value> <bookmark_value>texto en celdas; escribir verticalmente</bookmark_value>"
+
+#: text_rotate.xhp#hd_id3151112.1.help.text
+msgid "<variable id=\"text_rotate\"><link href=\"text/scalc/guide/text_rotate.xhp\" name=\"Rotating Text\">Rotating Text</link></variable>"
+msgstr "<variable id=\"text_rotate\"><link href=\"text/scalc/guide/text_rotate.xhp\" name=\"Rodar un texto\">Rodar un texto</link></variable>"
+
+#: text_rotate.xhp#par_id3145171.2.help.text
+msgid "Select the cells whose text you want to rotate."
+msgstr "Seleccione las celdas cuyo texto desee rodar."
+
+#: text_rotate.xhp#par_id3155133.3.help.text
+msgid "Choose <emph>Format - Cells</emph>. You will see the <emph>Format Cells</emph> dialog."
+msgstr "Elija <emph>Formato - Celda</emph>. Verá el diálogo <emph>Formateado de celdas</emph>."
+
+#: text_rotate.xhp#par_id3155854.4.help.text
+msgid "Click the <emph>Alignment</emph> tab."
+msgstr "Pulse la pestaña <emph>Alineación</emph>."
+
+#: text_rotate.xhp#par_id3147426.5.help.text
+msgid "In the <emph>Text orientation</emph> area use the mouse to select in the preview wheel the direction in which the text is to be rotated. Click <emph>OK</emph>."
+msgstr "Usar el ratón en el área de <emph>Orientación del texto</emph> para seleccionar, en la rueda de previsualización, la dirección en la cual se rotará el texto. Hacer clic en <emph>Aceptar</emph>."
+
+#: text_rotate.xhp#par_id3148456.7.help.text
+msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cells\">Format - Cells</link>"
+msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Formato - Celda\">Formato - Celda</link>"
+
+#: text_rotate.xhp#par_id3154944.8.help.text
+msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\">Format - Cells - Alignment</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Formato - Celda - Alineación\">Formato - Celda - Alineación</link>"
+
+#: multi_tables.xhp#tit.help.text
+msgid "Navigating Through Sheets Tabs"
+msgstr "Desplazarse mediante las pestañas de la hoja"
+
+#: multi_tables.xhp#bm_id3150769.help.text
+msgid "<bookmark_value>sheets; showing multiple</bookmark_value><bookmark_value>sheet tabs;using</bookmark_value><bookmark_value>views;multiple sheets</bookmark_value>"
+msgstr "<bookmark_value>hojas;mostrar varias</bookmark_value><bookmark_value>pestañas de la hoja;usar</bookmark_value><bookmark_value>vistas;varias hojas</bookmark_value>"
+
+#: multi_tables.xhp#hd_id3150769.4.help.text
+msgid "<variable id=\"multi_tables\"><link href=\"text/scalc/guide/multi_tables.xhp\" name=\"Navigating Through Sheet Tabs\">Navigating Through Sheet Tabs</link> </variable>"
+msgstr "<variable id=\"multi_tables\"><link href=\"text/scalc/guide/multi_tables.xhp\" name=\"Navigating Through Sheet Tabs\">Recorrer a través de las pestañas de hoja</link> </variable>"
+
+#: multi_tables.xhp#par_id3153771.3.help.text
+msgid "By default $[officename] displays three sheets \"Sheet1\" to \"Sheet3\", in each new spreadsheet. You can switch between sheets in a spreadsheet using the sheet tabs at the bottom of the screen."
+msgstr "De forma predeterminada, $[officename] incluye tres hojas (Hoja1, Hoja2 y Hoja3) en cada nueva hoja de cálculo. Puede conmutar la visualización de las hojas de una hoja de cálculo mediante las pestañas que hay en la parte inferior de la pantalla."
+
+#: multi_tables.xhp#par_idN106AF.help.text
+msgid " <image id=\"img_id4829822\" src=\"res/helpimg/sheettabs.png\" width=\"3.3335inch\" height=\"0.7638inch\" localize=\"true\"><alt id=\"alt_id4829822\">Sheet Tabs</alt></image>"
+msgstr "<image id=\"img_id4829822\" src=\"res/helpimg/sheettabs.png\" width=\"84.67mm\" height=\"19.4mm\" localize=\"true\"><alt id=\"alt_id4829822\">Pestañas de la hoja</alt></image>"
+
+#: multi_tables.xhp#par_id3153144.help.text
+msgid " <image id=\"img_id3156441\" src=\"res/helpimg/calcnav.png\" width=\"0.6563inch\" height=\"0.1457inch\"><alt id=\"alt_id3156441\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156441\" src=\"res/helpimg/calcnav.png\" width=\"1.667cm\" height=\"0.37cm\"><alt id=\"alt_id3156441\">Ícono</alt></image>"
+
+#: multi_tables.xhp#par_id3147396.5.help.text
+msgid "Use the navigation buttons to display all the sheets belonging to your document. Clicking the button on the far left or the far right displays, respectively, the first or last sheet tab. The middle buttons allow the user to scroll forward and backward through all sheet tabs. To display the sheet itself click on the sheet tab."
+msgstr "Utilice los botones de desplazamiento para mostrar todas las hojas del documento. Al pulsar en el botón del extremo izquierdo o del extremo derecho se muestra, respectivamente, la primera o la última hojas.Los botones intermedios permiten al usuario desplazarse hacia delante y hacia atrás entre las pestañas. Para mostrar una hoja, pulse en su pestaña."
+
+#: multi_tables.xhp#par_id3149379.6.help.text
+msgid "If there is insufficient space to display all the sheet tabs, you can increase it by pointing to the separator between the scrollbar and the sheet tabs, pressing the mouse button and, keeping the mouse button pressed, dragging to the right. In doing so you will be sharing the available space between the sheet tabs and horizontal scrollbar."
+msgstr "Si no hay suficiente espacio para mostrar todas las pestañas de la hoja, lo puede incrementar. Para ello, debe situarse sobre el separador entre la barra de desplazamiento y las pestañas de la hoja; con el botón del ratón pulsado, arrastre hacia la derecha. De esta forma, se reparte el espacio disponible entre las pestañas y la barra de desplazamiento horizontal."
+
+#: datapilot_updatetable.xhp#tit.help.text
+#, fuzzy
+msgid "Updating Pivot Tables"
+msgstr "Actualizar tablas del Piloto de datos"
+
+#: datapilot_updatetable.xhp#bm_id3150792.help.text
+#, fuzzy
+msgid "<bookmark_value>pivot table import</bookmark_value><bookmark_value>pivot table function; refreshing tables</bookmark_value><bookmark_value>recalculating;pivot tables</bookmark_value><bookmark_value>updating;pivot tables</bookmark_value>"
+msgstr "<bookmark_value>importar tabla dinámica</bookmark_value><bookmark_value>Piloto de datos;actualizar tablas</bookmark_value><bookmark_value>recalcular;tablas del Piloto de datos</bookmark_value><bookmark_value>actualizar;tablas del Piloto de datos</bookmark_value>"
+
+#: datapilot_updatetable.xhp#hd_id3150792.33.help.text
+#, fuzzy
+msgid "<variable id=\"datapilot_updatetable\"><link href=\"text/scalc/guide/datapilot_updatetable.xhp\" name=\"Updating Pivot Tables\">Updating Pivot Tables</link></variable>"
+msgstr "<variable id=\"datapilot_updatetable\"><link href=\"text/scalc/guide/datapilot_updatetable.xhp\" name=\"Actualizar tablas de Piloto de datos\">Actualizar tablas de Piloto de datos</link></variable>"
+
+#: datapilot_updatetable.xhp#par_id3154684.34.help.text
+#, fuzzy
+msgid "If the data of the source sheet has been changed, $[officename] recalculates the pivot table. To recalculate the table, choose <emph>Data - Pivot Table - Refresh</emph>. Do the same after you have imported an Excel pivot table into $[officename] Calc."
+msgstr "Si se han modificado los datos de la hoja fuente, $[officename] recalcula la tabla. Para recalcular las tablas seleccione <emph>Datos - Piloto de datos - Actualizar</emph>. Hágalo después de importar una tabla dinámica de Excel en $[officename] Calc."
+
+#: database_filter.xhp#tit.help.text
+msgid "Filtering Cell Ranges "
+msgstr "Filtrar rangos de celdas "
+
+#: database_filter.xhp#bm_id3153541.help.text
+msgid "<bookmark_value>cell ranges;applying/removing filters</bookmark_value> <bookmark_value>filtering;cell ranges/database ranges</bookmark_value> <bookmark_value>database ranges;applying/removing filters</bookmark_value> <bookmark_value>removing;cell range filters</bookmark_value>"
+msgstr "<bookmark_value>áreas de celdas;aplicar/quitar filtros</bookmark_value> <bookmark_value>filtrar;áreas de celdas/áreas de base de datos</bookmark_value> <bookmark_value>áreas de base de datos;aplicar/quitar filtros</bookmark_value> <bookmark_value>eliminar;filtros de áreas de celdas</bookmark_value>"
+
+#: database_filter.xhp#hd_id3153541.47.help.text
+msgid "<variable id=\"database_filter\"><link href=\"text/scalc/guide/database_filter.xhp\" name=\"Filtering Cell Ranges\">Filtering Cell Ranges</link></variable>"
+msgstr "<variable id=\"database_filter\"><link href=\"text/scalc/guide/database_filter.xhp\" name=\"Filtrar rangos de celdas\">Filtrar rangos de celdas</link></variable>"
+
+#: database_filter.xhp#par_id3145069.48.help.text
+msgid "You can use several filters to filter cell ranges in spreadsheets. A standard filter uses the options that you specify to filter the data. An AutoFilter filters data according to a specific value or string. An advanced filter uses filter criteria from specified cells."
+msgstr "Puede usar varios filtros para filtrar los rangos de celdas en hojas de cálculo. Un filtro estándar utiliza las opciones especificadas para filtrar los datos. Un filtro automático filtra los datos de acuerdo con una cadena o un valor especificados. Un filtro avanzado utiliza criterios de filtrado de celdas específicas."
+
+#: database_filter.xhp#par_idN10682.help.text
+msgid "To Apply a Standard Filter to a Cell Range"
+msgstr "Para aplicar un filtro predeterminado a un rango de celdas"
+
+#: database_filter.xhp#par_id3150398.50.help.text
+msgid "Click in a cell range."
+msgstr "Haga clic en un rango de celdas."
+
+#: database_filter.xhp#par_idN10693.help.text
+msgid "Choose <item type=\"menuitem\">Data - Filter - Standard Filter</item>."
+msgstr "Elija <item type=\"menuitem\">Datos - Filtro - Filtro predeterminado</item>."
+
+#: database_filter.xhp#par_id3156422.51.help.text
+msgid "In the <emph>Standard Filter</emph> dialog, specify the filter options that you want."
+msgstr "En el diálogo <emph>Filtro predeterminado</emph>, especifique las opciones de filtro."
+
+#: database_filter.xhp#par_idN106A5.help.text
+msgctxt "database_filter.xhp#par_idN106A5.help.text"
+msgid "Click <emph>OK</emph>."
+msgstr "Haga clic en <emph>Aceptar</emph>."
+
+#: database_filter.xhp#par_id3153143.52.help.text
+msgid "The records that match the filter options that you specified are shown."
+msgstr "Se muestran los registros que coinciden con las opciones de filtro especificadas."
+
+#: database_filter.xhp#par_id3153728.53.help.text
+msgid "To Apply an AutoFilter to a Cell Range"
+msgstr "Para aplicar un filtro automático a un rango de celdas"
+
+#: database_filter.xhp#par_id3144764.54.help.text
+msgid "Click in a cell range or a database range."
+msgstr "Haga clic en un rango de celdas o rango de base de datos."
+
+#: database_filter.xhp#par_id9303872.help.text
+msgid "If you want to apply multiple AutoFilters to the same sheet, you must first define database ranges, then apply the AutoFilters to the database ranges."
+msgstr "Si desea aplicar varios filtros automáticos a la misma hoja, primero debe definir intervalos de base de datos para, a continuación, aplicar los filtros automáticos a esos intervalos."
+
+#: database_filter.xhp#par_id3154944.55.help.text
+msgid "Choose <item type=\"menuitem\">Data - Filter - AutoFilter</item>."
+msgstr "Elija <item type=\"menuitem\">Datos - Filtro - Filtro automático</item>."
+
+#: database_filter.xhp#par_idN106DB.help.text
+msgid "An arrow button is added to the head of each column in the database range."
+msgstr "Se agrega un botón de flecha al encabezado de cada columna del área de base de datos."
+
+#: database_filter.xhp#par_id3153878.56.help.text
+msgid "Click the arrow button in the column that contains the value or string that you want to set as the filter criteria."
+msgstr "Haga clic en el botón de flecha de la columna que contenga el valor o la cadena que desea configurar como criterio de filtro."
+
+#: database_filter.xhp#par_idN10749.help.text
+msgid "Select the value or string that you want to use as the filter criteria."
+msgstr "Seleccione el valor o la cadena que desee utilizar como criterio de filtro."
+
+#: database_filter.xhp#par_idN1074C.help.text
+msgid "The records that match the filter criteria that you selected are shown."
+msgstr "Se muestran los registros que coinciden con las opciones de filtro especificadas."
+
+#: database_filter.xhp#par_idN106E8.help.text
+msgid "To Remove a Filter From a Cell Range"
+msgstr "Para eliminar un filtro de un rango de celdas"
+
+#: database_filter.xhp#par_idN1075C.help.text
+msgid "Click in a filtered cell range."
+msgstr "Haga clic en un rango de celdas filtrado."
+
+#: database_filter.xhp#par_idN106EC.help.text
+msgid "Choose <item type=\"menuitem\">Data - Filter - Remove Filter</item>."
+msgstr "Elija <item type=\"menuitem\">Datos - Filtro - Eliminar filtro</item>."
+
+#: database_filter.xhp#par_id4525284.help.text
+msgctxt "database_filter.xhp#par_id4525284.help.text"
+msgid "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\">Wiki page about defining a data range</link>"
+msgstr ""
+
+#: cell_protect.xhp#tit.help.text
+msgid "Protecting Cells from Changes"
+msgstr "Proteger celdas contra modificaciones"
+
+#: cell_protect.xhp#bm_id3146119.help.text
+msgid "<bookmark_value>protecting;cells and sheets</bookmark_value> <bookmark_value>cells; protecting</bookmark_value> <bookmark_value>cell protection; enabling</bookmark_value> <bookmark_value>sheets; protecting</bookmark_value> <bookmark_value>documents; protecting</bookmark_value> <bookmark_value>cells; hiding for printing</bookmark_value> <bookmark_value>changing; sheet protection</bookmark_value> <bookmark_value>hiding;formulas</bookmark_value> <bookmark_value>formulas;hiding</bookmark_value>"
+msgstr "<bookmark_value>proteger;celdas y hojas</bookmark_value> <bookmark_value>celdas; proteger</bookmark_value> <bookmark_value>proteger celdas; habilitar</bookmark_value> <bookmark_value>hojas; proteger</bookmark_value> <bookmark_value>documentos; proteger</bookmark_value> <bookmark_value>celdas; ocultar para imprimir</bookmark_value> <bookmark_value>cambiar; protección de hojas</bookmark_value> <bookmark_value>ocultar;fórmulas</bookmark_value> <bookmark_value>fórmulas;ocultar</bookmark_value>"
+
+#: cell_protect.xhp#hd_id3146119.5.help.text
+msgid "<variable id=\"cell_protect\"><link href=\"text/scalc/guide/cell_protect.xhp\" name=\"Protecting Cells from Changes\">Protecting Cells from Changes</link></variable>"
+msgstr "<variable id=\"cell_protect\"><link href=\"text/scalc/guide/cell_protect.xhp\" name=\"Proteger celdas contra modificaciones\">Proteger celdas contra modificaciones</link></variable>"
+
+#: cell_protect.xhp#par_id3153368.17.help.text
+msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can protect sheets and the document as a whole. You can choose whether the cells are protected against accidental changes, whether the formulas can be viewed from within Calc, whether the cells are visible or whether the cells can be printed."
+msgstr "En <item type=\"productname\">%PRODUCTNAME</item> Calc usted puede proteger las hojas y el documento como un todo. Puede elegir cuales celdas han de estar protegidas contra modificaciones, si las formulas pueden ser vistas desde Calc, cuales celdas serán visibles y cuales celdas podrán ser impresas. "
+
+#: cell_protect.xhp#par_id3145261.18.help.text
+msgid "Protection can be provided by means of a password, but it does not have to be. If you have assigned a password, protection can only be removed once the correct password has been entered."
+msgstr "No solo se puede proveer protección utilizando una contraseña. Si ha utilizado una contraseña, la protección solo podrá ser removida una vez que introduzca la contraseña correctamente."
+
+#: cell_protect.xhp#par_id3148576.19.help.text
+#, fuzzy
+msgid "Note that the cell protection for cells with the <emph>Protected</emph> attribute is only effective when you protect the whole sheet. In the default condition, every cell has the <emph>Protected</emph> attribute. Therefore you must remove the attribute selectively for those cells where the user may make changes. You then protect the whole sheet and save the document."
+msgstr "Note que la protección de celdas con el atributo <emph>Protegido</emph> solo es efectivo cuando se protege toda la tabla. Por defecto, cada celda tiene el atributo <emph>Protegido</emph>. Por lo tanto debe quitar el atributo seleccionando las celdas en la que el usuario podrá realizar cambios. Luego, debe proteger toda la tabla y guardar el documento."
+
+#: cell_protect.xhp#par_id5974303.help.text
+msgid "These protection features are just switches to prevent accidental action. The features are not intended to provide any secure protection. For example, by exporting a sheet to another file format, a user may be able to surpass the protection features. There is only one secure protection: the password that you can apply when saving an OpenDocument file. A file that has been saved with a password can be opened only with the same password."
+msgstr "Estas propiedades de protección son solo para prevenir cambios accidentales no deseados. No están destinadas a proveer alguna protección de seguridad. Por ejemplo, exportando la hoja de calculo a algún otro formato, un usuario puede pasar por alto las propiedades de protección. Solo hay una manera de protección de seguridad: colocar una contraseña que aplicara al momento de guardar un archivo OpenDocument. Un archivo que ha sido guardado con una contraseña solo puede ser abierto con la misma contraseña."
+
+#: cell_protect.xhp#par_idN1066B.help.text
+msgid "Select the cells that you want to specify the cell protection options for."
+msgstr "Seleccione las celdas para las que desee especificar las opciones de protección de celdas."
+
+#: cell_protect.xhp#par_id3149019.7.help.text
+msgid "Choose <item type=\"menuitem\">Format - Cells</item> and click the <emph>Cell Protection</emph> tab."
+msgstr "Seleccione <item type=\"menuitem\">Formato - Celda</item> y haga clic en la pestaña <emph>Protección de celda</emph>."
+
+#: cell_protect.xhp#par_id3152985.9.help.text
+msgid "Select the protection options that you want. All options will be applied only after you protect the sheet from the Tools menu - see below."
+msgstr ""
+
+#: cell_protect.xhp#par_id31529866655.help.text
+#, fuzzy
+msgid "Uncheck <emph>Protected</emph> to allow the user to change the currently selected cells."
+msgstr "Seleccione <emph>Protegida</emph> para impedir que se realicen cambios en el contenido y el formato de una celda. "
+
+#: cell_protect.xhp#par_id3152898.10.help.text
+msgid "Select <emph>Protected</emph> to prevent changes to the contents and the format of a cell. "
+msgstr "Seleccione <emph>Protegida</emph> para impedir que se realicen cambios en el contenido y el formato de una celda. "
+
+#: cell_protect.xhp#par_idN1069A.help.text
+msgid "Select <emph>Hide formula</emph> to hide and to protect formulas from changes."
+msgstr "Seleccione <emph>Ocultar fórmulas</emph> para ocultar y proteger las fórmulas contra cambios."
+
+#: cell_protect.xhp#par_idN106A1.help.text
+msgid "Select <emph>Hide when printing</emph> to hide protected cells in the printed document. The cells are not hidden onscreen."
+msgstr "Seleccione <emph>Ocultar para la impresión</emph> para ocultar las celdas protegidas en el documento impreso. Las celdas no se ocultan en pantalla."
+
+#: cell_protect.xhp#par_id3152872.11.help.text
+msgctxt "cell_protect.xhp#par_id3152872.11.help.text"
+msgid "Click <emph>OK</emph>."
+msgstr "Haga clic en <emph>Aceptar</emph>."
+
+#: cell_protect.xhp#par_id3145362.12.help.text
+msgid "Apply the protection options."
+msgstr "Aplique las opciones de protección."
+
+#: cell_protect.xhp#par_idN106C0.help.text
+msgid "To protect the cells from being changed / viewed / printed according to your settings in the <emph>Format - Cells</emph> dialog, choose <item type=\"menuitem\">Tools - Protect Document - Sheet</item>."
+msgstr "Para proteger las celdas de cambios, visualización o impresión según los valores establecidos en el diálogo <emph>Formato - Celdas</emph>, seleccione <item type=\"menuitem\">Herramientas - Proteger documento - Hoja</item>."
+
+#: cell_protect.xhp#par_idN106C7.help.text
+msgid "To protect the structure of the document, for example the count, <link href=\"text/scalc/guide/rename_table.xhp\">names</link>, and order of the sheets, from being changed, choose <item type=\"menuitem\">Tools - Protect Document - Document</item>."
+msgstr "Para proteger la estructura del documento e impedir la modificación, por ejemplo, de la cantidad, <link href=\"text/scalc/guide/rename_table.xhp\">los nombres</link> y el orden de las hojas, seleccione <item type=\"menuitem\">Herramientas - Proteger documento - Documento</item>."
+
+#: cell_protect.xhp#par_idN106CF.help.text
+msgid "(Optional) Enter a password."
+msgstr "(Opcional) Escriba una contraseña."
+
+#: cell_protect.xhp#par_idN106D2.help.text
+msgid "If you forget your password, you cannot deactivate the protection. If you only want to protect cells from accidental changes, set the sheet protection, but do not enter a password."
+msgstr "Si ha olvidado su contraseña, no puede desactivar la protección. Si únicamente desea proteger las celdas de los cambios involuntarios, establezca la protección de hojas pero no especifique una contraseña."
+
+#: cell_protect.xhp#par_id3153810.13.help.text
+msgid "Click <emph>OK</emph>. "
+msgstr "Haga clic en <emph>Aceptar</emph>. "
+
+#: cell_protect.xhp#par_idN10B8C.help.text
+msgid " <embedvar href=\"text/shared/guide/digital_signatures.xhp#digital_signatures\"/> "
+msgstr " <embedvar href=\"text/shared/guide/digital_signatures.xhp#digital_signatures\"/> "
+
+#: matrixformula.xhp#tit.help.text
+msgid "Entering Matrix Formulas"
+msgstr "Introducir fórmulas de matriz"
+
+#: matrixformula.xhp#bm_id3153969.help.text
+msgid "<bookmark_value>matrices; entering matrix formulas</bookmark_value><bookmark_value>formulas; matrix formulas</bookmark_value><bookmark_value>inserting;matrix formulas</bookmark_value>"
+msgstr "<bookmark_value>matrices;introducir fórmulas de matriz</bookmark_value><bookmark_value>fórmulas;fórmulas de matriz</bookmark_value><bookmark_value>insertar;fórmulas de matriz</bookmark_value>"
+
+#: matrixformula.xhp#hd_id3153969.13.help.text
+msgid "<variable id=\"matrixformula\"><link href=\"text/scalc/guide/matrixformula.xhp\" name=\"Entering Matrix Formulas\">Entering Matrix Formulas</link></variable>"
+msgstr "<variable id=\"matrixformula\"><link href=\"text/scalc/guide/matrixformula.xhp\" name=\"Introducir fórmula matricial\">Introducir fórmula matricial</link></variable>"
+
+#: matrixformula.xhp#par_id3153144.14.help.text
+msgid "The following is an example of how you can enter a matrix formula, without going into the details of matrix functions."
+msgstr "A continuación se muestra un ejemplo de entrada de una fórmula de matriz, sin entrar en detalles sobre las funciones de matriz."
+
+#: matrixformula.xhp#par_id3153188.15.help.text
+msgid "Assume you have entered 10 numbers in Columns A and B (A1:A10 and B1:B10), and would like to calculate the sum of each row in Column C."
+msgstr "Imagine que ingresó 10 números en la columna A y otros 10 en la columna B, (A1:A10 y B1:B10, respectivamente) y que desea calcular la suma de cada fila en la columna C."
+
+#: matrixformula.xhp#par_id3154321.16.help.text
+msgid "Using the mouse, select the range C1:C10, in which the results are to be displayed."
+msgstr "Mediante el ratón, seleccione el rango C1:C10, donde se mostrará el resultado."
+
+#: matrixformula.xhp#par_id3149260.17.help.text
+msgid "Press F2, or click in the input line of the Formula bar."
+msgstr "Presione la tecla F2 o haga clic en la línea de entrada de la Barra de fórmulas."
+
+#: matrixformula.xhp#par_id3154944.18.help.text
+msgid "Enter an equal sign (=)."
+msgstr "Introduzca el símbolo (=)."
+
+#: matrixformula.xhp#par_id3145252.19.help.text
+msgid "Select the range A1:A10, which contains the first values for the sum formula."
+msgstr "Seleccione el rango A1:A10, que contiene los valores del primer sumando de la fórmula."
+
+#: matrixformula.xhp#par_id3144767.20.help.text
+msgid "Press the (+) key from the numerical keypad."
+msgstr "Pulse la tecla más (+)."
+
+#: matrixformula.xhp#par_id3154018.21.help.text
+msgid "Select the numbers in the second column in cells B1:B10."
+msgstr "Seleccione los números de la segunda columna situados en las celdas B1:B10."
+
+#: matrixformula.xhp#par_id3150716.22.help.text
+msgid "End the input with the matrix key combination: Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter."
+msgstr "Termine la entrada con la combinación de teclas de matriz: Mayús + <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Intro."
+
+#: matrixformula.xhp#par_id3145640.23.help.text
+msgid "The matrix area is automatically protected against modifications, such as deleting rows or columns. It is, however, possible to edit any formatting, such as the cell background."
+msgstr "El rango de la matriz queda protegido automáticamente contra posibles modificaciones, como el borrado de filas o columnas. Sin embargo, se pueden editar los atributos de formato, como el fondo de celda."
+
+#: edit_multitables.xhp#tit.help.text
+msgid "Copying to Multiple Sheets"
+msgstr "Copiar en varias hojas"
+
+#: edit_multitables.xhp#bm_id3149456.help.text
+msgid "<bookmark_value>copying;values, to multiple sheets</bookmark_value><bookmark_value>pasting;values in multiple sheets</bookmark_value><bookmark_value>data;inserting in multiple sheets</bookmark_value> <bookmark_value>sheets; simultaneous multiple filling</bookmark_value> "
+msgstr "<bookmark_value>copiar;valores, a multiples hojas</bookmark_value><bookmark_value>pegar;valores en multiples hojas</bookmark_value><bookmark_value>datos;insertar en multiples hojas</bookmark_value> <bookmark_value>hojas; multiple llenado simultaneo</bookmark_value> "
+
+#: edit_multitables.xhp#hd_id3149456.3.help.text
+msgid "<variable id=\"edit_multitables\"><link href=\"text/scalc/guide/edit_multitables.xhp\" name=\"Copying to Multiple Sheets\">Copying to Multiple Sheets</link> </variable>"
+msgstr "<variable id=\"edit_multitables\"><link href=\"text/scalc/guide/edit_multitables.xhp\" name=\"Copiar en múltiples hojas\">Copiar en múltiples hojas</link></variable>"
+
+#: edit_multitables.xhp#par_id3150868.6.help.text
+msgid "In $[officename] Calc, you can insert values, text or formulas that are simultaneously copied to other selected sheets of your document."
+msgstr "$[officename] Calc permite insertar valores, texto o fórmulas y copiarlos simultáneamente en otras hojas seleccionadas del documento."
+
+#: edit_multitables.xhp#par_id3153768.8.help.text
+msgid "Select all desired sheets by holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key and clicking the corresponding register tabs that are still gray at the bottom margin of the workspace. All selected register tabs are now white."
+msgstr ""
+
+#: edit_multitables.xhp#par_idN10614.help.text
+msgctxt "edit_multitables.xhp#par_idN10614.help.text"
+msgid "You can use Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up or Page Down to select multiple sheets using the keyboard."
+msgstr "Pulse Mayús+<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Re Pág o Av Pág para seleccionar varias hojas utilizando el teclado."
+
+#: edit_multitables.xhp#par_id3147435.7.help.text
+msgid "Now when you insert values, text or formulas into the active sheet, they will also appear in the identical positions in the other selected sheets. For example, data entered in cell A1 of the active sheet is automatically entered into cell A1 of any other seleted sheet."
+msgstr "Ahora cuando Usted inserte valores, texto o fórmulas en la hoja de cálculo activa, estos también aparecerán en idénticas posiciones en las otras hojas seleccionadas. Por ejemplo, los datos ingresados en la celda A1 de la hoja de cálculo activa es ingresado automáticamente en la celda A1 de cualquier otra hoja de cálculo seleccionada."
+
+#: cellstyle_minusvalue.xhp#tit.help.text
+msgid "Highlighting Negative Numbers"
+msgstr "Destacar números negativos"
+
+#: cellstyle_minusvalue.xhp#bm_id3147434.help.text
+msgid "<bookmark_value>negative numbers</bookmark_value> <bookmark_value>numbers; highlighting negative numbers</bookmark_value> <bookmark_value>highlighting;negative numbers</bookmark_value> <bookmark_value>colors;negative numbers</bookmark_value> <bookmark_value>number formats;colors for negative numbers</bookmark_value>"
+msgstr "<bookmark_value>números negativos</bookmark_value> <bookmark_value>números; resaltar números negativos</bookmark_value> <bookmark_value>resaltar;números negativos</bookmark_value> <bookmark_value>colores;números negativos</bookmark_value> <bookmark_value>formatos de número;colores para números negativos</bookmark_value>"
+
+#: cellstyle_minusvalue.xhp#hd_id3147434.31.help.text
+msgid "<variable id=\"cellstyle_minusvalue\"><link href=\"text/scalc/guide/cellstyle_minusvalue.xhp\" name=\"Highlighting Negative Numbers\">Highlighting Negative Numbers</link></variable>"
+msgstr "<variable id=\"cellstyle_minusvalue\"> <link href=\"text/scalc/guide/cellstyle_minusvalue.xhp\" name=\"Destacar número negativo\">Destacar número negativo</link> </variable>"
+
+#: cellstyle_minusvalue.xhp#par_id3153878.33.help.text
+msgid "You can format cells with a number format that highlights negative numbers in red. Alternatively, you can define your own number format in which negative numbers are highlighted in other colors."
+msgstr "Se puede asignar a las celdas un formato numérico que destaque los números negativos en rojo. Otra posibilidad es definir un formato numérico propio que destaque los números negativos en otro color."
+
+#: cellstyle_minusvalue.xhp#par_id3155600.34.help.text
+msgid "Select the cells and choose <emph>Format - Cells</emph>."
+msgstr "Seleccione las celdas y elija <emph>Formato - Celdas</emph>."
+
+#: cellstyle_minusvalue.xhp#par_id3146969.35.help.text
+msgid "On the <emph>Numbers</emph> tab, select a number format and mark <emph>Negative numbers red</emph> check box. Click <emph>OK</emph>."
+msgstr "En la pestaña <emph>Números</emph> seleccione un formato numérico y marque la casilla de verificación <emph>Núm. negativos en rojo</emph>. Haga clic en Aceptar."
+
+#: cellstyle_minusvalue.xhp#par_id3145640.36.help.text
+msgid "The cell number format is defined in two parts. The format for positive numbers and zero is defined in front of the semicolon; after the semicolon the formula for negative numbers is defined. You can change the code (RED) under <item type=\"menuitem\">Format code</item>. For example, instead of RED, enter <item type=\"literal\">YELLOW</item>. If the new code appears in the list after clicking the <item type=\"menuitem\">Add</item> icon, this is a valid entry."
+msgstr "El formato de número de celda se define en dos partes. El formato para números positivos y cero se define delante del punto y coma; después del punto y coma se define la fórmula de los números negativos. Puede cambiar el código (ROJO) en <item type=\"menuitem\">Código del formato</item>. Por ejemplo, en vez de ROJO, escriba <item type=\"literal\">AMARILLO</item>. Si aparece código nuevo en la lista tras hacer clic en el símbolo <item type=\"menuitem\">Agregar</item>, es una entrada válida."
+
+#: webquery.xhp#tit.help.text
+msgid "Inserting External Data in Table (WebQuery)"
+msgstr "Insertar datos externos en tabla (WebQuery)"
+
+#: webquery.xhp#bm_id3154346.help.text
+msgid "<bookmark_value>HTML WebQuery</bookmark_value><bookmark_value>ranges; inserting in tables</bookmark_value><bookmark_value>external data; inserting</bookmark_value><bookmark_value>tables; inserting external data</bookmark_value><bookmark_value>web pages; importing data</bookmark_value><bookmark_value>WebQuery filter</bookmark_value><bookmark_value>inserting; external data</bookmark_value><bookmark_value>data sources; external data</bookmark_value>"
+msgstr "<bookmark_value>Consulta Web HTML </bookmark_value><bookmark_value>rangos; insertar en tablas</bookmark_value><bookmark_value>datos externos; insertar</bookmark_value><bookmark_value>tablas; insertar datos externos </bookmark_value><bookmark_value>páginas web; importando datos </bookmark_value><bookmark_value>Filtros de Consultas web </bookmark_value><bookmark_value>insertar ; datos externos</bookmark_value><bookmark_value>fuentes de datos ; datos externos</bookmark_value>"
+
+#: webquery.xhp#hd_id3125863.2.help.text
+msgid "<variable id=\"webquery\"><link href=\"text/scalc/guide/webquery.xhp\" name=\"Inserting External Data in Table (WebQuery)\">Inserting External Data in Table (WebQuery)</link></variable>"
+msgstr "<variable id=\"webquery\"><link href=\"text/scalc/guide/webquery.xhp\" name=\"Insertar datos externos en tabla\">Insertar datos externos en tabla</link></variable>"
+
+#: webquery.xhp#par_id3155131.3.help.text
+msgid "With the help of the <emph>Web Page Query ($[officename] Calc)</emph> import filter, you can insert tables from HTML documents in a Calc spreadsheet."
+msgstr "Mediante el filtro de importación <emph>Consulta de páginas Web ($[officename] Calc)</emph>, puede insertar tablas de documentos HTML en una hoja de cálculo de Calc."
+
+#: webquery.xhp#par_id3148575.4.help.text
+msgid "You can use the same method to insert ranges defined by name from a Calc or Microsoft Excel spreadsheet."
+msgstr "Se puede utilizar el mismo método para insertar áreas con nombre desde una hoja de cálculo de Calc o de Microsoft Excel."
+
+#: webquery.xhp#par_id3149664.5.help.text
+msgid "The following insert methods are available:"
+msgstr "Existen los siguientes métodos de inserción:"
+
+#: webquery.xhp#hd_id3146976.6.help.text
+msgid "Inserting by Dialog"
+msgstr "Inserción mediante diálogo"
+
+#: webquery.xhp#par_id3154319.7.help.text
+msgid "Set the cell cursor at the cell where the new content will be inserted."
+msgstr "Sitúe el cursor de celdas en la celda en la que desea insertar el contenido nuevo."
+
+#: webquery.xhp#par_id3145750.8.help.text
+msgid "Choose <emph>Insert - Link to External Data</emph>. This opens the <link href=\"text/scalc/01/04090000.xhp\">External Data</link> dialog."
+msgstr "Seleccione <emph>Insertar - Vínculo a datos externos</emph>. Se abre el diálogo <link href=\"text/scalc/01/04090000.xhp\">Datos externos</link>."
+
+#: webquery.xhp#par_id3149958.9.help.text
+msgid "Enter the URL of the HTML document or the name of the spreadsheet. Press Enter when finished. Click the <emph>...</emph> button to open a file selection dialog."
+msgstr "Especifique el URL del documento HTML o el nombre de la hoja de cálculo. Pulse Entrar cuando haya finalizado.! Haga clic en el botón <emph>...</emph> para abrir un diálogo de selección de archivos."
+
+#: webquery.xhp#par_id3149400.10.help.text
+msgid "In the large list box of the dialog, select the named ranges or tables you want to insert."
+msgstr "En el cuadro grande de lista del diálogo, seleccione las áreas o tablas con nombre que desee insertar."
+
+#: webquery.xhp#par_id3155064.11.help.text
+msgid "You can also specify that the ranges or tables are updated every n seconds."
+msgstr "Puede especificar que las áreas o tablas se actualicen cada n segundos."
+
+#: webquery.xhp#par_id3155443.30.help.text
+msgid "The import filter can create names for cell ranges on the fly. As much formatting as possible is retained, while the filter intentionally does not load any images."
+msgstr "El filtro de importación puede crear nombres para áreas de celdas sobre la marcha. Se conserva el máximo formato posible, pero el filtro impide explícitamente la carga de imágenes."
+
+#: webquery.xhp#hd_id3149021.12.help.text
+msgid "Inserting by Navigator"
+msgstr "Inserción mediante el Navegador"
+
+#: webquery.xhp#par_id3153965.14.help.text
+msgid "Open two documents: the $[officename] Calc spreadsheet in which the external data is to be inserted (target document) and the document from which the external data derives (source document)."
+msgstr "Abra dos documentos: la hoja de cálculo de $[officename] Calc en la que desea insertar los datos externos (documento destino) y el documento del que procedan los datos externos (documento fuente)."
+
+#: webquery.xhp#par_id3150205.16.help.text
+msgid "In the target document open the Navigator."
+msgstr "Abra el Navegador en el documento destino."
+
+#: webquery.xhp#par_id3152990.18.help.text
+msgid "In the lower combo box of the Navigator select the source document. The Navigator now shows the range names and database ranges or the tables contained in the source document."
+msgstr "Seleccione en el campo combinado inferior del Navegador el documento fuente. El Navegador mostrará ahora los nombres de áreas contenidos en el documento fuente y las áreas de bases de datos, es decir, las tablas."
+
+#: webquery.xhp#par_id3148842.20.help.text
+msgid "In the Navigator select the <emph>Insert as link</emph> drag mode <image id=\"img_id3152985\" src=\"sw/imglst/sc20238.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152985\">Icon</alt></image>."
+msgstr "En el Navegador, seleccione el modo de arrrastre <emph>Insertar como vínculo</emph><image id=\"img_id3152985\" src=\"sw/imglst/sc20238.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152985\">Símbolo</alt></image>."
+
+#: webquery.xhp#par_id3157978.22.help.text
+msgid "Drag the desired external data from the Navigator into the target document."
+msgstr "Arrastre los datos externos que desee del Navegador al documento de destino."
+
+#: webquery.xhp#par_id3144768.23.help.text
+msgid "If you have loaded an HTML document with the <emph>Web Page Query</emph> filter as the source document, you will find the tables in the Navigator, named continuously from \"HTML_table1\" onwards, and also two range names that have been created:"
+msgstr "Si ha cargado un documento HTML con el filtro <emph>Consulta de páginas web</emph> como documento fuente, encontrará en el Navegador las tablas llamadas \"HTML_table1\", \"HTML_table2\", etc. además de dos nombres de área creados:"
+
+#: webquery.xhp#par_id3152873.24.help.text
+msgid "<item type=\"literal\">HTML_all</item> - designates the entire document"
+msgstr "<item type=\"literal\">HTML_all</item>: designa todo el documento"
+
+#: webquery.xhp#par_id3149897.25.help.text
+msgid "<item type=\"literal\">HTML_tables</item> - designates all HTML tables in the document"
+msgstr "<item type=\"literal\">HTML_tables</item>: designa todas las tablas HTML del documento"
+
+#: webquery.xhp#hd_id3149126.26.help.text
+msgid "Editing the external data"
+msgstr "Edición de los datos externos"
+
+#: webquery.xhp#par_id3159228.27.help.text
+msgid "Open <emph>Edit - Links</emph>. Here you can edit the link to the external data."
+msgstr "Active el diálogo <emph>Editar - Vínculos</emph>. Aquí podrá editar el vínculo a los datos externos."
+
+#: webquery.xhp#par_id3154650.28.help.text
+msgid "<link href=\"text/scalc/01/04090000.xhp\" name=\"External data dialog\">External data dialog</link>"
+msgstr "<link href=\"text/scalc/01/04090000.xhp\" name=\"Diálogo Datos externos\">Diálogo Datos externos</link>"
+
+#: calc_date.xhp#tit.help.text
+msgid "Calculating With Dates and Times"
+msgstr "Calcular con fechas y horas"
+
+#: calc_date.xhp#bm_id3146120.help.text
+msgid "<bookmark_value>dates; in cells</bookmark_value> <bookmark_value>times; in cells</bookmark_value> <bookmark_value>cells;date and time formats</bookmark_value> <bookmark_value>current date and time values</bookmark_value>"
+msgstr "<bookmark_value>fechas; en celdas</bookmark_value> <bookmark_value>horas; en celdas</bookmark_value> <bookmark_value>celdas;formatos de fecha y hora</bookmark_value> <bookmark_value>valores de fecha y hora actuales</bookmark_value>"
+
+#: calc_date.xhp#hd_id3146120.11.help.text
+msgid "<variable id=\"calc_date\"><link href=\"text/scalc/guide/calc_date.xhp\" name=\"Calculating With Dates and Times\">Calculating With Dates and Times</link></variable>"
+msgstr "<variable id=\"calc_date\"><link href=\"text/scalc/guide/calc_date.xhp\" name=\"Calculating With Dates and Times\">Calcular con fechas y horas</link></variable>"
+
+#: calc_date.xhp#par_id3154320.12.help.text
+msgid "In $[officename] Calc, you can perform calculations with current date and time values. As an example, to find out exactly how old you are in seconds or hours, follow the following steps:"
+msgstr "$[officename] Calc permite realizar cálculos con fechas y horas, ya que se obtienen del reloj interno del sistema. Por ejemplo, para averiguar su edad exacta en segundos u horas, siga estos pasos:"
+
+#: calc_date.xhp#par_id3150750.13.help.text
+msgid "In a spreadsheet, enter your birthday in cell A1."
+msgstr "Abra una nueva hoja de cálculo. Escriba la fecha de su nacimiento en la celda A1, p. ej: \"1/1/70\"."
+
+#: calc_date.xhp#par_id3145642.14.help.text
+msgid "Enter the following formula in cell A3: <item type=\"literal\">=NOW()-A1</item> "
+msgstr "Escriba la fórmula siguiente en la celda A3: <item type=\"literal\">=AHORA()-A1</item> "
+
+#: calc_date.xhp#par_id3149020.52.help.text
+msgid "After pressing the <item type=\"keycode\">Enter</item> key you will see the result in date format. Since the result should show the difference between two dates as a number of days, you must format cell A3 as a number."
+msgstr "Al pulsar la tecla Intro verá el resultado en formato de fecha. Puesto que lo que desea es ver la diferencia entre dos fechas en número de días, deberá asignar a la celda A3 el formato de número."
+
+#: calc_date.xhp#par_id3155335.53.help.text
+msgid "Place the cursor in cell A3, right-click to open a context menu and choose <emph>Format Cells</emph>."
+msgstr "Coloque el cursor en la celda A3 y formatéela como número. Abra para ello el menú contextual de la celda A3 (pulsando el botón derecho del ratón) y active el comando <emph>Formatear celdas...</emph>"
+
+#: calc_date.xhp#par_id3147343.54.help.text
+msgid "The <item type=\"menuitem\">Format Cells</item> dialog appears. On the <item type=\"menuitem\">Numbers</item> tab, the \"Number\" category will appear already highlighted. The format is set to \"General\", which causes the result of a calculation containing date entries to be displayed as a date. To display the result as a number, set the number format to \"-1,234\" and close the dialog with the <item type=\"menuitem\">OK</item> button."
+msgstr "Aparece el diálogo <item type=\"menuitem\">Formato de celdas</item>. En la ficha <item type=\"menuitem\">Números</item>, la categoría \"Número\" aparece destacada. El formato establecido es \"Estándar\", lo que hace que el resultado de efectuar cálculos entre fechas se muestre también como fecha. Si desea mostrar el resultado en forma de número, establezca el formato \"-1,234\" por ejemplo, y cierre el diálogo haciendo clic en el botón <item type=\"menuitem\">Aceptar</item>."
+
+#: calc_date.xhp#par_id3147001.15.help.text
+msgid "The number of days between today's date and the specified date is displayed in cell A3."
+msgstr "La celda A3 le mostrará ahora la cantidad de días entre la fecha actual y la fecha introducida."
+
+#: calc_date.xhp#par_id3150304.16.help.text
+msgid "Experiment with some additional formulas: in A4 enter =A3*24 to calculate the hours, in A5 enter =A4*60 for the minutes, and in A6 enter =A5*60 for seconds. Press the <item type=\"keycode\">Enter</item> key after each formula."
+msgstr "Pruebe con las siguientes fórmulas: en A4 escriba \"=A3*24\" para calcular las horas, en A5 escriba \"=A4*60\" para calcular los minutos y en A6 escriba \"=A5*60\" para los segundos. Pulse la tecla Entrar después de cada fórmula."
+
+#: calc_date.xhp#par_id3149207.17.help.text
+msgid "The time since your date of birth will be calculated and displayed in the various units. The values are calculated as of the exact moment when you entered the last formula and pressed the <item type=\"keycode\">Enter</item> key. This value is not automatically updated, although \"Now\" continuously changes. In the <emph>Tools</emph> menu, the menu item <emph>Cell Contents - AutoCalculate</emph> is normally active; however, automatic calculation does not apply to the function NOW. This ensures that your computer is not solely occupied with updating the sheet."
+msgstr "El tiempo se calculará y especificará en las diferentes unidades desde la fecha de nacimiento. El valor en segundos se calcula desde el momento exacto en que introdujo la fórmula, p.ej.: en la celda A6, y pulsó la tecla Entrar. Este valor no se actualiza automáticamente a pesar de que \"Ahora\" cambie constantemente. En el menú <emph>Herramientas</emph> el comando <emph>Contenidos de celda - Cálculo automático</emph> está normalmente activo. Sin embargo este cálculo automático no tiene efecto por razones lógicas sobre la función AHORA, pues de lo contrario su ordenador estaría constantemente ocupado con la actualización de la hoja."
+
+#: multitables.xhp#tit.help.text
+msgid "Applying Multiple Sheets"
+msgstr "Aplicar hojas múltiples"
+
+#: multitables.xhp#bm_id3154759.help.text
+msgid "<bookmark_value>sheets; inserting</bookmark_value> <bookmark_value>inserting; sheets</bookmark_value> <bookmark_value>sheets; selecting multiple</bookmark_value> <bookmark_value>appending sheets</bookmark_value> <bookmark_value>selecting;multiple sheets</bookmark_value> <bookmark_value>multiple sheets</bookmark_value> <bookmark_value>calculating;multiple sheets</bookmark_value>"
+msgstr "<bookmark_value>hojas; insertar</bookmark_value> <bookmark_value>insertar; hojas</bookmark_value> <bookmark_value>hojas; seleccionar varias</bookmark_value> <bookmark_value>agregar hojas</bookmark_value> <bookmark_value>seleccionar;varias hojas</bookmark_value> <bookmark_value>varias hojas</bookmark_value> <bookmark_value>calcular;varias hojas</bookmark_value>"
+
+#: multitables.xhp#hd_id3154759.9.help.text
+msgid "<variable id=\"multitables\"><link href=\"text/scalc/guide/multitables.xhp\" name=\"Applying Multiple Sheets\">Applying Multiple Sheets</link></variable>"
+msgstr "<variable id=\"multitables\"><link href=\"text/scalc/guide/multitables.xhp\" name=\"Applying Multiple Sheets\">Aplicar a varias hojas</link></variable>"
+
+#: multitables.xhp#hd_id3148576.10.help.text
+msgid "Inserting a Sheet"
+msgstr "Insertar una hoja"
+
+#: multitables.xhp#par_id3154731.4.help.text
+msgid "Choose <item type=\"menuitem\">Insert - Sheet</item> to insert a new sheet or an existing sheet from another file."
+msgstr "Seleccione <item type=\"menuitem\">Insertar - Hoja de cálculo</item> para insertar una hoja nueva o una procedente de otro archivo."
+
+#: multitables.xhp#par_id05092009140203598.help.text
+#, fuzzy
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog box where you can assign macros to sheet events.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abre un diálogo donde puedes agregar un idioma a la lista.</ahelp>"
+
+#: multitables.xhp#par_id05092009140203523.help.text
+#, fuzzy
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a window where you can assign a color to the sheet tab.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abre un diálogo donde puedes agregar un idioma a la lista.</ahelp>"
+
+#: multitables.xhp#par_id050920091402035.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to select all sheets in the document.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Haga clic para seleccionar todas las hojas del documento.</ahelp>"
+
+#: multitables.xhp#par_id0509200914020391.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to deselect all sheets in the document, except the current sheet.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Haga clic para anular la selección de todas las hojas del documento, excepto la hoja actual.</ahelp>"
+
+#: multitables.xhp#hd_id3154491.11.help.text
+msgid "Selecting Multiple Sheets"
+msgstr "Seleccionar varias hojas"
+
+#: multitables.xhp#par_id3145251.6.help.text
+msgid "The sheet tab of the current sheet is always visible in white in front of the other sheet tabs. The other sheet tabs are gray when they are not selected. By clicking other sheet tabs while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> you can select multiple sheets."
+msgstr ""
+
+#: multitables.xhp#par_idN106B7.help.text
+msgctxt "multitables.xhp#par_idN106B7.help.text"
+msgid "You can use Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up or Page Down to select multiple sheets using the keyboard."
+msgstr "Pulse Mayús+<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Re Pág o Av Pág para seleccionar varias hojas utilizando el teclado."
+
+#: multitables.xhp#hd_id3155600.12.help.text
+msgid "Undoing a Selection"
+msgstr "Deshacer una selección"
+
+#: multitables.xhp#par_id3146969.13.help.text
+msgid "To undo the selection of a sheet, click its sheet tab again while pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key. The sheet that is currently visible cannot be removed from the selection."
+msgstr ""
+
+#: multitables.xhp#hd_id3156382.15.help.text
+msgid "Calculating Across Multiple Sheets"
+msgstr "Calcular en varias hojas"
+
+#: multitables.xhp#par_id3155333.16.help.text
+msgid "You can refer to a range of sheets in a formula by specifying the first and last sheet of the range, for example, <item type=\"literal\">=SUM(Sheet1.A1:Sheet3.A1) </item>sums up all A1 cells on Sheet1 through Sheet3."
+msgstr "Puede hacer referencia a un área de hojas de una fórmula especificando la primera hoja y la última del área; por ejemplo, <item type=\"literal\">=SUMA(Hoja1.A1:Hoja3.A1) </item>suma todas las celdas A1 de la Hoja1 a la Hoja3."
+
+#: move_dragdrop.xhp#tit.help.text
+msgid "Moving Cells by Drag-and-Drop "
+msgstr "Mover celdas mediante arrastrar y soltar"
+
+#: move_dragdrop.xhp#bm_id3155686.help.text
+msgid "<bookmark_value>drag and drop; moving cells</bookmark_value><bookmark_value>cells; moving by drag and drop </bookmark_value><bookmark_value>columns;moving by drag and drop</bookmark_value><bookmark_value>moving;cells by drag and drop</bookmark_value><bookmark_value>inserting;cells, by drag and drop</bookmark_value>"
+msgstr "<bookmark_value>arrastrar y soltar; mover celdas</bookmark_value><bookmark_value>celdas; mover mediante arrastrar y soltar</bookmark_value><bookmark_value>insertar mediante arrastrar y colocar</bookmark_value><bookmark_value>insertar; celdas, mediante arrastrar y soltar</bookmark_value>"
+
+#: move_dragdrop.xhp#hd_id986358.help.text
+msgid "<variable id=\"move_dragdrop\"><link href=\"text/scalc/guide/move_dragdrop.xhp\">Moving Cells by Drag-and-Drop</link></variable>"
+msgstr "<variable id=\"move_dragdrop\"><link href=\"text/scalc/guide/move_dragdrop.xhp\">Mover celdas mediante arrastrar y soltar</link></variable>"
+
+#: move_dragdrop.xhp#par_id2760093.help.text
+msgid "When you drag-and-drop a selection of cells on a Calc sheet, the cells normally overwrite the existing cells in the area where you drop. This is the normal <emph>overwrite mode</emph>."
+msgstr "Al arrastrar y soltar celdas, previamente seleccionadas en una hoja de Calc, generalmente éstas sobreescribirán las celdas destino (las celdas del rango donde suelta las celdas seleccionadas). Este es el <emph>modo de sobreescritura</emph> normal."
+
+#: move_dragdrop.xhp#par_id9527268.help.text
+msgid "When you hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key while releasing the mouse button, you enter the <emph>insert mode</emph>."
+msgstr "Cuando mantiene precionada la <switchinline select=\"sys\"><caseinline select=\"MAC\">Opción</caseinline><defaultinline>Alt</defaultinline></switchinline> mientras libera el botón del ratón, usted ingresa al <emph>modo inserción</emph>."
+
+#: move_dragdrop.xhp#par_id79653.help.text
+msgid "In insert mode, the existing cells where you drop will be shifted to the right or to the bottom, and the dropped cells are inserted into the now empty positions without overwriting. "
+msgstr "En el modo insertar, las celdas destino se desplazan a la derecha o hacia abajo y las celdas que soltó se insertan en las posiciones vacías, sin que se sobreescriba celda alguna."
+
+#: move_dragdrop.xhp#par_id8676717.help.text
+msgid "The surrounding box of the moved cells looks different in insert mode. "
+msgstr "En el modo insertar, el recuadro que rodea las celdas que movió presenta un aspecto diferente."
+
+#: move_dragdrop.xhp#par_id3968932.help.text
+msgid "In overwrite mode you see all four borders around the selected area. In insert mode you see only the left border when target cells will be shifted to the right. You see only the upper border when target cells will be shifted down. "
+msgstr "En el modo sobreescribir puede ver los cuatro bordes en derredor del rango seleccionado. En el modo insertar sólo ve el borde izquierdo cuando las celdas destino se desplazan hacia la derecha. Únicamente verá el borde superior cuando las celdas destino se desplacen hacia abajo."
+
+#: move_dragdrop.xhp#par_id7399517.help.text
+msgid "Whether the target area will be shifted to the right or to the bottom depends on the distance between source and target cells, if you move within the same sheet. It depends on the number of horizontal or vertical cells in the moved area, if you move to a different sheet."
+msgstr "Que el rango destino se desplace a la derecha o hacia abajo depende de la distancia entre las celdas origen y destino, en tanto que el movimiento se realice dentro de la misma hoja. Si mueve el rango a otra hoja, la dirección del desplazamiento dependerá de la cantidad de celdas horizontales o verticales que contenga ese rango."
+
+#: move_dragdrop.xhp#par_id8040406.help.text
+msgid "If you move cells in insert mode within the same row (only horizontally), then after insertion of the cells, all cells will be shifted to the left to fill the source area."
+msgstr "En el modo insertar, si mueve celdas en una misma fila (es decir, horizontalmente), después de insertarlas, todas las celdas se desplazarán a la izquierda para rellenar el rango de origen."
+
+#: move_dragdrop.xhp#par_id2586748.help.text
+msgid "In both modes, you can hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key, or <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift keys while you release the mouse button to insert a copy or a link, respectively."
+msgstr ""
+
+#: move_dragdrop.xhp#par_id5814081.help.text
+msgid "Keys pressed while releasing the mouse button"
+msgstr "las teclas presionadas mientras libera el botón del ratón"
+
+#: move_dragdrop.xhp#par_id6581316.help.text
+msgctxt "move_dragdrop.xhp#par_id6581316.help.text"
+msgid "Result"
+msgstr "<emph>Resultado</emph>"
+
+#: move_dragdrop.xhp#par_id9906613.help.text
+msgid "No key"
+msgstr "Sin llave"
+
+#: move_dragdrop.xhp#par_id2815637.help.text
+msgid "Cells are moved and overwrite the cells in the target area. Source cells are emptied."
+msgstr "Las celdas se mueven y sobre escriben las celdas en el área de destino. Las celdas de origen son borradas."
+
+#: move_dragdrop.xhp#par_id6161687.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key"
+msgstr ""
+
+#: move_dragdrop.xhp#par_id4278389.help.text
+msgid "Cells are copied and overwrite the cells in the target area. Source cells stay as they are."
+msgstr "Las celdas se copian y sobre escriben las celdas en el área de destino. Las celdas de origen se mantienen."
+
+#: move_dragdrop.xhp#par_id2805566.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift keys"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Mayúsc. "
+
+#: move_dragdrop.xhp#par_id5369121.help.text
+msgid "Links to the source cells are inserted and overwrite the cells in the target area. Source cells stay as they are."
+msgstr "Vínculos a las celdas de origen se instertan y sobre escriben las celdas en el área de destino. Las celdas de origen se mantienen."
+
+#: move_dragdrop.xhp#par_id9518723.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Opción</caseinline><defaultinline>Alt</defaultinline></switchinline> "
+
+#: move_dragdrop.xhp#par_id2926419.help.text
+msgid "Cells are moved and shift the cells in the target area to the right or to the bottom. Source cells are emptied, except if you move within the same rows on the same sheet. "
+msgstr "Las celdas se mueven y se desplazan en el área de destino a la derecha o hacia abajo. Las celdas de origen son borradas, excepto si se mueve las mismas filas en la misma hoja."
+
+#: move_dragdrop.xhp#par_id4021423.help.text
+msgid "If you move within the same rows on the same sheet, the cells in the target area shift to the right, and then the whole row shifts to fill the source area."
+msgstr "Si mueve las celdas en la misma fila de la misma hoja, en el área de destino se deplazan a la derecha, y la totalidad de filas se desplazan para llenar el área de origen"
+
+#: move_dragdrop.xhp#par_id2783898.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option+Command </caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline> keys"
+msgstr ""
+
+#: move_dragdrop.xhp#par_id2785119.help.text
+msgid "Cells are copied and shift the cells in the target area to the right or to the bottom. Source cells stay as they are."
+msgstr "Las celdas se copian y en el área de destino se desplazan a la derecha o hacia abajo. Las celdas de origen se mantienen."
+
+#: move_dragdrop.xhp#par_id584124.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option+Command</caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline>+Shift keys"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Opción+Comando</caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline>+Mayúsc. "
+
+#: move_dragdrop.xhp#par_id5590990.help.text
+msgid "Links to the source cells are inserted and shift the cells in the target area to the right or to the bottom. Source cells stay as they are."
+msgstr "Vínculos a las celdas de origen se instertan y en el área de destino se desplazan a la derecha o hacia abajo. Las celdas de origen se mantienen."
+
+#: line_fix.xhp#tit.help.text
+msgid "Freezing Rows or Columns as Headers"
+msgstr "Fijar filas o columnas como encabezados"
+
+#: line_fix.xhp#bm_id3154684.help.text
+msgid "<bookmark_value>tables; freezing</bookmark_value><bookmark_value>title rows; freezing during table split</bookmark_value><bookmark_value>rows; freezing</bookmark_value><bookmark_value>columns; freezing</bookmark_value><bookmark_value>freezing rows or columns</bookmark_value><bookmark_value>headers; freezing during table split</bookmark_value><bookmark_value>scrolling prevention in tables</bookmark_value><bookmark_value>windows; splitting</bookmark_value><bookmark_value>tables; splitting windows</bookmark_value>"
+msgstr "<bookmark_value>fijar;tablas</bookmark_value><bookmark_value>tablas;fijar</bookmark_value><bookmark_value>filas de títulos;fijar durante división de tabla</bookmark_value><bookmark_value>filas;fijar</bookmark_value><bookmark_value>columnas;fijar</bookmark_value><bookmark_value>fijar;filas o columnas</bookmark_value><bookmark_value>encabezados;fijar durante división de tabla</bookmark_value><bookmark_value>desplazamiento;impedir en tablas</bookmark_value><bookmark_value>ventanas;dividir</bookmark_value><bookmark_value>tablas;dividir ventanas</bookmark_value>"
+
+#: line_fix.xhp#hd_id3154684.1.help.text
+msgid "<variable id=\"line_fix\"><link href=\"text/scalc/guide/line_fix.xhp\" name=\"Freezing Rows or Columns as Headers\">Freezing Rows or Columns as Headers</link></variable>"
+msgstr "<variable id=\"line_fix\"><link href=\"text/scalc/guide/line_fix.xhp\" name=\"Fijar filas o columnas como encabezado\">Fijar filas o columnas como encabezado</link></variable>"
+
+#: line_fix.xhp#par_id3148576.2.help.text
+msgid "If you have long rows or columns of data that extend beyond the viewable area of the sheet, you can freeze some rows or columns, which allows you to see the frozen columns or rows as you scroll through the rest of the data."
+msgstr "Si las filas o columnas de datos se extienden más allá del área visible de la hoja, puede fijar algunas de ellas, lo que le permite poder verlas mientras que se desplaza por el resto de los datos."
+
+#: line_fix.xhp#par_id3156441.3.help.text
+msgid "Select the row below, or the column to the right of the row or column that you want to be in the frozen region. All rows above, or all columns to the left of the selection are frozen."
+msgstr "Seleccione la fila inferior o la columna de la derecha de la fila o columna que desee fijar. Todas las filas situadas encima de la selección y las columnas situadas a la izquierda de la misma quedarán fijadas."
+
+#: line_fix.xhp#par_id3153158.13.help.text
+msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
+msgstr "Para fijar horizontal y verticalmente seleccione la <emph>celda</emph> situada debajo de la fila y a la derecha de la columna que desee fijar."
+
+#: line_fix.xhp#par_id3156286.4.help.text
+msgid "Choose <emph>Window - Freeze</emph>."
+msgstr "Active el comando <emph>Ventana - Fijar</emph>."
+
+#: line_fix.xhp#par_id3151073.5.help.text
+msgid "To deactivate, choose <emph>Window - Freeze </emph>again."
+msgstr "Para desactivar esta función seleccione de nuevo <emph>Ventana - Fijar</emph>."
+
+#: line_fix.xhp#par_id3155335.7.help.text
+msgid "If the area defined is to be scrollable, apply the <emph>Window - Split</emph> command."
+msgstr "Si desea que el área establecida se pueda desplazar, utilice el comando <emph>Ventana - Dividir</emph>."
+
+#: line_fix.xhp#par_id3147345.8.help.text
+msgid "If you want to print a certain row on all pages of a document, choose <emph>Format - Print ranges - Edit</emph>."
+msgstr "Si desea que una fila determinada se imprima en todas las hojas de un documento, utilice el siguiente comando <emph>Formato - Áreas de impresión - Editar.</emph>"
+
+#: line_fix.xhp#par_id3147004.9.help.text
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"Window - Freeze\">Window - Freeze</link>"
+msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"Ventana - Fijar\">Ventana - Fijar</link>"
+
+#: line_fix.xhp#par_id3150088.10.help.text
+msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"Window - Split\">Window - Split</link>"
+msgstr "<link href=\"text/scalc/01/07080000.xhp\" name=\"Ventana - Dividir\">Ventana - Dividir</link>"
+
+#: line_fix.xhp#par_id3150304.11.help.text
+msgctxt "line_fix.xhp#par_id3150304.11.help.text"
+msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">Format - Print ranges - Edit</link>"
+msgstr "<link href=\"text/scalc/01/05080300.xhp\" name=\"Formato - Áreas de impresión - Editar\">Formato - Áreas de impresión - Editar</link>"
+
+#: scenario.xhp#tit.help.text
+msgctxt "scenario.xhp#tit.help.text"
+msgid "Using Scenarios"
+msgstr "Utilizar escenarios"
+
+#: scenario.xhp#bm_id3149664.help.text
+msgid "<bookmark_value>scenarios; creating/editing/deleting</bookmark_value><bookmark_value>opening;scenarios</bookmark_value><bookmark_value>selecting;scenarios in Navigator</bookmark_value>"
+msgstr "<bookmark_value>escenarios; creando/editando/borrando</bookmark_value><bookmark_value>abriendo;escenarios</bookmark_value><bookmark_value>seleccionando;escenarios en el Navegador</bookmark_value>"
+
+#: scenario.xhp#hd_id3125863.1.help.text
+msgid "<variable id=\"scenario\"><link href=\"text/scalc/guide/scenario.xhp\" name=\"Using Scenarios\">Using Scenarios</link></variable>"
+msgstr "<variable id=\"scenario\"><link href=\"text/scalc/guide/scenario.xhp\" name=\"Uso de escenarios\">Uso de escenarios</link></variable>"
+
+#: scenario.xhp#par_id3150869.2.help.text
+msgid "A $[officename] Calc scenario is a set of cell values that can be used within your calculations. You assign a name to every scenario on your sheet. Define several scenarios on the same sheet, each with some different values in the cells. Then you can easily switch the sets of cell values by their name and immediately observe the results. Scenarios are a tool to test out \"what-if\" questions."
+msgstr "Un escenario de $[officename] Calc es un conjunto de valores en celdas que pueden ser usadas para calculos. Usted asigna a un nombre cada escenario en tu hoja. Define diferentes escenarios en la misma hoja, cada uno tendra diferentes valores en la celdas. Entonces puedes facilmente cambiar el conjunto de valores en la celda por el nombre e inmediatamente observar el resultado. Los escenarios son herramientas para contestar preguntas de \"que pasaría\"."
+
+#: scenario.xhp#hd_id3149255.15.help.text
+msgid "Creating Your Own Scenarios"
+msgstr "Crear escenarios personalizados"
+
+#: scenario.xhp#par_id3154704.16.help.text
+msgid "To create a scenario, select all the cells that provide the data for the scenario. "
+msgstr "Para crear un escenario, seleccione todas las celdas que contienen datos que quiere que se incluyan. En nuestro ejemplo vamos a crear un escenario adicional denominado \"Cambio de dólar alto\":"
+
+#: scenario.xhp#par_id3154020.17.help.text
+msgid "Select the cells that contain the values that will change between scenarios. To select multiple cells, hold down the <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline></item> key as you click each cell."
+msgstr ""
+
+#: scenario.xhp#par_id3150364.18.help.text
+msgid "Choose <emph>Tools - Scenarios</emph>. The <emph>Create Scenario</emph> dialog appears."
+msgstr "Elija <emph>Herramientas - Escenarios</emph>. Aparece el cuadro de diálogo <emph>Crear escenario</emph>."
+
+#: scenario.xhp#par_id3166426.19.help.text
+msgid "Enter a name for the new scenario and leave the other fields unchanged with their default values. Close the dialog with OK. Your new scenario is automatically activated."
+msgstr "Introduzca el nombre del escenario, \"Bajofan\", deje las otras opciones como están y cierre el diálogo. Ahora se activará automáticamente su escenario."
+
+#: scenario.xhp#hd_id3149664.3.help.text
+msgctxt "scenario.xhp#hd_id3149664.3.help.text"
+msgid "Using Scenarios"
+msgstr "Utilizar escenarios"
+
+#: scenario.xhp#par_id3153415.11.help.text
+msgid "Scenarios can be selected in the Navigator:"
+msgstr "Los escenarios pueden ser seleccionados en el Navegador."
+
+#: scenario.xhp#par_id3150752.12.help.text
+msgid "Open the Navigator with the <emph>Navigator</emph> icon <image id=\"img_id1593676\" src=\"cmd/sc_navigator.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id1593676\">Navigator icon</alt></image> on the Standard bar."
+msgstr "Abre el Navegador con el ícono <emph>Navigador</emph> <image id=\"img_id1593676\" src=\"cmd/sc_navigator.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id1593676\">ícono del Navegador</alt></image> en la barra estandar."
+
+#: scenario.xhp#par_id3155764.13.help.text
+msgid "Click the <emph>Scenarios</emph> icon <image id=\"img_id7617114\" src=\"sc/imglst/navipi/na07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id7617114\">Scenarios icon</alt></image> in the Navigator."
+msgstr ""
+
+#: scenario.xhp#par_id3154256.14.help.text
+msgid "In the Navigator, you see the defined scenarios with the comments that were entered when the scenarios were created."
+msgstr "En el Navegador puede ver los escenarios definidos y los comentarios insertados al crearlos."
+
+#: scenario.xhp#par_id1243629.help.text
+msgid "Double-click a scenario name in the Navigator to apply that scenario to the current sheet."
+msgstr "Haz doble-clic como escenarios nombres dentro del Navegador para aplicar el escenario al a hoja actual."
+
+#: scenario.xhp#par_id9044770.help.text
+msgid "To delete a scenario, right-click the name in the Navigator and choose <emph>Delete</emph>."
+msgstr "Para borrar el escenario, haz clic derecho en el nmbre del Navegador y escoge <emph>Borrar</emph>."
+
+#: scenario.xhp#par_id3674123.help.text
+msgid "To edit a scenario, right-click the name in the Navigator and choose <emph>Properties</emph>."
+msgstr "Para editar un escenario, haz clic derecho en el nombre del Navegador y escoge <emph>Propiedades</emph>."
+
+#: scenario.xhp#par_id3424481.help.text
+msgid "To hide the border of a set of cells that are part of a scenario, open the <emph>Properties</emph> dialog for each scenario that affects the cells and clear the Display border checkbox. Hiding the border also removes the listbox on the sheet where you can choose the scenarios."
+msgstr "Para esconder los bordes de un conjnto de celdas que son parte de un escenario, abre el dialogo de <emph>Propiedades</emph> para cada escenario que afecte la celda y desactiva la cajada de verificación de mostrar bordes. Escondiendo el borde tambien quita de la hoja la lista que te permite escoger los escenarios."
+
+#: scenario.xhp#par_id3154368.22.help.text
+msgid "If you want to know which values in the scenario affect other values, choose <emph>Tools - Detective - Trace Dependents</emph>. You see arrows to the cells that are directly dependent on the current cell."
+msgstr "Si quieres saber cuales son los valores dentro del escenario afectado sobre los valores, escoge <emph>Herramientas - Detective - Raestrea los precedentes</emph>. Puedes ver celdas a las celdas que son directamente dependiente de l celda actual."
+
+#: scenario.xhp#par_id3154484.29.help.text
+msgid "<link href=\"text/scalc/01/06050000.xhp\" name=\"Creating Scenarios\">Creating Scenarios</link>"
+msgstr "<link href=\"text/scalc/01/06050000.xhp\" name=\"Crear escenarios\">Crear escenarios</link>"
+
+#: main.xhp#tit.help.text
+msgid "Instructions for Using $[officename] Calc"
+msgstr "Instrucciones para utilizar $[officename] Calc"
+
+#: main.xhp#bm_id3150770.help.text
+msgid "<bookmark_value>HowTos for Calc</bookmark_value><bookmark_value>instructions; $[officename] Calc</bookmark_value>"
+msgstr "<bookmark_value>Como Hacerlo para Calc</bookmark_value><bookmark_value>instrucciones; $[officename] Calc</bookmark_value>"
+
+#: main.xhp#hd_id3150770.1.help.text
+msgid "<variable id=\"main\"><link href=\"text/scalc/guide/main.xhp\" name=\"Instructions for Using $[officename] Calc\">Instructions for Using $[officename] Calc</link></variable>"
+msgstr "<variable id=\"main\"><link href=\"text/scalc/guide/main.xhp\" name=\"Instrucciones para $[officename] Calc\">Instrucciones para $[officename] Calc</link></variable>"
+
+#: main.xhp#hd_id3145748.2.help.text
+msgid "Formatting Tables and Cells"
+msgstr "Formatear tablas y celdas"
+
+#: main.xhp#hd_id3154022.3.help.text
+msgid "Entering Values and Formulas"
+msgstr "Introducir valores y fórmulas"
+
+#: main.xhp#hd_id3152899.4.help.text
+msgid "Entering References"
+msgstr "Introducir referencias"
+
+#: main.xhp#hd_id3155382.5.help.text
+msgid "Database Ranges in Tables"
+msgstr "Áreas de base de datos en tablas"
+
+#: main.xhp#hd_id3159229.6.help.text
+msgid "Advanced Calculations"
+msgstr "Evaluar con el Piloto de datos, etc."
+
+#: main.xhp#hd_id3153070.7.help.text
+msgid "Printing and Page Preview"
+msgstr "Impresión y vista preliminar"
+
+#: main.xhp#hd_id3150437.8.help.text
+msgid "Importing and Exporting Documents"
+msgstr "Importación y exportación de documentos"
+
+#: main.xhp#hd_id3166464.9.help.text
+msgid "Miscellaneous"
+msgstr "Otros"
+
+#: cellreferences_url.xhp#tit.help.text
+msgid "References to Other Sheets and Referencing URLs"
+msgstr "Referencias a otras hojas y URL de referencia"
+
+#: cellreferences_url.xhp#bm_id3150441.help.text
+msgid "<bookmark_value>HTML; in sheet cells</bookmark_value><bookmark_value>references; URL in cells</bookmark_value><bookmark_value>cells; Internet references</bookmark_value><bookmark_value>URL; in Calc</bookmark_value>"
+msgstr "<bookmark_value>HTML; en celdas de hojas</bookmark_value><bookmark_value>referencias; URL en celdas</bookmark_value><bookmark_value>celdas; referencias de Internet</bookmark_value><bookmark_value>URL; en Calc</bookmark_value>"
+
+#: cellreferences_url.xhp#hd_id3150441.15.help.text
+msgid "<variable id=\"cellreferences_url\"><link href=\"text/scalc/guide/cellreferences_url.xhp\" name=\"Referencing URLs\">Referencing URLs</link></variable>"
+msgstr "<variable id=\"cellreferences_url\"><link href=\"text/scalc/guide/cellreferences_url.xhp\" name=\"URL de referencia\">URL de referencia</link></variable>"
+
+#: cellreferences_url.xhp#par_id1955626.help.text
+msgid "For example, if you found an Internet page containing current stock exchange information in spreadsheet cells, you can load this page in $[officename] Calc by using the following procedure:"
+msgstr "Por ejemplo, si encuentra una página de Internet con información sobre los tipos de cambios aplicables en celdas de hoja de cálculo, puede cargar la página en $[officename] Calc utilizando el procedimiento siguiente:"
+
+#: cellreferences_url.xhp#par_id3152993.39.help.text
+msgid "In a $[officename] Calc document, position the cursor in the cell into which you want to insert the external data."
+msgstr "Coloque el cursor, en un documento de $[officename] Calc, en la celda a partir de la cual se deban insertar los datos externos."
+
+#: cellreferences_url.xhp#par_id3145384.40.help.text
+msgid "Choose <item type=\"menuitem\">Insert - Link to External Data</item>. The <link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\"><item type=\"menuitem\">External Data</item></link> dialog appears."
+msgstr "Seleccione <item type=\"menuitem\">Insertar - Vínculo a datos externos</item>. Verá el diálogo <link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\"><item type=\"menuitem\">Datos externos</item></link>."
+
+#: cellreferences_url.xhp#par_id3152892.41.help.text
+msgid "Enter the URL of the document or Web page in the dialog. The URL must be in the format: http://www.my-bank.com/table.html. The URL for local or local area network files is the path seen in the <item type=\"menuitem\">File - Open</item> dialog."
+msgstr "Escriba la dirección URL del documento o página web en el cuadro de diálogo. La dirección URL debe tener el formato: http://www.my-bank.com/table.html. La dirección URL para los archivos de red de área local o locales es la ruta que se ve en el cuadro de diálogo <item type=\"menuitem\">Archivo - Abrir</item>."
+
+#: cellreferences_url.xhp#par_id3153068.42.help.text
+msgid "$[officename] loads the Web page or file in the \"background\", that is, without displaying it. In the large list box of the <item type=\"menuitem\">External Data</item> dialog, you can see the name of all the sheets or named ranges you can choose from."
+msgstr "$[officename] carga la página web o el archivo en el \"segundo plano\", es decir, sin mostrarlo. En el cuadro de lista grande del cuadro de diálogo <item type=\"menuitem\">Datos externos</item>, puede ver el nombre de todas las hojas o áreas con nombre que puede elegir."
+
+#: cellreferences_url.xhp#par_id3153914.43.help.text
+msgid "Select one or more sheets or named ranges. You can also activate the automatic update function every \"n\" seconds and click <item type=\"menuitem\">OK</item>."
+msgstr "Seleccione una o más hojas o áreas con nombre. También puede activar la función de actualización automática cada \"n\" segundos y hacer clic en <item type=\"menuitem\">Aceptar</item>."
+
+#: cellreferences_url.xhp#par_id3157979.44.help.text
+msgid "The contents will be inserted as a link in the $[officename] Calc document."
+msgstr "El contenido se insertará como vínculo en el documento de $[officename] Calc."
+
+#: cellreferences_url.xhp#par_id3144768.30.help.text
+msgid "Save your spreadsheet. When you open it again later, $[officename] Calc will update the linked cells following an inquiry."
+msgstr "Guarde la hoja de cálculo. Cuando la vuelva a abrir, $[officename] Calc actualizará el contenido de las celdas vinculadas tras una pregunta de confirmación."
+
+#: cellreferences_url.xhp#par_id3159204.38.help.text
+msgid "Under <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01040900.xhp\" name=\"Spreadsheet - General\"><item type=\"menuitem\">%PRODUCTNAME Calc - General</item></link> you can choose to have the update, when opened, automatically carried out either always, upon request or never. The update can be started manually in the dialog under <item type=\"menuitem\">Edit - Links</item>."
+msgstr "En <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - <link href=\"text/shared/optionen/01040900.xhp\" name=\"Hojas de cálculo - General\"><item type=\"menuitem\">%PRODUCTNAME Calc - General</item></link> puede elegir realizar la actualización al abrir el documento en forma automática, bien siempre, a petición o nunca. La actualización puede iniciarse de forma manual en el diálogo accesible en <item type=\"menuitem\">Editar - Vínculos</item>."
+
+#: csv_formula.xhp#tit.help.text
+msgid "Importing and Exporting Text Files"
+msgstr "Importar y exportar archivos de texto"
+
+#: csv_formula.xhp#bm_id3153726.help.text
+msgid "<bookmark_value>csv files;formulas</bookmark_value> <bookmark_value>formulas; importing/exporting as csv files</bookmark_value> <bookmark_value>exporting;formulas as csv files</bookmark_value> <bookmark_value>importing;csv files with formulas</bookmark_value>"
+msgstr "<bookmark_value>archivos csv;fórmulas</bookmark_value> <bookmark_value>fórmulas; importar/exportar como archivos csv</bookmark_value> <bookmark_value>exportar;fórmulas como archivos csv</bookmark_value> <bookmark_value>importar;archivos csv con fórmulas</bookmark_value>"
+
+#: csv_formula.xhp#hd_id3153726.1.help.text
+msgid "<variable id=\"csv_formula\"><link href=\"text/scalc/guide/csv_formula.xhp\" name=\"Importing and Exporting Text Files\">Importing and Exporting CSV Text Files with Formulas</link></variable>"
+msgstr "<variable id=\"csv_formula\"><link href=\"text/scalc/guide/csv_formula.xhp\" name=\"Importar y exportar archivos de texto\">Importar y exportar archivos de texto CSV con Fórmulas </link></variable>"
+
+#: csv_formula.xhp#par_id3149402.2.help.text
+msgid "Comma separated values (CSV) files are text files that contain the cell contents of a single sheet. Commas, semicolons, or other characters can be used as the field delimiters between the cells. Text strings are put in quotation marks, numbers are written without quotation marks."
+msgstr "Los archivos con valores separados por comas (CSV) son archivos de texto que incluyen el contenido de las celdas de una sola hoja. Para delimitar los campos se pueden utilizar comas, puntos y coma y otros caracteres. Las cadenas de texto se escriben entre comillas; los números no las usan."
+
+#: csv_formula.xhp#hd_id3150715.15.help.text
+msgid "To Import a CSV File"
+msgstr "Para importar un archivo CSV"
+
+#: csv_formula.xhp#par_id3153709.16.help.text
+msgctxt "csv_formula.xhp#par_id3153709.16.help.text"
+msgid "Choose <emph>File - Open</emph>."
+msgstr "Elija <emph>Archivo - Abrir</emph>."
+
+#: csv_formula.xhp#par_id3155445.17.help.text
+msgid "In the <emph>File type</emph> field, select the format \"Text CSV\". Select the file and click <emph>Open</emph>. When a file has the .csv extension, the file type is automatically recognized."
+msgstr "En el campo <emph>Tipo de archivo</emph>, seleccione el formato \"Texto CSV\".! Seleccione el archivo y haga clic en <emph>Abrir</emph>. Si un archivo tiene la extensión .csv, el tipo de archivo se reconoce de forma automática."
+
+#: csv_formula.xhp#par_id3149565.18.help.text
+msgid "You will see the <item type=\"menuitem\">Text Import</item> dialog. Click <item type=\"menuitem\">OK</item>."
+msgstr "Verá el cuadro de diálogo <item type=\"menuitem\">Importar texto</item>. Haga clic en <item type=\"menuitem\">Aceptar</item>."
+
+#: csv_formula.xhp#par_id3149255.19.help.text
+msgid "If the csv file contains formulas, but you want to import the results of those formulas, then choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph> and clear the <emph>Formulas</emph> check box."
+msgstr "Si el archivo CSV contiene fórmulas, pero desea importar los resultados de estas fórmulas, entonces elija <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - %PRODUCTNAME Calc - Ver</emph> y desmarque la casilla <emph>Fórmulas</emph>."
+
+#: csv_formula.xhp#hd_id3154022.3.help.text
+msgid "To Export Formulas and Values as CSV Files"
+msgstr "Para exportar fórmulas y valores como archivos CSV"
+
+#: csv_formula.xhp#par_id3150342.4.help.text
+msgid "Click the sheet to be written as a csv file."
+msgstr "Haga clic en la hoja que se va a escribir como archivo csv."
+
+#: csv_formula.xhp#par_id3166423.5.help.text
+msgid "If you want to export the formulas as formulas, for example, in the form =SUM(A1:B5), proceed as follows:"
+msgstr "Si desea exportar las fórmulas como fórmulas, por ejemplo, como =SUMA(A1:B5), proceda como se indica a continuación:"
+
+#: csv_formula.xhp#par_id3155111.6.help.text
+msgctxt "csv_formula.xhp#par_id3155111.6.help.text"
+msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph>."
+msgstr "Elija <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - %PRODUCTNAME Calc - Ver</emph>."
+
+#: csv_formula.xhp#par_id3150200.7.help.text
+msgid "Under <emph>Display</emph>, mark the <emph>Formulas</emph> check box. Click <emph>OK</emph>."
+msgstr "Seleccione la casilla de verificación <emph>Fórmulas</emph> debajo de <emph>Mostrar</emph>. Pulse <emph>Aceptar</emph>."
+
+#: csv_formula.xhp#par_id3154484.8.help.text
+msgid "If you want to export the calculation results instead of the formulas, do not mark <emph>Formulas</emph>."
+msgstr "Si desea exportar los resultados de los cálculos en lugar de las fórmulas, no seleccione la opción <emph>Fórmulas</emph>."
+
+#: csv_formula.xhp#par_id3148702.9.help.text
+msgid "Choose <emph>File - Save as</emph>. You will see the <emph>Save as</emph> dialog."
+msgstr "Active el comando <emph>Archivo - Guardar como</emph>. Verá el diálogo <emph>Guardar como</emph>."
+
+#: csv_formula.xhp#par_id3153912.10.help.text
+msgid "In the<emph/> <item type=\"menuitem\">File type</item> field select the format \"Text CSV\"."
+msgstr "En el campo <emph/> <item type=\"menuitem\">Tipo de archivo</item>, seleccione el formato \"Texto CSV\"."
+
+#: csv_formula.xhp#par_id3157978.13.help.text
+msgid "Enter a name and click <emph>Save</emph>."
+msgstr "Escriba un nombre y haga clic en <emph>Guardar</emph>."
+
+#: csv_formula.xhp#par_id3152869.23.help.text
+msgid "From the <emph>Export of text files</emph> dialog that appears, select the character set and the field and text delimiters for the data to be exported, and confirm with <emph>OK</emph>."
+msgstr "En el diálogo <emph>Exportación de texto</emph> que se muestra, seleccione el juego de caracteres y los separadores de campos y de texto para los datos que se van a exportar; pulse Aceptar para confirmar."
+
+#: csv_formula.xhp#par_id3150050.14.help.text
+msgid "If necessary, after you have saved, clear the <emph>Formulas</emph> check box to see the calculated results in the table again."
+msgstr "Vuelva a quitar la marca del campo <emph>Fórmulas</emph> después de guardar para poder volver a ver en la tabla los resultados calculados."
+
+#: csv_formula.xhp#par_id3153487.20.help.text
+msgctxt "csv_formula.xhp#par_id3153487.20.help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opcioness</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Hojas de cálculo - Ver\">%PRODUCTNAME Calc - Ver</link>"
+
+#: csv_formula.xhp#par_id3153008.21.help.text
+msgctxt "csv_formula.xhp#par_id3153008.21.help.text"
+msgid "<link href=\"text/shared/00/00000207.xhp\" name=\"Export text files\">Export text files</link>"
+msgstr "<link href=\"text/shared/00/00000207.xhp\" name=\"Exportación de texto\">Exportación de texto</link>"
+
+#: csv_formula.xhp#par_id3155595.22.help.text
+msgctxt "csv_formula.xhp#par_id3155595.22.help.text"
+msgid "<link href=\"text/shared/00/00000208.xhp\" name=\"Import text files\">Import text files</link>"
+msgstr "<link href=\"text/shared/00/00000208.xhp\" name=\"Exportación de texto\">Exportación de texto</link>"
+
+#: multioperation.xhp#tit.help.text
+msgid "Applying Multiple Operations"
+msgstr "Aplicar operaciones múltiples"
+
+#: multioperation.xhp#bm_id3147559.help.text
+msgid "<bookmark_value>multiple operations</bookmark_value><bookmark_value>what if operations;two variables</bookmark_value><bookmark_value>tables; multiple operations in</bookmark_value><bookmark_value>data tables; multiple operations in</bookmark_value><bookmark_value>cross-classified tables</bookmark_value>"
+msgstr "<bookmark_value>operaciones múltiples;aplicar</bookmark_value><bookmark_value>operaciones hipotéticas</bookmark_value><bookmark_value>tablas;operaciones múltiples en</bookmark_value><bookmark_value>tablas de datos;operaciones múltiples en</bookmark_value><bookmark_value>tablas cruzadas</bookmark_value><bookmark_value>operaciones múltiples;tablas cruzadas</bookmark_value>"
+
+#: multioperation.xhp#hd_id3147559.5.help.text
+msgid "<variable id=\"multioperation\"><link href=\"text/scalc/guide/multioperation.xhp\" name=\"Applying Multiple Operations\">Applying Multiple Operations</link></variable>"
+msgstr "<variable id=\"multioperation\"><link href=\"text/scalc/guide/multioperation.xhp\" name=\"Aplicar una operación múltiple\">Aplicar una operación múltiple</link></variable>"
+
+#: multioperation.xhp#hd_id3145171.1.help.text
+msgid "Multiple Operations in Columns or Rows"
+msgstr "Operaciones múltiples en columnas o filas"
+
+#: multioperation.xhp#par_id4123966.help.text
+msgid "The <item type=\"menuitem\">Data - Multiple Operations</item> command provides a planning tool for \"what if\" questions. In your spreadsheet, you enter a formula to calculate a result from values that are stored in other cells. Then, you set up a cell range where you enter some fixed values, and the Multiple Operations command will calculate the results depending on the formula."
+msgstr "El comando <item type=\"menuitem\">Datos - Operaciones múltiples</item> proporciona una herramienta de planificación para preguntas \"qué tal si...\" . En la hoja de cálculo, escriba una fórmula para calcular un resultado a partir de los valores que están guardados en otras celdas. A continuación, defina un rango de celdas en el que introduzca unos valores fijos y el comando \"Operaciones múltiples\" calculará los resultados utilizando la fórmula."
+
+#: multioperation.xhp#par_id3156424.2.help.text
+msgid "In the <emph>Formulas</emph> field, enter the cell reference to the formula that applies to the data range. In the <emph>Column input cell/Row input cell</emph> field, enter the cell reference to the corresponding cell that is part of the formula. This can be explained best by examples:"
+msgstr "En el campo <emph>Fórmulas</emph> debe ingresarse la referencia de celda de la fórmula que se aplicará al intervalo de datos. En los campos <emph>Columna de la celda de entrada/Fila de la celda de entrada</emph> debe ingresarse la referencia de celda a la celda correspondiente que forma parte de la fórmula. Esto se explica mejor con algunos ejemplos:"
+
+#: multioperation.xhp#hd_id3159153.7.help.text
+msgctxt "multioperation.xhp#hd_id3159153.7.help.text"
+msgid "Examples"
+msgstr "Ejemplos"
+
+#: multioperation.xhp#par_id3153189.8.help.text
+msgid "You produce toys which you sell for $10 each. Each toy costs $2 to make, in addition to which you have fixed costs of $10,000 per year. How much profit will you make in a year if you sell a particular number of toys?"
+msgstr "Supongamos que fabrica juguetes y que los vende a 10 USD cada uno. La fabricación de cada juguete cuesta 2 USD, a lo que hay que agregar unos costes fijos de 10.000 USD al año. ¿Cuál será el beneficio obtenido en un año si vende un número específico de juguetes?"
+
+#: multioperation.xhp#par_id6478774.help.text
+msgid "<image id=\"img_id1621753\" src=\"res/helpimg/what-if.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id1621753\">what-if sheet area</alt></image>"
+msgstr "<image id=\"img_id1621753\" src=\"res/helpimg/what-if.png\" width=\"8.5543inch\" height=\"3.1937inch\"><alt id=\"alt_id1621753\">Y-si el área de la hoja</alt></image>"
+
+#: multioperation.xhp#hd_id3145239.41.help.text
+msgid "Calculating With One Formula and One Variable"
+msgstr "Calculando con una formula y una variable"
+
+#: multioperation.xhp#par_id3146888.42.help.text
+msgid "To calculate the profit, first enter any number as the quantity (items sold) - in this example 2000. The profit is found from the formula Profit=Quantity * (Selling price - Direct costs) - Fixed costs. Enter this formula in B5."
+msgstr "Para calcular la ganancia, introduzca un número cualquiera como cantidad (número de piezas vendidas), en este caso 2000. La ganancia se obtiene de la fórmula Ganancia=Cantidad * (Precio de venta - Gastos detallados) - Gastos fijos. Introduzca esta fórmula en la celda B5."
+
+#: multioperation.xhp#par_id3157875.43.help.text
+msgid "In column D enter given annual sales, one below the other; for example, 500 to 5000, in steps of 500."
+msgstr "Dentro de la columna D ingresa las ventas anuales, una debajo de la otra, por ejemplo, 500 a 5000, en saltos de 500."
+
+#: multioperation.xhp#par_id3159115.44.help.text
+msgid "Select the range D2:E11, and thus the values in column D and the empty cells alongside in column E."
+msgstr "Seleccioan el rango D2:E11, y aunque los valores en la columna D y las celdas vacias en la columna E."
+
+#: multioperation.xhp#par_id3149723.45.help.text
+msgid "Choose <emph>Data - Multiple operations</emph>."
+msgstr "Active el diálogo <emph>Datos - Operaciones múltiples</emph>."
+
+#: multioperation.xhp#par_id3149149.46.help.text
+#, fuzzy
+msgid "With the cursor in the <emph>Formulas </emph>field, click cell B5."
+msgstr "Pulse en la celda B5 con el cursor en el campo <emph>Fórmulas</emph>."
+
+#: multioperation.xhp#par_id3149355.47.help.text
+msgid "Set the cursor in the <emph>Column input cell</emph> field and click cell B4. This means that B4, the quantity, is the variable in the formula, which is replaced by the selected column values."
+msgstr "Posicona el cursor dentro de el campo de <emph>celda de entrada de columna</emph> y haz clic en la celda B4. Esto significa que B4, la cantidad, es la variable dentro de la formula, al cual es reescrita por el valor seleccionado de la columna."
+
+#: multioperation.xhp#par_id3149009.48.help.text
+msgid "Close the dialog with <emph>OK</emph>. You see the profits for the different quantities in column E."
+msgstr "Cierra el diálogo con <emph>OK</emph>. Veras las ganancias en diferentes cantidades en la columna E."
+
+#: multioperation.xhp#hd_id3148725.49.help.text
+msgid "Calculating with Several Formulas Simultaneously"
+msgstr "Calcular con varias fórmulas al mismo tiempo"
+
+#: multioperation.xhp#par_id3146880.50.help.text
+msgid "Delete column E."
+msgstr "Elimine la columna E."
+
+#: multioperation.xhp#par_id3154675.51.help.text
+msgid "Enter the following formula in C5: = B5 / B4. You are now calculating the annual profit per item sold."
+msgstr "En la celda C5 introduzca la siguiente fórmula: = B5 / B4. Calculará la ganancia anual por pieza vendida."
+
+#: multioperation.xhp#par_id3148885.52.help.text
+msgid "Select the range D2:F11, thus three columns."
+msgstr "Seleccione el rango D2:F11, es decir, tres columnas."
+
+#: multioperation.xhp#par_id3147474.53.help.text
+msgctxt "multioperation.xhp#par_id3147474.53.help.text"
+msgid "Choose <emph>Data - Multiple Operations</emph>."
+msgstr "Active el diálogo <emph>Datos - Operaciones múltiples</emph>."
+
+#: multioperation.xhp#par_id3154846.54.help.text
+msgid "With the cursor in the <emph>Formulas</emph> field, select cells B5 thru C5."
+msgstr "Estando el cursor en la casilla <emph>Fórmulas</emph>, seleccione las celdas de B5 hasta C5."
+
+#: multioperation.xhp#par_id3153931.55.help.text
+msgid "Set the cursor in the <emph>Column input cell</emph> field and click cell B4."
+msgstr "Ubique el cursor en <emph>Celda de Entrada por Columna</emph> y presione clic en la celda B4."
+
+#: multioperation.xhp#par_id3150862.56.help.text
+msgid "Close the dialog with <emph>OK</emph>. You will now see the profits in column E and the annual profit per item in column F."
+msgstr "Cierre el diálogo con Aceptar. Verá los beneficios anuales en la columna E y el beneficio anual por unidades en la columna F."
+
+#: multioperation.xhp#hd_id3146139.3.help.text
+msgid "Multiple Operations Across Rows and Columns"
+msgstr "Operaciones múltiples con columnas y filas"
+
+#: multioperation.xhp#par_id3148584.4.help.text
+msgid "<item type=\"productname\">%PRODUCTNAME</item> allows you to carry out joint multiple operations for columns and rows in so-called cross-tables. The formula cell has to refer to both the data range arranged in rows and the one arranged in columns. Select the range defined by both data ranges and call the multiple operation dialog. Enter the reference to the formula in the <emph>Formulas</emph> field. The <emph>Row input cell</emph> and the <emph>Column input cell</emph> fields are used to enter the reference to the corresponding cells of the formula."
+msgstr "<item type=\"productname\">%PRODUCTNAME</item> permite llevar a cabo operaciones múltiples conjuntas con filas y columnas en las llamadas tablas de doble entrada. La celda que contiene la fórmula debe hacer referencia tanto al intervalo de datos dispuesto en filas, como al dispuesto en columnas. Debe seleccionarse el intervalo definido por ambos intervalos de datos y accederse al diálogo de operación múltiple. Debe ingresarse la referencia a la fórmula en el campo <emph>Fórmulas</emph>. Los campos <emph>Fila de la celda de entrada</emph> y <emph>Columna de la celda de entrada</emph> se usan para hacer referencia a las celdas de la fórmula que corresponden."
+
+#: multioperation.xhp#hd_id3149949.57.help.text
+msgid "Calculating with Two Variables"
+msgstr "Calcular con dos variables"
+
+#: multioperation.xhp#par_id3154808.58.help.text
+msgid "Consider columns A and B of the sample table above. You now want to vary not just the quantity produced annually, but also the selling price, and you are interested in the profit in each case."
+msgstr "Observe las columnas A y B de la hoja ejemplo de arriba. Ahora desea no sólo variar la cantidad de la producción anual sino también el precio de venta y se interesa por la ganancia en ambos casos."
+
+#: multioperation.xhp#par_id3149731.59.help.text
+msgid "Expand the table shown above. D2 thru D11 contain the numbers 500, 1000 and so on, up to 5000. In E1 through H1 enter the numbers 8, 10, 15 and 20."
+msgstr "Amplie la tabla arriba mostrada. En D2 hasta D11 se encuentran los números 500, 1000, etc. hasta 5000. Introduzca los números 8, 10, 15, 20 en las celdas E1 hasta H1."
+
+#: multioperation.xhp#par_id3152810.95.help.text
+msgid "Select the range D1:H11."
+msgstr "Marque el área D1:H11."
+
+#: multioperation.xhp#par_id3153620.96.help.text
+msgctxt "multioperation.xhp#par_id3153620.96.help.text"
+msgid "Choose <emph>Data - Multiple Operations</emph>."
+msgstr "Active el diálogo <emph>Datos - Operaciones múltiples</emph>."
+
+#: multioperation.xhp#par_id3149981.97.help.text
+#, fuzzy
+msgid "With the cursor in the <emph>Formulas</emph> field, click cell B5."
+msgstr "Pulse en la celda B5 con el cursor en el campo <emph>Fórmulas</emph>."
+
+#: multioperation.xhp#par_id3156113.98.help.text
+msgid "Set the cursor in the <emph>Row input cell</emph> field and click cell B1. This means that B1, the selling price, is the horizontally entered variable (with the values 8, 10, 15 and 20)."
+msgstr "Fija el cursor dentro del campo de <emph>celdas de ingreso de fila</emph>y haz clic en la celda B1. Esto significa que B1, el precio de venta, es la variable ingresada horizontalmente (con los valores 8, 10, 15 y 20)."
+
+#: multioperation.xhp#par_id3154049.99.help.text
+msgid "Set the cursor in the <emph>Column input cell</emph> field and click in B4. This means that B4, the quantity, is the vertically entered variable."
+msgstr "Fija el cursor dentro del campo de <emph>celda de ingreso de columna</emph> y haz clic en B4. Esto significa que la cantidad de B4, es la variable de entrada vertical."
+
+#: multioperation.xhp#par_id3149141.100.help.text
+msgid "Close the dialog with OK. You see the profits for the different selling prices in the range E2:H11."
+msgstr "Cierra el dialogo con OK. Veras la gangnacia para los diferentes precios de venta en el rango E2:H11."
+
+#: multioperation.xhp#par_id3155104.101.help.text
+msgid "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple operations\">Multiple operations</link>"
+msgstr "<link href=\"text/scalc/01/12060000.xhp\" name=\"Operaciones múltiples\">Operaciones múltiples</link>"
+
+#: datapilot_createtable.xhp#tit.help.text
+#, fuzzy
+msgid "Creating Pivot Tables"
+msgstr "Crear tablas del Piloto de datos"
+
+#: datapilot_createtable.xhp#bm_id3148491.help.text
+#, fuzzy
+msgid "<bookmark_value>pivot tables</bookmark_value> <bookmark_value>pivot table function; calling up and applying</bookmark_value>"
+msgstr "<bookmark_value>Tablas Piloto de datos</bookmark_value> <bookmark_value>Piloto de datos; llamar y aplicar</bookmark_value>"
+
+#: datapilot_createtable.xhp#hd_id3148491.7.help.text
+#, fuzzy
+msgid "<variable id=\"datapilot_createtable\"><link href=\"text/scalc/guide/datapilot_createtable.xhp\" name=\"Creating Pivot Tables\">Creating Pivot Tables</link></variable>"
+msgstr "<variable id=\"datapilot_createtable\"><link href=\"text/scalc/guide/datapilot_createtable.xhp\" name=\"Creating DataPilot Tables\">Crear tablas de Piloto de datos</link></variable>"
+
+#: datapilot_createtable.xhp#par_id3156023.8.help.text
+msgid "Position the cursor within a range of cells containing values, row and column headings."
+msgstr "Seleccione el área de datos de una hoja de cálculo junto con los títulos de fila y de columna."
+
+#: datapilot_createtable.xhp#par_id3147264.9.help.text
+#, fuzzy
+msgid "Choose <emph>Data - Pivot Table - Create</emph>. The <emph>Select Source</emph> dialog appears. Choose <emph>Current selection</emph> and confirm with <emph>OK</emph>. The table headings are shown as buttons in the <emph>Pivot Table</emph> dialog. Drag these buttons as required and drop them into the layout areas \"Page Fields\", \"Column Fields\", \"Row Fields\" and \"Data Fields\"."
+msgstr "Seleccione <emph>Datos - Piloto de datos - Activar</emph>. Se abre el diálogo <emph>Seleccionar origen</emph>. Elija <emph>Selección actual</emph> y haga clic en <emph>Aceptar</emph>. Los encabezados de la tabla se muestran como botones en el diálogo <emph>Piloto de datos</emph>. Arrastre estos botones hacia el lugar deseado y colóquelos en las áreas \"Campos de página\", \"Columna\", \"Fila\" y \"Campos de datos\"."
+
+#: datapilot_createtable.xhp#par_id3150868.10.help.text
+msgid "Drag the desired buttons into one of the four areas."
+msgstr "Arrastre los botones deseados a una de las cuatro áreas."
+
+#: datapilot_createtable.xhp#par_id7599414.help.text
+#, fuzzy
+msgid "Drag a button to the <emph>Page Fields</emph> area to create a button and a listbox on top of the generated pivot table. The listbox can be used to filter the pivot table by the contents of the selected item. You can use drag-and-drop within the generated pivot table to use another page field as a filter."
+msgstr "Arrastre un botón al área <emph>Campos de página</emph> para crear un botón y un cuadro de lista en la parte superior de la tabla generada del Piloto de datos. El cuadro de lista se puede utilizar para filtrar la tabla del Piloto de datos mediante el contenido del elemento seleccionado. En la tabla del Piloto de datos, puede arrastrar y colocar para utilizar otro campo de página como filtro."
+
+#: datapilot_createtable.xhp#par_id3154011.11.help.text
+msgid "If the button is dropped in the <emph>Data Fields</emph> area it will be given a caption that also shows the formula that will be used to calculate the data."
+msgstr "Si se coloca el botón en el área <emph>Campos de datos</emph>, se le asignará una etiqueta que también muestra la fórmula que se va a utilizar para calcular los datos."
+
+#: datapilot_createtable.xhp#par_id3146974.16.help.text
+msgid "By double-clicking on one of the fields in the <emph>Data Fields</emph> area you can call up the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog."
+msgstr "Al hacer doble clic en uno de los campos del área <emph>Campos de datos</emph> puede abrir el diálogo <link href=\"text/scalc/01/12090105.xhp\" name=\"Campo de datos\"><emph>Campo de datos</emph></link>."
+
+#: datapilot_createtable.xhp#par_id3156286.17.help.text
+msgid "Use the <item type=\"menuitem\">Data Field</item> dialog to select the calculations to be used for the data. To make a multiple selection, press the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while clicking the desired calculation."
+msgstr ""
+
+#: datapilot_createtable.xhp#par_id3150329.13.help.text
+msgid "The order of the buttons can be changed at any time by moving them to a different position in the area with the mouse."
+msgstr "El orden de los botones se puede modificar en cualquier momento moviéndolos a un lugar distinto del área con el ratón."
+
+#: datapilot_createtable.xhp#par_id3153714.14.help.text
+msgid "Remove a button by dragging it back to the area of the other buttons at the right of the dialog."
+msgstr "Vuelva a colocar un botón en su sitio desplazándolo con el ratón del área a los otros botones."
+
+#: datapilot_createtable.xhp#par_id3147338.15.help.text
+msgid "To open the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog, double-click one of the buttons in the <emph>Row Fields</emph> or <emph>Column Fields</emph> area. Use the dialog to select if and to what extent <item type=\"productname\">%PRODUCTNAME</item> calculates display subtotals."
+msgstr ""
+
+#: datapilot_createtable.xhp#par_id3154020.18.help.text
+#, fuzzy
+msgid "Exit the Pivot Table dialog by pressing OK. A <emph>Filter</emph> button will now be inserted, or a page button for every data field that you dropped in the <emph>Page Fields</emph> area. The pivot table is inserted further down."
+msgstr "Para salir del Piloto de datos, haga clic en Aceptar. Se insertará un botón <emph>Filtro</emph>, o un botón de página para cada campo de datos que se haya asignado en el área <emph>Campos de página</emph>. La tabla del Piloto de datos se inserta más abajo."
+
+#: auto_off.xhp#tit.help.text
+msgid "Deactivating Automatic Changes"
+msgstr "Desactivar los cambios automáticos"
+
+#: auto_off.xhp#bm_id3149456.help.text
+msgid "<bookmark_value>deactivating; automatic changes</bookmark_value> <bookmark_value>tables; deactivating automatic changes in</bookmark_value> <bookmark_value>AutoInput function on/off</bookmark_value> <bookmark_value>text in cells;AutoInput function</bookmark_value> <bookmark_value>cells; AutoInput function of text</bookmark_value> <bookmark_value>input support in spreadsheets</bookmark_value> <bookmark_value>changing; input in cells</bookmark_value> <bookmark_value>AutoCorrect function;cell contents</bookmark_value> <bookmark_value>cell input;AutoInput function</bookmark_value> <bookmark_value>lowercase letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>capital letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>date formats;avoiding conversion to</bookmark_value> <bookmark_value>number completion on/off</bookmark_value> <bookmark_value>text completion on/off</bookmark_value> <bookmark_value>word completion on/off</bookmark_value>"
+msgstr "<bookmark_value>desactivar;cambios automáticos</bookmark_value><bookmark_value>tablas;desactivar cambios automáticos en</bookmark_value><bookmark_value>Función de Entrada automática;activar/desactivar</bookmark_value><bookmark_value>texto en celdas;Función de Entrada automática</bookmark_value><bookmark_value>celdas;Función de Entrada automática de texto</bookmark_value><bookmark_value>ayuda a la entrada en hojas de cálculo</bookmark_value><bookmark_value>cambiar;entrada en celdas</bookmark_value><bookmark_value>Función de Autocorrección;contenido de celdas</bookmark_value><bookmark_value>entrada de celda;Función de Entrada automática</bookmark_value><bookmark_value>letras minúsculas;Función de Entrada automática (en celdas)</bookmark_value><bookmark_value>letras mayúsculas;Función de Entrada automática (en celdas)</bookmark_value><bookmark_value>formatos de fecha;evitar conversión en</bookmark_value><bookmark_value>activar/desactivar finalización de números</bookmark_value><bookmark_value>activar/desactivar finalización de texto</bookmark_value><bookmark_value>activar/desactivar completado de palabra</bookmark_value>"
+
+#: auto_off.xhp#hd_id3149456.1.help.text
+msgid "<variable id=\"auto_off\"><link href=\"text/scalc/guide/auto_off.xhp\" name=\"Deactivating Automatic Changes\">Deactivating Automatic Changes</link></variable>"
+msgstr "<variable id=\"auto_off\"><link href=\"text/scalc/guide/auto_off.xhp\" name=\"Desactivar los cambios automáticos\">Desactivar los cambios automáticos</link></variable>"
+
+#: auto_off.xhp#par_id3156442.2.help.text
+msgid "By default, $[officename] automatically corrects many common typing errors and applies formatting while you type. You can immediately undo any automatic changes with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z."
+msgstr "De forma predeterminada $[officename] corrige automáticamente muchos errores habituales, producidos al teclear y aplicar el formato mientras se escribe. Los cambios automáticos se pueden deshacer inmediatamente pulsando <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Z."
+
+#: auto_off.xhp#par_id3145273.3.help.text
+msgid "The following shows you how to deactivate and reactivate the automatic changes in $[officename] Calc:"
+msgstr "A continuación se explica cómo desactivar y volver a activar los cambios automáticos en $[officename] Calc:"
+
+#: auto_off.xhp#hd_id3145748.4.help.text
+msgid "Automatic Text or Number Completion"
+msgstr "Completar automáticamente textos y números"
+
+#: auto_off.xhp#par_id3154730.5.help.text
+msgid "When making an entry in a cell, $[officename] Calc automatically suggests matching input found in the same column. This function is known as <emph>AutoInput</emph>."
+msgstr "Al introducir una entrada en una celda $[officename] Calc le ofrece la posibilidad de repetir automáticamente una entrada existente en la misma columna. Esta función se llama <emph>Entrada automática</emph>."
+
+#: auto_off.xhp#par_id3153878.6.help.text
+msgid "To turn the AutoInput on and off, set or remove the check mark in front of <link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\"><emph>Tools - Cell Contents - AutoInput</emph></link>."
+msgstr "Para activar o desactivar la Entrada automática marque o desmarque el comando <link href=\"text/scalc/01/06130000.xhp\" name=\"Herramientas - Contenidos de celdas - Entrada automática\"><emph>Herramientas - Contenidos de celdas - Entrada automática</emph></link>."
+
+#: auto_off.xhp#hd_id3146972.21.help.text
+msgid "Automatic Conversion to Date Format"
+msgstr "Conversión automática a formato de fecha"
+
+#: auto_off.xhp#par_id3153707.22.help.text
+msgid "$[officename] Calc automatically converts certain entries to dates. For example, the entry <emph>1.1</emph> may be interpreted as January 1 of the current year, according to the locale settings of your operating system, and then displayed according to the date format applied to the cell."
+msgstr "$[officename] Calc convierte automáticamente algunas entradas en fechas. Por ejemplo, la entrada <emph>1.1</emph> se puede interpretar como 1 de enero del presente año, según la configuración regional del sistema operativo, y después se muestra en función del formato de fecha que se aplique a la celda."
+
+#: auto_off.xhp#par_id3159267.23.help.text
+msgid "To ensure that an entry is interpreted as text, add an apostrophe at the beginning of the entry. The apostrophe is not displayed in the cell."
+msgstr "Para asegurarse de que una entrada se interprete como texto, haga que la preceda un apóstrofe. El apóstrofe no se muestra en la celda."
+
+#: auto_off.xhp#hd_id3150043.7.help.text
+msgid "Quotation Marks Replaced by Custom Quotes"
+msgstr "Las comillas se reemplazarán con comillas tipográficas."
+
+#: auto_off.xhp#par_id3155333.9.help.text
+msgid "Choose <emph>Tools - AutoCorrect Options</emph>. Go to the <emph>Localized Options</emph> tab and unmark <emph>Replace</emph>."
+msgstr "Elija <emph>Herramientas - Opciones de autocorrección</emph>. Vaya a la pestaña <emph>Opciones regionales</emph> y desmarque la casilla <emph>Reemplazar</emph>."
+
+#: auto_off.xhp#hd_id3149565.11.help.text
+msgid "Cell Content Always Begins With Uppercase"
+msgstr "El contenido de las celdas comienza siempre con mayúsculas"
+
+#: auto_off.xhp#par_id3147001.13.help.text
+msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect Options</item>. Go to the <item type=\"menuitem\">Options</item> tab. Unmark <item type=\"menuitem\">Capitalize first letter of every sentence</item>."
+msgstr "Seleccione <item type=\"menuitem\">Herramientas - Opciones de Autocorrección</item>. Haga clic en la ficha <item type=\"menuitem\">Opciones</item>. Desmarque <item type=\"menuitem\">Iniciar todas las frases con mayúsculas</item>."
+
+#: auto_off.xhp#hd_id3150345.15.help.text
+msgid "Replace Word With Another Word"
+msgstr "Reemplazar una palabra por otra"
+
+#: auto_off.xhp#par_id3166425.17.help.text
+msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect Options</item>. Go to the <item type=\"menuitem\">Replace</item> tab. Select the word pair and click <item type=\"menuitem\">Delete</item>."
+msgstr "Seleccione <item type=\"menuitem\">Herramientas - Opciones de Autocorrección</item>. Haga clic en la ficha <item type=\"menuitem\">Reemplazar</item>. Seleccione la pareja de palabras y haga clic en <item type=\"menuitem\">Borrar</item>."
+
+#: auto_off.xhp#par_id3152992.19.help.text
+msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\">Tools - Cell Contents - AutoInput</link>"
+msgstr "<link href=\"text/scalc/01/06130000.xhp\" name=\"Herramientas - Contenidos de celdas - Entrada automática\">Herramientas - Contenidos de celdas - Entrada automática</link>"
+
+#: auto_off.xhp#par_id3154368.20.help.text
+msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"Tools - AutoCorrect\">Tools - AutoCorrect Options</link>"
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"Herramientas - AutoCorrección\">Herramientas - AutoCorrección</link>"
+
+#: cellstyle_conditional.xhp#tit.help.text
+msgid "Applying Conditional Formatting"
+msgstr "Aplicar formato condicionado"
+
+#: cellstyle_conditional.xhp#bm_id3149263.help.text
+msgid "<bookmark_value>conditional formatting; cells</bookmark_value> <bookmark_value>cells; conditional formatting</bookmark_value> <bookmark_value>formatting; conditional formatting</bookmark_value> <bookmark_value>styles;conditional styles</bookmark_value> <bookmark_value>cell formats; conditional</bookmark_value> <bookmark_value>random numbers;examples</bookmark_value> <bookmark_value>cell styles; copying</bookmark_value> <bookmark_value>copying; cell styles</bookmark_value> <bookmark_value>tables; copying cell styles</bookmark_value>"
+msgstr "<bookmark_value>formato condicional; celdas</bookmark_value> <bookmark_value>celdas; formato condicional</bookmark_value> <bookmark_value>formato; formato condicional</bookmark_value> <bookmark_value>estilos;estilos condicionales</bookmark_value> <bookmark_value>formatos; condicionales</bookmark_value> <bookmark_value>números aleatorios;ejemplos</bookmark_value> <bookmark_value>estilos de celda; copiar</bookmark_value> <bookmark_value>copiar; estilos de celda</bookmark_value> <bookmark_value>tablas; copiar estilos de celda</bookmark_value>"
+
+#: cellstyle_conditional.xhp#hd_id3149263.24.help.text
+msgid "<variable id=\"cellstyle_conditional\"><link href=\"text/scalc/guide/cellstyle_conditional.xhp\" name=\"Applying Conditional Formatting\">Applying Conditional Formatting</link></variable>"
+msgstr "<variable id=\"cellstyle_conditional\"><link href=\"text/scalc/guide/cellstyle_conditional.xhp\" name=\"Aplicar formateado condicional\">Aplicar formateado condicional</link></variable>"
+
+#: cellstyle_conditional.xhp#par_id3159156.25.help.text
+msgid "Using the menu command <emph>Format - Conditional formatting</emph>, the dialog allows you to define up to three conditions per cell, which must be met in order for the selected cells to have a particular format."
+msgstr "La orden de menú <emph>Formato - Formateado condicional</emph> abre un diálogo que permite definir un máximo de tres condiciones por celda, que se deben cumplir para que las celdas seleccionadas tengan un formato determinado."
+
+#: cellstyle_conditional.xhp#par_id8039796.help.text
+msgid "To apply conditional formatting, AutoCalculate must be enabled. Choose <emph>Tools - Cell Contents - AutoCalculate</emph> (you see a check mark next to the command when AutoCalculate is enabled)."
+msgstr "Para aplicar formato condicionado, debe habilitar la función Cálculo automático. Seleccione <emph>Herramientas - Contenido de las celdas - Calcular automáticamente</emph> (aparece una marca de verificación junto al comando cuando la función de cálculo automático está activada)."
+
+#: cellstyle_conditional.xhp#par_id3154944.26.help.text
+msgid "With conditional formatting, you can, for example, highlight the totals that exceed the average value of all totals. If the totals change, the formatting changes correspondingly, without having to apply other styles manually."
+msgstr "El formateado condicional permite, por ejemplo, destacar los totales que están por encima del promedio de todos los totales. Si los totales cambian, el formato cambia según corresponda, sin necesidad de aplicar otros estilos de forma manual."
+
+#: cellstyle_conditional.xhp#hd_id4480727.help.text
+msgid "To Define the Conditions"
+msgstr "Para definir las condiciones"
+
+#: cellstyle_conditional.xhp#par_id3154490.27.help.text
+msgid "Select the cells to which you want to apply a conditional style."
+msgstr "Seleccione las celdas que deban tener un formateado condicionado."
+
+#: cellstyle_conditional.xhp#par_id3155603.28.help.text
+msgid "Choose <emph>Format - Conditional Formatting</emph>."
+msgstr "Active el comando <emph>Formato - Formateado condicionado</emph> ."
+
+#: cellstyle_conditional.xhp#par_id3146969.29.help.text
+msgid "Enter the condition(s) into the dialog box. The dialog is described in detail in <link href=\"text/scalc/01/05120000.xhp\" name=\"$[officename] Help\">$[officename] Help</link>, and an example is provided below:"
+msgstr "Escriba las condiciones en el diálogo. Puede ver una descripción detallada del diálogo en la <link href=\"text/scalc/01/05120000.xhp\" name=\"Ayuda de $[officename]\">Ayuda de $[officename]</link>; a continuación se muestra un ejemplo:"
+
+#: cellstyle_conditional.xhp#hd_id3155766.38.help.text
+msgid "Example of Conditional Formatting: Highlighting Totals Above/Under the Average Value"
+msgstr "Ejemplo de formato condicional: Resaltar los totales por encima/debajo del valor promedio"
+
+#: cellstyle_conditional.xhp#hd_id4341868.help.text
+msgid "Step1: Generate Number Values"
+msgstr "Paso 1: Generar valores numéricos"
+
+#: cellstyle_conditional.xhp#par_id3150043.39.help.text
+msgid "You want to give certain values in your tables particular emphasis. For example, in a table of turnovers, you can show all the values above the average in green and all those below the average in red. This is possible with conditional formatting."
+msgstr "Quizás desee destacar de forma especial determinados valores de la hoja, por ejemplo, en una hoja de cifras de ventas, los valores que estén sobre la media en verde y en rojo los que estén por debajo. Con el formateado condicionado no habrá problema."
+
+#: cellstyle_conditional.xhp#par_id3155337.40.help.text
+msgid "First of all, write a table in which a few different values occur. For your test you can create tables with any random numbers:"
+msgstr "Abra una hoja en la que aparezcan números distintos. Introduzca, para esta prueba, algunos números aleatorios:"
+
+#: cellstyle_conditional.xhp#par_id3149565.41.help.text
+msgid "In one of the cells enter the formula =RAND(), and you will obtain a random number between 0 and 1. If you want integers of between 0 and 50, enter the formula =INT(RAND()*50)."
+msgstr "Introduzca en una celda la fórmula =ALEATORIO() para tener un número entre 0 y 1. Si desea números enteros entre 0 y 50, introduzca como fórmula =ENTERO(ALEATORIO()*50)."
+
+#: cellstyle_conditional.xhp#par_id3149258.42.help.text
+msgid "Copy the formula to create a row of random numbers. Click the bottom right corner of the selected cell, and drag to the right until the desired cell range is selected."
+msgstr "Copie la fórmula para crear una fila de números aleatorios. Haga clic en la esquina inferior derecha de la celda seleccionada y arrastre hacia la derecha hasta seleccionar el área deseada."
+
+#: cellstyle_conditional.xhp#par_id3159236.43.help.text
+msgid "In the same way as described above, drag down the corner of the rightmost cell in order to create more rows of random numbers."
+msgstr "De forma similar, arrastre la esquina de la celda hasta la parte inferior derecha para crear más filas de números aleatorios."
+
+#: cellstyle_conditional.xhp#hd_id3149211.44.help.text
+msgid "Step 2: Define Cell Styles"
+msgstr "Paso 2: Definir estilos de celda"
+
+#: cellstyle_conditional.xhp#par_id3154659.45.help.text
+msgid "The next step is to apply a cell style to all values that represent above-average turnover, and one to those that are below the average. Ensure that the Styles and Formatting window is visible before proceeding."
+msgstr "El siguiente paso es aplicar un estilo de celda a todos los valores que presenten cifras de volumen de ventas superiores a la media y otro para las inferiores. La ventana Estilo y formato debe verse en pantalla antes de continuar."
+
+#: cellstyle_conditional.xhp#par_id3150883.46.help.text
+msgid "Click in a blank cell and select the command <emph>Format Cells</emph> in the context menu."
+msgstr "Haga clic en una celda vacía, active el menú contextual y seleccione <emph>Formatear celdas</emph>."
+
+#: cellstyle_conditional.xhp#par_id3155529.47.help.text
+msgid "In the <emph>Format Cells</emph> dialog on the <emph>Background</emph> tab, select a background color. Click <emph>OK</emph>."
+msgstr "En la pestaña <emph>Fondo</emph> del diálogo <emph>Formato de celdas</emph>, seleccione un color de fondo. Haga clic en <emph>Aceptar</emph>."
+
+#: cellstyle_conditional.xhp#par_id3154484.48.help.text
+msgid "In the Styles and Formatting window, click the <emph>New Style from Selection</emph> icon. Enter the name of the new style. For this example, name the style \"Above\"."
+msgstr "En la ventana Estilo y formato, haga clic en el símbolo <emph>Nuevo estilo a partir de selección</emph>. Escriba el nombre del nuevo estilo. En este ejemplo, llámelo \"Mayor que\"."
+
+#: cellstyle_conditional.xhp#par_id3152889.49.help.text
+msgid "To define a second style, click again in a blank cell and proceed as described above. Assign a different background color for the cell and assign a name (for this example, \"Below\")."
+msgstr "Para definir otro estilo vuelva a pulsar en la celda vacía y siga de nuevo el proceso descrito. Asigne un color de fondo distinto a la celda y asigne un nombre (en este ejemplo, \"Menor que\")."
+
+#: cellstyle_conditional.xhp#hd_id3148704.60.help.text
+msgid "Step 3: Calculate Average"
+msgstr "Paso 3: Calcular promedio"
+
+#: cellstyle_conditional.xhp#par_id3148837.51.help.text
+msgid "In our particular example, we are calculating the average of the random values. The result is placed in a cell:"
+msgstr "En nuestro ejemplo debemos calcular el promedio de los valores aleatorios. El resultado se sitúa en una celda:"
+
+#: cellstyle_conditional.xhp#par_id3144768.52.help.text
+msgid "Set the cursor in a blank cell, for example, J14, and choose <emph>Insert - Function</emph>."
+msgstr "Sitúe el cursor en una celda vacía, por ejemplo, J14, y seleccione <emph>Insertar - Función</emph>."
+
+#: cellstyle_conditional.xhp#par_id3156016.53.help.text
+msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink / Maximize</item></link> icon."
+msgstr "Seleccione la función PROMEDIO. Seleccione con el ratón todos los números aleatorios. Si no puede ver toda el área porque el Asistente para funciones la oculta, puede reducir temporalmente el tamaño del diálogo con el símbolo <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Reducir/ Aumentar</item></link>."
+
+#: cellstyle_conditional.xhp#par_id3153246.54.help.text
+msgid "Close the Function Wizard with <item type=\"menuitem\">OK</item>."
+msgstr "Haga clic en <item type=\"menuitem\">Aceptar</item> para cerrar el Asistente para funciones."
+
+#: cellstyle_conditional.xhp#hd_id3149898.50.help.text
+msgid "Step 4: Apply Cell Styles"
+msgstr "Paso 4: Aplicar estilos de celda"
+
+#: cellstyle_conditional.xhp#par_id3149126.55.help.text
+msgid "Now you can apply the conditional formatting to the sheet:"
+msgstr "Ahora sólo le queda aplicar el formateado condicionado a la hoja:"
+
+#: cellstyle_conditional.xhp#par_id3150049.56.help.text
+msgid "Select all cells with the random numbers."
+msgstr "Marque todas las celdas que contengan valores aleatorios."
+
+#: cellstyle_conditional.xhp#par_id3153801.57.help.text
+msgid "Choose the <emph>Format - Conditional Formatting</emph> command to open the corresponding dialog."
+msgstr "Elija la orden <emph>Formato - Formateado condicional</emph> para abrir el diálogo correspondiente."
+
+#: cellstyle_conditional.xhp#par_id3153013.58.help.text
+msgid "Define the condition as follows: If cell value is less than J14, format with cell style \"Below\", and if cell value is greater than or equal to J14, format with cell style \"Above\"."
+msgstr "Seleccione ahora como condiciones: Si el valor de la celda es menor que J14, aplicar el formato \"Abajo\", y si es mayor o igual, el formato \"Arriba\"."
+
+#: cellstyle_conditional.xhp#hd_id3155761.61.help.text
+msgid "Step 5: Copy Cell Style"
+msgstr "Paso 5: Copiar estilo de celda"
+
+#: cellstyle_conditional.xhp#par_id3145320.62.help.text
+msgid "To apply the conditional formatting to other cells later:"
+msgstr "Aplicar posteriormente el formateado condicionado a otras celdas:"
+
+#: cellstyle_conditional.xhp#par_id3153074.63.help.text
+msgid "Click one of the cells that has been assigned conditional formatting."
+msgstr "Haga clic sobre una de las celdas a las que haya asignado el formateado condicionado."
+
+#: cellstyle_conditional.xhp#par_id3149051.64.help.text
+msgid "Copy the cell to the clipboard."
+msgstr "Copie la celda en el portapapeles."
+
+#: cellstyle_conditional.xhp#par_id3150436.65.help.text
+msgid "Select the cells that are to receive this same formatting."
+msgstr "Seleccione las celdas que deban tener el mismo formato."
+
+#: cellstyle_conditional.xhp#par_id3147298.66.help.text
+msgid "Choose <emph>Edit - Paste Special</emph>. The <emph>Paste Special</emph> dialog appears."
+msgstr "Seleccione <emph>Editar - Pegado especial</emph>. Se abre el diálogo <emph>Pegado especial</emph>."
+
+#: cellstyle_conditional.xhp#par_id3166465.67.help.text
+msgid "In the <emph>Selection</emph> area, check only the <emph>Formats</emph> box. All other boxes must be unchecked. Click <emph>OK</emph>."
+msgstr "En el área <emph>Selección</emph> marque solamente la casilla <emph>Formatos</emph>. Todas las demás casillas deben permanecer sin marcar. Haga clic en Aceptar."
+
+#: cellstyle_conditional.xhp#par_id3159123.68.help.text
+msgid "<link href=\"text/scalc/01/05120000.xhp\" name=\"Format - Conditional formatting\">Format - Conditional formatting</link>"
+msgstr "<link href=\"text/scalc/01/05120000.xhp\" name=\"Formato - Formateado condicionado\">Formato - Formateado condicionado</link>"
diff --git a/source/es/helpcontent2/source/text/schart.po b/source/es/helpcontent2/source/text/schart.po
new file mode 100644
index 00000000000..b1b5183aecb
--- /dev/null
+++ b/source/es/helpcontent2/source/text/schart.po
@@ -0,0 +1,400 @@
+#. extracted from helpcontent2/source/text/schart.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fschart.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"PO-Revision-Date: 2011-04-05 19:50+0200\n"
+"Last-Translator: Alexandro <jza@openoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: main0000.xhp#tit.help.text
+msgid "Charts in $[officename]"
+msgstr "Gráficas en $[officename]"
+
+#: main0000.xhp#bm_id3148664.help.text
+msgid "<bookmark_value>charts; overview</bookmark_value> <bookmark_value>HowTos for charts</bookmark_value>"
+msgstr "<bookmark_value>Gráficos; Información General</bookmark_value><bookmark_value>Los Cómo para los Gráficos</bookmark_value>"
+
+#: main0000.xhp#hd_id3148664.1.help.text
+msgid "<variable id=\"chart_main\"><link href=\"text/schart/main0000.xhp\" name=\"Charts in $[officename]\">Using Charts in %PRODUCTNAME</link></variable>"
+msgstr "<variable id=\"chart_main\"><link href=\"text/schart/main0000.xhp\" name=\"Charts in $[officename]\">Usar gráficos en %PRODUCTNAME</link></variable>"
+
+#: main0000.xhp#par_id3154685.2.help.text
+msgid "<variable id=\"chart\">$[officename] lets you present data graphically in a chart, so that you can visually compare data series and view trends in the data. You can insert charts into spreadsheets, text documents, drawings, and presentations. </variable>"
+msgstr "<variable id=\"chart\">$[officename] permite presentar visualmente los datos en un gráfico, de tal forma que sea posible comparar visualmente las series de datos y sus tendencias. Usted podrá insertar gráficos en sus hojas de cálculo, documentos de texto, dibujos, y presentaciones.</variable>"
+
+#: main0000.xhp#hd_id3153143.5.help.text
+msgid "Chart Data"
+msgstr "Instrucciones para los gráficos"
+
+#: main0000.xhp#par_id5181432.help.text
+msgid "Charts can be based on the following data:"
+msgstr "Los gráficos pueden ser basados en los siguientes datos:"
+
+#: main0000.xhp#par_id7787102.help.text
+msgid "Spreadsheet values from Calc cell ranges"
+msgstr "Valores de hojas de cálculo desde rangos de celdas de Calc"
+
+#: main0000.xhp#par_id7929929.help.text
+msgid "Cell values from a Writer table"
+msgstr "Valores de celda desde una tabla Writer"
+
+#: main0000.xhp#par_id4727011.help.text
+msgid "Values that you enter in the Chart Data Table dialog (you can create these charts in Writer, Draw, or Impress, and you can copy and paste them also to Calc)"
+msgstr "Los valores que usted introduce en el diálogo de la tabla de datos de gráficos (puede crear estos gráficos en Writer, Draw o Impress, y puede copiar y pegarlos también a Calc)"
+
+#: main0000.xhp#par_id76601.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a chart in the current document. To use a continuous range of cells as the data source for your chart, click inside the cell range, and then choose this command. Alternatively, select some cells and choose this command to create a chart of the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Crea una gráfica en el documento actual. Para usar un rango continuo de celdas como fuente de datos para tu gráfica, haga clic dentro del rango de celdas y entonces escoja este comando. De manera alterna puede seleccionar algunas celdas y escoger el comando para crear una gráfica con las celdas seleccionadas.</ahelp>"
+
+#: main0000.xhp#hd_id5345011.help.text
+msgid "To insert a chart"
+msgstr "Para insertar gráfico"
+
+#: main0000.xhp#hd_id5631580.help.text
+msgid "To edit a chart"
+msgstr "Para editar un gráfico"
+
+#: main0000.xhp#par_id7911008.help.text
+msgid "Click a chart to edit the object properties:"
+msgstr "Haga clic en un gráfico para modificar las propiedades del objeto del gráfico:"
+
+#: main0000.xhp#par_id9844660.help.text
+msgid "Size and position on the current page."
+msgstr "Escala y posición en la página actual."
+
+#: main0000.xhp#par_id8039796.help.text
+msgid "Alignment, text wrap, outer borders, and more."
+msgstr "Alineación, ajustar texto, bordes externos, y más."
+
+#: main0000.xhp#par_id7986693.help.text
+msgid "Double-click a chart to enter the chart edit mode:"
+msgstr "Haga doble clic en un gráfico para entrar en el modo de edición gráfica:"
+
+#: main0000.xhp#par_id2350840.help.text
+msgid "Chart data values (for charts with own data)."
+msgstr "Valores de datos del gráfico (para gráficos con sus propios datos)"
+
+#: main0000.xhp#par_id3776055.help.text
+msgid "Chart type, axes, titles, walls, grid, and more."
+msgstr "tipo de gráfico, ejes, títulos, leyendas, planillas, fondos, y más"
+
+#: main0000.xhp#par_id8442335.help.text
+msgid "Double-click a chart element in chart edit mode:"
+msgstr "Haga doble clic en un elemento del gráfico en el modo de edición gráfica:"
+
+#: main0000.xhp#par_id4194769.help.text
+msgid "Double-click an axis to edit the scale, type, color, and more."
+msgstr "haga doble clic en un eje para modificar la escala, tipo, color, y más."
+
+#: main0000.xhp#par_id8644672.help.text
+msgid "Double-click a data point to select and edit the data series to which the data point belongs."
+msgstr "Haga doble clic en un punto de datos para seleccionar y editar la serie de datos a la que pertenece el punto."
+
+#: main0000.xhp#par_id6574907.help.text
+msgid "With a data series selected, click, then double-click a single data point to edit the properties of this data point (for example, a single bar in a bar chart)."
+msgstr "Con una serie de datos seleccionada, haga clic, y luego doble clic sobre un solo punto de datos para editar las propiedades de este punto (por ejemplo, una única barra en un gráfico de barras)."
+
+#: main0000.xhp#par_id1019200902360575.help.text
+msgid "Double-click the legend to select and edit the legend. Click, then double-click a symbol in the selected legend to edit the associated data series."
+msgstr "Haga doble clic en la leyenda para seleccionarla y editarla. Haga clic sobre un símbolo, y luego doble clic sobre el mismo en la leyenda seleccionada para editar la serie de datos asociada."
+
+#: main0000.xhp#par_id7528916.help.text
+msgid "Double-click any other chart element, or click the element and open the Format menu, to edit the properties."
+msgstr "Haga doble clic en cualquier otro elemento del gráfico, o haga clic sobre el elemento y abra el menú Formato, para modificar las propiedades."
+
+#: main0000.xhp#par_id8420667.help.text
+msgid "Click outside the chart to leave the current edit mode."
+msgstr "Haga clic fuera del gráfico para salir del modo de edición actual."
+
+#: main0000.xhp#par_id4923856.help.text
+msgid "To print a chart in high quality, you can export the chart to a PDF file and print that file."
+msgstr "Para imprimir un gráfico de alta calidad, usted puede exportarlo a un archivo PDF e imprimirlo."
+
+#: main0000.xhp#par_id0810200912061033.help.text
+msgid "In chart edit mode, you see the <link href=\"text/schart/main0202.xhp\">Formatting Bar</link> for charts near the upper border of the document. The Drawing Bar for charts appears near the lower border of the document. The Drawing Bar shows a subset of the icons from the <link href=\"text/simpress/main0210.xhp\">Drawing</link> toolbar of Draw and Impress."
+msgstr "En el modo de edición de gráficos, verá la \"<link href=\"text/schart/main0202.xhp\">Barra de formato</link>\" para gráficos cerca del borde superior del documento. La \"Barra de dibujo\" para gráficos aparece cerca del borde inferior del documento. La \"Barra de dibujo\" muestra un subconjunto de los íconos de la barra de herramientas \"<link href=\"text/simpress/main0210.xhp\">Dibujo</link>\" de Draw e Impress."
+
+#: main0000.xhp#par_id0810200902080452.help.text
+msgid "You can right-click an element of a chart to open the context menu. The context menu offers many commands to format the selected element."
+msgstr "Puede hacer clic-derecho a un elemento de un gráfico para abrir el menú de contexto. El menú de contexto ofrece muchos comandos para formatear el elemento seleccionado. "
+
+#: main0000.xhp#par_id081020090354489.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the selected title.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatea el título seleccionado .</ahelp>"
+
+#: main0000.xhp#par_id0810200903405629.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the chart area.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatea el área del diagrama.</ahelp>"
+
+#: main0000.xhp#par_id0810200903544867.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the chart wall.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatea el Plano Lateral.</ahelp>"
+
+#: main0000.xhp#par_id0810200903544952.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the chart floor.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatea el fondo del gráfico .</ahelp>"
+
+#: main0000.xhp#par_id0810200903544927.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the chart legend.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatea la leyenda del diagrama.</ahelp>"
+
+#: main0000.xhp#par_id0810200903544949.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the selected axis.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatea los ejes seleccionados .</ahelp>"
+
+#: main0000.xhp#par_id0810200903544984.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the selected data point.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatea el punto de datos seleccionado .</ahelp>"
+
+#: main0000.xhp#par_id0810200903545096.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the major grid.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatea la planilla mayor.</ahelp>"
+
+#: main0000.xhp#par_id0810200903545057.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the minor grid.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatea la planilla menor .</ahelp>"
+
+#: main0000.xhp#par_id0810200903545095.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the data series.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatea las series de datos .</ahelp>"
+
+#: main0000.xhp#par_id0810200903545094.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the stock loss indicators.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatea el indicador de pérdida de stock.</ahelp>"
+
+#: main0000.xhp#par_id0810200903545113.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the stock gain indicators.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatea el indicador de incremento de stock.</ahelp>"
+
+#: main0000.xhp#par_id0810200903545149.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the data labels.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatea las etiquetas de datos.</ahelp>"
+
+#: main0000.xhp#par_id0810200903545159.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the Y error bars.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatea las barras de error Y.</ahelp>"
+
+#: main0000.xhp#par_id081020090354524.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the mean value line.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatea la linea de valor medio.</ahelp>"
+
+#: main0000.xhp#par_id0810200903545274.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the trendline.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatea la linea de tendencia.</ahelp>"
+
+#: main0000.xhp#par_id0810200904063285.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the trendline equation.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatea la ecuación de la liena de tendencia.</ahelp>"
+
+#: main0000.xhp#par_id0810200904063252.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the selected data label.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formatea las etiquetas de datos seleccionados.</ahelp>"
+
+#: main0000.xhp#par_id0810200904063239.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to insert chart titles.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abre un diálogo para insertar títulos de gráfica..</ahelp>"
+
+#: main0000.xhp#par_id0810200904233047.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to insert or delete axes.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abre un diálogo para insertar o eliminar los ejes.</ahelp>"
+
+#: main0000.xhp#par_id0810200904233058.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to insert an axis.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abre un diálogo para insertar un eje.</ahelp>"
+
+#: main0000.xhp#par_id0810200904233089.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to insert an axis title.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abre un diálogo para insertar un título de ejes.</ahelp>"
+
+#: main0000.xhp#par_id0810200904233160.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a major grid.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserta una planilla mayor.</ahelp>"
+
+#: main0000.xhp#par_id0810200904233175.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a minor grid.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserta una planilla menor.</ahelp>"
+
+#: main0000.xhp#par_id0810200904233111.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts data labels.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Insertar una etiqueta de datos.</ahelp>"
+
+#: main0000.xhp#par_id0810200904233174.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts the trendline equation and the coefficient of determination R².</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserta la ecuación de linea de tendencia y el coeficiente que determina R².</ahelp>"
+
+#: main0000.xhp#par_id0810200904265639.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts the coefficient of determination R² value.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserta el coeficiente que determina el valor de R².</ahelp>"
+
+#: main0000.xhp#par_id0810200904362614.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a single data label.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserta una etiqueta de datos sencillos.</ahelp>"
+
+#: main0000.xhp#par_id0810200904362666.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the chart legend.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Elimina la leyenda de la gráfica.</ahelp>"
+
+#: main0000.xhp#par_id0810200904362777.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the selected axis.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Elimina los ejes seleccionados.</ahelp>"
+
+#: main0000.xhp#par_id0810200904362785.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the major grid.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Elimina la planilla menor.</ahelp>"
+
+#: main0000.xhp#par_id0810200904362748.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the minor grid.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Elimina la planilla menor.</ahelp>"
+
+#: main0000.xhp#par_id0810200904362778.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes all data labels.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Elimina todas las etiquetas de datos.</ahelp>"
+
+#: main0000.xhp#par_id0810200904362893.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the trendline equation.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Elimina la linea de tendencia de una ecuación.</ahelp>"
+
+#: main0000.xhp#par_id0810200904362896.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the R² value.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Elimina el valor de R².</ahelp>"
+
+#: main0000.xhp#par_id0810200904362827.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the selected data label.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Elimina las etiquetas de datos seleccionados.</ahelp>"
+
+#: main0000.xhp#par_id0810200904431376.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the mean value line.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Borra la linea de valor medio.</ahelp>"
+
+#: main0000.xhp#par_id081020090443142.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the Y error bars.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Elimina las barras de error Y.</ahelp>"
+
+#: main0000.xhp#par_id0810200904393229.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Resets the selected data point to default format.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Reinicia los puntos de datos seleccionados para un formato predeterminado.</ahelp>"
+
+#: main0000.xhp#par_id0810200904393351.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Resets all data points to default format.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Reinicia todos los puntos de datos para un formato predeterminado.</ahelp>"
+
+#: main0503.xhp#tit.help.text
+msgid "$[officename] Chart Features"
+msgstr "Funciones de gráficos de $[officename]"
+
+#: main0503.xhp#hd_id3150543.1.help.text
+msgid "<link href=\"text/schart/main0503.xhp\" name=\"$[officename] Chart Features\">$[officename] Chart Features</link>"
+msgstr "<link href=\"text/schart/main0503.xhp\" name=\"Características de $[officename] Chart\">Características de $[officename] Chart</link>"
+
+#: main0503.xhp#par_id3150868.2.help.text
+msgid "Charts allow you to present data so that it is easy to visualize."
+msgstr "Los gráficos permiten presentar datos de forma que sea fácil visualizarlos."
+
+#: main0503.xhp#par_id3146974.6.help.text
+msgid "You can create a chart from source data in a Calc spreadsheet or a Writer table. When the chart is embedded in the same document as the data, it stays linked to the data, so that the chart automatically updates when you change the source data."
+msgstr "Puede crear un gráfico a partir de los datos originales en una hoja de cálculo de Calc o en una tabla de Writer. Si el gráfico se incrusta en el mismo documento como datos, permanecerá vinculado con éstos, de tal manera que se actualizará automáticamente cuando los datos fuente cambien."
+
+#: main0503.xhp#hd_id3153143.7.help.text
+msgid "Chart Types"
+msgstr "Tipos de gráficos"
+
+#: main0503.xhp#par_id3151112.8.help.text
+msgid "Choose from a variety of 3D charts and 2D charts, such as bar charts, line charts, stock charts. You can change chart types with a few clicks of the mouse."
+msgstr "Elija entre varios gráficos 3D y 2D, como los gráficos de barras, de líneas o de cotizaciones. Puede cambiar el tipo de gráfico con unos pocos clics de ratón."
+
+#: main0503.xhp#hd_id3149665.10.help.text
+msgid "Individual Formatting"
+msgstr "Formateado por separado"
+
+#: main0503.xhp#par_id3156441.11.help.text
+msgid "You can customize individual chart elements, such as axes, data labels, and legends, by right-clicking them in the chart, or with toolbar icons and menu commands."
+msgstr "Puede personalizar elementos concretos de los gráficos como los ejes, las etiquetas de datos y las leyendas, pulsando sobre ellos con el botón derecho del ratón o bien con los iconos de la barra de herramientas y las órdenes de los menús."
+
+#: main0202.xhp#tit.help.text
+msgid "Formatting Bar"
+msgstr "Barra Formato"
+
+#: main0202.xhp#hd_id0810200911433792.help.text
+msgid "<link href=\"text/schart/main0202.xhp\" name=\"Formatting Bar\">Formatting Bar</link>"
+msgstr "<link href=\"text/schart/main0202.xhp\" name=\"Barra de formato\">Barra de formato</link>"
+
+#: main0202.xhp#par_id0810200911433835.help.text
+msgid "The Formatting Bar is shown when a chart is set to edit mode. Double-click a chart to enter edit mode. Click outside the chart to leave edit mode."
+msgstr "La barra de formateo se muestra cuando la gráfica se posiciona para modo de edición. Haga doble clic en la gráfica para ingresar en modo de edición. Haga clic afuera de la gráfica para dejar el modo de edición."
+
+#: main0202.xhp#par_id0810200911433878.help.text
+msgid "You can edit the formatting of a chart using the controls and icons on the Formatting Bar."
+msgstr "Puede editar el formato de una gráfica usando los controles y iconos de la barra de formato."
+
+#: main0202.xhp#hd_id0810200902300436.help.text
+msgid "Select Chart Element"
+msgstr "Seleccione elementos de gráficas"
+
+#: main0202.xhp#par_id0810200902300479.help.text
+msgid "<ahelp hid=\".\">Select the element from the chart that you want to format. The element gets selected in the chart preview. Click Format Selection to open the properties dialog for the selected element.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccionar el elemento de la gráfica que quieres dar formato. El elemento tiene la selección de una previsualización de gráfico. Haga clic en la selección de formato para abrir las propiedades de diálogo para los elementos de selección.</ahelp>"
+
+#: main0202.xhp#hd_id0810200902300555.help.text
+msgid "Format Selection"
+msgstr "Formato de selección"
+
+#: main0202.xhp#par_id0810200902300539.help.text
+msgid "<ahelp hid=\".\">Opens the properties dialog for the selected element.</ahelp>"
+msgstr "<ahelp hid=\".\">Abre las propiedades de diálogo para los elementos seleccionados.</ahelp>"
+
+#: main0202.xhp#hd_id0810200902300545.help.text
+msgid "Chart Type"
+msgstr "Tipos de gráficas"
+
+#: main0202.xhp#par_id0810200902300594.help.text
+msgid "<ahelp hid=\".\">Opens the Chart Type dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Abre el diálogo de tipos de gráficos.</ahelp>"
+
+#: main0202.xhp#hd_id0810200902300537.help.text
+msgid "Chart Data Table"
+msgstr "Tabla de datos de gráficas"
+
+#: main0202.xhp#par_id0810200902300699.help.text
+msgid "<ahelp hid=\".\">Opens the Data Table dialog where you can edit the chart data.</ahelp>"
+msgstr "<ahelp hid=\".\">Abre el diálogo de la tabla de datos donde puedes modificar los datos de la gráfica.</ahelp>"
+
+#: main0202.xhp#hd_id0810200902300672.help.text
+msgid "Horizontal Grid On/Off"
+msgstr "Activar/desactivar cuadrícula horizontal"
+
+#: main0202.xhp#par_id0810200902300630.help.text
+msgid "<ahelp hid=\".\">The Horizontal Grid On/Off icon on the Formatting bar toggles the visibility of the grid display for the Y axis.</ahelp>"
+msgstr "<ahelp hid=\".\">El ícono \"Activar/desactivar cuadrícula horizontal\" de la barra \"Formato\" conmuta la visibilidad de la cuadrícula para el eje Y..</ahelp>"
+
+#: main0202.xhp#hd_id0810200902300738.help.text
+msgid "Legend On/Off"
+msgstr "Activar o desactivar leyenda"
+
+#: main0202.xhp#par_id081020090230076.help.text
+msgid "<ahelp hid=\".\">To show or hide a legend, click Legend On/Off on the Formatting bar.</ahelp>"
+msgstr "<ahelp hid=\".\">Para mostrar u ocultar una leyenda, haga clic en activar/desactivar en la barra de formatos.</ahelp>"
+
+#: main0202.xhp#hd_id0810200902300785.help.text
+msgid "Scale Text"
+msgstr "Escala de texto"
+
+#: main0202.xhp#par_id0810200902300784.help.text
+msgid "<ahelp hid=\".\">Rescales the text in the chart when you change the size of the chart.</ahelp>"
+msgstr "<ahelp hid=\".\">Reescala en el texto en una gráfica cuando cambias el tamaño de una gráfica.</ahelp>"
+
+#: main0202.xhp#hd_id081020090230087.help.text
+msgid "Automatic Layout"
+msgstr "Diseño automático"
+
+#: main0202.xhp#par_id0810200902300834.help.text
+msgid "<ahelp hid=\".\">Moves all chart elements to their default positions inside the current chart. This function does not alter the chart type or any other attributes other than the position of elements.</ahelp>"
+msgstr "<ahelp hid=\".\">Mueve todas los elementos gráficos para la posición predeterminado dentro de la gráfica actual. Esta función no altera el tipo de gráfica o cualquier otro atributo ademas de la posición de elementos.</ahelp>"
diff --git a/source/es/helpcontent2/source/text/schart/00.po b/source/es/helpcontent2/source/text/schart/00.po
new file mode 100644
index 00000000000..1e7fff78d9d
--- /dev/null
+++ b/source/es/helpcontent2/source/text/schart/00.po
@@ -0,0 +1,273 @@
+#. extracted from helpcontent2/source/text/schart/00.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fschart%2F00.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"PO-Revision-Date: 2012-05-11 13:12+0200\n"
+"Last-Translator: Santiago <santiago.bosio@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 00000004.xhp#tit.help.text
+msgid "To access this function..."
+msgstr "Para acceder a esta función..."
+
+#: 00000004.xhp#hd_id3156023.1.help.text
+msgid "<variable id=\"wie\">To access this function...</variable>"
+msgstr "<variable id=\"wie\">Para acceder a esta función...</variable>"
+
+#: 00000004.xhp#par_id3150791.9.help.text
+msgid "Choose <emph>View - Chart Data Table</emph> (Charts)"
+msgstr "Seleccione <emph>Ver - Datos del gráfico</emph> (Gráficos)"
+
+#: 00000004.xhp#par_id3154686.55.help.text
+msgctxt "00000004.xhp#par_id3154686.55.help.text"
+msgid "On Formatting bar, click"
+msgstr "En la barra Formato, haga clic en"
+
+#: 00000004.xhp#par_id3153728.help.text
+msgid "<image id=\"img_id3147428\" src=\"cmd/sc_grid.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147428\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147428\" src=\"cmd/sc_grid.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147428\">Icono</alt></image>"
+
+#: 00000004.xhp#par_id3154942.11.help.text
+msgid "Chart Data"
+msgstr "Datos del gráfico"
+
+#: 00000004.xhp#par_id3153160.12.help.text
+msgid "<variable id=\"efgttl\">Choose <emph>Insert - Title </emph>(Charts)</variable>"
+msgstr "<variable id=\"efgttl\">Seleccione <emph>Insertar - Título </emph>(Gráficos)</variable>"
+
+#: 00000004.xhp#par_id3149121.13.help.text
+msgid "Choose <emph>Insert - Legend </emph>(Charts)"
+msgstr "Seleccione <emph>Insertar - Leyenda</emph>(Gráficos)"
+
+#: 00000004.xhp#par_id3155444.56.help.text
+msgid "Choose <emph>Format - Legend - Position</emph> tab (Charts)"
+msgstr "Seleccionar <emph>Formato - Leyenda - Posición</emph> (Gráficos)"
+
+#: 00000004.xhp#par_id3156385.16.help.text
+msgid "Choose <emph>Insert - Data Labels </emph>(Charts)"
+msgstr "Seleccionar <emph>Insertar - Rótulos de datos</emph> (Gráficos)"
+
+#: 00000004.xhp#par_id3147341.68.help.text
+msgid "Choose <emph>Format - Format Selection - Data Point/Data Series - Data Labels</emph> tab (for data series and data point) (Charts)"
+msgstr "Seleccione <emph>Formato - Propiedades del objeto - Punto de datos/Serie de datos - Etiquetas de datos</emph> pestaña (para serie de datos y punto de datos) (Gráficos)"
+
+#: 00000004.xhp#par_id3149565.69.help.text
+msgid "<variable id=\"efgaug\">Choose <emph>Insert - Axes </emph>(Charts)</variable>"
+msgstr "<variable id=\"efgaug\">Seleccione <emph>Insertar - Ejes</emph>(Gráficos)</variable>"
+
+#: 00000004.xhp#par_id3150297.17.help.text
+msgid "Choose <emph>Insert - Grids </emph>(Charts)"
+msgstr "Seleccionar <emph>Insertar - Cuadrículas </emph>(Gráficos)"
+
+#: 00000004.xhp#par_id3145789.58.help.text
+msgctxt "00000004.xhp#par_id3145789.58.help.text"
+msgid "On Formatting bar, click"
+msgstr "En la barra Formato, haga clic en"
+
+#: 00000004.xhp#par_id3150307.help.text
+msgid "<image id=\"img_id3155111\" src=\"cmd/sc_togglegridhorizontal.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155111\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155111\" src=\"cmd/sc_togglegridhorizontal.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155111\">Icono</alt></image>"
+
+#: 00000004.xhp#par_id3155378.19.help.text
+msgctxt "00000004.xhp#par_id3155378.19.help.text"
+msgid "Horizontal Grid On/Off"
+msgstr "Activar/desactivar cuadrícula horizontal"
+
+#: 00000004.xhp#par_id3145384.help.text
+msgid "<image id=\"img_id3152989\" src=\"cmd/sc_togglegridvertical.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152989\">Icon</alt></image>"
+msgstr "<image id=\"img_id3152989\" src=\"cmd/sc_togglegridvertical.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152989\">Icono</alt></image>"
+
+#: 00000004.xhp#par_id3153067.20.help.text
+msgctxt "00000004.xhp#par_id3153067.20.help.text"
+msgid "Vertical Grid On/Off"
+msgstr "Mostrar/ocultar cuadrícula vertical"
+
+#: 00000004.xhp#par_id3148869.21.help.text
+msgid "<variable id=\"efgsta\">Choose <emph>Insert - Y Error Bars </emph>(Charts)</variable>"
+msgstr "<variable id=\"efgsta\">Seleccione <emph>Insertar - Barras de error Y</emph>(Gráficos)</variable>"
+
+#: 00000004.xhp#par_id1061738.help.text
+msgid "<variable id=\"trendlines\">Choose Insert - Trend Lines (Charts)</variable>"
+msgstr "<variable id=\"trendlines\">Seleccione Insertar - Líneas de tendencia (Gráficos)</variable>"
+
+#: 00000004.xhp#par_id3154532.67.help.text
+msgid "<variable id=\"sonderz\">Choose <emph>Insert - Special Character </emph>(Charts)</variable>"
+msgstr "<variable id=\"sonderz\">Seleccione <emph>Insertar - Carácter especial</emph>(Gráficos)</variable>"
+
+#: 00000004.xhp#par_id3153246.22.help.text
+msgid "<variable id=\"frtoes\">Choose <emph>Format - Format Selection </emph>(Charts)</variable>"
+msgstr "<variable id=\"frtoes\">Seleccione <emph>Formato - Formato de selección </emph>(Gráficos)</variable>"
+
+#: 00000004.xhp#par_id3150214.23.help.text
+msgid "<variable id=\"frtodd\">Choose <emph>Format - Format Selection - Data Point</emph> dialog (Charts)</variable>"
+msgstr "<variable id=\"frtodd\">Seleccione el diálogo de <emph>Formato - Formato de selección - Punto de datos</emph> (Gráficos)</variable>"
+
+#: 00000004.xhp#par_id3154765.24.help.text
+msgid "<variable id=\"frtodr\">Choose <emph>Format - Format Selection - Data Series</emph> dialog (Charts)</variable>"
+msgstr "<variable id=\"frtodr\">Seleccione el diálogo de <emph>Formato - Formato de selección - Serie de datos</emph> (Gráficos)</variable>"
+
+#: 00000004.xhp#par_id3153009.66.help.text
+msgid "<variable id=\"optionen\">Choose <emph>Format - Format Selection - Data Series - Options</emph> tab (Charts)</variable>"
+msgstr "<variable id=\"optionen\">Seleccione la pestaña <emph>Formato - Formato de selección - Series de datos - Opciones</emph> (Gráficos)</variable>"
+
+#: 00000004.xhp#par_id3154707.25.help.text
+msgid "<variable id=\"frtttl\">Choose <emph>Format - Title </emph>(Charts)</variable>"
+msgstr "<variable id=\"frtttl\">Seleccione <emph>Formato - Título </emph>(Gráficos)</variable>"
+
+#: 00000004.xhp#par_id3155758.26.help.text
+msgid "<variable id=\"frtoe\">Choose <emph>Format - Format Selection - Title</emph> dialog (Charts)</variable>"
+msgstr "<variable id=\"frtoe\">Seleccione el diálogo de <emph>Formato - Formato de selección - Título</emph> (Gráficos).</variable>"
+
+#: 00000004.xhp#par_id3153075.27.help.text
+msgid "<variable id=\"frtegt\">Choose <emph>Format - Format Selection - Title</emph> dialog (Charts)</variable>"
+msgstr "<variable id=\"frtegt\">Seleccione el diálogo de <emph>Formato - Formato de selección - Título</emph> (Gráficos)</variable>"
+
+#: 00000004.xhp#par_id3149048.28.help.text
+msgid "<variable id=\"frttya\">Choose <emph>Format - Title </emph>(Charts)</variable>"
+msgstr "<variable id=\"frttya\">Seleccione <emph>Formato - Título </emph>(Gráficos)</variable>"
+
+#: 00000004.xhp#par_id3147402.70.help.text
+msgid "<variable id=\"frttyab\">Choose <emph>Format - Axis </emph>(Charts)</variable>"
+msgstr "<variable id=\"frttyab\">Seleccione <emph>Formato - Ejes </emph>(Gráficos)</variable>"
+
+#: 00000004.xhp#par_id3147297.29.help.text
+msgid "<variable id=\"frtlgd\">Choose <emph>Format - Legend, or Format - Format Selection</emph> - <emph>Legend </emph>(Charts)</variable>"
+msgstr "<variable id=\"frtlgd\">Seleccione <emph>Formato - Leyenda, o Formato - Formato de selección</emph> - <emph>Leyenda </emph>(Gráficos)</variable>"
+
+#: 00000004.xhp#par_id3157876.31.help.text
+msgid "<variable id=\"frtaa\">Choose <emph>Format - Axis - X Axis/Secondary X Axis/Z Axis/All Axes </emph>(Charts)</variable>"
+msgstr "<variable id=\"frtaa\">Seleccione <emph>Formato - Ejes - Eje X/Eje secundario X/Eje Z/Todos los ejes </emph>(Gráficos)</variable>"
+
+#: 00000004.xhp#par_id3146883.32.help.text
+msgid "<variable id=\"frtyas\">Choose <emph>Format - Axis - Y Axis/Secondary Y Axis </emph>(Charts)</variable>"
+msgstr "<variable id=\"frtyas\">Seleccione <emph>Formato - Ejes - Eje Y/Eje secundario Y </emph>(Gráficos)</variable>"
+
+#: 00000004.xhp#par_id3149349.33.help.text
+msgid "<variable id=\"frtysk\">Choose <emph>Format - Axis - Y Axis - Scale</emph> tab (Charts)</variable>"
+msgstr "<variable id=\"frtysk\">Seleccione la pestaña<emph>Formato - Ejes - Eje Y - Escala</emph> (Gráficos)</variable>"
+
+#: 00000004.xhp#par_id1006200812385491.help.text
+msgid "<variable id=\"positioning\">Choose <emph>Format - Axis - X Axis - Positioning</emph> tab (Charts)</variable>"
+msgstr "<variable id=\"positioning\">Seleccione la pestaña <emph>Formato - Ejes - Eje X - Posición</emph> (Gráficos)</variable>"
+
+#: 00000004.xhp#par_id31493459.33.help.text
+msgid "<variable id=\"positioningy\">Choose <emph>Format - Axis - Y Axis - Positioning</emph> tab (Charts)</variable>"
+msgstr "<variable id=\"positioningy\">Seleccione la pestaña <emph>Formato - Ejes - Eje Y - Posición</emph> (Gráficos)</variable>"
+
+#: 00000004.xhp#par_id3150477.34.help.text
+msgid "<variable id=\"frtgt\">Choose <emph>Format - Grid </emph>(Charts)</variable>"
+msgstr "<variable id=\"frtgt\">Seleccione <emph>Formato - Cuadrícula </emph>(Gráficos)</variable>"
+
+#: 00000004.xhp#par_id3150746.35.help.text
+msgid "<variable id=\"frtgtr\">Choose <emph>Format - Grid - X, Y, Z Axis Major Grid/ X, Y, Z Minor Grid/ All Axis Grids </emph>(Charts)</variable>"
+msgstr "<variable id=\"frtgtr\">Seleccione <emph>Formato - Cuadrícula - Cuadrícula principal del eje X, Y, Z/Cuadrícula auxiliar del eje X, Y, Z/Todas las cuadrículas </emph>(Gráficos)</variable>"
+
+#: 00000004.xhp#par_id3145828.36.help.text
+msgid "<variable id=\"frtdgw\">Choose <emph>Format - Chart Wall - Chart</emph> dialog (Charts)</variable>"
+msgstr "<variable id=\"frtdgw\">Seleccione el diálogo <emph>Formato - Plano lateral - Gráfico</emph> (Gráficos) </variable>"
+
+#: 00000004.xhp#par_id3153039.37.help.text
+msgid "<variable id=\"frtdgb\">Choose <emph>Format - Chart Floor</emph>(Charts)</variable>"
+msgstr "<variable id=\"frtdgb\">Seleccione <emph>Formato - Plano inferior </emph>(Gráficos)</variable>"
+
+#: 00000004.xhp#par_id3150141.38.help.text
+msgid "<variable id=\"frtdgf\">Choose <emph>Format - Chart Area</emph>(Charts)</variable>"
+msgstr "<variable id=\"frtdgf\">Seleccione <emph>Formato - Área del gráfico </emph>(Gráficos)</variable>"
+
+#: 00000004.xhp#par_id3155830.39.help.text
+msgid "Choose <emph>Format - Chart Type </emph>(Charts)"
+msgstr "Seleccionar <emph>Formato - Tipo de gráfico</emph> (gráficos)"
+
+#: 00000004.xhp#par_id3145140.59.help.text
+msgctxt "00000004.xhp#par_id3145140.59.help.text"
+msgid "On Formatting bar, click"
+msgstr "En la barra Formato, haga clic en"
+
+#: 00000004.xhp#par_id3148582.help.text
+msgid "<image id=\"img_id3153124\" src=\"cmd/sc_diagramtype.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153124\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153124\" src=\"cmd/sc_diagramtype.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153124\">Icono</alt></image>"
+
+#: 00000004.xhp#par_id3155956.41.help.text
+msgid "Edit Chart Type"
+msgstr "Editar tipo de gráfico"
+
+#: 00000004.xhp#par_id3155621.45.help.text
+msgid "<variable id=\"frtdda\">Choose <emph>Format - 3D View</emph>(Charts)</variable>"
+msgstr "<variable id=\"frtdda\">Seleccione <emph>Formato - Vista 3D</emph> (Gráficos).</variable>"
+
+#: 00000004.xhp#par_id3150661.61.help.text
+msgid "Choose <emph>Format - Arrangement </emph>(Charts)"
+msgstr "Seleccionar <emph>Formato - Disposición</emph>(gráficos)"
+
+#: 00000004.xhp#par_id3153046.65.help.text
+msgid "Open context menu - choose <emph>Arrangement </emph>(Charts)"
+msgstr "Abrir el menú contextual y seleccionar <emph>Disposición </emph>(gráficos)"
+
+#: 00000004.xhp#par_id3151020.help.text
+msgid "<image id=\"img_id3150936\" src=\"cmd/sc_toggletitle.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150936\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150936\" src=\"cmd/sc_toggletitle.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150936\">Icono</alt></image>"
+
+#: 00000004.xhp#par_id3150467.48.help.text
+msgid "Title On/Off"
+msgstr "Mostrar/ocultar título"
+
+#: 00000004.xhp#par_id3149775.help.text
+msgid "<image id=\"img_id3149781\" src=\"cmd/sc_toggleaxistitle.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149781\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149781\" src=\"cmd/sc_toggleaxistitle.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149781\">Icono</alt></image>"
+
+#: 00000004.xhp#par_id3147168.49.help.text
+msgid "Axis Titles On/Off"
+msgstr "Mostrar/ocultar título del eje"
+
+#: 00000004.xhp#par_id3163824.help.text
+msgid "<image id=\"img_id3149708\" src=\"cmd/sc_togglegridhorizontal.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149708\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149708\" src=\"cmd/sc_togglegridhorizontal.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149708\">Icono</alt></image>"
+
+#: 00000004.xhp#par_id3150962.50.help.text
+msgctxt "00000004.xhp#par_id3150962.50.help.text"
+msgid "Horizontal Grid On/Off"
+msgstr "Activar/desactivar cuadrícula horizontal"
+
+#: 00000004.xhp#par_id3151183.help.text
+msgid "<image id=\"img_id3151189\" src=\"cmd/sc_toggleaxisdescr.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3151189\">Icon</alt></image>"
+msgstr "<image id=\"img_id3151189\" src=\"cmd/sc_toggleaxisdescr.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3151189\">Icono</alt></image>"
+
+#: 00000004.xhp#par_id3153210.51.help.text
+msgid "Show/Hide Axis Descriptions"
+msgstr "Mostrar/Ocultar Descripción de ejes"
+
+#: 00000004.xhp#par_id3156315.help.text
+msgid "<image id=\"img_id3156322\" src=\"cmd/sc_togglegridvertical.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156322\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156322\" src=\"cmd/sc_togglegridvertical.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156322\">Icono</alt></image>"
+
+#: 00000004.xhp#par_id3153153.52.help.text
+msgctxt "00000004.xhp#par_id3153153.52.help.text"
+msgid "Vertical Grid On/Off"
+msgstr "Mostrar/ocultar cuadrícula vertical"
+
+#: 00000004.xhp#par_id9631641.help.text
+msgctxt "00000004.xhp#par_id9631641.help.text"
+msgid "Choose Insert - <switchinline select=\"appl\"><caseinline select=\"WRITER\"> Object -</caseinline></switchinline> Chart "
+msgstr "Seleccione Insertar - <switchinline select=\"appl\"><caseinline select=\"WRITER\"> Objeto -</caseinline></switchinline> Gráfico"
+
+#: 00000004.xhp#par_id2985320.help.text
+msgctxt "00000004.xhp#par_id2985320.help.text"
+msgid "Choose Insert - <switchinline select=\"appl\"><caseinline select=\"WRITER\"> Object -</caseinline></switchinline> Chart "
+msgstr "Seleccione Insertar - <switchinline select=\"appl\"><caseinline select=\"WRITER\"> Objeto -</caseinline></switchinline> Gráfico "
+
+#: 00000004.xhp#par_id1096530.help.text
+msgid "Double-click a chart, then choose Format - Data Ranges"
+msgstr "Haga doble-clic en un gráfico y elija Formato – Rangos de datos"
+
+#: 00000004.xhp#par_id733359.help.text
+msgid "<variable id=\"slp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, mark Smooth lines checkbox, then click the Properties button.</variable>"
+msgstr "<variable id=\"slp\">En la caja de diálogo \"Tipo de diagrama\" de un diagrama de líneas o de un diagrama XY que contiene líneas, marque la casilla de verificación \"Líneas suavizadas\" y, a continuación, el botón \"Propiedades\".</variable>"
diff --git a/source/es/helpcontent2/source/text/schart/01.po b/source/es/helpcontent2/source/text/schart/01.po
new file mode 100644
index 00000000000..ec4cbf5a5aa
--- /dev/null
+++ b/source/es/helpcontent2/source/text/schart/01.po
@@ -0,0 +1,3880 @@
+#. extracted from helpcontent2/source/text/schart/01.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fschart%2F01.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"PO-Revision-Date: 2012-08-07 09:17+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 04020000.xhp#tit.help.text
+msgctxt "04020000.xhp#tit.help.text"
+msgid "Legend"
+msgstr "Leyenda"
+
+#: 04020000.xhp#bm_id3156441.help.text
+msgid "<bookmark_value>chart legends; hiding</bookmark_value><bookmark_value>hiding;chart legends</bookmark_value>"
+msgstr "<bookmark_value>leyendas de gráficos; ocultar</bookmark_value><bookmark_value>ocultar;leyendas de gráficos</bookmark_value>"
+
+#: 04020000.xhp#hd_id3156441.1.help.text
+msgctxt "04020000.xhp#hd_id3156441.1.help.text"
+msgid "Legend"
+msgstr "Leyenda"
+
+#: 04020000.xhp#par_id3155413.2.help.text
+msgid "<variable id=\"legende\"><ahelp hid=\".uno:InsertMenuLegend\">Opens the <emph>Legend </emph>dialog, which allows you to change the position of legends in the chart, and to specify whether the legend is displayed.</ahelp></variable>"
+msgstr "<variable id=\"legende\"><ahelp hid=\".uno:InsertMenuLegend\">Abre el cuadro de diálogo <emph>Leyenda</emph> que permite cambiar la posición de las leyendas en el gráfico, así como especificar si se debe mostrar o no la leyenda.</ahelp></variable>"
+
+#: 04020000.xhp#par_id3149124.3.help.text
+msgid "<variable id=\"sytextlegende\"><ahelp hid=\".uno:ToggleLegend\">To show or hide a legend, click <emph>Legend On/Off</emph> on the <emph>Formatting</emph> bar.</ahelp></variable>"
+msgstr "<variable id=\"sytextlegende\"><ahelp hid=\".uno:ToggleLegend\">Para mostrar u ocultar una leyenda, haga clic en <emph>Activar o desactivar leyenda</emph> en la barra de herramientas <emph>Formato</emph>.</ahelp></variable>"
+
+#: 04020000.xhp#par_id3145230.help.text
+msgid "<image id=\"img_id3147346\" src=\"cmd/sc_togglelegend.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147346\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147346\" src=\"cmd/sc_togglelegend.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147346\">Icono</alt></image>"
+
+#: 04020000.xhp#par_id3149207.16.help.text
+msgid "Legend On/Off"
+msgstr "Activar o desactivar leyenda"
+
+#: 04020000.xhp#hd_id3155114.6.help.text
+msgid "Display"
+msgstr "Mostrar"
+
+#: 04020000.xhp#par_id3150206.7.help.text
+msgid "<ahelp hid=\"SCH_CHECKBOX_DLG_LEGEND_CBX_SHOW\">Specifies whether to display a legend for the chart.</ahelp> This option is only visible if you call the dialog by choosing <emph>Insert - Legend</emph>."
+msgstr "<ahelp hid=\"SCH_CHECKBOX_DLG_LEGEND_CBX_SHOW\">Especifica si se debe mostrar una leyenda de un gráfico o no.</ahelp>Esta opción sólo es visible si abre el diálogo, eligiendo para ello <emph>Insertar - Leyenda</emph>."
+
+#: 04020000.xhp#hd_id3150201.4.help.text
+msgid "Position"
+msgstr "Posición"
+
+#: 04020000.xhp#par_id3155376.5.help.text
+msgid "Select the position for the legend:"
+msgstr "Seleccione la posición para la leyenda:"
+
+#: 04020000.xhp#hd_id3152988.8.help.text
+msgid "Left"
+msgstr "Izquierda"
+
+#: 04020000.xhp#par_id3155087.9.help.text
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_LEFT\">Positions the legend at the left of the chart.</ahelp>"
+msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_LEFT\">Muestra la leyenda en la parte izquierda del gráfico.</ahelp>"
+
+#: 04020000.xhp#hd_id3153816.10.help.text
+msgid "Top"
+msgstr "Arriba"
+
+#: 04020000.xhp#par_id3153912.11.help.text
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_TOP\">Positions the legend at the top of the chart.</ahelp>"
+msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_TOP\">Posiciona la leyenda en la parte superior del gráfico.</ahelp>"
+
+#: 04020000.xhp#hd_id3144773.12.help.text
+msgid "Right"
+msgstr "Derecha"
+
+#: 04020000.xhp#par_id3155268.13.help.text
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_RIGHT\">Positions the legend at the right of the chart.</ahelp>"
+msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_RIGHT\">Posiciona la leyenda en la parte derecha del gráfico.</ahelp>"
+
+#: 04020000.xhp#hd_id3152871.14.help.text
+msgid "Bottom"
+msgstr "Abajo"
+
+#: 04020000.xhp#par_id3153249.15.help.text
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_BOTTOM\">Positions the legend at the bottom of the chart.</ahelp>"
+msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_BOTTOM\">Posiciona la leyenda en la parte inferior del gráfico.</ahelp>"
+
+#: 04020000.xhp#hd_id1106200812072645.help.text
+msgid "Text Orientation"
+msgstr "Orientación de texto"
+
+#: 04020000.xhp#par_id1106200812072653.help.text
+msgid "This feature is only available if complex text layout support is enabled in <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages</item>."
+msgstr "Esta opción solo está disponible cuando se habilita la compatibilidad con la disposición compleja de textos en <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - Configuración de idiomas - Idiomas</item>."
+
+#: 04020000.xhp#hd_id1106200812112444.help.text
+msgctxt "04020000.xhp#hd_id1106200812112444.help.text"
+msgid "Text Direction"
+msgstr "Dirección de texto"
+
+#: 04020000.xhp#par_id1106200812112530.help.text
+msgctxt "04020000.xhp#par_id1106200812112530.help.text"
+msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifica la dirección del texto para un párrafo que usa disposición compleja de texto. Esta característica estará disponible únicamente cuando se haya admitido el uso de la disposición compleja de texto.</ahelp>"
+
+#: 05080000.xhp#tit.help.text
+msgctxt "05080000.xhp#tit.help.text"
+msgid "Chart Area"
+msgstr "Área del gráfico"
+
+#: 05080000.xhp#bm_id3149670.help.text
+msgid "<bookmark_value>charts; formatting areas</bookmark_value><bookmark_value>formatting; chart areas</bookmark_value>"
+msgstr "<bookmark_value>gráficos; dar formato a áreas</bookmark_value><bookmark_value>formato; áreas del gráfico</bookmark_value>"
+
+#: 05080000.xhp#hd_id3149670.1.help.text
+msgctxt "05080000.xhp#hd_id3149670.1.help.text"
+msgid "Chart Area"
+msgstr "Área del gráfico"
+
+#: 05080000.xhp#par_id3125864.2.help.text
+msgid "<variable id=\"diagrammflaeche\"><ahelp visibility=\"visible\" hid=\".uno:DiagramArea\">Opens the<emph> Chart Area</emph> dialog, where you can modify the properties of the chart area. The chart area is the background behind all elements of the chart.</ahelp></variable>"
+msgstr "<variable id=\"diagrammflaeche\"><ahelp visibility=\"visible\" hid=\".uno:DiagramArea\">Abre el diálogo <emph>Área del gráfico</emph> donde es posible modificar las propiedades del área del gráfico. El área del gráfico es el fondo que hay detrás de todos los elementos del gráfico.</ahelp></variable>"
+
+#: 05120000.xhp#tit.help.text
+msgid "Arrangement"
+msgstr "Disposición"
+
+#: 05120000.xhp#hd_id3159153.1.help.text
+msgid "<link href=\"text/schart/01/05120000.xhp\" name=\"Arrangement\">Arrangement</link>"
+msgstr "<link href=\"text/schart/01/05120000.xhp\" name=\"Disposición\">Disposición</link>"
+
+#: 05120000.xhp#par_id3145750.2.help.text
+msgid "Allows you to modify the order of the data series already set in the chart."
+msgstr "Permite modificar con posterioridad la posición de las series de datos del gráfico."
+
+#: 05120000.xhp#par_id3155411.8.help.text
+msgid "The position of the data in the data table remains unchanged. You can only choose the commands after inserting a chart in $[officename] Calc."
+msgstr "La posición de los datos dentro de la hoja de datos no se altera. Estos comandos sólo se pueden seleccionar, si se inserta un gráfico en $[officename] Calc."
+
+#: 05120000.xhp#par_id3154757.5.help.text
+msgid "This function is only available if you have data displayed in columns. It is not possible to switch to data display in rows."
+msgstr "Esta función sólo está disponible si hay datos en las columnas. No es posible cambiar a la visualización de datos por filas."
+
+#: 05120000.xhp#hd_id3147339.3.help.text
+msgid "Bring Forward"
+msgstr "Traer adelante"
+
+#: 05120000.xhp#par_id3149259.6.help.text
+msgid "<ahelp hid=\".uno:Forward\">Brings the selected data series forward (to the right).</ahelp>"
+msgstr "<ahelp hid=\".uno:Forward\">Trae adelante la fila de datos seleccionada (a la derecha).</ahelp>"
+
+#: 05120000.xhp#hd_id3146316.4.help.text
+msgid "Send Backward"
+msgstr "Enviar atrás"
+
+#: 05120000.xhp#par_id3147001.7.help.text
+msgid "<ahelp hid=\".uno:Backward\">Sends the selected data series backward (to the left).</ahelp>"
+msgstr "<ahelp hid=\".uno:Backward\">Envía la fila de datos seleccionada hacia atrás (a la izquierda).</ahelp>"
+
+#: 05040100.xhp#tit.help.text
+msgctxt "05040100.xhp#tit.help.text"
+msgid "Axes"
+msgstr "Ejes"
+
+#: 05040100.xhp#bm_id3153768.help.text
+msgid "<bookmark_value>axes;formatting</bookmark_value>"
+msgstr "<bookmark_value>ejes;formato</bookmark_value>"
+
+#: 05040100.xhp#hd_id3153768.1.help.text
+msgctxt "05040100.xhp#hd_id3153768.1.help.text"
+msgid "Axes"
+msgstr "Ejes"
+
+#: 05040100.xhp#par_id3154319.2.help.text
+msgid "<variable id=\"achsen\"><ahelp hid=\".uno:DiagramAxisAll\">Opens a dialog, where you can edit the properties of the selected axis.</ahelp></variable> The name of the dialog depends on the selected axis."
+msgstr "<variable id=\"achsen\"><ahelp hid=\".uno:DiagramAxisAll\">Abre un diálogo, donde puedes editar las propiedades de los ejes seleccionados.</ahelp></variable> El nombre del diálogo depende del eje seleccionado."
+
+#: 05040100.xhp#par_id3149667.3.help.text
+msgid "The <link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">Y axis</link> has an enhanced dialog. For X-Y charts, the X axis chart is also enhanced by the <link href=\"text/schart/01/05040201.xhp\" name=\"Scaling\"><emph>Scaling</emph></link> tab."
+msgstr "El <link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">eje Y</link> dispone de un diálogo ampliado, y el diálogo del eje X en los gráficos X-Y también tiene una ficha adicional denominada <link href=\"text/schart/01/05040201.xhp\" name=\"Scaling\"><emph>Escala</emph></link>."
+
+#: 05040100.xhp#par_id3159266.4.help.text
+msgid "Scaling the X axis is only possible in the X-Y chart type."
+msgstr "Sólo es posible escalar el eje X en el tipo de gráfico X-Y."
+
+#: 05040100.xhp#hd_id3145230.5.help.text
+msgctxt "05040100.xhp#hd_id3145230.5.help.text"
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Caracteres</link>"
+
+#: 04060000.xhp#tit.help.text
+msgid "Options"
+msgstr "Opciones"
+
+#: 04060000.xhp#bm_id3149400.help.text
+msgid "<bookmark_value>aligning; 2D charts</bookmark_value> <bookmark_value>charts; aligning</bookmark_value> <bookmark_value>pie charts;options</bookmark_value>"
+msgstr "<bookmark_value>alineando; gráficos 2D</bookmark_value><bookmark_value>gráficos; alineando</bookmark_value><bookmark_value>pie de gráficos;opciones</bookmark_value>"
+
+#: 04060000.xhp#hd_id3149400.1.help.text
+msgid "<link href=\"text/schart/01/04060000.xhp\" name=\"Options\">Options</link>"
+msgstr "<link href=\"text/schart/01/04060000.xhp\" name=\"Options\">Opciones</link>"
+
+#: 04060000.xhp#par_id3155067.2.help.text
+msgid "Use this dialog to define some options that are available for specific chart types. The contents of the Options dialog vary with the chart type."
+msgstr "Use este diálogo para definir las opciones que están disponibles para los distintos tipos de gráficos. Los contenidos del diálogo Opciones depende del tipo de gráfico."
+
+#: 04060000.xhp#hd_id3150043.9.help.text
+msgid "Align data series to:"
+msgstr "Alinear serie de datos a:"
+
+#: 04060000.xhp#par_id3145228.10.help.text
+msgid "In this area you can choose between two Y axis scaling modes. The axes can only be scaled and given properties separately."
+msgstr "Este área permite elegir entre dos escalas del eje Y. Los ejes sólo pueden ampliarse y se les puede asignar atributos por separado."
+
+#: 04060000.xhp#hd_id3147346.4.help.text
+msgid "Primary Y axis"
+msgstr "Eje-Y primario"
+
+#: 04060000.xhp#par_id3147005.15.help.text
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_1\">This option is active as default. All data series are aligned to the primary Y axis.</ahelp>"
+msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_1\" visibility=\"visible\">Esta opción está activa de manera predeterminada. Todas las series de datos se alinean respecto al eje Y primario.</ahelp>"
+
+#: 04060000.xhp#hd_id3143221.5.help.text
+msgid "Secondary Y axis"
+msgstr "Eje-Y secundario"
+
+#: 04060000.xhp#par_id3154656.11.help.text
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_2\">Changes the scaling of the Y axis. This axis is only visible when at least one data series is assigned to it and the axis view is active.</ahelp>"
+msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_2\" visibility=\"visible\">Controla la escala de los ejes Y. Este eje sólo queda visible si al menos se le asigna una serie de datos y está activa la vista del eje.</ahelp>"
+
+#: 04060000.xhp#hd_id3166423.6.help.text
+msgid "Settings"
+msgstr "Configuración"
+
+#: 04060000.xhp#par_id3150365.12.help.text
+msgid "Define the settings for a bar chart in this area. Any changes apply to all data series of the chart, not to the selected data only."
+msgstr "Definir los valores de un gráfico de barras en esta área. Cualquier cambio se aplica a todas las series de datos del gráfico, no sólo a los datos seleccionados."
+
+#: 04060000.xhp#hd_id3145584.7.help.text
+msgid "Spacing"
+msgstr "Espacio"
+
+#: 04060000.xhp#par_id3155376.13.help.text
+msgid "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_GAP\">Defines the spacing between the columns in percent.</ahelp> The maximal spacing is 600%."
+msgstr "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_GAP\" visibility=\"visible\">Define el espacio entre las columnas en porcentaje.</ahelp> El espacio máximo es 600%."
+
+#: 04060000.xhp#hd_id3145384.8.help.text
+msgctxt "04060000.xhp#hd_id3145384.8.help.text"
+msgid "Overlap"
+msgstr "Sobreponer"
+
+#: 04060000.xhp#par_id3156447.14.help.text
+msgid "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_OVERLAP\">Defines the necessary settings for overlapping data series.</ahelp> You can choose between -100 and +100%."
+msgstr "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_OVERLAP\" visibility=\"visible\">Define los valores necesarios para superponer las series de datos.</ahelp> Puede elegir entre -100 y +100%."
+
+#: 04060000.xhp#hd_id3153305.16.help.text
+msgid "Connection Lines"
+msgstr "Líneas de conexión"
+
+#: 04060000.xhp#par_id3148868.17.help.text
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_OPTIONS:CB_CONNECTOR\">For \"stacked\" and \"percent\" column (vertical bar) charts, mark this check box to connect the column layers that belong together with lines.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_OPTIONS:CB_CONNECTOR\" visibility=\"visible\">En los gráficos de columna (barra verticale) \"apilada\" y \"porcentaje\", marque esta casilla de verificación para unir con una línea los valores de una misma serie de datos.</ahelp>"
+
+#: 04060000.xhp#hd_id9842219.help.text
+msgid "Show bars side by side"
+msgstr "Mostrar las barras juntas"
+
+#: 04060000.xhp#par_id9800103.help.text
+msgid "If two axes are shown in a bar chart, and some data series are attached to the first axis, while some other data series are attached to the second axis, then both sets of data series are shown independently, overlapping each other."
+msgstr "Si se muestran dos ejes en un gráfico de barras, y algunas series de datos están vinculadas al primer eje, mientras que otras series lo están al segundo eje, entonces ambos conjuntos de series de datos se mostrarán independienteme, solapándose uno al otro."
+
+#: 04060000.xhp#par_id2144535.help.text
+msgid "As a result, bars attached to the first y-axis are partly or completely hidden by bars attached to the second y-axis. To avoid this, enable the option to display bars side by side. <ahelp hid=\".\">The bars from different data series are shown as if they were attached only to one axis.</ahelp>"
+msgstr "Como resultado, las barras vinculadas al segundo Eje Y tapan parcial o completamente a las vinculadas al primer Eje Y. Para evitar esto, activar la opción de mostrar las barras juntas. <ahelp hid=\".\">Las barras de las diferentes series de datos se muestran como si estiviesen vinculadas a un solo eje.</ahelp>"
+
+#: 04060000.xhp#hd_id24414.help.text
+msgid "Clockwise direction"
+msgstr "Sentido horario"
+
+#: 04060000.xhp#par_id2527237.help.text
+msgid "Available for pie and donut charts. <ahelp hid=\".\">The default direction in which the pieces of a pie chart are ordered is counterclockwise. Enable the <emph>Clockwise direction</emph> checkbox to draw the pieces in opposite direction.</ahelp>"
+msgstr "Disponible para gráficos circulares y de anillo. <ahelp hid=\".\">El sentido por defecto en el que se ordenan las porciones de un gráfico circular es el contrario al de las agujas del reloj. Active la casilla <emph>Sentido agujas del reloj</emph> para dibujar las porciones en el sentido opuesto.</ahelp>"
+
+#: 04060000.xhp#hd_id401013.help.text
+msgid "Starting angle"
+msgstr "Ángulo de inicio"
+
+#: 04060000.xhp#par_id761131.help.text
+msgid "<ahelp hid=\".\">Drag the small dot along the circle or click any position on the circle to set the starting angle of a pie or donut chart. The starting angle is the mathematical angle position where the first piece is drawn. The value of 90 degrees draws the first piece at the 12 o'clock position. A value of 0 degrees starts at the 3 o'clock position.</ahelp>"
+msgstr "<ahelp hid=\".\">Arrastre el puntito a lo largo del círculo o haga clic en cualquier posición del círculo para configurar el ángulo de inicio de un gráfico circular o de anillo. El ángulo de inicio es la posición matemática del ángulo donde se inicia el dibujo de la primera porción. Un valor de 90 grados dibuja la primera porción en la posición de las 12. Un valor de 0 grados comienza en la posición de las 3.</ahelp>"
+
+#: 04060000.xhp#par_id553910.help.text
+msgid "In 3D pie and donut charts that were created with older versions of the software, the starting angle is 0 degrees instead of 90 degrees. For old and new 2D charts the default starting angle is 90 degrees."
+msgstr "En los gráficos 3D circulares y de anillo creados con versiones antiguas del programa, el ángulo de inicio es de 0 grados en vez de 90 grados. Para gráficos 2D, tanto nuevos como antiguos, el ángulo de inicio por defecto es de 90 grados."
+
+#: 04060000.xhp#par_id1414838.help.text
+msgid "When you change the starting angle or the direction, only current versions of the software show the changed values. Older versions of the software display the same document using the default values: Always counterclockwise direction and a starting value of 90 degrees (2D pie charts) or 0 degrees (3D pie charts)."
+msgstr "Cuando cambia el ángulo de inicio o el sentido, sólo las últimas versiones del programa muestran los cambios. Las versiones antiguas muestran el gráfico usando los valores por defecto: Sentido contrario a las agujas del reloj y ángulo de inicio de 90 grados (gráficos circulares 2D) o 0 grados (gráficos circulares 3D)."
+
+#: 04060000.xhp#hd_id3179723.help.text
+msgctxt "04060000.xhp#hd_id3179723.help.text"
+msgid "Degrees"
+msgstr "Grados"
+
+#: 04060000.xhp#par_id2164067.help.text
+msgid "<ahelp hid=\".\">Enter the starting angle between 0 and 359 degrees. You can also click the arrows to change the displayed value.</ahelp>"
+msgstr "<ahelp hid=\".\">Introduzca el ángulo de inicio entre 0 y 359 grados. También puede hacer clic en las flechas para cambiar el valor mostrado.</ahelp>"
+
+#: 04060000.xhp#hd_id0305200910524613.help.text
+msgid "Plot missing values"
+msgstr "Valores faltantes en gráfica"
+
+#: 04060000.xhp#par_id0305200910524650.help.text
+msgid "Sometimes values are missing in a data series that is shown in a chart. You can select from different options how to plot the missing values. The options are available for some chart types only."
+msgstr "Alguna vez los valores faltan en las series de datos que se muestran en una gráfica. Puedes seleccionar diferentes opciones de como la gráfica hace falta los valores. La opciones están disponibles solo para algunos tipos de gráfica."
+
+#: 04060000.xhp#hd_id0305200910524823.help.text
+msgid "Leave gap"
+msgstr "Dejar salida"
+
+#: 04060000.xhp#par_id0305200910524811.help.text
+msgid "<ahelp hid=\".\">For a missing value, no data will be shown. This is the default for chart types Column, Bar, Line, Net.</ahelp>"
+msgstr "<ahelp hid=\".\">Para los valores faltantes, el valor de y se mostrará como cero de forma predeterminada para gráficas de columna, barras lineas y de red o matriz.</ahelp>"
+
+#: 04060000.xhp#hd_id0305200910524811.help.text
+msgid "Assume zero"
+msgstr "Asumir cero"
+
+#: 04060000.xhp#par_id030520091052489.help.text
+msgid "<ahelp hid=\".\">For a missing value, the y-value will be shown as zero. This is the default for chart type Area.</ahelp>"
+msgstr "<ahelp hid=\".\">Para los valores faltantes, el valor de y se mostrará como cero de forma predeterminada para gráficas de área.</ahelp>"
+
+#: 04060000.xhp#hd_id0305200910524837.help.text
+msgid "Continue line"
+msgstr "Línea continua"
+
+#: 04060000.xhp#par_id0305200910524938.help.text
+msgid "<ahelp hid=\".\">For a missing value, the interpolation from the neighbor values will be shown. This is the default for chart type XY.</ahelp>"
+msgstr "<ahelp hid=\".\">Para los valores faltantes, el valor de y se mostrará como cero de forma predeterminada para gráficas de tipo XY.</ahelp>"
+
+#: 04060000.xhp#hd_id0305200910524937.help.text
+msgid "Include values from hidden cells"
+msgstr "Incluir valores de las celdas ocultas"
+
+#: 04060000.xhp#par_id030520091052494.help.text
+msgid "<ahelp hid=\".\">Check to also show values of currently hidden cells within the source cell range.</ahelp>"
+msgstr "<ahelp hid=\".\">Checa que también muestre valores de celdas ocultas actuales dentro de la fuente de rangos de celda.</ahelp>"
+
+#: type_area.xhp#tit.help.text
+msgid "Chart Type Area"
+msgstr "Gráfico de Tipo Área"
+
+#: type_area.xhp#bm_id4130680.help.text
+msgid "<bookmark_value>area charts</bookmark_value><bookmark_value>chart types;area</bookmark_value>"
+msgstr "<bookmark_value>Gráficos de área</bookmark_value><bookmark_value>tipos de gráficos;área</bookmark_value>"
+
+#: type_area.xhp#hd_id310678.help.text
+msgid "<variable id=\"type_area\"><link href=\"text/schart/01/type_area.xhp\">Chart Type Area</link></variable>"
+msgstr "<variable id=\"type_area\"><link href=\"text/schart/01/type_area.xhp\">Gráfico de tipo Área</link></variable>"
+
+#: type_area.xhp#par_id916776.help.text
+msgctxt "type_area.xhp#par_id916776.help.text"
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type. "
+msgstr "En la primera página del <link href=\"text/schart/01/wiz_chart_type.xhp\">Asistente para gráficos</link> puede escoger un tipo de gráfico."
+
+#: type_area.xhp#hd_id961943.help.text
+msgid "Area"
+msgstr "Área"
+
+#: type_area.xhp#par_id631733.help.text
+msgid "An area chart shows values as points on the y axis. The x axis shows categories. The y values of each data series are connected by a line. The area between each two lines is filled with a color. The area chart's focus is to emphasize the changes from one category to the next."
+msgstr "El area de gráfico muestra valores como puntos en los ejes y. El eje x muestra categorías. El valor y de cada serie de datos son conectados por una linea. El area entre cada dos lineas esta lleno con un color. El area del gráfico se enfoca para enfatizar los cambios desde una categoría a la siguiente."
+
+#: type_area.xhp#par_id7811822.help.text
+msgid "Normal - this subtype plots all values as absolute y values. It first plots the area of the last column in the data range, then the next to last, and so on, and finally the first column of data is drawn. Thus, if the values in the first column are higher than other values, the last drawn area will hide the other areas."
+msgstr "Normal - este subtipo traza todos los valores como valores Y absolutos. Primero dibuja el área de la última columna in el rango de datos, luego la penúltima, continuando así hasta dibujar la primera columna. De esta forma, si los valores de la primera columna son mayores que los otros, la última área dibujada ocultará a las primeras."
+
+#: type_area.xhp#par_id3640247.help.text
+msgid "Stacked - this subtypes plots values cumulatively stacked on each other. It ensures that all values are visible, and no data set is hidden by others. However, the y values no longer represent absolute values, except for the last column which is drawn at the bottom of the stacked areas."
+msgstr "Apilado - este subtipo dibuja los valores apilados unos sobre otros. Esto asegura que todos los valores son visibles, y no hay datos ocultos por otros. Sin embargo, los valores Y no representan valores absolutos, excepto para la última columna la cual es dibujada en la parte inferior de las áreas apiladas."
+
+#: type_area.xhp#par_id4585100.help.text
+msgid "Percent - this subtype plots values cumulatively stacked on each other and scaled as percentage of the category total."
+msgstr "Porcentaje - este subtipo dibuja los valores apilados unos sobre otros y escalados como porcentajes del total de la categoría."
+
+#: type_stock.xhp#tit.help.text
+msgid "Chart Type Stock"
+msgstr "Tipo de gráfico de cotizaciones"
+
+#: type_stock.xhp#bm_id2959990.help.text
+msgid "<bookmark_value>stock charts</bookmark_value> <bookmark_value>chart types;stock</bookmark_value> <bookmark_value>data sources;setting for stock charts</bookmark_value>"
+msgstr "<bookmark_value>gráficos de cotizaciones</bookmark_value><bookmark_value>tipos de gráficos;cotizaciones</bookmark_value><bookmark_value>origen de datos;configuración para el gráfico de cotizaciones</bookmark_value>"
+
+#: type_stock.xhp#hd_id966216.help.text
+msgid "<variable id=\"type_stock\"><link href=\"text/schart/01/type_stock.xhp\">Chart Type Stock</link></variable>"
+msgstr "<variable id=\"type_stock\"><link href=\"text/schart/01/type_stock.xhp\">Tipo de gráfico Cotizaciones</link></variable>"
+
+#: type_stock.xhp#par_id3516953.help.text
+msgctxt "type_stock.xhp#par_id3516953.help.text"
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type. "
+msgstr "En la primera página del <link href=\"text/schart/01/wiz_chart_type.xhp\">Asistente para gráficos</link> puede escoger el tipo de gráfico. "
+
+#: type_stock.xhp#hd_id5268410.help.text
+msgid "Stock"
+msgstr "Cotización"
+
+#: type_stock.xhp#par_id61342.help.text
+msgid "A Stock chart illustrates the market trend given by opening price, bottom price, top price and closing price. The transaction volume can also be shown."
+msgstr "Un gráfico de cotización ilustra la tendencia del mercado dada por una apertura del precio, un precio inferior, un precio superior y el precio de cierre. EL volumen de transacción puede igualmente ser mostrado."
+
+#: type_stock.xhp#par_id2131412.help.text
+msgid "For a Stock chart the order of the data series is important. The data should be arranged as shown in the example table below."
+msgstr "Para un gráfico de cotizaciones el orden de las series de datos es importante. Los datos deben organizarse como se muestra abajo en la tabla de ejemplo."
+
+#: type_stock.xhp#par_id1022064.help.text
+msgid "A"
+msgstr "A"
+
+#: type_stock.xhp#par_id1924192.help.text
+msgid "B"
+msgstr "B"
+
+#: type_stock.xhp#par_id3258156.help.text
+msgid "C"
+msgstr "C"
+
+#: type_stock.xhp#par_id3161412.help.text
+msgid "D"
+msgstr "D"
+
+#: type_stock.xhp#par_id5619373.help.text
+msgid "E"
+msgstr "E"
+
+#: type_stock.xhp#par_id6474501.help.text
+msgid "F"
+msgstr "F"
+
+#: type_stock.xhp#par_id7411725.help.text
+msgid "1"
+msgstr "1"
+
+#: type_stock.xhp#par_id1933957.help.text
+msgid "Transaction volume"
+msgstr "Volumen de transacción"
+
+#: type_stock.xhp#par_id1274452.help.text
+msgid "Opening price"
+msgstr "Precio de apertura"
+
+#: type_stock.xhp#par_id5044404.help.text
+msgid "Low (bottom price)"
+msgstr "Mínimo (precio más bajo)"
+
+#: type_stock.xhp#par_id3892635.help.text
+msgid "High (top price)"
+msgstr "Alto (precio máximo)"
+
+#: type_stock.xhp#par_id4641865.help.text
+msgid "Closing price"
+msgstr "Precio aproximado"
+
+#: type_stock.xhp#par_id7684560.help.text
+msgid "2"
+msgstr "2"
+
+#: type_stock.xhp#par_id3998840.help.text
+msgid "Monday"
+msgstr "Lunes"
+
+#: type_stock.xhp#par_id7675099.help.text
+msgid "2500"
+msgstr "2500"
+
+#: type_stock.xhp#par_id7806329.help.text
+msgctxt "type_stock.xhp#par_id7806329.help.text"
+msgid "20"
+msgstr "20"
+
+#: type_stock.xhp#par_id5589159.help.text
+msgctxt "type_stock.xhp#par_id5589159.help.text"
+msgid "15"
+msgstr "15"
+
+#: type_stock.xhp#par_id9936216.help.text
+msgid "25"
+msgstr "25"
+
+#: type_stock.xhp#par_id7953123.help.text
+msgctxt "type_stock.xhp#par_id7953123.help.text"
+msgid "17"
+msgstr "17"
+
+#: type_stock.xhp#par_id4013794.help.text
+msgid "3"
+msgstr "3"
+
+#: type_stock.xhp#par_id1631824.help.text
+msgid "Tuesday"
+msgstr "Jueves"
+
+#: type_stock.xhp#par_id7271645.help.text
+msgid "3500"
+msgstr "3500"
+
+#: type_stock.xhp#par_id2136295.help.text
+msgctxt "type_stock.xhp#par_id2136295.help.text"
+msgid "32"
+msgstr "32"
+
+#: type_stock.xhp#par_id4186223.help.text
+msgid "22"
+msgstr "22"
+
+#: type_stock.xhp#par_id1491134.help.text
+msgid "37"
+msgstr "37"
+
+#: type_stock.xhp#par_id2873622.help.text
+msgctxt "type_stock.xhp#par_id2873622.help.text"
+msgid "30"
+msgstr "30"
+
+#: type_stock.xhp#par_id2374034.help.text
+msgid "4"
+msgstr "4"
+
+#: type_stock.xhp#par_id1687063.help.text
+msgid "Wednesday"
+msgstr "Miercoles"
+
+#: type_stock.xhp#par_id8982207.help.text
+msgid "1000"
+msgstr "1000"
+
+#: type_stock.xhp#par_id7074190.help.text
+msgctxt "type_stock.xhp#par_id7074190.help.text"
+msgid "15"
+msgstr "15"
+
+#: type_stock.xhp#par_id5452436.help.text
+msgctxt "type_stock.xhp#par_id5452436.help.text"
+msgid "15"
+msgstr "15"
+
+#: type_stock.xhp#par_id9527878.help.text
+msgctxt "type_stock.xhp#par_id9527878.help.text"
+msgid "17"
+msgstr "17"
+
+#: type_stock.xhp#par_id6342356.help.text
+msgctxt "type_stock.xhp#par_id6342356.help.text"
+msgid "17"
+msgstr "17"
+
+#: type_stock.xhp#par_id166936.help.text
+msgid "5"
+msgstr "5"
+
+#: type_stock.xhp#par_id6826990.help.text
+msgid "Thursday"
+msgstr "Jueves"
+
+#: type_stock.xhp#par_id6897183.help.text
+msgid "2200"
+msgstr "2200"
+
+#: type_stock.xhp#par_id7003387.help.text
+msgid "40"
+msgstr "40"
+
+#: type_stock.xhp#par_id4897915.help.text
+msgctxt "type_stock.xhp#par_id4897915.help.text"
+msgid "30"
+msgstr "30"
+
+#: type_stock.xhp#par_id3105868.help.text
+msgid "47"
+msgstr "47"
+
+#: type_stock.xhp#par_id3908810.help.text
+msgid "35"
+msgstr "35"
+
+#: type_stock.xhp#par_id9461653.help.text
+msgid "6"
+msgstr "6"
+
+#: type_stock.xhp#par_id9239173.help.text
+msgid "Friday"
+msgstr "Viernes"
+
+#: type_stock.xhp#par_id2656941.help.text
+msgid "4600"
+msgstr "4600"
+
+#: type_stock.xhp#par_id1481063.help.text
+msgid "27"
+msgstr "27"
+
+#: type_stock.xhp#par_id7921079.help.text
+msgctxt "type_stock.xhp#par_id7921079.help.text"
+msgid "20"
+msgstr "20"
+
+#: type_stock.xhp#par_id636921.help.text
+msgctxt "type_stock.xhp#par_id636921.help.text"
+msgid "32"
+msgstr "32"
+
+#: type_stock.xhp#par_id2799157.help.text
+msgid "31"
+msgstr "31"
+
+#: type_stock.xhp#par_id3004547.help.text
+msgid "The open, low, high, and closing values of a row build together one data unit in the chart. A stock price data series consists of several rows containing such data units. The column containing the transaction volume builds an optional second data series."
+msgstr "La apertura, el bajo, el alto, y el cierre de los valores de una fila constituyen una unidad de datos en el gráfico. Una serie de datos del precio de la acción consiste en varias filas que contienen las unidades de datos. La columna que contiene el volumen de transacción se basa en una segunda serie de datos opcional."
+
+#: type_stock.xhp#par_id6401867.help.text
+msgid "Depending on the chosen variant, you do not need all columns."
+msgstr "Dependiendo del subtipo escogido, es posible que no necesite todas las columnas."
+
+#: type_stock.xhp#hd_id18616.help.text
+msgid "Stock Chart Variants"
+msgstr "Variantes del Gráfico de Cotizaciones"
+
+#: type_stock.xhp#par_id6138492.help.text
+msgid "Choose the <emph>Stock</emph> chart type on the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart wizard</link>. Then select one of the four variants."
+msgstr "Escoger el tipo de gráfico de <emph>Cotizaciones</emph> en la primera página del <link href=\"text/schart/01/wiz_chart_type.xhp\">Asistente para gráficos</link>. Entonces seleccione uno de los cuatro subtipos."
+
+#: type_stock.xhp#hd_id4569231.help.text
+msgid "Type 1"
+msgstr "Tipo 1"
+
+#: type_stock.xhp#par_id291451.help.text
+msgid "Based on<emph> low</emph> <emph>and high </emph>column the Type 1 shows the distance between bottom price (low) and top price (high) by a vertical line."
+msgstr "Sobre la base<emph> baja</emph><emph>y alta </emph>de la columna el Tipo 1 muestra la distancia entre el precio inferior (bajo) y el precio superior (alto) por una línea vertical."
+
+#: type_stock.xhp#par_id3341776.help.text
+msgid "Based on<emph> low, high,</emph> and <emph>close</emph> column Type 1 shows an additional horizontal mark <emph>for</emph> the closing price."
+msgstr "Con base en la columna <emph> bajo, alto,</emph> y <emph>cerrar</emph> de Tipo 1 muestra una marca adicional <emph>para</emph> el precio de cierre."
+
+#: type_stock.xhp#hd_id5947141.help.text
+msgid "Type 2"
+msgstr "Tipo 2"
+
+#: type_stock.xhp#par_id1911679.help.text
+msgid "Based on <emph>open, low, high</emph>, and <emph>close</emph> column Type 2 generates the traditional \"candle stick\" chart. Type 2 draws the vertical line between the bottom and top price and adds a rectangle in front, which visualizes the range between the opening and closing price. If you click on the rectangle you see more information in the status bar. %PRODUCTNAME uses different fill colors for rising values (the opening price is lower than the closing price) and falling values."
+msgstr "Basado en <emph>apertura, mínimo, máximo</emph>, y <emph>cierre</emph> la columna Tipo 2 genera el tradicional gráfico de velas. Tipo 2 traza la línea vertical entre el precio mínimo y el máximo, y superpone un rectángulo, el cual marca el rango entre el precio de apertura y el de cierre. Si hace clic en el rectángulo verá más información en la barra de estado. %PRODUCTNAME utilizas diferentes colores de relleno para los valores crecientes (el precio de apertura es menor que el precio de cierre), y los valores en caída."
+
+#: type_stock.xhp#hd_id9364909.help.text
+msgid "Type 3"
+msgstr "Tipo 3"
+
+#: type_stock.xhp#par_id4473403.help.text
+msgid "Based on <emph>volume, low, high</emph>, and <emph>close</emph> column chart Type 3 draws a chart like Type 1, with additional columns for the transaction volume."
+msgstr "Basado en <emph>volumen, bajo, alto</emph>, y <emph>cierre</emph> columna gráfica Tipo 3 dibuja una gráfica como el Tipo 1, con columnas adicional para el volumen de la transacción."
+
+#: type_stock.xhp#hd_id4313791.help.text
+msgid "Type 4"
+msgstr "Tipo 4"
+
+#: type_stock.xhp#par_id4331797.help.text
+msgid "Based on all five data columns <emph>volume, open, low, high</emph>, and <emph>close</emph>, Type 4 combines a chart of Type 2 with a column chart for the transaction volume."
+msgstr "Basada en los 5 columnas de datos: <emph>volumen, apertura, bajo, alto</emph>, y<emph>cierre</emph>, el Tipo 4 se combina un gráfico del Tipo 2 con un gráfico de columna para el volumen de la transacción."
+
+#: type_stock.xhp#par_id4191717.help.text
+msgid "Because measurement for transaction volume might be \"units\", a second y axis is introduced in chart Type 3 and Type 4. The price axis is shown on the right side and the volume axis on the left side."
+msgstr "Debido a que la medida para transacción puede ser \"unidades\", se introduce un segundo eje Y in los gráficos de tipo 2 y tipo 3. El eje de precio se muestra a la derecha y el eje de volumen a la izquierda."
+
+#: type_stock.xhp#hd_id2318796.help.text
+msgid "Setting the Data Source"
+msgstr "Configurando fuentes de datos"
+
+#: type_stock.xhp#hd_id399182.help.text
+msgid "Charts based on its own data"
+msgstr "Gráfico basado en sus propios datos"
+
+#: type_stock.xhp#par_id5298318.help.text
+msgid "To change the data series of a chart having its own data, choose <link href=\"text/schart/01/03010000.xhp\">Chart Data Table</link> from the View menu or from the context menu of the chart in edit mode."
+msgstr "Para cambiar las series de datos de un gráfico que tiene sus propios datos, escoger <link href=\"text/schart/01/03010000.xhp\">Tabla de datos del gráfico</link> desde el menú Ver o desde el menú contextual del gráfico en modo edición."
+
+#: type_stock.xhp#par_id7588732.help.text
+msgid "In an embedded chart data table, the data series are always organized in columns."
+msgstr "En una tabla de datos incrustada, las series de datos son organizada siempre en columnas."
+
+#: type_stock.xhp#par_id95828.help.text
+msgid "For a new stock chart first use a column chart. Add the columns you need and enter your data in the order which is shown in the example, omitting any columns not required for the desired variant. Use Move Series Right to change the column order. Close the chart data table. Now use the Chart Type dialog to change to the stock chart variant. "
+msgstr "Para nuevos gráficos de cotizaciones use el gráfico de columnas. Agregue las columnas que necesite y entre los datos en el orden que se muestran en el ejemplo, omitiendo cualquier columna no necesaria para la variación deseada. Use Mover Series a la derecha para cambiar el orden de las columnas. Cierre la tabla de datos del gráfico. Ahora use el diálogo Tipo de Gráfico para cambiarlo al gráfico variante de cotizaciones. "
+
+#: type_stock.xhp#par_id6182744.help.text
+msgid "If you have already got a stock chart and you want to change the variant, then first change the chart type to a column chart, add or remove columns so that it fits to the variant, and then change the chart type back to a stock chart."
+msgstr "Si ya tiene un gráfico de cotizaciones y quiere cambiar de subtipo, primero debe cambiar a un gráfico de columnas, añadir o quitar las columnas necesarias para el nuevo subtipo, y por último volver a cambiar el tipo de gráfico a gráfico de cotizaciones."
+
+#: type_stock.xhp#par_id3496200.help.text
+msgid "Do not write the name of a data series in a row. Write the name into the field above the role name."
+msgstr "No escribir el nombre de una serie de datos en una fila. Escribir el nombre en el campo por encima del nombre de rol."
+
+#: type_stock.xhp#par_id7599108.help.text
+msgid "The order of the rows determines how the categories are arranged in the chart. Use Move Row Down to change the order."
+msgstr "El orden de las filas determina como son organizadas las categorías en el gráfico. Use mover filas abajo para cambiar el orden."
+
+#: type_stock.xhp#hd_id888698.help.text
+msgid "Charts based on Calc or Writer tables"
+msgstr "Gráficos basados en tablas de Calc o Writer"
+
+#: type_stock.xhp#par_id3394573.help.text
+msgid "You can choose or alter a data range on the second page of the Chart wizard or in the <link href=\"text/schart/01/wiz_data_range.xhp\">Data Range</link> dialog. For fine tuning use the <link href=\"text/schart/01/wiz_data_series.xhp\">Data Series</link> dialog."
+msgstr "Puede escoger o modificar el rango de datos en la segunda página del Asistente para gráficos o en el diálogo <link href=\"text/schart/01/wiz_data_range.xhp\">Rango de datos</link>. Para un ajuste más detallado use el diálogo <link href=\"text/schart/01/wiz_data_series.xhp\">Series de datos</link>."
+
+#: type_stock.xhp#par_id7594225.help.text
+msgid "To specify a data range do one of the following:"
+msgstr "Para especificar un rango de datos haga uno de lo siguientes:"
+
+#: type_stock.xhp#par_id5081637.help.text
+msgctxt "type_stock.xhp#par_id5081637.help.text"
+msgid "Enter the data range in the text box."
+msgstr "Introduza el rango de datos en la caja de texto."
+
+#: type_stock.xhp#par_id9759514.help.text
+msgctxt "type_stock.xhp#par_id9759514.help.text"
+msgid "In Calc, an example data range would be \"$Sheet1.$B$3:$B$14\". Note that a data range may consist of more than one region in a spreadsheet, e.g. \"$Sheet1.A1:A5;$Sheet1.D1:D5\" is also a valid data range. In Writer, an example data range would be \"Table1.A1:E4\"."
+msgstr "En Calc, un ejemplo de rango de datos puede ser \"$Hoja1.$B$3:$B$14\". Note que un rango de datos puede contener más de una región en una hoja de cálculo, e.g. \"$Hoja1.A1:A5;$Hoja1.D1:D5\" es también un rango de datos válido. En Writer, un ejemplo de rango de datos sería \"Tabla1.A1:E4\"."
+
+#: type_stock.xhp#par_id1614429.help.text
+msgid "As long as the syntax is not correct, %PRODUCTNAME shows the text in red."
+msgstr "Mientras la sintaxis no sea correcta, %PRODUCTNAME muestra el texto en rojo."
+
+#: type_stock.xhp#par_id1589098.help.text
+msgid "In Calc, click <emph>Select data range</emph> to minimize the dialog, then drag to select the data range. When you release the mouse, the data are entered. Click <emph>Select </emph> <emph>data range</emph> again to add a data range. In the input field of the minimized dialog, click after the entry and type a semicolon. Then drag to select the next range."
+msgstr "En Calc, haga clic en <emph>Seleccionar rango de datos</emph> para minimizar el dialogo, después arrastre el ratón para seleccionar el rango de datos. Cuando suelte el ratón, los datos son introducidos. Haga clic en<emph>Seleccionar rango de datos</emph> otra vez para añadir un rango de datos. En el campo de entrada del dialogo minimizar, haga clic después de la entrada de datos y el punto y coma. Posteriormente arrastre para seleccionar el siguiente rango."
+
+#: type_stock.xhp#par_id8746910.help.text
+msgid "Click one of the options for data series in rows or in columns. "
+msgstr "Haz clic en una de las opciones para las series de datos en filas o en columnas"
+
+#: type_stock.xhp#par_id9636524.help.text
+msgid "Your stock chart data are \"in columns\", if the information in a row belongs to the same \"candle stick\"."
+msgstr "Sus datos del gráfico cotizaciones están \"en columnas\", si la información en una fila pertenece al mismo \"candle stick\"."
+
+#: type_stock.xhp#hd_id5675527.help.text
+msgid "Fine Tuning the Data Ranges of Table Based Stock Charts"
+msgstr "Ajustar los Rangos de Datos de los gráficos de cotizaciones basados en las tablas de datos"
+
+#: type_stock.xhp#par_id3486434.help.text
+msgid "You can organize data series and edit the source for parts of single data series on the third page of the Chart wizard or on the page Data Series in the Data Range dialog."
+msgstr "Puede organizar las series de datos y editar la fuente utilizando cada una de las series de datos en la tercera página del Asistente para gráficos o en la página Series de datos en el diálogo Rango de datos."
+
+#: type_stock.xhp#hd_id3068636.help.text
+msgid "Organize Data Series"
+msgstr "Organizar series de datos"
+
+#: type_stock.xhp#par_id2480849.help.text
+msgid "In the <emph>data series</emph> area on the left side of the dialog, you can organize the data series of the actual chart. A stock chart has at least one data series containing the prices. It might have a second data series for transaction volume."
+msgstr "En la área del <emph>series de datos</emph> al lado izquierda del dialogo, puede organizar los series de datos del gráfico actual. Un gráfico de acciones tiene por lo menos un series de datos con precios. Puede tener un segundo series de datos para el volumen de la transacción."
+
+#: type_stock.xhp#par_id4181951.help.text
+msgid "If you have got more than one price data series, use the Up and Down arrow buttons to order them. The order determines the arrangement in the chart. Do the same for volume data series. You cannot switch price and volume data series."
+msgstr "Si tienes mas de una pieza de series de datos, usa las teclas de dirección Arriba y Abajo para ordenarlas. Para determinar la organización en la gráfica. Haga lo mismo a las series de volumenes de datos. No podrá cambiar el precio o el volumen de estas series de datos."
+
+#: type_stock.xhp#par_id2927335.help.text
+msgid "To remove a data series, select the data series in the list and click <emph>Remove</emph>."
+msgstr "Para eliminar la serie de datos, selecciona la serie de datos de la lista y haz clic en <emph>Eliminar</emph>."
+
+#: type_stock.xhp#par_id2107303.help.text
+msgid "To add a data series, select one of the existing data series and click <emph>Add</emph>. You get an empty entry below the selected one, which has the same type. If you have no price data series or no volume data series, you must first select a range for these series in the <emph>Data Range</emph> dialog."
+msgstr "Para seleccionar la serie de datos, selecciona una de los datos existentes y haz clic en <emph>Agregar</emph>. Obtendras una entrada vacia debajo de la seleccionada, el cual tiene el mismo tipo. Si no tienes precio en la serie de datas o sin volumenes de series de datos, debes primero seleccionar a estas series en el diálogo de <emph>Rango de datos</emph>."
+
+#: type_stock.xhp#hd_id4071779.help.text
+msgid "Setting Data Ranges"
+msgstr "Configurando rangos de datos"
+
+#: type_stock.xhp#par_id7844477.help.text
+msgid "In the <emph>Data Ranges</emph> dialog you can set or change the data range of each component of the selected data series."
+msgstr "En el diálogo de <emph>Rangos de datos</emph> podrás configurar o cambiar los rangos de datos en cada componente de las series de datos seleccionados."
+
+#: type_stock.xhp#par_id6478469.help.text
+msgid "In the upper list you see the role name of the components and the current values. When you have selected a role, you can change the value in the text box below the list. The label shows the selected role."
+msgstr "En la parte superior superior de la lista veras el nombre del rol en el componente y los valores actuales. Cuando hayas seleccionado n rol, puedes cambiar el valor dentro de la caja de texto abajo en la lista. La etiqueta se muestra en los roles seleccionado."
+
+#: type_stock.xhp#par_id9038972.help.text
+msgid "Enter the range into the text box or click on <emph>Select data range</emph> to minimize the dialog and select the range with the mouse."
+msgstr "Indicar el rango en la caja de texto o hacer clic en <emph>Seleccionar rango de datos</emph> para minimizar el diálogo y seleccionar el rango con el ratón."
+
+#: type_stock.xhp#par_id7985168.help.text
+msgid "Select Open Values, Close Values, High Values, and Low Values in any order. Specify only the ranges for those roles which you need for the chosen variant of the stock chart. The ranges need not be next to each other in the table."
+msgstr "Seleccione Valores Abiertos, Valores Cerrados, Valores Altos, y Valore Bajos en cualquier orden. Especifique únicamente los rangos para estos roles que necesite para la variante elegida del gráfico de cotización. Los rangos no necesitan estar uno junto al otro en la tabla."
+
+#: type_stock.xhp#hd_id876186.help.text
+msgctxt "type_stock.xhp#hd_id876186.help.text"
+msgid "Legend"
+msgstr "Leyenda"
+
+#: type_stock.xhp#par_id3939634.help.text
+msgid "The legend displays the labels from the first row or column or from the special range that you have set in the <emph>Data Series</emph> dialog. If your chart does not contain labels, the legend displays text like \"Row 1, Row 2, ...\", or \"Column A, Column B, ...\" according to the row number or column letter of the chart data."
+msgstr "La leyenda se muestra de la primera fila o del rango especial que ha sido configurado en el diálogo de <emph>Series de datos</emph>. Si tu grafica no tiene las etiquetas, la leyenda desplega el texto \"Fila 1, Fila 2, ...\", o \"Columna A, Columna B, ...\" de acuerdo al número de fila o en la letra de columna o del gráfica de datos."
+
+#: type_stock.xhp#par_id2377697.help.text
+msgid "The legend shows the value from the range, which you entered in the <emph>Range for Name</emph> field in the <emph>Data Range</emph> dialog. The default entry is the column header of the closing price column."
+msgstr "La leyenda muestra el valor de los rangos, el cual ingresa dentro del campo del diálogo <emph>rango para nombres</emph>. La entrada predeterminado en el encabezado de la columna del ciere del precio de la columna."
+
+#: type_stock.xhp#par_id2188787.help.text
+msgctxt "type_stock.xhp#par_id2188787.help.text"
+msgid "Select one of the position options. When the chart is finished, you can specify other positions using the Format menu."
+msgstr "Seleccione una de las opciones de posición. Cuando el gráfico se finalice, puede especificar otras posiciones utilizando el menú Formato."
+
+#: choose_chart_type.xhp#tit.help.text
+msgid "Choosing a Chart Type"
+msgstr "Seleccionar un tipo de gráfico"
+
+#: choose_chart_type.xhp#hd_id9072237.help.text
+msgid "<variable id=\"choose_chart_type\"><link href=\"text/schart/01/choose_chart_type.xhp\">Choosing a Chart Type</link></variable>"
+msgstr "<variable id=\"choose_chart_type\"><link href=\"text/schart/01/choose_chart_type.xhp\">Elegir un Tipo de gráfico</link></variable>"
+
+#: choose_chart_type.xhp#par_id7085787.help.text
+msgctxt "choose_chart_type.xhp#par_id7085787.help.text"
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type. "
+msgstr "En la primera página del <link href=\"text/schart/01/wiz_chart_type.xhp\">Asistente para gráficos</link> puede elegir un tipo de gráfico. "
+
+#: choose_chart_type.xhp#hd_id6820886.help.text
+msgid "The available chart types"
+msgstr "Tipos de gráficos disponibles"
+
+#: choose_chart_type.xhp#par_id7309488.help.text
+msgid "Choose from the following chart types, depending on data type and intended presentation effect."
+msgstr "Escoger entre los siguientes tipos de gráficos, dependiendo de los tipos de datos y los efectos de presentación "
+
+#: choose_chart_type.xhp#par_id4673604.help.text
+msgid "<image id=\"img_id3145172\" src=\"chart2/res/columns_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_id3145172\">Icon</alt></image> and <image id=\"Graphic8\" src=\"chart2/res/bar_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145172\" src=\"chart2/res/columns_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_id3145172\">Icono</alt></image> y <image id=\"Graphic8\" src=\"chart2/res/bar_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icono</alt></image>"
+
+#: choose_chart_type.xhp#par_id2586138.help.text
+msgid "<link href=\"text/schart/01/type_column_bar.xhp\">Column or Bar</link>"
+msgstr "<link href=\"text/schart/01/type_column_bar.xhp\">Columna o Barra</link>"
+
+#: choose_chart_type.xhp#par_id4343394.help.text
+msgid "<image id=\"Graphic2\" src=\"chart2/res/pie_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr "<image id=\"Graphic2\" src=\"chart2/res/pie_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Ícono</alt></image>"
+
+#: choose_chart_type.xhp#par_id3859065.help.text
+msgid "<link href=\"text/schart/01/type_pie.xhp\">Pie</link>"
+msgstr "<link href=\"text/schart/01/type_pie.xhp\">Círculo</link>"
+
+#: choose_chart_type.xhp#par_id292672.help.text
+msgid "<image id=\"Graphic21\" src=\"chart2/res/areas_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr "<image id=\"Graphic21\" src=\"chart2/res/areas_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icono</alt></image>"
+
+#: choose_chart_type.xhp#par_id4043092.help.text
+msgid "<link href=\"text/schart/01/type_area.xhp\">Area</link>"
+msgstr "<link href=\"text/schart/01/type_area.xhp\">Área</link>"
+
+#: choose_chart_type.xhp#par_id2578814.help.text
+msgid "<image id=\"Graphic3\" src=\"chart2/res/nostackdirectboth_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr "<image id=\"Graphic3\" src=\"chart2/res/nostackdirectboth_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icono</alt></image>"
+
+#: choose_chart_type.xhp#par_id4660481.help.text
+msgid "<link href=\"text/schart/01/type_line.xhp\">Line</link>"
+msgstr "<link href=\"text/schart/01/type_line.xhp\">Linea</link>"
+
+#: choose_chart_type.xhp#par_id3946653.help.text
+msgid "<image id=\"Graphic4\" src=\"chart2/res/valueaxisdirectpoints_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr "<image id=\"Graphic4\" src=\"chart2/res/valueaxisdirectpoints_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icono</alt></image>"
+
+#: choose_chart_type.xhp#par_id5882747.help.text
+msgid "<link href=\"text/schart/01/type_xy.xhp\">XY (scatter)</link>"
+msgstr "<link href=\"text/schart/01/type_xy.xhp\">XY (disperso)</link>"
+
+#: choose_chart_type.xhp#par_id0526200904431454.help.text
+msgid "<image id=\"graphics1\" src=\"chart2/res/bubble_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr "<image id=\"graphics1\" src=\"chart2/res/bubble_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icono</alt></image>"
+
+#: choose_chart_type.xhp#par_id0526200904431497.help.text
+msgid "<link href=\"text/schart/01/type_bubble.xhp\">Bubble</link>"
+msgstr "<link href=\"text/schart/01/type_bubble.xhp\">Burbuja</link>"
+
+#: choose_chart_type.xhp#par_id8752403.help.text
+msgid "<image id=\"Graphic5\" src=\"chart2/res/net_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr "<image id=\"Graphic5\" src=\"chart2/res/net_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icono</alt></image>"
+
+#: choose_chart_type.xhp#par_id8425550.help.text
+msgid "<link href=\"text/schart/01/type_net.xhp\">Net</link>"
+msgstr "<link href=\"text/schart/01/type_net.xhp\">Red</link>"
+
+#: choose_chart_type.xhp#par_id1846369.help.text
+msgid "<image id=\"Graphic6\" src=\"chart2/res/stock_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr "<image id=\"Graphic6\" src=\"chart2/res/stock_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icono</alt></image>"
+
+#: choose_chart_type.xhp#par_id1680654.help.text
+msgid "<link href=\"text/schart/01/type_stock.xhp\">Stock</link>"
+msgstr "<link href=\"text/schart/01/type_stock.xhp\">Cotización</link>"
+
+#: choose_chart_type.xhp#par_id1592150.help.text
+msgid "<image id=\"Graphic7\" src=\"chart2/res/columnline_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr "<image id=\"Graphic7\" src=\"chart2/res/columnline_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icono</alt></image>"
+
+#: choose_chart_type.xhp#par_id3308816.help.text
+msgid "<link href=\"text/schart/01/type_column_line.xhp\">Column and Line</link>"
+msgstr "<link href=\"text/schart/01/type_column_line.xhp\">Columna y línea</link>"
+
+#: choose_chart_type.xhp#par_id8174687.help.text
+msgid " "
+msgstr " "
+
+#: 05050000.xhp#tit.help.text
+msgctxt "05050000.xhp#tit.help.text"
+msgid "Grid"
+msgstr "Cuadrícula"
+
+#: 05050000.xhp#bm_id3155602.help.text
+msgid "<bookmark_value>grids; formatting axes</bookmark_value><bookmark_value>axes; formatting grids</bookmark_value>"
+msgstr "<bookmark_value>cuadrículas; formato de ejes</bookmark_value><bookmark_value>ejes; formato de cuadrículas</bookmark_value>"
+
+#: 05050000.xhp#hd_id3155602.1.help.text
+msgid "<link href=\"text/schart/01/05050000.xhp\" name=\"Grid\">Grid</link>"
+msgstr "<link href=\"text/schart/01/05050000.xhp\" name=\"Grid\">Cuadrícula</link>"
+
+#: 05050000.xhp#par_id3155764.2.help.text
+msgid "Opens a submenu, where you select the grid you want to format."
+msgstr "Abre un submenú donde es posible seleccionar la cuadrícula que se desea formatear."
+
+#: 05050000.xhp#hd_id3150045.3.help.text
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Major Grid\">X Axis Major Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Major Grid\">Cuadrícula principal X</link>"
+
+#: 05050000.xhp#hd_id3145228.4.help.text
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Major Grid\">Y Axis Major Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Major Grid\">Cuadrícula principal Eje Y</link>"
+
+#: 05050000.xhp#hd_id3147346.5.help.text
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis Major Grid\">Z Axis Major Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis Major Grid\">Cuadrícula principal Z</link>"
+
+#: 05050000.xhp#hd_id3154021.6.help.text
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Minor Grid\">X Axis Minor Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Minor Grid\">Cuadrícula auxiliar X</link>"
+
+#: 05050000.xhp#hd_id3150307.7.help.text
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Minor Grid\">Y Axis Minor Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Minor Grid\">Cuadrícula auxiliar Y</link>"
+
+#: 05050000.xhp#hd_id3166428.8.help.text
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis minor Grid\">Z Axis minor Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis minor Grid\">Cuadrícula auxiliar Z</link>"
+
+#: 05050000.xhp#hd_id3145585.9.help.text
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"All Axis Grids\">All Axis Grids</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"All Axis Grids\">Todas las cuadrículas de ejes</link>"
+
+#: type_column_line.xhp#tit.help.text
+msgid "Chart Type Column and Line "
+msgstr "Gráfico de tipo de columnas y lineas "
+
+#: type_column_line.xhp#bm_id5976744.help.text
+msgid "<bookmark_value>column and line charts</bookmark_value><bookmark_value>chart types;column and line</bookmark_value><bookmark_value>combination charts</bookmark_value>"
+msgstr "<bookmark_value>gráficos de columna y línea</bookmark_value><bookmark_value>tipos de gráfico;columna y línea</bookmark_value><bookmark_value>gráficos combinados </bookmark_value>"
+
+#: type_column_line.xhp#hd_id8596453.help.text
+msgid "<variable id=\"type_column_line\"><link href=\"text/schart/01/type_column_line.xhp\">Chart Type Column and Line</link></variable>"
+msgstr "<variable id=\"type_column_line\"><link href=\"text/schart/01/type_column_line.xhp\">Tipo de gráfico de Columna y Línea</link></variable>"
+
+#: type_column_line.xhp#par_id4818567.help.text
+msgctxt "type_column_line.xhp#par_id4818567.help.text"
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type. "
+msgstr "En la priner pagina del <link href=\"text/schart/01/wiz_chart_type.xhp\">Asistente para gráficos</link> podrá escoger el tipo de gráfico. "
+
+#: type_column_line.xhp#hd_id2451551.help.text
+msgid "Column and Line"
+msgstr "Linea y Columna"
+
+#: type_column_line.xhp#par_id3101901.help.text
+msgid "A Column and Line chart is a combination of a <link href=\"text/schart/01/type_column_bar.xhp\">Column chart</link> with a <link href=\"text/schart/01/type_line.xhp\">Line chart</link>."
+msgstr "Una columna y gráfica de linea es una combinación de <link href=\"text/schart/01/type_column_bar.xhp\">gráfica de columna</link> con una <link href=\"text/schart/01/type_line.xhp\">gráfica de linea</link>."
+
+#: type_column_line.xhp#par_id7910397.help.text
+msgid "Select one of the variants"
+msgstr "Selecciona una de las variantes"
+
+#: type_column_line.xhp#par_id5244300.help.text
+msgid "Columns and Lines. The rectangles of the column data series are drawn side by side so that you can easily compare their values."
+msgstr "Lineas y columnas. Los rectangulos de las series de columnas de datos son puestas lado a lado para que puedas comparar los valores fácilmente."
+
+#: type_column_line.xhp#par_id7163609.help.text
+msgid "Stacked Columns and Lines. The rectangles of the column data series are drawn stacked above each other, so that the height of a column visualizes the sum of the data values."
+msgstr "Columnas y lineas apliladas. Los rectangulos de las series de datos de columnas son puestas apiladas una sobre otra, para que la altura de la columna visualize la suma de los valores de datos."
+
+#: type_column_line.xhp#par_id1842097.help.text
+msgid "You can insert a second y-axis with <link href=\"text/schart/01/04040000.xhp\">Insert - Axes</link> after you finish the wizard."
+msgstr "Puede insertar un segundo eje Y con <link href=\"text/schart/01/04040000.xhp\">Insertar - Ejes</link> después de finalizar el asistente."
+
+#: type_column_line.xhp#hd_id8297677.help.text
+msgctxt "type_column_line.xhp#hd_id8297677.help.text"
+msgid "To specify a data range"
+msgstr "Para especificar un rango de datos"
+
+#: type_column_line.xhp#par_id8871120.help.text
+msgid "The leftmost columns (or the top rows) of the selected data range provide the data that are shown as Columns objects. The other columns or rows of the data range provide the data for the Lines objects. You can change this assignment in the <emph>Data Series</emph> dialog."
+msgstr "Las columnas de la izquierda (o las filas superiores) del rango de datos seleccionados proporcionan los datos que son mostrados como objetos de Columnas. Las otras columnas o filas del rango de datos proporcionan los datos para las objetos de Líneas. Usted puede cambiar esta sesión en el diálogo de <emph>Serie de datos</emph>."
+
+#: type_column_line.xhp#par_id2952055.help.text
+msgid "Select the data range."
+msgstr "Selecciona el rango de datos."
+
+#: type_column_line.xhp#par_id594500.help.text
+msgctxt "type_column_line.xhp#par_id594500.help.text"
+msgid "Click one of the options for data series in rows or in columns."
+msgstr "Haga clic en una de las opciones para obtener las series de datos en filas o en columnas."
+
+#: type_column_line.xhp#par_id1944944.help.text
+msgctxt "type_column_line.xhp#par_id1944944.help.text"
+msgid "Check whether the data range has labels in the first row or in the first column or both."
+msgstr "Marque si el rango de datos tiene las etiquetas en la primera fila, en la primera columna o en ambas."
+
+#: type_column_line.xhp#hd_id6667683.help.text
+msgctxt "type_column_line.xhp#hd_id6667683.help.text"
+msgid "Organizing data series"
+msgstr "Organizando series de datos"
+
+#: type_column_line.xhp#par_id7616809.help.text
+msgctxt "type_column_line.xhp#par_id7616809.help.text"
+msgid "In the Data Series list box you see a list of all data series in the current chart."
+msgstr "En la caja de listas de series de datos veras una lista de todas las series de datos dentro de gráfica actual."
+
+#: type_column_line.xhp#par_id9770195.help.text
+msgid "The column data series are positioned at the top of the list, the line data series at the bottom of the list."
+msgstr "Las series de columnas de datos son posicionados en la parte superior de una lista, la linea de series de datos en el fondo de de la lista."
+
+#: type_column_line.xhp#par_id1446272.help.text
+msgctxt "type_column_line.xhp#par_id1446272.help.text"
+msgid "To organize the data series, select an entry in the list."
+msgstr "Para organizar la serie de datos, selecciona una entrada en una lista."
+
+#: type_column_line.xhp#par_id3779717.help.text
+msgctxt "type_column_line.xhp#par_id3779717.help.text"
+msgid "Click Add to add another data series below the selected entry. The new data series has the same type as the selected entry."
+msgstr "Haga clic en agregar para agregar otra serie de datos debajo de la entrada seleccionada. Los nuevos series de datos tendran los mismos tipos de entradas seleccionados."
+
+#: type_column_line.xhp#par_id5056611.help.text
+msgctxt "type_column_line.xhp#par_id5056611.help.text"
+msgid "Click Remove to remove the selected entry from the Data Series list."
+msgstr "Haga clic en eliminar para eliminar la entrada seleccionada de las listas de series de datos."
+
+#: type_column_line.xhp#par_id7786492.help.text
+msgid "Use the Up and Down arrow buttons to move the selected entry in the list up or down. This way you can convert a Column data series to a List data series and back. This does not change the order in the data source table, but changes only the arrangement in the chart."
+msgstr "Use las Flechas hacia arriba y hacia abajo para mover la entrada seleccionada en la lista hacia arriba o hacia abajo. De esta manera puede convertir una Columna de la serie de datos en una Lista y viceversa. Esto no cambia el orden en la tabla original de los datos, sólo su disposición en el gráfico."
+
+#: type_column_line.xhp#hd_id265816.help.text
+msgctxt "type_column_line.xhp#hd_id265816.help.text"
+msgid "Editing data series"
+msgstr "Editando series de datos"
+
+#: type_column_line.xhp#par_id6768700.help.text
+msgctxt "type_column_line.xhp#par_id6768700.help.text"
+msgid "Click an entry in the list to view and edit the properties for that entry."
+msgstr "Haga clic en una entrada de la lista para ver y editar las propiedades para esa entrada."
+
+#: type_column_line.xhp#par_id1924497.help.text
+msgctxt "type_column_line.xhp#par_id1924497.help.text"
+msgid "In the Data Ranges list box you see the role names and cell ranges of the data series components. "
+msgstr "En el cuadro de lista Rango de Datos puede ver los nombres y rangos de celdas de las series de datos del gráfico. "
+
+#: type_column_line.xhp#par_id5081942.help.text
+msgctxt "type_column_line.xhp#par_id5081942.help.text"
+msgid "Click an entry, then edit the contents in the text box below. "
+msgstr "Haga clic en una entrada, entonces edite el contenido de la caja de textoque esta debajo."
+
+#: type_column_line.xhp#par_id2958464.help.text
+msgctxt "type_column_line.xhp#par_id2958464.help.text"
+msgid "The label next to the text box states the currently selected role. "
+msgstr "La etiqueta despues de la caja de texto muestra los roles seleccionados."
+
+#: type_column_line.xhp#par_id883816.help.text
+msgctxt "type_column_line.xhp#par_id883816.help.text"
+msgid "Enter the range or click <emph>Select data range</emph> to minimize the dialog and select the range with the mouse."
+msgstr "Introduzca el rango o haga clic en <emph>Seleccionar rango de datos</emph> para minimizar el diálogo y seleccionar el rango con el ratón."
+
+#: type_column_line.xhp#par_id5091708.help.text
+msgctxt "type_column_line.xhp#par_id5091708.help.text"
+msgid "The range for a data role, like Y-Values, must not include a label cell."
+msgstr "Los rangos para un rol de datos, tales como Valores Y, no debe incluir una etiqueta de celda."
+
+#: type_column_line.xhp#hd_id974456.help.text
+msgctxt "type_column_line.xhp#hd_id974456.help.text"
+msgid "Editing categories or data labels"
+msgstr "Editando categorías o etiquetas de datos"
+
+#: type_column_line.xhp#par_id2767113.help.text
+msgctxt "type_column_line.xhp#par_id2767113.help.text"
+msgid "Enter or select a cell range that will be used as text for categories or data labels. "
+msgstr "Ingresa o selecciona un rango de celdas que sera usada como texto o categorias o etiqueta de datos."
+
+#: type_column_line.xhp#par_id301828.help.text
+msgid "The values in the Categories range will be shown as labels on the x axis."
+msgstr "Los valores de los rangos de categorías seran mostrado como etiquetas en el eje x."
+
+#: type_column_line.xhp#hd_id8996246.help.text
+msgid "Inserting chart elements"
+msgstr "Insertando elementos de gráfico"
+
+#: type_column_line.xhp#par_id5729544.help.text
+msgid "Use the Chart Elements page of the Chart Wizard to insert any of the following elements:"
+msgstr "Usa la página de elementos gráficos del Asistente para gráficos para insertar alguno de los elementos próximos:"
+
+#: type_column_line.xhp#par_id2932828.help.text
+msgid "Chart titles"
+msgstr "Titulos de gráfico"
+
+#: type_column_line.xhp#par_id9449446.help.text
+msgctxt "type_column_line.xhp#par_id9449446.help.text"
+msgid "Legend"
+msgstr "Leyenda"
+
+#: type_column_line.xhp#par_id8122196.help.text
+msgid "Visible grid lines"
+msgstr "Cuadricula visible"
+
+#: type_column_line.xhp#par_id9909665.help.text
+msgctxt "type_column_line.xhp#par_id9909665.help.text"
+msgid "For additional elements use the Insert menu of the chart in edit mode. There you can define the following elements:"
+msgstr "Para elementos adicionales usa el menu de Insertar del modo de editar. Entonces puedes definir los elementos siguientes:"
+
+#: type_column_line.xhp#par_id9141819.help.text
+msgctxt "type_column_line.xhp#par_id9141819.help.text"
+msgid "Secondary axes"
+msgstr "Ejes secundarios"
+
+#: type_column_line.xhp#par_id6354869.help.text
+msgctxt "type_column_line.xhp#par_id6354869.help.text"
+msgid "Minor grids"
+msgstr "Cuadricula menor"
+
+#: type_column_line.xhp#par_id2685323.help.text
+msgctxt "type_column_line.xhp#par_id2685323.help.text"
+msgid "Data labels"
+msgstr "Etiquetas de datos"
+
+#: type_column_line.xhp#par_id6042664.help.text
+msgctxt "type_column_line.xhp#par_id6042664.help.text"
+msgid "Statistics, for example mean values, y error bars and trend lines"
+msgstr "Estadísticas, por ejemplo valores promedios, barras de error Y y curvas de regresión"
+
+#: type_column_line.xhp#par_id7889950.help.text
+msgid "To set different data labels for each data series, use the properties dialog of the data series."
+msgstr "Para configurar distintas etiquetas de datos para cada serie, usar el diálogo de propiedades de las series de datos."
+
+#: type_pie.xhp#tit.help.text
+msgid "Chart Type Pie "
+msgstr "Gráfico tipo círculo."
+
+#: type_pie.xhp#bm_id7621997.help.text
+msgid "<bookmark_value>donut charts</bookmark_value> <bookmark_value>pie charts;types</bookmark_value> <bookmark_value>chart types;pie/donut</bookmark_value>"
+msgstr "<bookmark_value>gráficos de anillo</bookmark_value><bookmark_value>tipos de gráficos de círculo</bookmark_value><bookmark_value>tipos de gráfico;círculo/anillo</bookmark_value>"
+
+#: type_pie.xhp#hd_id3365276.help.text
+msgid "<variable id=\"type_pie\"><link href=\"text/schart/01/type_pie.xhp\">Chart Type Pie</link></variable>"
+msgstr "<variable id=\"type_pie\"><link href=\"text/schart/01/type_pie.xhp\">Tipo de gráfico Círculo</link></variable>"
+
+#: type_pie.xhp#par_id245979.help.text
+msgctxt "type_pie.xhp#par_id245979.help.text"
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type. "
+msgstr "En la primera página del <link href=\"text/schart/01/wiz_chart_type.xhp\">Asistente para diagramas</link> puede elegir un tipo de diagrama. "
+
+#: type_pie.xhp#hd_id5799432.help.text
+msgid "Pie"
+msgstr "Círculo"
+
+#: type_pie.xhp#par_id6549272.help.text
+msgid "A pie chart shows values as circular sectors of the total circle. The length of the arc, or the area of each sector, is proportional to its value."
+msgstr "Un gráfico de círculo muestra valores como sectores circulares del círculo total. La longitud del arco, o el área de cada sector, es proporcional a su valor."
+
+#: type_pie.xhp#par_id6529740.help.text
+msgid "Pie - this subtype shows sectors as colored areas of the total pie, for one data column only. In the created chart, you can click and drag any sector to separate that sector from the remaining pie or to join it back."
+msgstr "Círculo - Este subtipo muestra, para una única columna de datos, los sectores como áreas coloreadas de una círculo entero. En el gráfico creado, puede arrastrar cualquiere sector para separarlo del resto del círculo o juntarlo de nuevo arrastrandolo hacia el centro."
+
+#: type_pie.xhp#par_id9121982.help.text
+msgid "Exploded pie - this subtype shows the sectors already separated from each other. In the created chart, you can click and drag any sector to move it along a radial from the pie's center."
+msgstr "Circular expandido - este subtipo muestra los sectores separados unos de otros. En el gráfico creado, puede hacer clic y arrastrar cualquier sector para moverlo radialmente desde el centro del círculo."
+
+#: type_pie.xhp#par_id3808404.help.text
+msgid "Donut - this subtype can show multiple data columns. Each data column is shown as one donut shape with a hole inside, where the next data column can be shown. In the created chart, you can click and drag an outer sector to move it along a radial from the donut's center."
+msgstr "Anillo - este subtipo puede mostrar múltiples columnas de datos. Cada columna aparece en un gráfico en forma de anillo, en el cual la siguiente columna se puede mostrar en el centro del anillo. Los sectores exteriores se pueden arrastrar hacia el interior."
+
+#: type_pie.xhp#par_id2394482.help.text
+msgid "Exploded donut - this subtype shows the outer sectors already separated from the remaining donut. In the created chart, you can click and drag an outer sector to move it along a radial from the donut's center."
+msgstr "Anillo seccionado - este subtipo muestra los sectores externos separarados del resto del anillo. En el gráfico creado, puede presionar clic sobre un sector externo y moverlo a lo largo del radio del centro del anillo."
+
+#: 05060000.xhp#tit.help.text
+msgctxt "05060000.xhp#tit.help.text"
+msgid "Chart Wall"
+msgstr "Plano lateral del gráfico"
+
+#: 05060000.xhp#bm_id3150792.help.text
+msgid "<bookmark_value>charts; formatting walls</bookmark_value><bookmark_value>formatting;chart walls</bookmark_value>"
+msgstr "<bookmark_value>gráficos; formato de planos laterales</bookmark_value><bookmark_value>formato;planos laterales de gráficos</bookmark_value>"
+
+#: 05060000.xhp#hd_id3150792.1.help.text
+msgctxt "05060000.xhp#hd_id3150792.1.help.text"
+msgid "Chart Wall"
+msgstr "Plano lateral del gráfico"
+
+#: 05060000.xhp#par_id3154685.2.help.text
+msgid "<variable id=\"diagramm\"><ahelp visibility=\"visible\" hid=\".uno:DiagramWall\">Opens the<emph> Chart Wall</emph> dialog, where you can modify the properties of the chart wall. The chart wall is the \"vertical\" background behind the data area of the chart.</ahelp></variable>"
+msgstr "<variable id=\"diagramm\"><ahelp visibility=\"visible\" hid=\".uno:DiagramWall\">Abre el diálogo <emph>Plano lateral del gráfico</emph> donde es posible modificar las propiedades del plano lateral del gráfico. El plano lateral del gráfico es el fondo \"vertical\" que hay detrás del área de datos del gráfico.</ahelp></variable>"
+
+#: wiz_chart_elements.xhp#tit.help.text
+msgid "Chart Wizard - Chart Elements"
+msgstr "Asistente para gráficos - Elementos del Gráfico"
+
+#: wiz_chart_elements.xhp#hd_id70802.help.text
+msgid "<variable id=\"wiz_chart_elements\"><link href=\"text/schart/01/wiz_chart_elements.xhp\">Chart Wizard - Chart Elements</link></variable>"
+msgstr "<variable id=\"wiz_chart_elements\"><link href=\"text/schart/01/wiz_chart_elements.xhp\">Asistente de Gráfico - Elementos del Gráfico</link></variable>"
+
+#: wiz_chart_elements.xhp#par_id8746604.help.text
+msgid "On this page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose the chart elements to be shown."
+msgstr "En esta página del <link href=\"text/schart/01/wiz_chart_type.xhp\">Asistente para gráficos</link> puede escoger los elementos del gráfico que se van a mostrar."
+
+#: wiz_chart_elements.xhp#par_id6437269.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a title for your chart.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Introduzca el título para su gráfico.</ahelp>"
+
+#: wiz_chart_elements.xhp#par_id9469893.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a subtitle for your chart.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Introduzca un subtítulo para su gráfico.</ahelp>"
+
+#: wiz_chart_elements.xhp#par_id130008.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a label for the x-axis (horizontal).</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Introduce una etiqueta para el eje-x (horizontal).</ahelp>"
+
+#: wiz_chart_elements.xhp#par_id5821710.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a label for the y-axis (vertical).</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Introduce una etiqueta para el eje-y (vertical).</ahelp>"
+
+#: wiz_chart_elements.xhp#par_id2871791.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a label for the z-axis. This option is only available for three-dimensional charts.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Introduce una etiqueta para el eje-z. Esta posición está disponible únicamente para gráficos tridimensionales.</ahelp>"
+
+#: wiz_chart_elements.xhp#par_id7333597.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays a legend in your chart.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Muestra una leyenda en su gráfico.</ahelp>"
+
+#: wiz_chart_elements.xhp#par_id9976195.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Positions the legend to the left of the chart.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Posiciones de la leyenda a la izquierda del gráfico.</ahelp>"
+
+#: wiz_chart_elements.xhp#par_id2507400.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Positions the legend to the top of the chart.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Posiciona la leyenda arriba del gráfico.</ahelp>"
+
+#: wiz_chart_elements.xhp#par_id216681.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Positions the legend to the right of the chart.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Posiciones de la leyenda a la derecha del gráfico.</ahelp>"
+
+#: wiz_chart_elements.xhp#par_id7709585.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Positions the legend to the bottom of the chart.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Posiciona la leyenda al fondo del gráfico.</ahelp>"
+
+#: wiz_chart_elements.xhp#par_id4309518.help.text
+msgctxt "wiz_chart_elements.xhp#par_id4309518.help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays grid lines that are perpendicular to the x-axis.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Muestra las líneas de las cuadrículas que están paralealas al eje-x.</ahelp>"
+
+#: wiz_chart_elements.xhp#par_id206610.help.text
+msgctxt "wiz_chart_elements.xhp#par_id206610.help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays grid lines that are perpendicular to the y-axis.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Muestra la cuadricula que son paralelos al eje y.</ahelp>"
+
+#: wiz_chart_elements.xhp#par_id6917020.help.text
+msgctxt "wiz_chart_elements.xhp#par_id6917020.help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays grid lines that are perpendicular to the z-axis. This option is only available for three-dimensional charts.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Muestra las líneas de las cuadrículas que son paralelas al eje-z. Esta opción está disponible únicamente para gráficos tridimensionales.</ahelp>"
+
+#: wiz_chart_elements.xhp#par_id9969481.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a label for the secondary x-axis. This option is only available for charts that support a secondary x-axis.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Introduzca una etiqueta para el eje X secundario. Esta opción solo está disponible para gráficos que soportan un eje X secundario.</ahelp>"
+
+#: wiz_chart_elements.xhp#par_id816675.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a label for the secondary y-axis. This option is only available for charts that support a secondary y-axis.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Introduzca una etiqueta para el eje Y secundario. Esta opción sólo está disponible para gráficos que soportan un eje Y secundario.</ahelp>"
+
+#: wiz_chart_elements.xhp#hd_id4411145.help.text
+msgid "To enter chart elements"
+msgstr "Para ingresar los elementos del gráfico"
+
+#: wiz_chart_elements.xhp#par_id3274941.help.text
+msgid "Enter titles or click the elements that you want to be shown on the current chart."
+msgstr "Escriba los títulos o haga clic en los elementos que quiera que se muestren en el gráfico actual."
+
+#: wiz_chart_elements.xhp#hd_id9804681.help.text
+msgctxt "wiz_chart_elements.xhp#hd_id9804681.help.text"
+msgid "Titles"
+msgstr "Títulos"
+
+#: wiz_chart_elements.xhp#par_id3614917.help.text
+msgid "If you enter text for a title, subtitle, or any axis, the necessary space will be reserved to display the text next to the chart. If you do not enter a text, no space will be reserved, leaving more space to display the chart."
+msgstr "Si escribe texto como título, subtítulo, o cualquier eje, se reservará el espacio necesario para mostrar el texto junto al gráfico. Si no escribe ningún texto, no se reserva espacio, dejando mas espacio para mostrar el gráfico."
+
+#: wiz_chart_elements.xhp#par_id156865.help.text
+msgid "It is not possible to link the title text to a cell. You must enter the text directly."
+msgstr "No es posible para ligar el titulo de texto a la celda. Debes ingresar el texto directamente."
+
+#: wiz_chart_elements.xhp#par_id6034424.help.text
+msgid "When the chart is finished, you can change the position and other properties by the <emph>Format</emph> menu."
+msgstr "Cuando el gráfico está concluido, puede cambiar la posición y otras propiedades en el menú <emph>Formato</emph>."
+
+#: wiz_chart_elements.xhp#par_id9033783.help.text
+msgctxt "wiz_chart_elements.xhp#par_id9033783.help.text"
+msgid "Legend"
+msgstr "Leyenda"
+
+#: wiz_chart_elements.xhp#par_id1069368.help.text
+msgid "The legend displays the labels from the first row or column, or from the range that you have set in the Data Series dialog. If your chart does not contain labels, the legend displays text like \"Row 1, Row 2, ...\", or \"Column A, Column B, ...\" according to the row number or column letter of the chart data."
+msgstr "La leyenda muestra las etiquetas desde la primera fila o columna, o desde el rango fijado en el dialogo de Serie de Datos. Si su gráfico no contiene etiquetas, la leyenda muestra texto como \"Fila 1, Fila 2, ...\", o \"Columna A, Columna B, ...\" de acuerdo con la letra del número de filas o columnas de los datos del gráfico."
+
+#: wiz_chart_elements.xhp#par_id6998809.help.text
+msgid "You cannot enter the text directly, it is automatically generated from the Name cell range."
+msgstr "No puede escribir el texto directamente, se genera automáticamente desde el rango de celdas de Nombre."
+
+#: wiz_chart_elements.xhp#par_id71413.help.text
+msgctxt "wiz_chart_elements.xhp#par_id71413.help.text"
+msgid "Select one of the position options. When the chart is finished, you can specify other positions using the Format menu."
+msgstr "Seleccione una de las opciones de posición. Cuando el gráfico esté concluido, puede especificar otras posiciones usando el menú Formato."
+
+#: wiz_chart_elements.xhp#par_id4776757.help.text
+msgctxt "wiz_chart_elements.xhp#par_id4776757.help.text"
+msgid "Grids"
+msgstr "Cuadrículas"
+
+#: wiz_chart_elements.xhp#par_id6737876.help.text
+msgctxt "wiz_chart_elements.xhp#par_id6737876.help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays grid lines that are perpendicular to the x-axis.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Muestra las líneas de las cuadrículas que están paralealas al eje-x.</ahelp>"
+
+#: wiz_chart_elements.xhp#par_id1058992.help.text
+msgctxt "wiz_chart_elements.xhp#par_id1058992.help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays grid lines that are perpendicular to the y-axis.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Muestra la cuadricula que son paralelos al eje y.</ahelp>"
+
+#: wiz_chart_elements.xhp#par_id7366557.help.text
+msgctxt "wiz_chart_elements.xhp#par_id7366557.help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays grid lines that are perpendicular to the z-axis. This option is only available for three-dimensional charts.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Muestra las líneas de las cuadrículas que son paralelas al eje-z. Esta opción está disponible únicamente para gráficos tridimensionales.</ahelp>"
+
+#: wiz_chart_elements.xhp#par_id6527298.help.text
+msgid "The visible grid lines can help to estimate the data values in the chart."
+msgstr "La cuadrícula visible puede ayudar a estimar los valores de los datos en el gráfico."
+
+#: wiz_chart_elements.xhp#par_id2924283.help.text
+msgid "The distance of the grid lines corresponds to the interval settings in the Scale tab of the axis properties."
+msgstr "La distancia entre la cuadricula corresponde al la configuracion del intervalo en la escala del axis y propiedades."
+
+#: wiz_chart_elements.xhp#par_id5781731.help.text
+msgid "Grid lines are not available for pie charts."
+msgstr "La cuadrícula no está disponible para los diagramas de círculo."
+
+#: wiz_chart_elements.xhp#hd_id6942045.help.text
+msgid "Additional elements"
+msgstr "Elementos adicionales"
+
+#: wiz_chart_elements.xhp#par_id4721823.help.text
+msgctxt "wiz_chart_elements.xhp#par_id4721823.help.text"
+msgid "For additional elements use the Insert menu of the chart in edit mode. There you can define the following elements:"
+msgstr "Para elementos adicionales puede utilizar el menu Insertar del gráfico en modo edición. Allí puede definir los siguientes elementos:"
+
+#: wiz_chart_elements.xhp#par_id5806756.help.text
+msgctxt "wiz_chart_elements.xhp#par_id5806756.help.text"
+msgid "Secondary axes"
+msgstr "Eje secundario"
+
+#: wiz_chart_elements.xhp#par_id8915372.help.text
+msgctxt "wiz_chart_elements.xhp#par_id8915372.help.text"
+msgid "Minor grids"
+msgstr "Cuadrícula auxiliar"
+
+#: wiz_chart_elements.xhp#par_id6070436.help.text
+msgctxt "wiz_chart_elements.xhp#par_id6070436.help.text"
+msgid "Data labels"
+msgstr "Etiquetas de datos"
+
+#: wiz_chart_elements.xhp#par_id7564012.help.text
+msgctxt "wiz_chart_elements.xhp#par_id7564012.help.text"
+msgid "Statistics, for example mean values, y error bars and trend lines"
+msgstr "Estadísticas, por ejemplo valores promedios, barras de error Y y curvas de regresión"
+
+#: 03010000.xhp#tit.help.text
+msgid "Data Table"
+msgstr "Tabla de datos"
+
+#: 03010000.xhp#hd_id3150869.1.help.text
+msgid "<link href=\"text/schart/01/03010000.xhp\" name=\"Data Table\">Data Table</link>"
+msgstr "<link href=\"text/schart/01/03010000.xhp\" name=\"Data Table\">Tabla de Datos</link>"
+
+#: 03010000.xhp#par_id3151115.2.help.text
+msgid "<ahelp hid=\".uno:DiagramData\">Opens the<emph> Data Table </emph>dialog where you can edit the chart data.</ahelp>"
+msgstr "<ahelp hid=\".uno:DiagramData\">Abre el diálogo <emph>Tabla de datos</emph> donde puede editar los datos del gráfico.</ahelp>"
+
+#: 03010000.xhp#par_id3149667.51.help.text
+msgid "The<emph> Data Table </emph>dialog is not available if you insert a chart that is based on a Calc sheet or on a Writer table."
+msgstr "El diálogo<emph> Datos del gráfico </emph>no está disponible si inserta un gráfico basado en una hoja de cálculo de Calc o en una tabla de Writer."
+
+#: 03010000.xhp#par_id6746421.help.text
+msgid "<link href=\"text/swriter/01/06990000.xhp\">To update a chart manually when a Writer table got changed</link>"
+msgstr "<link href=\"text/swriter/01/06990000.xhp\">Para actualizar un gráfico manualmente cuando la tabla de Writer haya cambiado</link>"
+
+#: 03010000.xhp#par_id2565996.help.text
+msgid "Some changes will become visible only after you close and reopen the dialog."
+msgstr "Algunos cambios sólo se apreciarán después de que haya cerrado y vuelto a abrir el diálogo."
+
+#: 03010000.xhp#hd_id6129947.help.text
+msgid "To change chart data"
+msgstr "Para cambiar datos del gráfico"
+
+#: 03010000.xhp#par_id8141117.help.text
+msgid "When you create a chart that is based on default data, or when you copy a chart into your document, you can open the Data Table dialog to enter your own data. The chart responds to the data in a live preview."
+msgstr "Cuando creas un gráfico que está basado en datos por defecto, o cuando copias un gráfico dentro de tu documento, puedes abrir el dialogo de Tabla de datos para ingresar tus propios datos. El gráfico responde a los datos en una previsualización automática."
+
+#: 03010000.xhp#par_id9487594.help.text
+msgid "Close the Chart Data dialog to apply all changes to the chart. Choose <emph>Edit - Undo</emph> to cancel the changes."
+msgstr "Cierre el diálogo de Datos del gráfico para aplicar todos los cambios al gráfico. Seleccione <emph>Editar - Deshacer</emph> para cancelar los cambios."
+
+#: 03010000.xhp#par_id4149906.help.text
+msgid "Insert or select a chart that is not based on existing cell data."
+msgstr "Insertar o seleccionar un gráfico que no esté basado en celdas con datos existentes."
+
+#: 03010000.xhp#par_id6064943.help.text
+msgid "Choose <emph>View - Chart Data Table</emph> to open the Data Table dialog."
+msgstr "Seleccione <emph>Ver – Datos del Gráfico</emph> para abrir el dialogo de Tabla de datos."
+
+#: 03010000.xhp#par_id3236182.help.text
+msgid "The data series are organized in columns. The role of the left most column is set to categories or data labels respectively. The contents of the left most column are always formatted as text. You can insert more text columns to be used as hierarchical labels."
+msgstr "Las series de datos se organizan en columnas. El rol de la columna que está más a la izquierda es el de establecer las categorías o etiquetas de datos respectivas. El contenido de la columna que está más a la izquierda siempre se formatea como texto. Puede insertar más columnas de texto para que se usen como etiquetas jerárquicas."
+
+#: 03010000.xhp#par_id9799798.help.text
+msgid "Click a cell in the dialog and change the contents. Click another cell to see the changed contents in the preview."
+msgstr "Haga clic en una celda del diálogo y cambie los contenidos. Haga clic en otra celda para ver los contenidos modificados en la vista previa."
+
+#: 03010000.xhp#par_id1251258.help.text
+msgid "Enter the name of the data series in the text box above the column."
+msgstr "Ingresa el nombre de la serie de datos en la caja de texto que hay encima de la columna."
+
+#: 03010000.xhp#par_id743430.help.text
+msgid "Use the icons above the table to insert or delete rows and columns. For data series with multiple columns, only whole data series can be inserted or deleted. "
+msgstr "Use los iconos de encima de la tabla para insertar o borrar filas y columnas. Para las series de datos con múltiples columnas, sólo se puede insertar o borrar la serie entera."
+
+#: 03010000.xhp#par_id8111819.help.text
+msgid "The order of the data series in the chart is the same as in the data table. Use the <emph>Move Series Right</emph> icon to switch the current column with its neighbor on the right."
+msgstr "El orden de la serie de datos en el gráfico es el mismo que en la tabla de datos. Use el icono <emph>Mover Series a la derecha</emph> para cambiar a la derecha la columna actual con la siguiente."
+
+#: 03010000.xhp#par_id9116794.help.text
+msgid "The order of the categories or data points in the chart is the same as in the data table. Use the <emph>Move Row Down</emph> icon to switch the current row with its neighbor below."
+msgstr "El orden de las categorías o puntos de datos en el gráfico son los mismos que en la tabla de datos. Use el icono <emph>Mover Fila abajo</emph> para cambiar la fila actual con la siguiente de abajo."
+
+#: 03010000.xhp#par_id3150297.20.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new row below the current row.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserta una fila nueva debajo la actual.</ahelp>"
+
+#: 03010000.xhp#par_id3145384.23.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new data series after the current column.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserta una nueva serie de datos después de la columna actual.</ahelp>"
+
+#: 03010000.xhp#par_id3152297.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new text column after the current column for hierarchical axes descriptions.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserta una nueva columna de texto detrás de la columna actual para las descripciones jerárquicas de ejes.</ahelp>"
+
+#: 03010000.xhp#par_id3159231.26.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the current row. It is not possible to delete the label row.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Borra la fila actual. No es posible borrar la fila del encabezamiento.</ahelp>"
+
+#: 03010000.xhp#par_id3153336.29.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the current series or text column. It is not possible to delete the first text column.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Elimina la serie o columna de texto actual. No es posible eliminar la primer columna de texto.</ahelp>"
+
+#: 03010000.xhp#par_id4089175.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Switches the current column with its neighbor at the right.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Cambia la columna actual con la siguiente a la derecha</ahelp>"
+
+#: 03010000.xhp#par_id3949095.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Switches the current row with its neighbor below.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Cambia la fila actual con la fila inferior</ahelp>"
+
+#: 03010000.xhp#par_id6697286.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter names for the data series.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ingresar los nombres de las series de datos.</ahelp>"
+
+#: 05040200.xhp#tit.help.text
+msgctxt "05040200.xhp#tit.help.text"
+msgid "Y Axis"
+msgstr "Eje Y"
+
+#: 05040200.xhp#bm_id3145673.help.text
+msgid "<bookmark_value>Y axes; formatting</bookmark_value>"
+msgstr "<bookmark_value>ejes Y; formato</bookmark_value>"
+
+#: 05040200.xhp#hd_id3145673.1.help.text
+msgctxt "05040200.xhp#hd_id3145673.1.help.text"
+msgid "Y Axis"
+msgstr "Eje Y"
+
+#: 05040200.xhp#par_id3155628.2.help.text
+msgid "<variable id=\"yachse\"><ahelp hid=\".uno:DiagramAxisY\">Opens the<emph> Y Axis </emph>dialog, to change properties of the Y axis.</ahelp></variable>"
+msgstr "<variable id=\"yachse\"><ahelp hid=\".uno:DiagramAxisY\">Abre el diálogo <emph> Eje Y </emph>, para cambiar las propiedades del eje Y.</ahelp></variable>"
+
+#: 05040200.xhp#hd_id3145171.3.help.text
+msgctxt "05040200.xhp#hd_id3145171.3.help.text"
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Caracteres</link>"
+
+#: 05040200.xhp#hd_id3146119.4.help.text
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Números</link>"
+
+#: 05070000.xhp#tit.help.text
+msgctxt "05070000.xhp#tit.help.text"
+msgid "Chart Floor"
+msgstr "Plano inferior del gráfico"
+
+#: 05070000.xhp#bm_id3154346.help.text
+msgid "<bookmark_value>charts; formatting floors</bookmark_value><bookmark_value>formatting; chart floors</bookmark_value>"
+msgstr "<bookmark_value>gráficos; dar formato a planos inferiores</bookmark_value><bookmark_value>formato; planos inferiores del gráfico</bookmark_value>"
+
+#: 05070000.xhp#hd_id3154346.1.help.text
+msgctxt "05070000.xhp#hd_id3154346.1.help.text"
+msgid "Chart Floor"
+msgstr "Plano inferior del gráfico"
+
+#: 05070000.xhp#par_id3150767.2.help.text
+msgid "<variable id=\"diagrammboden\"><ahelp hid=\".uno:DiagramFloor\">Opens the<emph> Chart Floor</emph> dialog, where you can modify the properties of the chart floor. The chart floor is the lower area in 3D charts. This function is only available for 3D charts.</ahelp></variable>"
+msgstr "<variable id=\"diagrammboden\"><ahelp hid=\".uno:DiagramFloor\">Abre el diálogo <emph>Plano inferior del gráfico</emph> donde es posible modificar las propiedades del plano inferior. El plano inferior es el área más baja en los gráficos 3D. Esta función sólo está disponible en los gráficos 3D.</ahelp></variable>"
+
+#: wiz_chart_type.xhp#tit.help.text
+msgid "Chart Wizard - Chart Type"
+msgstr "Asistente para Gráficos - Tipo de Gráfico"
+
+#: wiz_chart_type.xhp#bm_id4266792.help.text
+msgid "<bookmark_value>charts;choosing chart types</bookmark_value>"
+msgstr "<bookmark_value>gráficos;escogiendo tipos de gráfico</bookmark_value>"
+
+#: wiz_chart_type.xhp#hd_id1536606.help.text
+msgid "<variable id=\"wiz_chart_type\"><link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard - Chart Type</link></variable>"
+msgstr "<variable id=\"wiz_chart_type\"><link href=\"text/schart/01/wiz_chart_type.xhp\">Asistente para Gráficos - Tipo de Gráfico</link></variable>"
+
+#: wiz_chart_type.xhp#par_id6006958.help.text
+msgid "On the first page of the Chart Wizard you can <link href=\"text/schart/01/choose_chart_type.xhp\">choose a chart type</link>."
+msgstr "En la primera página del Asistente para gráficos puede <link href=\"text/schart/01/choose_chart_type.xhp\">escoger un tipo de gráfico</link>."
+
+#: wiz_chart_type.xhp#hd_id3919186.help.text
+msgid "To choose a chart type"
+msgstr "Para elegir un tipo de gráfico"
+
+#: wiz_chart_type.xhp#par_id3453169.help.text
+msgid "Choose a basic <link href=\"text/schart/01/choose_chart_type.xhp\">chart type</link>: click any of the entries labeled Column, Bar, Pie, and so on."
+msgstr "Escoger un <link href=\"text/schart/01/choose_chart_type.xhp\">tipo de gráfico</link> básico: hacer clic cualquiera de las entradas etiquetadas como Columna, Barra, Circular, etc."
+
+#: wiz_chart_type.xhp#par_id8406933.help.text
+msgid "The contents on the right side will change to offer more options depending on the basic chart type."
+msgstr "Los contenidos sobre el lado derecho cambiarán para ofrecer más opciones dependiendo del tipo de gráfico básico."
+
+#: wiz_chart_type.xhp#par_id8230231.help.text
+msgid "Optionally, click any of the options. While you change the settings in the wizard, watch the preview in the document to see how the chart will look."
+msgstr "Opcionalmente, haga clic en cualquiera de las opciones. Mientras cambie los valores en el asistente, observe la vista previa en el documento para observar cómo se verá el gráfico."
+
+#: wiz_chart_type.xhp#par_id3267006.help.text
+msgid "Press <item type=\"keycode\">Shift+F1</item> and point to a control to see an extended help text."
+msgstr "Presione <item type=\"keycode\">Shift+F1</item> y apunte al control para ver el texto de ayuda extendido."
+
+#: wiz_chart_type.xhp#par_id7251503.help.text
+msgid "Click <emph>Finish</emph> on any wizard page to close the wizard and create the chart using the current settings."
+msgstr "Haga clic en <emph>Terminar</emph> sobre cualquier página del asistente para cerrarlo y crear el gráfico utilizando los valores actuales."
+
+#: wiz_chart_type.xhp#par_id3191625.help.text
+msgid "Click <emph>Next</emph> to see the next wizard page, or click the entries on the left side of the wizard to go to that page."
+msgstr "Haga clic en <emph>Siguiente</emph> para ver la próxima página del asistente, o en las entradas del lado izquierdo del asistente para ir a la página."
+
+#: wiz_chart_type.xhp#par_id7659535.help.text
+msgid "Click <emph>Back</emph> to see the previous wizard page."
+msgstr "Haga clic en<emph>Atrás</emph> para ver la página anterior del asistente."
+
+#: wiz_chart_type.xhp#par_id8420056.help.text
+msgid "Click <emph>Cancel</emph> to close the wizard without creating a chart."
+msgstr "Haga clic en <emph>Cancelar</emph> para cerrar el asistente sin crear un gráfico."
+
+#: wiz_chart_type.xhp#par_id2284920.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to go to the named wizard page.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Haga clic para ir a la página del asistente.</ahelp>"
+
+#: wiz_chart_type.xhp#par_id3184301.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a basic chart type.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selecciona un gráfico de tipo básico.</ahelp>"
+
+#: wiz_chart_type.xhp#par_id2129276.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a sub type of the basic chart type.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selecciona una sub categoría del tipo básico de gráfico.</ahelp>"
+
+#: wiz_chart_type.xhp#par_id9719229.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enables a 3D look for the data values.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Habilite la vista 3D para los valores de datos.</ahelp>"
+
+#: wiz_chart_type.xhp#par_id3860896.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the type of 3D look.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleccione el tipo de vista 3D.</ahelp>"
+
+#: wiz_chart_type.xhp#par_id4041871.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a shape from the list.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleccione una figura de la lista.</ahelp>"
+
+#: wiz_chart_type.xhp#par_id9930722.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays stacked series for Line charts.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Muestra series apiladas para un gráfico Lineal.</ahelp>"
+
+#: wiz_chart_type.xhp#par_id5749687.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Stack series display values on top of each other.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Series apilada muestran los valores unos encima de otros.</ahelp>"
+
+#: wiz_chart_type.xhp#par_id79348.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Stack series display values as percent.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Series apiladas muestran valores como porcentaje.</ahelp>"
+
+#: wiz_chart_type.xhp#par_id2414014.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">The lines are shown as curves.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Estas líneas se muestran como curvas.</ahelp>"
+
+#: wiz_chart_type.xhp#par_id7617114.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to set the curve properties.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abre un dialogo para fijar las propiedades de la curva.</ahelp>"
+
+#: wiz_chart_type.xhp#par_id6649372.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Connects points by ascending X values, even if the order of values is different, in an XY scatter diagram.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">En un gráfico de dispersión XY, conecte los puntos por valores ascendentes de X, incluso aunque el orden de los valores sea diferente.</ahelp>"
+
+#: wiz_chart_type.xhp#par_id7334208.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the number of lines for the Column and Line chart type.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ajuste el número de líneas para los gráficos de tipo Columna y Línea.</ahelp>"
+
+#: wiz_chart_type.xhp#par_id4485000.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Chart Type dialog.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abre el dialogo del Tipo de Gráfico.</ahelp>"
+
+#: 05050100.xhp#tit.help.text
+msgctxt "05050100.xhp#tit.help.text"
+msgid "Grid"
+msgstr "Cuadrícula"
+
+#: 05050100.xhp#bm_id3150398.help.text
+msgid "<bookmark_value>X axes;grid formatting</bookmark_value><bookmark_value>Y axes;grid formatting</bookmark_value><bookmark_value>Z axes; grid formatting</bookmark_value>"
+msgstr "<bookmark_value>ejes X;formato de cuadrícula</bookmark_value><bookmark_value>ejes Y;formato de cuadrícula</bookmark_value><bookmark_value>ejes Z; formato de cuadrícula</bookmark_value>"
+
+#: 05050100.xhp#hd_id3150398.2.help.text
+msgctxt "05050100.xhp#hd_id3150398.2.help.text"
+msgid "Grid"
+msgstr "Cuadrícula"
+
+#: 05050100.xhp#par_id3152577.1.help.text
+msgid "<variable id=\"gitter\"><ahelp hid=\".uno:DiagramGridAll\">Opens the <emph>Grid</emph> dialog for defining grid properties.</ahelp></variable>"
+msgstr "<variable id=\"gitter\"><ahelp hid=\".uno:DiagramGridAll\">Abre el diálogo <emph>Cuadrícula</emph> para definir las propiedades de las cuadrículas.</ahelp></variable>"
+
+#: 05040202.xhp#tit.help.text
+msgid "Positioning"
+msgstr "Localización"
+
+#: 05040202.xhp#bm_id3150869.help.text
+msgid "<bookmark_value>positioning; axes</bookmark_value><bookmark_value>charts;positioning axes</bookmark_value><bookmark_value>X axes;positioning</bookmark_value><bookmark_value>Y axes;positioning</bookmark_value><bookmark_value>axes;interval marks</bookmark_value>"
+msgstr "<bookmark_value>posición; ejes</bookmark_value><bookmark_value>tablas;posición del eje axes</bookmark_value><bookmark_value>X eje;posición</bookmark_value><bookmark_value>Y eje;posición</bookmark_value><bookmark_value>ejes;marcas de intervalos</bookmark_value>"
+
+#: 05040202.xhp#hd_id3150868.1.help.text
+msgid "<link href=\"text/schart/01/05040202.xhp\" name=\"positioning\">Positioning</link>"
+msgstr "<link href=\"text/schart/01/05040202.xhp\" name=\"positioning\">Localización</link>"
+
+#: 05040202.xhp#par_id3154013.2.help.text
+msgid "Controls the positioning of the axis."
+msgstr "Controles de posición de el eje."
+
+#: 05040202.xhp#hd_id1006200801024782.help.text
+msgid "Axis line"
+msgstr "Línea del eje"
+
+#: 05040202.xhp#par_id1006200801024970.help.text
+msgid "<ahelp hid=\".\">Select where to cross the other axis: at start, at end, at a specified value, or at a category.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccione dónde se cruza el otro eje:al principio, al final, en un valor especificado o dentro de una categoría.</ahelp>"
+
+#: 05040202.xhp#par_id1006200801024957.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the value where the axis line should cross the other axis.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Escriba el valor donde la línea del eje debería cruzar el otro eje.</ahelp>"
+
+#: 05040202.xhp#par_id100620080102503.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the category where the axis line should cross the other axis.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleccione la categoría donde la línea del eje debería cruzar el otro eje.</ahelp>"
+
+#: 05040202.xhp#hd_id100620080102509.help.text
+msgid "Labels"
+msgstr "Etiquetas"
+
+#: 05040202.xhp#hd_id1006200801523879.help.text
+msgid "Place labels"
+msgstr "Colocar etiquetas"
+
+#: 05040202.xhp#par_id1006200801523889.help.text
+msgid "<ahelp hid=\".\">Select where to place the labels: near axis, near axis (other side), outside start, or outside end.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccionar dónde se colocan las etiquetas: cerca del eje, cerca del otro lado del eje, delantero, o al final.</ahelp>"
+
+#: 05040202.xhp#hd_id1006200801025030.help.text
+msgid "Interval marks"
+msgstr "Marcas de intervalo"
+
+#: 05040202.xhp#hd_id3149048.65.help.text
+msgid "Major:"
+msgstr "Mayor:"
+
+#: 05040202.xhp#par_id3150397.71.help.text
+msgid "Specifies whether the marks are to be on the inner or outer side of the axis. It is possible to combine both: you will then see marks on both sides."
+msgstr "Define si las marcas deben estar en la parte interior o exterior del eje. Es posible combinar ambas: en ese caso verá marcas a ambos lados."
+
+#: 05040202.xhp#hd_id3151387.66.help.text
+msgctxt "05040202.xhp#hd_id3151387.66.help.text"
+msgid "Inner"
+msgstr "interior"
+
+#: 05040202.xhp#par_id3156399.72.help.text
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_TICKS_INNER\">Specifies that marks are placed on the inner side of the axis.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_TICKS_INNER\">Especifica que las marcas se ubican en el lado interno del eje.</ahelp>"
+
+#: 05040202.xhp#hd_id3166469.67.help.text
+msgctxt "05040202.xhp#hd_id3166469.67.help.text"
+msgid "Outer"
+msgstr "exterior"
+
+#: 05040202.xhp#par_id3153120.73.help.text
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_TICKS_OUTER\">Specifies that marks are placed on the outer side of the axis.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_TICKS_OUTER\">Especifica que las marcas deben colocarse en la parte exterior del eje.</ahelp>"
+
+#: 05040202.xhp#hd_id3159128.68.help.text
+msgid "Minor:"
+msgstr "Menor:"
+
+#: 05040202.xhp#par_id3146885.74.help.text
+msgid "This area is used to define the marking dashes between the axis marks. It is possible to activate both fields. This will result in a marking line running from the outside to the inside."
+msgstr "Este área permite configurar los trazos situados entre las marcas del eje. Si se activan ambos cuadros, se inserta una línea continua de marca desde la parte exterior hacia la interior."
+
+#: 05040202.xhp#hd_id3150654.69.help.text
+msgctxt "05040202.xhp#hd_id3150654.69.help.text"
+msgid "Inner"
+msgstr "interior"
+
+#: 05040202.xhp#par_id3146880.75.help.text
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_HELPTICKS_INNER\">Specifies that minor interval marks are placed on the inner side of the axis.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_HELPTICKS_INNER\">Especifica que las marcas de intervalo auxiliar deben colocarse en la parte interior del eje.</ahelp>"
+
+#: 05040202.xhp#hd_id3154677.70.help.text
+msgctxt "05040202.xhp#hd_id3154677.70.help.text"
+msgid "Outer"
+msgstr "exterior"
+
+#: 05040202.xhp#par_id3150745.76.help.text
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_HELPTICKS_OUTER\">Specifies that minor interval marks are placed on the outer side of the axis.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE_Y:CBX_HELPTICKS_OUTER\">Especifica que las marcas de intervalo auxiliar deben colocarse en la parte exterior del eje.</ahelp>"
+
+#: 05040202.xhp#hd_id1006200801025271.help.text
+msgid "Place marks"
+msgstr "Colocar marcas"
+
+#: 05040202.xhp#par_id1006200801025278.help.text
+msgid "<ahelp hid=\".\">Select where to place the marks: at labels, at axis, or at axis and labels.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccionar dónde colocar las marcas: en etiquetas, en ejes o en ambos (ejes y etiquetas).</ahelp>"
+
+#: smooth_line_properties.xhp#tit.help.text
+msgctxt "smooth_line_properties.xhp#tit.help.text"
+msgid "Smooth Line Properties"
+msgstr "Propiedades de línea suave"
+
+#: smooth_line_properties.xhp#bm_id3803827.help.text
+msgid "<bookmark_value>curves;properties in line charts/XY charts</bookmark_value><bookmark_value>properties;smooth lines in line charts/XY charts</bookmark_value>"
+msgstr "<bookmark_value>curvas;propiedades de gráficos de línea/gráfico XY</bookmark_value><bookmark_value>propiedades;líneas suaves en gráficos de línea/gráficos XY</bookmark_value>"
+
+#: smooth_line_properties.xhp#hd_id3050325.help.text
+msgctxt "smooth_line_properties.xhp#hd_id3050325.help.text"
+msgid "Smooth Line Properties"
+msgstr "Propiedades de línea suave"
+
+#: smooth_line_properties.xhp#par_id9421979.help.text
+msgid "In a chart that displays lines (Line type or XY type), you can choose to show curves instead of straight lines. Some options control the properties of those curves."
+msgstr "En un gráfico que muestra líneas (de tipo Línea o XY) puede elegir que en vez de rectas se muestren curvas. Algunas opciones controlan las propiedades de estas curvas."
+
+#: smooth_line_properties.xhp#hd_id1228370.help.text
+msgid "To change line properties"
+msgstr "Para cambiar propiedades de líneas"
+
+#: smooth_line_properties.xhp#par_id1601611.help.text
+msgid "Select Cubic Spline or B-Spline."
+msgstr "Seleccionar Spline Cúbico o B-Spline."
+
+#: smooth_line_properties.xhp#par_id879848.help.text
+msgid "These are mathematical models that influence the display of the curves. The curves are created by joining together segments of polynomials."
+msgstr "Éstos son modelos matemáticos que influyen en la representación de las curvas. Las curvas se crean uniendo segmentos de polinomios."
+
+#: smooth_line_properties.xhp#par_id3464461.help.text
+msgid "Optionally set the resolution. A higher value leads to a smoother line."
+msgstr "Fije opcionalmente la resolución. Un valor más alto conduce a una línea más suave."
+
+#: smooth_line_properties.xhp#par_id6998809.help.text
+msgid "For B-spline lines optionally set the degree of the polynomials."
+msgstr "Especifique, opcionalmente, el grado de los polinomios para las líneas B-spline."
+
+#: smooth_line_properties.xhp#par_id3424481.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Apply a cubic spline model.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Aplicar un modelo de spline cúbico.</ahelp>"
+
+#: smooth_line_properties.xhp#par_id1068758.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Apply a B-spline model.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Aplicar un modelo de B-spline.</ahelp>"
+
+#: smooth_line_properties.xhp#par_id2320932.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the resolution.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fijar la resolución.</ahelp>"
+
+#: smooth_line_properties.xhp#par_id8638874.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the degree of the polynomials.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Establecer el grado de los polinomios.</ahelp>"
+
+#: wiz_data_range.xhp#tit.help.text
+msgid "Chart Wizard - Data Range"
+msgstr "Asistente de Gráfico - Rangos de Datos"
+
+#: wiz_data_range.xhp#bm_id2429578.help.text
+msgid "<bookmark_value>data ranges in charts</bookmark_value>"
+msgstr "<bookmark_value>rango de datos en gráficos</bookmark_value>"
+
+#: wiz_data_range.xhp#hd_id8313852.help.text
+msgid "<variable id=\"wiz_data_range\"><link href=\"text/schart/01/wiz_data_range.xhp\">Chart Wizard - Data Range</link></variable>"
+msgstr "<variable id=\"wiz_data_range\"><link href=\"text/schart/01/wiz_data_range.xhp\">Asistente para Gráficos - Rango de Datos</link></variable>"
+
+#: wiz_data_range.xhp#par_id8829309.help.text
+msgid "On this page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can select one single source of data range. This range may consist of more than one rectangular range of cells."
+msgstr "En esta página del <link href=\"text/schart/01/wiz_chart_type.xhp\">Asistente para gráficos</link> puede seleccionar un único rango de datos. este rango puede consistir en uno o más rangos rectangulares de celdas."
+
+#: wiz_data_range.xhp#par_id6401867.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Data Ranges dialog where you can edit Data Range and Data Series.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abra el dialogo de Rango de Datos donde puede editar los Rangos de Datos y las Series de Datos.</ahelp>"
+
+#: wiz_data_range.xhp#par_id2025818.help.text
+msgid "Use the Chart Wizard - Data Series page if you need more control over the data ranges."
+msgstr "Utilice el Asistente para Gráficos - Serie de Datos si necesita más control sobre los rangos de datos."
+
+#: wiz_data_range.xhp#par_id8466139.help.text
+msgctxt "wiz_data_range.xhp#par_id8466139.help.text"
+msgid "This dialog is only available for charts based on a Calc or Writer table."
+msgstr "Este dialogo está disponible únicamente para gráficos basados en tablas de Calc o Writer."
+
+#: wiz_data_range.xhp#hd_id1877193.help.text
+msgctxt "wiz_data_range.xhp#hd_id1877193.help.text"
+msgid "To specify a data range"
+msgstr "Para especificar un rango de datos"
+
+#: wiz_data_range.xhp#par_id5924863.help.text
+msgid "Select the data range. Do one of the following:"
+msgstr "Seleccione el rango de datos. Realice uno de los siguientes:"
+
+#: wiz_data_range.xhp#par_id4357432.help.text
+msgctxt "wiz_data_range.xhp#par_id4357432.help.text"
+msgid "Enter the data range in the text box."
+msgstr "Introduzca el rango de datos en el cuadro de texto."
+
+#: wiz_data_range.xhp#par_id5626392.help.text
+msgctxt "wiz_data_range.xhp#par_id5626392.help.text"
+msgid "In Calc, an example data range would be \"$Sheet1.$B$3:$B$14\". Note that a data range may consist of more than one region in a spreadsheet, e.g. \"$Sheet1.A1:A5;$Sheet1.D1:D5\" is also a valid data range. In Writer, an example data range would be \"Table1.A1:E4\"."
+msgstr "En Calc, un ejemplo del rango de datos puede ser \"$Hoja1.$B$3:$B$14\". Note que un rango de datos puede consistir en mas de una región en una hoja de cálculo, e.g. \"$Hoja1.A1:A5;$Hoja1.D1:D5\" es también un rango de datos válido. En Writer, un ejemplo del rango de datos podría ser \"Tabla1.A1:E4\"."
+
+#: wiz_data_range.xhp#par_id1363872.help.text
+msgid "In Calc, click <emph>Select data range</emph> to minimize the dialog, then drag over a cell area to select the data range."
+msgstr "En Calc, haga clic en <emph>Seleccionar rango de datos</emph> para minimizar el diálogo, luego arrastre sobre el área de la celda para seleccionar el rango de datos ."
+
+#: wiz_data_range.xhp#par_id6823938.help.text
+msgctxt "wiz_data_range.xhp#par_id6823938.help.text"
+msgid "If you want a data range of multiple cell areas that are not next to each other, enter the first range, then manually add a semicolon at the end of the text box, then enter the other ranges. Use a semicolon as delimiter between ranges."
+msgstr "Si desea un rango de datos con áreas de múltiples rangos que no están próximas unas de otras, entre el primer rango, luego manualmente adicione un punto y coma al final de la caja de texto, luego entre los otros rangos. Use el punto y coma como delimitador entre los rangos."
+
+#: wiz_data_range.xhp#par_id1434369.help.text
+msgctxt "wiz_data_range.xhp#par_id1434369.help.text"
+msgid "Click one of the options for data series in rows or in columns."
+msgstr "Haga clic en una de las opciones para el rango de datos en filas o en columnas."
+
+#: wiz_data_range.xhp#par_id7524033.help.text
+msgctxt "wiz_data_range.xhp#par_id7524033.help.text"
+msgid "Check whether the data range has labels in the first row or in the first column or both."
+msgstr "Compruebe si el rango de datos tiene etiquetas en la primera fila o en la primera columna o en ambos."
+
+#: wiz_data_range.xhp#par_id5256508.help.text
+msgid "In the preview you can see how the final chart will look."
+msgstr "En la vista previa puede ver como se verá el gráfico."
+
+#: wiz_data_range.xhp#par_id379650.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the data range that you want to include in your chart. To minimize this dialog while you select the data range in Calc, click the <emph>Select data range</emph> button.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Introduzca el rango de datos que quiera incluir en su gráfico. Para minimizar este dialogo mientras selecciona el rango de datos en Clac, haga clic en el botón <emph>Seleccionar rango de datos</emph>.</ahelp>"
+
+#: wiz_data_range.xhp#par_id953703.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Data series get their data from consecutive rows in the selected range. For scatter charts, the first data series will contain x-values for all series. All other data series are used as y-values, one for each series.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Las series de Datos obtienen sus datos desde filas consecutivas en el rango seleccionado. Para gráficos de dispersión, la primera serie de datos contendrá los valores-x para todas las series. Todas las demás series de datos son utilizadas como valores-y, uno por cada serie.</ahelp>"
+
+#: wiz_data_range.xhp#par_id4496597.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Data series get their data from consecutive columns in the selected range. For scatter charts, the first data column will contain x-values for all series. All other data columns are used as y-values, one for each series.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Las series de Datos obtienen sus datos de columnas consecutivas en el rango seleccionado. Para los gráficos de dispersión, la primera columna de datos contendrá valores -x para todas las series. Todas las demás columnas de datos se utilizan como valores-y, uno por cada serie.</ahelp>"
+
+#: wiz_data_range.xhp#par_id2898953.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">For data series in columns: The first row in the range is used as names for data series. For data series in rows: The first row in the range is used as categories. The remaining rows comprise the data series. If this check box is not selected, all rows are data series.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Para las series de datos en columnas: La primera fila en el rango se utiliza como nombres de la serie de datos. Para las series de datos en filas: La primera fila en el rango se utiliza como categorías. El resto de las filas comprenden las series de datos. Si la casilla de verificación no está seleccionada, todas las filas son series de datos.</ahelp>"
+
+#: wiz_data_range.xhp#par_id7546311.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">For data series in columns: The first column in the range is used as names for data series. For data series in rows: The first column in the range is used as categories. The remaining columns comprise the data columns. If this check box is not selected, all columns are data columns.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Para series de datos en columnas: La primera columna en el rango es utilizada como nombres de las series de datos. Para series de datos en filas: La primera columna en el rango es utilizada como categorías. Las columnas restantes comprenden las columnas de datos. Si la casilla de verificación no está seleccionada, todas las columnas son columnas de datos.</ahelp>"
+
+#: 05020101.xhp#tit.help.text
+msgctxt "05020101.xhp#tit.help.text"
+msgid "Alignment"
+msgstr "Alineación"
+
+#: 05020101.xhp#bm_id3150793.help.text
+msgid "<bookmark_value>aligning;titles in charts</bookmark_value><bookmark_value>titles;alignment (charts)</bookmark_value>"
+msgstr "<bookmark_value>alinear;títulos en gráficos</bookmark_value><bookmark_value>títulos;alinear (gráficos)</bookmark_value>"
+
+#: 05020101.xhp#hd_id3150793.1.help.text
+msgid "<link href=\"text/schart/01/05020101.xhp\" name=\"Alignment\">Alignment</link>"
+msgstr "<link href=\"text/schart/01/05020101.xhp\" name=\"Alignment\">Alineación</link>"
+
+#: 05020101.xhp#par_id3125864.2.help.text
+msgid "Modifies the alignment of the chart title."
+msgstr "Modifica la alineación del título del gráfico."
+
+#: 05020101.xhp#par_id3145748.4.help.text
+msgid "Some of the options are not available for all types of labels. For example, there are different options for 2D and 3D object labels."
+msgstr "Algunas de las opciones no están disponibles en todos los tipos de etiquetas. Por ejemplo, hay varias opciones para las etiquetas de los objetos 2D y 3D."
+
+#: 05020101.xhp#par_id3150717.3.help.text
+msgid "Please note that problems may arise in displaying labels if the size of your chart is too small. You can avoid this by either enlarging the view or decreasing the font size."
+msgstr "Tenga en cuenta que si el tamaño de representación del gráfico es demasiado reducido pueden surgir problemas con la presentación del título. Estos problemas pueden evitarse agrandando la vista o reduciendo el tamaño de la fuente."
+
+#: 04010000.xhp#tit.help.text
+msgctxt "04010000.xhp#tit.help.text"
+msgid "Titles"
+msgstr "Títulos"
+
+#: 04010000.xhp#hd_id3147345.1.help.text
+msgctxt "04010000.xhp#hd_id3147345.1.help.text"
+msgid "Titles"
+msgstr "Títulos"
+
+#: 04010000.xhp#par_id3150298.2.help.text
+msgid "<variable id=\"titel\"><ahelp hid=\".uno:InsertMenuTitles\">Opens a dialog to enter or modify the titles in a chart.</ahelp></variable> You can define the text for the main title, subtitle and the axis labels, and specify if they are displayed."
+msgstr "<variable id=\"titel\"><ahelp hid=\".uno:InsertMenuTitles\">Abre un cuadro de diálogo para introducir o modificar los títulos de un gráfico.</ahelp></variable> Puede definir el texto del título principal, del subtítulo y de las etiquetas de los ejes, así como especificar si deben mostrarse o no."
+
+#: 04010000.xhp#hd_id3150207.3.help.text
+msgid "Main Title"
+msgstr "Título principal"
+
+#: 04010000.xhp#par_id3150371.4.help.text
+msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_MAINTITLE\">Marking the <emph>Main Title</emph> option activates the main title. Enter the desired title in the corresponding text field.</ahelp>"
+msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_MAINTITLE\">Si marca la opción <emph>Título principal</emph> se activa el título principal. Escriba el título deseado en el campo de texto correspondiente.</ahelp>"
+
+#: 04010000.xhp#hd_id3146980.5.help.text
+msgid "Subtitle"
+msgstr "Subtítulo"
+
+#: 04010000.xhp#par_id3149404.6.help.text
+msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_SUBTITLE\">Marking the <emph>Subtitle</emph> option activates the subtitle. Enter the desired title in the corresponding text field.</ahelp>"
+msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_SUBTITLE\">Si marca la opción <emph>Subtítulo</emph> se activa el subtítulo. Escriba el título deseado en el campo de texto correspondiente.</ahelp>"
+
+#: 04010000.xhp#par_id3152901.7.help.text
+msgid "<variable id=\"sytexttitel\"><ahelp hid=\".uno:ToggleTitle\">Click <emph>Title On/Off</emph> on the Formatting bar to show or hide the title and subtitle.</ahelp></variable>"
+msgstr "<variable id=\"sytexttitel\"><ahelp hid=\".uno:ToggleTitle\">Haga clic en <emph>Activar/desactivar título</emph> en la barra Formato para mostrar u ocultar el título y el subtítulo.</ahelp></variable>"
+
+#: 04010000.xhp#hd_id3156018.8.help.text
+msgctxt "04010000.xhp#hd_id3156018.8.help.text"
+msgid "X axis"
+msgstr "Eje X"
+
+#: 04010000.xhp#par_id3152869.9.help.text
+msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_X_AXIS\">Marking the <emph>X axis</emph> option activates the X axis title. Enter the desired title in the corresponding text field.</ahelp>"
+msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_X_AXIS\">Marcando la opción<emph>Eje X </emph> activa el título del eje X. Digite el título en el correspondiente campo de texto.</ahelp>"
+
+#: 04010000.xhp#hd_id3159226.10.help.text
+msgctxt "04010000.xhp#hd_id3159226.10.help.text"
+msgid "Y axis"
+msgstr "Eje Y"
+
+#: 04010000.xhp#par_id3154763.11.help.text
+msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Y_AXIS\">Marking the <emph>Y axis</emph> option activates the Y axis title. Enter the desired title in the corresponding text field.</ahelp>"
+msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Y_AXIS\">Marcando la opción <emph>Eje Y</emph> activa el título del Eje Y. Digite el título en el correspondiente campo de texto.</ahelp>"
+
+#: 04010000.xhp#hd_id3153009.12.help.text
+msgctxt "04010000.xhp#hd_id3153009.12.help.text"
+msgid "Z axis"
+msgstr "Eje Z"
+
+#: 04010000.xhp#par_id3154710.13.help.text
+msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Z_AXIS\">Marking the <emph>Z axis</emph> option activates the Z axis title. Enter the desired title in the corresponding text field.</ahelp> This option is only available for 3-D charts."
+msgstr "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Z_AXIS\">Marcando la opción <emph>Eje Z</emph> activa el título del eje Z. Digite el título en el correspondiente campo de texto.</ahelp> Esta opción solo está disponible para gráficos 3-D."
+
+#: 04010000.xhp#par_id3153073.14.help.text
+msgid "<variable id=\"sytextachse\"><ahelp hid=\".uno:ToggleAxisTitle\">Click <emph>Axes Title On/Off</emph> on the Formatting bar to show or hide the axis labels.</ahelp></variable>"
+msgstr "<variable id=\"sytextachse\"><ahelp hid=\".uno:ToggleAxisTitle\">Haga clic en <emph>Activar/desactivar título del eje</emph> en la barra Formato para mostrar u ocultar las etiquetas de los ejes.</ahelp></variable>"
+
+#: type_bubble.xhp#tit.help.text
+msgid "Chart Type Bubble"
+msgstr "Tipo de Gráfico Burbuja"
+
+#: type_bubble.xhp#bm_id2183975.help.text
+msgid "<bookmark_value>bubble charts</bookmark_value> <bookmark_value>chart types;bubble</bookmark_value>"
+msgstr "<bookmark_value>gráficos de burbujas</bookmark_value><bookmark_value>tipos de gráficos;burbujas</bookmark_value>"
+
+#: type_bubble.xhp#hd_id1970722.help.text
+msgid "<variable id=\"type_bubble\"><link href=\"text/schart/01/type_bubble.xhp\">Chart Type Bubble</link></variable>"
+msgstr "<variable id=\"type_bubble\"><link href=\"text/schart/01/type_bubble.xhp\">Tipo de gráfico burbuja</link></variable>"
+
+#: type_bubble.xhp#par_id40589.help.text
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
+msgstr "En la primera página del <link href=\"text/schart/01/wiz_chart_type.xhp\">Asistente para gráficos</link> puede elegir un tipo de gráfico. "
+
+#: type_bubble.xhp#hd_id0526200904491284.help.text
+msgid "Bubble"
+msgstr "Burbuja"
+
+#: type_bubble.xhp#par_id0526200904491222.help.text
+msgid "A bubble chart shows the relations of three variables. Two variables are used for the position on the X-axis and Y-axis, while the third variable is shown as the relative size of each bubble."
+msgstr "Una gráfica que muestra la relación de tres variables. Dos variables son usadas por la posición del eje X y Y, mientras que la tercer variable se muestra con un tamaño relativo a cada burbuja."
+
+#: type_bubble.xhp#par_id0526200906040162.help.text
+msgid "The data series dialog for a bubble chart has an entry to define the data range for the Bubble Sizes."
+msgstr "El diálogo de series de datos para un gráfico de burbuja posee una entrada para definir el rango de datos para los tamaños de Burbujas. "
+
+#: 05040000.xhp#tit.help.text
+msgid "Axis"
+msgstr "Eje"
+
+#: 05040000.xhp#hd_id3149456.1.help.text
+msgid "<link href=\"text/schart/01/05040000.xhp\" name=\"Axis\">Axis</link>"
+msgstr "<link href=\"text/schart/01/05040000.xhp\" name=\"Axis\">Eje</link>"
+
+#: 05040000.xhp#par_id3150441.2.help.text
+msgid "This opens a submenu to edit axial properties."
+msgstr "Abre un submenú para editar las propiedades de los ejes."
+
+#: 05040000.xhp#par_id3154319.11.help.text
+msgid "The tabs in the dialogs depend on the chart type selected."
+msgstr "Las fichas que se incluyen en el diálogo dependen del tipo de gráfico elegido."
+
+#: 05040000.xhp#hd_id3153729.3.help.text
+msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"X axis\">X axis</link>"
+msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"X axis\">Eje X...</link>"
+
+#: 05040000.xhp#hd_id3147394.4.help.text
+msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">Y axis</link>"
+msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">Eje Y...</link>"
+
+#: 05040000.xhp#hd_id3153160.9.help.text
+msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"Secondary X Axis\">Secondary X Axis</link>"
+msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"Secondary X Axis\">Eje secundario X...</link>"
+
+#: 05040000.xhp#par_id3149401.10.help.text
+msgid "<ahelp hid=\".uno:DiagramAxisA\">Opens a dialog where you can edit the properties of the secondary X axis. To insert a secondary X axis, choose <emph>Insert - Axes</emph> and select <emph>X axis</emph>.</ahelp>"
+msgstr "<ahelp hid=\".uno:DiagramAxisA\">Abre un diálogo donde puede editar las propiedades del eje X secundario. Para insertar un eje X secundario, elija <emph>Insertar - Ejes</emph> y seleccione<emph>Eje X</emph>.</ahelp>"
+
+#: 05040000.xhp#hd_id3145640.7.help.text
+msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Secondary Y Axis\">Secondary Y Axis</link>"
+msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Secondary Y Axis\">Eje secundario Y...</link>"
+
+#: 05040000.xhp#par_id3159264.8.help.text
+msgid "<ahelp hid=\".uno:DiagramAxisB\">Opens a dialog where you can edit the properties of the secondary Y axis. To insert a secondary Y axis, choose <emph>Insert - Axes</emph> and select <emph>Y axis</emph>.</ahelp>"
+msgstr "<ahelp hid=\".uno:DiagramAxisB\">Abre un diálogo donde puede editar las propiedades del eje Y secundario. Para insertar un eje Y secundario, elija <emph>Insertar - Ejes</emph> y seleccione<emph>Eje Y</emph>.</ahelp>"
+
+#: 05040000.xhp#hd_id3145228.5.help.text
+msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"Z axis\">Z axis</link>"
+msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"Z axis\">Eje Z...</link>"
+
+#: 05040000.xhp#hd_id3147345.6.help.text
+msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"All axes\">All axes</link>"
+msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"All axes\">Todos los ejes...</link>"
+
+#: type_xy.xhp#tit.help.text
+msgid "Chart Type XY"
+msgstr "Gráfico de tipo XY"
+
+#: type_xy.xhp#bm_id84231.help.text
+msgid "<bookmark_value>scatter charts</bookmark_value><bookmark_value>XY charts</bookmark_value><bookmark_value>chart types;XY (scatter)</bookmark_value><bookmark_value>error indicators in charts</bookmark_value><bookmark_value>error bars in charts</bookmark_value><bookmark_value>averages in charts</bookmark_value><bookmark_value>statistics in charts</bookmark_value><bookmark_value>variances in charts</bookmark_value><bookmark_value>standard deviation in charts</bookmark_value>"
+msgstr "<bookmark_value>graficas de disperción</bookmark_value><bookmark_value>gráficas XY </bookmark_value><bookmark_value>tipos de gráfico;XY (disperso)</bookmark_value><bookmark_value>error de indicador en gráficos</bookmark_value><bookmark_value>barrar de error en gráficos</bookmark_value><bookmark_value>promedios en gráficos</bookmark_value><bookmark_value>estadisticas en gráficos</bookmark_value><bookmark_value>variaciones en gráficos</bookmark_value><bookmark_value>desviación estandar en gráficos</bookmark_value>"
+
+#: type_xy.xhp#hd_id9346598.help.text
+msgid "<variable id=\"type_xy\"><link href=\"text/schart/01/type_xy.xhp\">Chart Type XY (Scatter)</link></variable>"
+msgstr "<variable id=\"type_xy\"><link href=\"text/schart/01/type_xy.xhp\">Tipo de gráfico XY (esparcido)</link></variable>"
+
+#: type_xy.xhp#par_id2003845.help.text
+msgctxt "type_xy.xhp#par_id2003845.help.text"
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type. "
+msgstr "En la primera página del <link href=\"text/schart/01/wiz_chart_type.xhp\">Asistente para Gráficos</link> puede elegir el tipo de gráfico. "
+
+#: type_xy.xhp#hd_id7757194.help.text
+msgid "XY (Scatter)"
+msgstr "XY (Dispersión)"
+
+#: type_xy.xhp#par_id5977965.help.text
+msgid "An XY chart in its basic form is based on one data series consisting of a name, a list of x‑values, and a list of y‑values. Each value pair (x|y) is shown as a point in a coordinate system. The name of the data series is associated with the y‑values and shown in the legend."
+msgstr "Un gráfico XY en su forma básica se basa en una serie de datos consistentes de un nombre, una lista de valores -x, y una lista de los valores -y. Cada par de valor (x|y) se muestra como un punto en un sistema de coordenadas. El nombre de la serie de datos es asociado con los valores -y y se muestra en la leyenda."
+
+#: type_xy.xhp#par_id4381847.help.text
+msgid "Choose an XY chart for the following example tasks:"
+msgstr "Escoger un gráfico XY para las siguientes tareas de ejemplo:"
+
+#: type_xy.xhp#par_id1336710.help.text
+msgid "scale the x‑axis"
+msgstr "escala el eje-x"
+
+#: type_xy.xhp#par_id1221655.help.text
+msgid "generate a parameter curve, for example a spiral"
+msgstr "genera el parametro de la curva, por ejemplo una esprial"
+
+#: type_xy.xhp#par_id3397320.help.text
+msgid "draw the graph of a function"
+msgstr "dibujar el gráfico de una función"
+
+#: type_xy.xhp#par_id7657399.help.text
+msgid "explore the statistical association of quantitative variables"
+msgstr "explora la asociación estadística de la variable cuantitativa"
+
+#: type_xy.xhp#par_id8925138.help.text
+msgid "Your XY chart may have more than one data series."
+msgstr "Su gráfico XY puede tener más de una serie de datos."
+
+#: type_xy.xhp#hd_id5461897.help.text
+msgid "XY Chart Variants"
+msgstr "Variantes de gráfico XY"
+
+#: type_xy.xhp#par_id8919339.help.text
+msgid "You can choose an XY chart variant on the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link>, or by choosing <item type=\"menuitem\">Format - Chart Type </item>for a chart in edit mode."
+msgstr "Puedes escoger un diagrama XY en la primera página del <link href=\"text/schart/01/wiz_chart_type.xhp\">Asistente para gráficos</link>, o seleccionando <item type=\"menuitem\">Formato - Gráfico </item>para pasar a modo de edición."
+
+#: type_xy.xhp#par_id4634235.help.text
+msgid "The chart is created with default settings. After the chart is finished, you can edit its properties to change the appearance. Line styles and icons can be changed on the <emph>Line</emph>tab page of the data series properties dialog."
+msgstr "El gráfico es creado con la configuración predeterminada. Una vez que el gráfico es completado, se puede editar sus propiedades para cambiar la apariencia. Los estilos de las lineas y los iconos pueden ser cambiados en la pestaña <emph>Linea</emph> de la serie de datos en el diálogo de propiedades."
+
+#: type_xy.xhp#par_id5482039.help.text
+msgid "Double-click any data point to open the <item type=\"menuitem\">Data Series</item> dialog. In this dialog, you can change many properties of the data series."
+msgstr "Dar doble clic en cualquier punto de datos para abrir el diálogo <item type=\"menuitem\">Series de datos</item>. En este diálogo, se puede cambiar muchas propiedades de las series de datos."
+
+#: type_xy.xhp#par_id0805200810492449.help.text
+msgid "For 2D charts, you can choose <item type=\"menuitem\">Insert - Y Error Bars</item> to enable the display of error bars."
+msgstr "Para gráficos en 2D, se puede elegir <item type=\"menuitem\">Insertar - Barras de error Y</item> para habilitar la visualización de las barras de error."
+
+#: type_xy.xhp#par_id6221198.help.text
+msgid "You can enable the display of mean value lines and trend lines using commands on the Insert menu."
+msgstr "Puede mostrar las líneas de valores promedios y las curvas de regresión usando los comandos del menú Insertar."
+
+#: type_xy.xhp#hd_id1393475.help.text
+msgid "Points only"
+msgstr "Solo puntos"
+
+#: type_xy.xhp#par_id6571550.help.text
+msgid "Each data point is shown by an icon. %PRODUCTNAME uses default icons with different forms and colors for each data series. The default colors are set in <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Charts - Default Colors</item>. "
+msgstr "Cada punto de datos se muestra con un ícono. %PRODUCTNAME usa íconos predeterminados con diferentes formas y colores para cada serie de datos. Los colores predeterminados se establecen en <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - Gráficos - Colores predeterminados</item>."
+
+#: type_xy.xhp#hd_id5376140.help.text
+msgid "Lines Only"
+msgstr "Solo lineas"
+
+#: type_xy.xhp#par_id4408093.help.text
+msgid "This variant draws straight lines from one data point to the next. The data points are not shown by icons. "
+msgstr "Esta variante dibuja líneas rectas desde un punto de datos al próximo. Los puntos de datos no son mostrados como iconos."
+
+#: type_xy.xhp#par_id7261268.help.text
+msgid "The drawing order is the same as the order in the data series. Mark <emph>Sort by X Values</emph> to draw the lines in the order of the x values. This sorting applies only to the chart, not to the data in the table."
+msgstr "La orden de dibujo es la mismo que el orden en la serie de datos. Marque <emph>Ordenar por Valores X</emph> para dibujar las líneas en el orden de los valores de x. Este orden se aplica sólo al gráfico, no a los datos en la tabla."
+
+#: type_xy.xhp#hd_id6949369.help.text
+msgid "Points and Lines"
+msgstr "Lineas y puntos"
+
+#: type_xy.xhp#par_id9611499.help.text
+msgid "This variant shows points and lines at the same time."
+msgstr "Esta variantes muestran los puntos y lineas simultaneamente."
+
+#: type_xy.xhp#hd_id6765953.help.text
+msgid "3D Lines"
+msgstr "Lineas 3D"
+
+#: type_xy.xhp#par_id7422711.help.text
+msgid "The lines are shown like tapes. The data points are not shown by icons. In the finished chart choose <link href=\"text/schart/01/three_d_view.xhp\">3D View</link> to set properties like illumination and angle of view."
+msgstr "Las líneas son mostradas como cintas. Los puntos de datos no se visualizan como iconos. Una vez terminado el gráfico elige <link href=\"text/schart/01/three_d_view.xhp\">Vista 3D</link> para fijar las propiedades como iluminación y ángulo de vista."
+
+#: type_xy.xhp#hd_id239265.help.text
+msgid "Smooth Lines"
+msgstr "Lineas suaves"
+
+#: type_xy.xhp#par_id7957396.help.text
+msgid "Mark <emph>Smooth Lines</emph> to draw curves instead of straight line segments."
+msgstr "Marca <emph>Lineas suaves</emph> para dibujar curvas en vez de segmentos de lineas rectas."
+
+#: type_xy.xhp#par_id1202124.help.text
+msgid "Click <emph>Properties</emph> to set details for the curves."
+msgstr "Has clic en <emph>Propiedades</emph> para configurar los detalles para las curvas."
+
+#: type_xy.xhp#par_id5989562.help.text
+msgid "<emph>Cubic Spline</emph> interpolates your data points with polynomials of degree 3. The transitions between the polynomial pieces are smooth, having the same slope and curvature. "
+msgstr "<emph>Spline cúbica</emph> interpola sus puntos con polinomios de grado 3. Las transiciones entre las partes polinómicas son suaves, teniendo la misma pendiente y curvatura. "
+
+#: type_xy.xhp#par_id6128421.help.text
+msgid "The <emph>Resolution</emph> determines how many line segments are calculated to draw a piece of polynomial between two data points. You can see the intermediate points if you click any data point."
+msgstr "La <emph>resolución</emph> determina cuantos segmentos de linea hay y calcula como dibujar una pieza de polinomio entre dos puntos de datos. Puedes ver el punto intermedio si haces clic en cualquier punto de datos."
+
+#: type_xy.xhp#par_id9280373.help.text
+msgid "<emph>B-Spline</emph> uses a parametric, interpolating B-spline curve. Those curves are built piecewise from polynomials. The <emph>Degree of polynomials</emph> sets the degree of these polynomials."
+msgstr "<emph>B-Spline</emph> usa una curva B-spline paramétrica, con interpolación. Estas curvas se construyen pieza por pieza mediante polinomios. La opción <emph>Grado de los polinomios</emph> establece el grado de estos polinomios."
+
+#: type_column_bar.xhp#tit.help.text
+msgid "Chart Type Column and Bar"
+msgstr "Tipo de gráfico Columna y Barra"
+
+#: type_column_bar.xhp#bm_id4919583.help.text
+msgid "<bookmark_value>column charts</bookmark_value><bookmark_value>bar charts</bookmark_value><bookmark_value>chart types;column and bar</bookmark_value>"
+msgstr "<bookmark_value>gráficos de columna</bookmark_value><bookmark_value>gráficos de barra</bookmark_value><bookmark_value>tipos de gráficos;columna and barra</bookmark_value>"
+
+#: type_column_bar.xhp#hd_id649433.help.text
+msgid "<variable id=\"type_column_bar\"><link href=\"text/schart/01/type_column_bar.xhp\">Chart Type Column and Bar</link></variable>"
+msgstr "<variable id=\"type_column_bar\"><link href=\"text/schart/01/type_column_bar.xhp\">Tipo de Gráfico Columna y Barra</link></variable>"
+
+#: type_column_bar.xhp#par_id3430585.help.text
+msgctxt "type_column_bar.xhp#par_id3430585.help.text"
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type. "
+msgstr "En la primera página del <link href=\"text/schart/01/wiz_chart_type.xhp\">Asistente para gráficos</link> puede escoger un tipo de gráfico."
+
+#: type_column_bar.xhp#hd_id9826960.help.text
+msgid "Column"
+msgstr "Columna"
+
+#: type_column_bar.xhp#par_id2244026.help.text
+msgid "This type shows a bar chart or bar graph with vertical bars. The height of each bar is proportional to its value. The x axis shows categories. The y axis shows the value for each category."
+msgstr "Este tipo muestra un gráfico de barra con barras verticales. Al altura de cada barra es proporcional a su valor. El eje X muestra las categorías. El eje Y muestra el valor para cada categoría."
+
+#: type_column_bar.xhp#par_id1281167.help.text
+msgid "Normal - this subtype shows all data values belonging to a category next to each other. Main focus is on the individual absolute values, compared to every other value."
+msgstr "Normal - este subtipo de gráfico muestra todos los valores de una categoría unos al lado de otros. La principal aplicación es la comparación de datos en valor absoluto con el resto de los datos."
+
+#: type_column_bar.xhp#par_id3249000.help.text
+msgid "Stacked - this subtype shows the data values of each category on top of each other. Main focus is the overall category value and the individual contribution of each value within its category."
+msgstr "Apilado - este subtipo muestra los valores de datos de cada categoría unos encima de otros. El objetivo principal es el de dar una visión general del valor de la categoría y la contribución individual de cada valor dentro de su categoría."
+
+#: type_column_bar.xhp#par_id6968901.help.text
+msgid "Percent - this subtype shows the relative percentage of each data value with regard to the total of its category. Main focus is the relative contribution of each value to the category's total."
+msgstr "Porcentaje - este subtipo muestra el porcentaje relativo de cada valor de dato en relación con el total de su categoría. El objetivo principal es mostrar la contribución relativa de cada valor al total de la categoría."
+
+#: type_column_bar.xhp#par_id2224494.help.text
+msgid "You can enable a <link href=\"text/schart/01/three_d_view.xhp\">3D view</link> of the data values. The \"realistic\" scheme tries to give the best 3D look. The \"simple\" scheme tries to mimic the chart view of other Office products."
+msgstr "Puede activar la <link href=\"text/schart/01/three_d_view.xhp\">Vista 3D</link> de los datos. El esquema \"realista\" intenta dar la mejor apariencia 3D. El esquema \"simple\" intenta parecerse a la vista de gráfico de otros productos Office."
+
+#: type_column_bar.xhp#par_id7359233.help.text
+msgid "For 3D charts, you can select the shape of each data value from Box, Cylinder, Cone, and Pyramid."
+msgstr "Para gráficos 3D, puede seleccionar la forma de cada valor de dato de entre las siguientes opciones Caja, Cilindro, Cono y Pirámide."
+
+#: type_column_bar.xhp#hd_id955839.help.text
+msgid "Bar"
+msgstr "Barra"
+
+#: type_column_bar.xhp#par_id6596881.help.text
+msgid "This type shows a bar chart or bar graph with horizontal bars. The length of each bar is proportional to its value. The y axis shows categories. The x axis shows the value for each category."
+msgstr "Este tipo muestra un gráfico de barra con barras horizontales. La longitud de cada barra es proporcional a su valor. El eje Y muestra las categorías. El eje X muestra el valor de cada categoría."
+
+#: type_column_bar.xhp#par_id8750572.help.text
+msgid "The subtypes are the same as for the Column type."
+msgstr "Los subtipos son del mismo tipo que la Columna."
+
+#: 04040000.xhp#tit.help.text
+msgctxt "04040000.xhp#tit.help.text"
+msgid "Axes"
+msgstr "Ejes"
+
+#: 04040000.xhp#bm_id3147428.help.text
+msgid "<bookmark_value>axes; showing axes in charts</bookmark_value><bookmark_value>charts; showing axes</bookmark_value><bookmark_value>X axes; showing</bookmark_value><bookmark_value>Y axes; showing</bookmark_value><bookmark_value>Z axes; showing</bookmark_value><bookmark_value>axes; better scaling</bookmark_value><bookmark_value>secondary axes in charts</bookmark_value>"
+msgstr "<bookmark_value>ejes; mostrar ejes X, Y y Z</bookmark_value><bookmark_value>ejes; mostrar ejes secundarios</bookmark_value><bookmark_value>gráficos; mostrar ejes</bookmark_value><bookmark_value>ejes X; mostrar</bookmark_value><bookmark_value>ejes Y; mostrar</bookmark_value><bookmark_value>ejes Z; mostrar</bookmark_value><bookmark_value>ejes; mejor escala</bookmark_value><bookmark_value>ejes secundarios; gráficos</bookmark_value><bookmark_value>gráficos; mostrar ejes secundarios</bookmark_value>"
+
+#: 04040000.xhp#hd_id3147428.1.help.text
+msgctxt "04040000.xhp#hd_id3147428.1.help.text"
+msgid "Axes"
+msgstr "Ejes"
+
+#: 04040000.xhp#par_id3150330.2.help.text
+msgid "<variable id=\"achsen\"><ahelp hid=\".uno:InsertMenuAxes\">Specifies the axes to be displayed in the chart.</ahelp></variable>"
+msgstr "<variable id=\"achsen\"><ahelp hid=\".uno:InsertMenuAxes\">Especifica los ejes que se mostrarán en el gráfico.</ahelp></variable>"
+
+#: 04040000.xhp#hd_id3156385.46.help.text
+msgid "Major axis"
+msgstr "Eje principal"
+
+#: 04040000.xhp#hd_id3146316.5.help.text
+msgctxt "04040000.xhp#hd_id3146316.5.help.text"
+msgid "X axis"
+msgstr "Eje X"
+
+#: 04040000.xhp#par_id3145230.6.help.text
+msgid "<ahelp hid=\"SCH_CHECKBOX_DLG_AXIS_CB_X_PRIMARY\">Displays the X axis as a line with subdivisions.</ahelp>"
+msgstr "<ahelp hid=\"SCH_CHECKBOX_DLG_AXIS_CB_X_PRIMARY\">Muestra el eje X como una línea con subdivisiones.</ahelp>"
+
+#: 04040000.xhp#hd_id3147003.17.help.text
+msgctxt "04040000.xhp#hd_id3147003.17.help.text"
+msgid "Y axis"
+msgstr "Eje Y"
+
+#: 04040000.xhp#par_id3154020.18.help.text
+msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_PRIMARY\">Displays the Y axis as a line with subdivisions.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_PRIMARY\">Muestra el eje Y como una línea con subdivisiones.</ahelp>"
+
+#: 04040000.xhp#hd_id3150345.28.help.text
+msgctxt "04040000.xhp#hd_id3150345.28.help.text"
+msgid "Z axis"
+msgstr "Eje Z"
+
+#: 04040000.xhp#par_id3155113.29.help.text
+msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Z_PRIMARY\">Displays the Z axis as a line with subdivisions.</ahelp> This axis can only be displayed in 3D charts."
+msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Z_PRIMARY\">Muestra el eje Z como una línea con subdivisiones.</ahelp> Este eje sólo se puede mostrar en gráficos 3D."
+
+#: 04040000.xhp#hd_id3150206.36.help.text
+msgid "Secondary axis"
+msgstr "Eje Secundario"
+
+#: 04040000.xhp#par_id3166428.37.help.text
+msgid "Use this area to assign a second axis to your chart. If a data series is already assigned to this axis, $[officename] automatically displays the axis and the label. You can turn off these settings later on. If no data has been assigned to this axis and you activate this area, the values of the primary Y axis are applied to the secondary axis."
+msgstr "Use esta área para asignar un segundo eje al gráfico. Si la serie de datos ya está asignada a este eje, $[officename] automáticamente muestra el eje y su etiqueta. Puede desactivar esta configuración posteriormente. Si no se ha asignado datos a este eje y activa esta área, los valores del eje primario Y son aplicados al eje secundario."
+
+#: 04040000.xhp#hd_id3152988.44.help.text
+msgctxt "04040000.xhp#hd_id3152988.44.help.text"
+msgid "X axis"
+msgstr "Eje X"
+
+#: 04040000.xhp#par_id3156445.45.help.text
+msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_X_SECONDARY\">Displays a secondary X axis in the chart.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_X_SECONDARY\">Muestra un eje X secundario en el gráfico.</ahelp>"
+
+#: 04040000.xhp#hd_id3152896.38.help.text
+msgctxt "04040000.xhp#hd_id3152896.38.help.text"
+msgid "Y axis"
+msgstr "Eje Y"
+
+#: 04040000.xhp#par_id3153818.39.help.text
+msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">Displays a secondary Y axis in the chart.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">Muestra un eje Y secundario en el gráfico.</ahelp>"
+
+#: 04040000.xhp#par_id3154762.41.help.text
+msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">The major axis and the secondary axis can have different scaling. For example, you can scale one axis to 2 in. and the other to 1.5 in. </ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">Es posible que el eje principal y el secundario tengan una escala diferente. Por ejemplo, puede escalar un eje a 2 cm y el otro a 1,5 cm. </ahelp>"
+
+#: 05020100.xhp#tit.help.text
+msgctxt "05020100.xhp#tit.help.text"
+msgid "Title"
+msgstr "Título"
+
+#: 05020100.xhp#bm_id3150769.help.text
+msgid "<bookmark_value>editing; titles</bookmark_value>"
+msgstr "<bookmark_value>editar; títulos</bookmark_value>"
+
+#: 05020100.xhp#hd_id3150769.2.help.text
+msgctxt "05020100.xhp#hd_id3150769.2.help.text"
+msgid "Title"
+msgstr "Título"
+
+#: 05020100.xhp#par_id3149666.1.help.text
+msgid "<variable id=\"titel\"><ahelp hid=\".uno:ZTitle\">Modifies the properties of the selected title.</ahelp></variable>"
+msgstr "<variable id=\"titel\"><ahelp hid=\".uno:ZTitle\">Modifica las propiedades del título seleccionado.</ahelp></variable>"
+
+#: 05020100.xhp#hd_id3149378.3.help.text
+msgctxt "05020100.xhp#hd_id3149378.3.help.text"
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Carácter</link>"
+
+#: 04050000.xhp#tit.help.text
+msgid "Y Error Bars"
+msgstr "Barras de Error Y"
+
+#: 04050000.xhp#hd_id3147428.1.help.text
+msgctxt "04050000.xhp#hd_id3147428.1.help.text"
+msgid "<link href=\"text/schart/01/04050000.xhp\" name=\"Y Error Bars\">Y Error Bars</link>"
+msgstr "<link href=\"text/schart/01/04050000.xhp\" name=\"Y Error Bars\">Barras de error Y</link>"
+
+#: 04050000.xhp#par_id3149666.2.help.text
+msgid "<variable id=\"statistik\"><ahelp hid=\".\">Use the <emph>Y Error Bars</emph> dialog to display error bars for 2D charts.</ahelp></variable>"
+msgstr "<variable id=\"statistik\"><ahelp hid=\".\">Use el diálogo de las <emph>Barras de error Y</emph>para mostrar las barras de error en gráficos 2D.</ahelp></variable>"
+
+#: 04050000.xhp#par_id3401287.help.text
+msgid "An error bar is an indicator line that spans over a range from y - NegativeErrorValue to y + PositiveErrorValue. In this term, y is the value of the data point. When \"standard deviation\" is selected, y is the mean value of the data series. NegativeErrorValue and PositiveErrorValue are the amounts calculated by the error bar function or given explicitly."
+msgstr "Una barra de error es una línea indicadora que se extiende en un rango que va desde y - ValorNegativoError hasta y + ValorPositivoError. En este caso, y es el valor del dato en ese punto. Cuando se selecciona \"desviación estandard\", y es la media de la serie de datos. ValorNegativoError y ValorPositivoError son las cantidades calculadas por la función barra de error o indicadas explícitamente."
+
+#: 04050000.xhp#par_id3153965.23.help.text
+msgid "The <emph>Insert - Y Error Bars</emph> menu command is only available for 2D charts."
+msgstr "El elemento de menú <emph> Insertar - Barras de error Y</emph> sólo está disponible en los diagramas 2D."
+
+#: 04050000.xhp#hd_id3150344.5.help.text
+msgid "Error category"
+msgstr "Categoría de error"
+
+#: 04050000.xhp#par_id3150202.6.help.text
+msgid "In the <emph>Error category</emph> area, you can choose different ways to display the error category."
+msgstr "En el área <emph> Categoría de Error </emph>, se puede escoger diferentes formas de mostrar la categoría de error."
+
+#: 04050000.xhp#hd_id3152989.7.help.text
+msgid "None"
+msgstr "Ningún"
+
+#: 04050000.xhp#par_id3149409.8.help.text
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_STAT:RBT_NONE\">Does not show any error bars.</ahelp>"
+msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_STAT:RBT_NONE\">No mostrar barras de error.</ahelp>"
+
+#: 04050000.xhp#hd_id3145117.17.help.text
+msgid "Constant value"
+msgstr "Valor constante"
+
+#: 04050000.xhp#par_id3151390.18.help.text
+msgid "<ahelp hid=\"SCH:METRICFIELD:TP_STAT:MTR_FLD_MINUS\">Displays constant values that you specify in the Parameters area.</ahelp>"
+msgstr "<ahelp hid=\"SCH:METRICFIELD:TP_STAT:MTR_FLD_MINUS\">Muestra valores constantes que Usted puede especificar en el área de parámetros.</ahelp>"
+
+#: 04050000.xhp#hd_id3159204.13.help.text
+msgid "Percentage"
+msgstr "Porcentaje"
+
+#: 04050000.xhp#par_id3150048.14.help.text
+msgid "<ahelp hid=\"SCH:METRICFIELD:TP_STAT:MTR_FLD_PERCENT\">Displays a percentage. The display refers to the corresponding data point. Set the percentage in the Parameters area.</ahelp>"
+msgstr "<ahelp hid=\"SCH:METRICFIELD:TP_STAT:MTR_FLD_PERCENT\">Muestra un porcentaje. Se muestra los datos correspondientes al punto elegido. Defina el porcentaje usando el botón de selección.</ahelp>"
+
+#: 04050000.xhp#hd_id8977629.help.text
+msgid "Functions"
+msgstr "Funciones"
+
+#: 04050000.xhp#par_id7109286.help.text
+msgid "<ahelp hid=\".\">Select a function to calculate the error bars.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccione una función para calcular the las barras de error.</ahelp>"
+
+#: 04050000.xhp#par_id5154576.help.text
+msgid "Standard Error: Displays the standard error."
+msgstr "Error Estándar: Muestra el error estándar."
+
+#: 04050000.xhp#par_id3157979.10.help.text
+msgid "<ahelp hid=\".\">Variance: Displays the variance calculated from the number of data points and respective values.</ahelp>"
+msgstr "<ahelp hid=\".\">Varianza: Muestra la varianza calculada desde el número de puntos de datos y los respectivos valores.</ahelp>"
+
+#: 04050000.xhp#par_id3153249.12.help.text
+msgid "<ahelp hid=\".\">Standard Deviation: Displays the standard deviation (square root of the variance).</ahelp>"
+msgstr "<ahelp hid=\".\">Desviación Estándar: Muestra la desviación estándar (raíz cuadrada de la varianza).</ahelp>"
+
+#: 04050000.xhp#par_id3149870.16.help.text
+msgid "<ahelp hid=\".\">Error Margin: Displays the highest error margin in percent according to the highest value of the data group. Set the percentage in the Parameters area.</ahelp>"
+msgstr "<ahelp hid=\".\">Margen de Error: Muestra el margen de error máximo expresado en porcentaje de acuerdo al valor máximo del grupo de datos. Configura el porcentaje en el área de Parámetros.</ahelp>"
+
+#: 04050000.xhp#hd_id350962.help.text
+msgid "Cell Range"
+msgstr "Rango de celdas"
+
+#: 04050000.xhp#par_id6679586.help.text
+msgid "<ahelp hid=\".\">Click Cell Range and then specify a cell range from which to take the positive and negative error bar values.</ahelp>"
+msgstr "<ahelp hid=\".\">Presione rango de Celdas y luego especifique un rango de celdas desde donde tomar los valores de las barras de error positivas y negativas.</ahelp>"
+
+#: 04050000.xhp#par_id3872188.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click a button to shrink the dialog, then use the mouse to select the cell range in the spreadsheet. Click the button again to restore the dialog to full size.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Haga clic en un botón para reducir el tamaño del cuadro de diálogo, a continuación, utilice el ratón para seleccionar el rango de celdas en la hoja de cálculo. Haga clic en el botón otra vez para restablecer el diálogo a su tamaño completo.</ahelp>"
+
+#: 04050000.xhp#hd_id2633747.help.text
+msgid "From Data Table"
+msgstr "Desde Tabla de Datos"
+
+#: 04050000.xhp#par_id6633503.help.text
+msgid "<ahelp hid=\".\">For a chart with its own data, the error bar values can be entered in the chart data table. The Data Table dialog shows additional columns titled Positive Y-Error-Bars and Negative Y-Error-Bars.</ahelp>"
+msgstr "<ahelp hid=\".\">Para un diagrama con sus propios datos, los valores de la barra de error pueden ingresarse en la tabla los valores de la barra de error pueden ser ingresados en la tabla de datos del diagrama. El dialogo de la tabla de datos muestra columnas adicionales tituladas Barras de Error Y Positivas y Barras de Error Y negativas.</ahelp>"
+
+#: 04050000.xhp#par_id0428200810573839.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the value to add to the displayed value as the positive error value.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ingrese el valor a agregar a los valores visualizados como el valor de error positivo</ahelp>"
+
+#: 04050000.xhp#par_id0428200810573862.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the value to subtract from the displayed value as the negative error value.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ingrese el valor a restar del valor visualizado como el valor de error negativo.</ahelp>"
+
+#: 04050000.xhp#par_id0428200810573844.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the address range from where to get the positive error values. Use the Shrink button to select the range from a sheet.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ingrese el rango de direcciones desde donde recibir los valores de error positivos. Use el botón central de su ratón (si lo tiene) para seleccionar el rango desde una hoja de cálculo</ahelp>"
+
+#: 04050000.xhp#par_id0428200810573970.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the address range from where to get the negative error values. Use the Shrink button to select the range from a sheet.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ingrese el rango de direcciones desde donde recibir los valores de error negativo. Use el botón central de su ratón (si lo tiene) para seleccionar el rango desde una hoja.</ahelp>"
+
+#: 04050000.xhp#hd_id0428200810573977.help.text
+msgid "Same value for both"
+msgstr "Igual valor para ambos"
+
+#: 04050000.xhp#par_id0428200810573991.help.text
+msgid "<ahelp hid=\".\">Enable to use the positive error values also as negative error values. You can only change the value of the \"Positve (+)\" box. That value gets copied to the \"Negative (-)\" box automatically.</ahelp>"
+msgstr "<ahelp hid=\".\">Habilita a usar tanto los valores de error positivos como los valores de error negativosa. Usted solamente puede cambiar el valor del cuadro \"Positivo (+). El valor recibido será copiado al cuadro \"Negativo (-)\" automaticamente.</ahelp>"
+
+#: 04050000.xhp#hd_id3156396.19.help.text
+msgid "Error indicator"
+msgstr "Indicador de error"
+
+#: 04050000.xhp#par_id3150539.20.help.text
+msgid "<ahelp hid=\"HID_SCH_CT_INDICATE2\">Specifies the error indicator.</ahelp>"
+msgstr "<ahelp hid=\"HID_SCH_CT_INDICATE2\">Especifique el indicador de error.</ahelp>"
+
+#: 04050000.xhp#hd_id0428200810574027.help.text
+msgid "Positive and Negative"
+msgstr "Positivo y negativo"
+
+#: 04050000.xhp#par_id0428200810574039.help.text
+msgid "<ahelp hid=\".\">Shows positive and negative error bars.</ahelp>"
+msgstr "<ahelp hid=\".\">Mostrar barras de error positivas y negativas.</ahelp>"
+
+#: 04050000.xhp#hd_id0428200810574031.help.text
+msgid "Positive"
+msgstr "Positivo"
+
+#: 04050000.xhp#par_id042820081057411.help.text
+msgid "<ahelp hid=\".\">Shows only positive error bars.</ahelp>"
+msgstr "<ahelp hid=\".\">Mostrar solamente barras de error positivas.</ahelp>"
+
+#: 04050000.xhp#hd_id0428200810574138.help.text
+msgid "Negative"
+msgstr "Negativo"
+
+#: 04050000.xhp#par_id0522200809110667.help.text
+msgid "<ahelp hid=\".\">Shows only negative error bars.</ahelp>"
+msgstr "<ahelp hid=\".\">Mostrar solamente barras de error negativas.</ahelp>"
+
+#: wiz_data_series.xhp#tit.help.text
+msgid "Chart Wizard - Data Series"
+msgstr "Asistente para Gráficos - Series de Datos"
+
+#: wiz_data_series.xhp#bm_id8641621.help.text
+msgid "<bookmark_value>order of chart data</bookmark_value><bookmark_value>data series</bookmark_value>"
+msgstr "<bookmark_value>ordenar datos del gráfico</bookmark_value><bookmark_value>series de datos</bookmark_value>"
+
+#: wiz_data_series.xhp#hd_id6124149.help.text
+msgid "<variable id=\"wiz_data_series\"><link href=\"text/schart/01/wiz_data_series.xhp\">Chart Wizard - Data Series</link></variable>"
+msgstr "<variable id=\"wiz_data_series\"><link href=\"text/schart/01/wiz_data_series.xhp\">Asistente para Gráficos - Series de Datos</link></variable>"
+
+#: wiz_data_series.xhp#par_id9651478.help.text
+msgid "On this page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can change the source range of all data series separately, including their labels. You can also change the range of the categories. You can first select the data range on the Data Range page and then remove unnecessary data series or add data series from other cells here."
+msgstr "En esta página del <link href=\"text/schart/01/wiz_chart_type.xhp\">Asistente para gráficos</link> puede cambiar el rango de cada una de las series de datos de forma independiente, incluidas sus etiquetas. También puede cambiar el rango de las categorías. Puede cambiar en primer lugar el rango de datos en la página Rango de datos y luego borrar las series de datos que no necesite o agregar series de datos desde otras celdas."
+
+#: wiz_data_series.xhp#par_id6326487.help.text
+msgid "If there seem to be too many options on this page, just define the data range on the Chart Wizard - Data Range page and skip this page."
+msgstr "Si le parece que hay demasiadas opciones en esta página, puede definir el rango de datos en Asistente para gráficos - pagína TRango de datos y saltar esta página."
+
+#: wiz_data_series.xhp#par_id686361.help.text
+msgctxt "wiz_data_series.xhp#par_id686361.help.text"
+msgid "This dialog is only available for charts based on a Calc or Writer table."
+msgstr "Este dialogo está disponible sólo para gráficos basado en tablas de Calc o Writer."
+
+#: wiz_data_series.xhp#hd_id9241615.help.text
+msgctxt "wiz_data_series.xhp#hd_id9241615.help.text"
+msgid "Organizing data series"
+msgstr "Organizando series de datos"
+
+#: wiz_data_series.xhp#par_id7159337.help.text
+msgctxt "wiz_data_series.xhp#par_id7159337.help.text"
+msgid "In the Data Series list box you see a list of all data series in the current chart."
+msgstr "En el cuadro de lista de las Series de Datos usted verá una lista de todas las series de datos del gráfico actual."
+
+#: wiz_data_series.xhp#par_id4921720.help.text
+msgctxt "wiz_data_series.xhp#par_id4921720.help.text"
+msgid "To organize the data series, select an entry in the list."
+msgstr "Para organizar las series de datos, seleccionar una entrada de la lista."
+
+#: wiz_data_series.xhp#par_id6627094.help.text
+msgctxt "wiz_data_series.xhp#par_id6627094.help.text"
+msgid "Click Add to add another data series below the selected entry. The new data series has the same type as the selected entry."
+msgstr "Haga clic en Agregar para añadir otra serie de datos debajo de la entrada seleccionada. La nueva serie de datos tiene el mismo tipo que la entrada seleccionada."
+
+#: wiz_data_series.xhp#par_id2926419.help.text
+msgctxt "wiz_data_series.xhp#par_id2926419.help.text"
+msgid "Click Remove to remove the selected entry from the Data Series list."
+msgstr "Haga clic en Eliminar para borrar la entrada seleccionada desde la lista de Series de Datos."
+
+#: wiz_data_series.xhp#par_id4443800.help.text
+msgid "Use the Up and Down arrow buttons to move the selected entry in the list up or down. This does not change the order in the data source table, but changes only the arrangement in the chart."
+msgstr "Utilice las flechas Arriba y Abajo para mover la entrada seleccionada en la lista hacia arriba o abajo. Esto no cambia el orden en la tabla de origen de datos, pero cambia únicamente la organización en el gráfico."
+
+#: wiz_data_series.xhp#hd_id9777520.help.text
+msgctxt "wiz_data_series.xhp#hd_id9777520.help.text"
+msgid "Editing data series"
+msgstr "Editando series de datos"
+
+#: wiz_data_series.xhp#par_id1474654.help.text
+msgctxt "wiz_data_series.xhp#par_id1474654.help.text"
+msgid "Click an entry in the list to view and edit the properties for that entry."
+msgstr "Haga clic en un elemento de la lista para ver y editar las propiedades de ese elemento."
+
+#: wiz_data_series.xhp#par_id4855189.help.text
+msgctxt "wiz_data_series.xhp#par_id4855189.help.text"
+msgid "In the Data Ranges list box you see the role names and cell ranges of the data series components. "
+msgstr "En el cuadro de lista de los Rangos de Datos puedes ver los nombres de las funciones y los rangos de celdas de los componentes de las series de datos. "
+
+#: wiz_data_series.xhp#par_id9475081.help.text
+msgctxt "wiz_data_series.xhp#par_id9475081.help.text"
+msgid "Click an entry, then edit the contents in the text box below. "
+msgstr "Haga clic en un elemento, después edite su contenido en la caja de texto inferior."
+
+#: wiz_data_series.xhp#par_id4695272.help.text
+msgctxt "wiz_data_series.xhp#par_id4695272.help.text"
+msgid "The label next to the text box states the currently selected role. "
+msgstr "La etiqueta junto al cuadro de texto seleccionado actualmente establece la función."
+
+#: wiz_data_series.xhp#par_id3931699.help.text
+msgctxt "wiz_data_series.xhp#par_id3931699.help.text"
+msgid "Enter the range or click <emph>Select data range</emph> to minimize the dialog and select the range with the mouse."
+msgstr "Especificar el rango o hacer clic en <emph>Seleccionar rango de datos</emph> para minimizar el diálogo y seleccionar el rango con el ratón."
+
+#: wiz_data_series.xhp#par_id8626667.help.text
+msgctxt "wiz_data_series.xhp#par_id8626667.help.text"
+msgid "If you want a data range of multiple cell areas that are not next to each other, enter the first range, then manually add a semicolon at the end of the text box, then enter the other ranges. Use a semicolon as delimiter between ranges."
+msgstr "Si desea un rango de datos con áreas de múltiples rangos que no están próximas unas de otras, entre el primer rango, luego manualmente adicione un punto y coma al final de la caja de texto, luego entre los otros rangos. Use el punto y coma como delimitador entre los rangos."
+
+#: wiz_data_series.xhp#par_id5971556.help.text
+msgctxt "wiz_data_series.xhp#par_id5971556.help.text"
+msgid "The range for a data role, like Y-Values, must not include a label cell."
+msgstr "El rango de una función de datos, como valores-Y, no deben incluir una celda de etiqueta."
+
+#: wiz_data_series.xhp#hd_id7622608.help.text
+msgctxt "wiz_data_series.xhp#hd_id7622608.help.text"
+msgid "Editing categories or data labels"
+msgstr "Editando categorías o etiquetas de datos"
+
+#: wiz_data_series.xhp#par_id9222693.help.text
+msgctxt "wiz_data_series.xhp#par_id9222693.help.text"
+msgid "Enter or select a cell range that will be used as text for categories or data labels. "
+msgstr "Ingresa o selecciona un rango de celdas que seran usadas como texto para categorias o etiquetas de datos."
+
+#: wiz_data_series.xhp#par_id9500106.help.text
+msgid "Depending on the chart type, the texts are shown on the X axis or as data labels. "
+msgstr "Dependiendo en el tipo de grafica, el texto es mostrado en el eje X o como etiquetas de datos. "
+
+#: wiz_data_series.xhp#par_id5201879.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows a list of all data series in the chart. Click an entry to view and edit that data series. Click <emph>Add</emph> to insert a new series into the list after the selected entry.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Muestra una lista de todos las series de datos. Haz clic para ver y editar la serie de datos. Haz clic <emph>Agregar</emph> para insertar una nueva serie dentro de la lista despues del registro seleccionado.</ahelp>"
+
+#: wiz_data_series.xhp#par_id2571794.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows all the data ranges used by the data series that is selected in the Data Series list box. Each data range shows the role name and the source range address.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Muestra todos los rangos de datos utilizados por las series de datos que están seleccionados en el cuadro de lista Series de Datos. Cada rango de datos muestra el nombre de la función y el origen del rango de direcciones.</ahelp>"
+
+#: wiz_data_series.xhp#par_id2254402.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the source range address from the second column of the Data Range list box. You can change the range in the text box or by dragging in the document. To minimize this dialog while you select the data range in Calc, click the <emph>Select data range</emph> button.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Muestra el origen del rango de direcciones desde la segunda columna del cuadro de lista Rango de Datos . Puedes cambiar el rango en el cuadro de texto o arrastrando en el documento. Para minimizar este dialogo mientras selecciona el rango de datos en Calc, haga clic en el botón <emph>Seleccionar Rango de Datos</emph>.</ahelp>"
+
+#: wiz_data_series.xhp#par_id2419507.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the source range address of the categories (the texts you can see on the x-axis of a category chart). For an XY-chart, the text box contains the source range of the data labels which are displayed for the data points. To minimize this dialog while you select the data range in Calc, click the <emph>Select data range</emph> button.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Muestra el rango del origen de datos de las categorías (el texto que puede ver en el eje-x de la categoría del gráfico). Para un gráfico X-Y, la caja de texto contiene el rango de origen de las etiquetas de los datos que son mostrados para los valores de datos. Para minimizar este diálogo cuando selecciona el rango de datos en Calc, presione clic en el botón <emph>Seleccione rango de datos</emph>.</ahelp>"
+
+#: wiz_data_series.xhp#par_id1091647.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Adds a new entry below the current entry in the Data Series list. If an entry is selected, the new data series gets the same chart type.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Agrega nuevos datos debajo de los datos actuales en la lista de la lista series de datos. Si un registro esta seleccionado, la nueva serie de datos toma el nombre del mismo tipo de gráfica.</ahelp>"
+
+#: wiz_data_series.xhp#par_id8831446.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Removes the selected entry from the Data Series list.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Elimina los datos seleccionados de la lista de series de datos.</ahelp>"
+
+#: wiz_data_series.xhp#par_id7022309.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves up the selected entry in the Data Series list.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Desplaza hacia arriba la entrada seleccionada en la lista Series de Datos.</ahelp>"
+
+#: wiz_data_series.xhp#par_id2844019.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves down the selected entry in the Data Series list.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Desplaza hacia abajo la entrada seleccionada en la lista Series de Datos.</ahelp>"
+
+#: type_net.xhp#tit.help.text
+msgid "Chart Type Net"
+msgstr "Tipo de gráfico Red"
+
+#: type_net.xhp#bm_id2193975.help.text
+msgid "<bookmark_value>net charts</bookmark_value><bookmark_value>chart types;net</bookmark_value><bookmark_value>radar charts, see net charts</bookmark_value>"
+msgstr "<bookmark_value>gráficos de red</bookmark_value><bookmark_value>tipos de gráfico;red</bookmark_value><bookmark_value>gráficos de radar, ver gráficos de red</bookmark_value>"
+
+#: type_net.xhp#hd_id1990722.help.text
+msgid "<variable id=\"type_net\"><link href=\"text/schart/01/type_net.xhp\">Chart Type Net</link></variable>"
+msgstr "<variable id=\"type_net\"><link href=\"text/schart/01/type_net.xhp\">Gráfico de tipo Red</link></variable>"
+
+#: type_net.xhp#par_id40589.help.text
+msgctxt "type_net.xhp#par_id40589.help.text"
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type. "
+msgstr "En la primera página del <link href=\"text/schart/01/wiz_chart_type.xhp\">Asistente para gráficos</link> puede escoger el tipo de gráfico. "
+
+#: type_net.xhp#hd_id1391338.help.text
+msgid "Net"
+msgstr "Red"
+
+#: type_net.xhp#par_id7812433.help.text
+msgid "A Net chart displays data values as points connected by some lines, in a grid net that resembles a spider net or a radar tube display."
+msgstr "Un gráfico de Red muestra valores de datos como puntos conectados por varias lineas, en una cuadricula de red que asemeja a una red de araña o a una pantalla de radar."
+
+#: type_net.xhp#par_id3512375.help.text
+msgid "For each row of chart data, a radial is shown on which the data is plotted. All data values are shown with the same scale, so all data values should have about the same magnitude."
+msgstr "Para cada fila de datos del gráfico, se muestra una red en la cual se dibujan los datos. Todos los valores de datos se muestan en la misma escala, por tanto todos deben ser de la misma magnitud."
+
+#: 05020200.xhp#tit.help.text
+msgctxt "05020200.xhp#tit.help.text"
+msgid "Title"
+msgstr "Título"
+
+#: 05020200.xhp#hd_id3150541.1.help.text
+msgctxt "05020200.xhp#hd_id3150541.1.help.text"
+msgid "Title"
+msgstr "Título"
+
+#: 05020200.xhp#par_id3145173.2.help.text
+msgid "<variable id=\"titel\"><ahelp hid=\".uno:YTitle\">Modifies the properties of the selected title or the properties of all titles together.</ahelp></variable>"
+msgstr "<variable id=\"titel\"><ahelp hid=\".uno:YTitle\">Modifica las propiedades del título seleccionado o las de todos los títulos.</ahelp></variable>"
+
+#: 05020200.xhp#hd_id3152596.3.help.text
+msgctxt "05020200.xhp#hd_id3152596.3.help.text"
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Characters\">Caracteres</link>"
+
+#: 04050100.xhp#tit.help.text
+msgid "Trend Lines "
+msgstr "Curvas de Regresión"
+
+#: 04050100.xhp#bm_id1744743.help.text
+msgid "<bookmark_value>calculating;regression curves</bookmark_value> <bookmark_value>regression curves in charts</bookmark_value> <bookmark_value>trend lines in charts</bookmark_value> <bookmark_value>mean value lines in charts</bookmark_value>"
+msgstr "<bookmark_value>calculando;curvas de regresión</bookmark_value><bookmark_value>curvas de regresión en gráficos</bookmark_value><bookmark_value>curvas de regresión lineal en gráficos</bookmark_value><bookmark_value>lineas de valores promedios</bookmark_value>"
+
+#: 04050100.xhp#hd_id5409405.help.text
+msgid "<variable id=\"regression\"><link href=\"text/schart/01/04050100.xhp\">Trend Lines</link></variable>"
+msgstr "<variable id=\"regression\"><link href=\"text/schart/01/04050100.xhp\">Curvas de regresión</link></variable>"
+
+#: 04050100.xhp#par_id7272255.help.text
+msgid "<variable id=\"trendlinestext\"><ahelp hid=\".\">Trend lines can be added to all 2D chart types except for Pie and Stock charts.</ahelp></variable>"
+msgstr "<variable id=\"trendlinestext\"><ahelp hid=\".\">Se pueden añadir líneas de tendencia a todos los tipos de diagrama 2D, exceptuando los diagramas apilados y de torta.</ahelp></variable>"
+
+#: 04050100.xhp#par_id143436.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">No trend line is shown.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">No se muestra la curva de regresión.</ahelp>"
+
+#: 04050100.xhp#par_id5716727.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">A linear trend line is shown.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Muestra una línea de tendencia lineal.</ahelp>"
+
+#: 04050100.xhp#par_id5840021.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">A logarithmic trend line is shown.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Muestra un línea de tendencia logarítmica.</ahelp>"
+
+#: 04050100.xhp#par_id9417096.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">An exponential trend line is shown.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Muestra una curva de regresión exponencial.</ahelp>"
+
+#: 04050100.xhp#par_id8482924.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">A power trend line is shown.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Muestra la curva de regresión potencial.</ahelp>"
+
+#: 04050100.xhp#par_id8962370.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the trend line equation next to the trend line.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Muestra la ecuación de la curva de regresión a continuación de la curva.</ahelp>"
+
+#: 04050100.xhp#par_id6889858.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the coefficient of determination next to the trend line.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Muestra el coeficiente de correlación seguido de la linea de tendencia.</ahelp>"
+
+#: 04050100.xhp#par_id8398998.help.text
+msgid "If you insert a trend line to a chart type that uses categories, like <emph>Line </emph>or <emph>Column, </emph>then the numbers 1, 2, 3, <emph>…</emph> are used as x-values to calculate the trend line."
+msgstr "Si insertas una curva de regresión a un tipo de gráfica que usa esta categoría, como <emph>Línea </emph>o <emph>Columnas, </emph>y los números 1, 2, 3, <emph>…</emph> son usados como valores x para la curva de regresión."
+
+#: 04050100.xhp#par_id5676747.help.text
+msgid "To insert trend lines for all data series, double-click the chart to enter edit mode. Choose <item type=\"menuitem\">Insert - Trend Lines</item>, then select the type of trend line from None, Linear, Logarithmic, Exponential, or Power trend line."
+msgstr "Para insertar una curva de regresión para todas las series de datos haz doble clic en la gráfica para entrar en el modo de edición. Seleccione <item type=\"menuitem\">Insertar - Estadística</item>, y después selecciona el tipo de curva de regresión de los números de línea, algoritmo, exponencial y regresión potencial."
+
+#: 04050100.xhp#par_id4349192.help.text
+msgid "To insert a trend line for a single data series, select the data series in the chart, right-click to open the context menu, and choose <item type=\"menuitem\">Insert - Trend Line</item>."
+msgstr "Para ingresar una curva de regresión para una serie de datos sencillas, selecciona la serie de datos dentro de una gráfica y selecciona <item type=\"menuitem\">Formato - Propiedades de objeto - Estadísticas</item>."
+
+#: 04050100.xhp#par_id9337443.help.text
+msgid "To delete a single trend line or mean value line, click the line, then press the Del key."
+msgstr "Para borrar una única curva de regresión o una línea de valores promedios, click en la línea y presione la tecla Suprimir."
+
+#: 04050100.xhp#par_id4529251.help.text
+msgid "To delete all trend lines, choose <item type=\"menuitem\">Insert - Trend Lines</item>, then select <emph>None</emph>."
+msgstr "Para borrar todas las líneas de tendencia, escoger <item type=\"menuitem\">Insertar - Líneas de tendencia</item>, entonces seleccionar <emph>No</emph>."
+
+#: 04050100.xhp#par_id296334.help.text
+msgid "A trend line is shown in the legend automatically."
+msgstr "Una curva de regresión se muestra en la leyenda automáticamente."
+
+#: 04050100.xhp#par_id4072084.help.text
+msgid "<ahelp hid=\".\">Mean Value Lines are special trend lines that show the mean value. Use <item type=\"menuitem\">Insert - Mean Value Lines</item> to insert mean value lines for data series.</ahelp>"
+msgstr "<ahelp hid=\".\">Linea de valor medio son lineas de tendencias especiales que muestran el valor medio. Use <item type=\"menuitem\">Insertar - Linea de valor medio</item> para insertar la linea de valor medio para una serie de datos.</ahelp>"
+
+#: 04050100.xhp#par_id9569689.help.text
+msgid "The trend line has the same color as the corresponding data series. To change the line properties, select the trend line and choose <item type=\"menuitem\">Format - Format Selection - Line</item>."
+msgstr "La curva de regresión tiene el mismo color a la serie de datos correspondiente. Para cambiar las propiedades de línea, seleccionar la curva de regresión y escoger <item type=\"menuitem\">Formato - Formato de selección- Línea</item>."
+
+#: 04050100.xhp#par_id846888.help.text
+msgid "<ahelp hid=\".\">To show the trend line equation, select the trend line in the chart, right-click to open the context menu, and choose <emph>Insert Trend Line Equation</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\">Para mostrar la ecuación de la curva de regresión, seleccionar la curva de regresión en el gráfico, click derecho para abrir el menú contextual, y escoger <emph>Insertar ecuación de curva de regresión</emph>.</ahelp>"
+
+#: 04050100.xhp#par_id8962065.help.text
+msgid "When the chart is in edit mode, %PRODUCTNAME gives you the equation of the trend line and the coefficient of determination R². Click on the trend line to see the information in the status bar."
+msgstr "Cuando la gráfica esta en modo de edición, %PRODUCTNAME se da la ecuación de la línea de tendencia y el coeficiente de correlación R². Haga clic en la línea de tendencia para ver la información de la barra de estado."
+
+#: 04050100.xhp#par_id1328470.help.text
+msgid "For a category chart (for example a line chart), the trend line information is calculated using numbers 1, 2, 3, … as x-values. This is also true if your data series uses other numbers as names for the x-values. For such charts the XY chart type might be more suitable."
+msgstr "Para una categoría de diagramas (por ejemplo los diagramas de lineas), la línea de tendencia se calcula usando los números 1, 2, 3, ... como valores-x. Esto es así incluso cuando se usen otros números como etiquetas para los valores-x. Para ese tipo de diagramas, el diagrama XY podría ser más adecuado."
+
+#: 04050100.xhp#par_id8092593.help.text
+msgid "To show the equation and the coefficient of determination, select the trend line and choose <item type=\"menuitem\">Format - Format Selection - Equation</item>."
+msgstr "Para mostrar la ecuación y el coeficiente de determinación, seleccione la línea de tendencia y escoja <item type=\"menuitem\">Formato - Formato de selección - Ecuación</item>."
+
+#: 04050100.xhp#par_id7971434.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable Show equation to see the equation of the trend line.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Activar la opción \"Mostrar ecuación\" para ver la ecuación de la línea de tendencia.</ahelp>"
+
+#: 04050100.xhp#par_id558793.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable Show Coefficient of Determination to see the determination coefficient of the trend line.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Activar la opción \"Mostrar coeficiente de determinación\" para ver el coeficiente de determinación de la línea de tendencia.</ahelp>"
+
+#: 04050100.xhp#par_id7735221.help.text
+msgid "You can also calculate the parameters using Calc functions as follows."
+msgstr "Puede calcular los parámetros usando las funciones de Calc siguientes."
+
+#: 04050100.xhp#hd_id5744193.help.text
+msgid "The linear regression equation"
+msgstr "La ecuación de regresión lineal"
+
+#: 04050100.xhp#par_id9251991.help.text
+msgid "The <emph>linear regression</emph> follows the equation <item type=\"literal\">y=m*x+b</item>."
+msgstr "La <emph>regresión lineal</emph> sigue la ecuación <item type=\"literal\">y=m*x+b</item>."
+
+#: 04050100.xhp#par_id7951902.help.text
+msgid "m = SLOPE(Data_Y;Data_X) "
+msgstr "m = PENDIENTE(Dato_Y;Dato_X) "
+
+#: 04050100.xhp#par_id6637165.help.text
+msgid "b = INTERCEPT(Data_Y ;Data_X) "
+msgstr "b = INTERSECCIÓN.EJE(Datos_Y ;Datos_X) "
+
+#: 04050100.xhp#par_id7879268.help.text
+msgctxt "04050100.xhp#par_id7879268.help.text"
+msgid "Calculate the coefficient of determination by"
+msgstr "Calcula el coeficiente de una determinación por"
+
+#: 04050100.xhp#par_id9244361.help.text
+msgid "r² = RSQ(Data_Y;Data_X) "
+msgstr "r² = RAÍZ(Datos_Y;Datos_X) "
+
+#: 04050100.xhp#par_id2083498.help.text
+msgid "Besides m, b and r² the array function <emph>LINEST</emph> provides additional statistics for a regression analysis."
+msgstr "Aparte de m, b y r² la función de arreglo <emph>Estimación Lineal</emph> provee estadísticas adicionales para un análisis de regresión."
+
+#: 04050100.xhp#hd_id2538834.help.text
+msgid "The logarithm regression equation"
+msgstr "La ecuación de logaritmo de regresión"
+
+#: 04050100.xhp#par_id394299.help.text
+msgid "The <emph>logarithm regression</emph> follows the equation <item type=\"literal\">y=a*ln(x)+b</item>."
+msgstr "El <emph>logaritmo de regresión</emph> sigue de la ecuación <item type=\"literal\">y=a*ln(x)+b</item>."
+
+#: 04050100.xhp#par_id2134159.help.text
+msgid "a = SLOPE(Data_Y;LN(Data_X)) "
+msgstr "a = PENDIENTE(Datos_Y;LN(Datos_X)) "
+
+#: 04050100.xhp#par_id5946531.help.text
+msgid "b = INTERCEPT(Data_Y ;LN(Data_X)) "
+msgstr "b = INTERSECCIÓN.EJE(Datos_Y ;LN(Datos_X)) "
+
+#: 04050100.xhp#par_id5649281.help.text
+msgid "r² = RSQ(Data_Y;LN(Data_X)) "
+msgstr "r² = RAÍZ(Datos_Y;LN(Datos_X)) "
+
+#: 04050100.xhp#hd_id7874080.help.text
+msgid "The exponential regression equation"
+msgstr "La ecuación de regresión exponencial"
+
+#: 04050100.xhp#par_id4679097.help.text
+msgid " For exponential trend lines a transformation to a linear model takes place. The optimal curve fitting is related to the linear model and the results are interpreted accordingly. "
+msgstr " Para las líneas de tendencia exponenciales ocurre una transformación a un modelo lineal. El ajuste óptimo de la curva se relaciona con el modelo lineal y los resultados se interpretan en forma acorde."
+
+#: 04050100.xhp#par_id9112216.help.text
+msgid "The exponential regression follows the equation <item type=\"literal\">y=b*exp(a*x)</item> or <item type=\"literal\">y=b*m^x</item>, which is transformed to <item type=\"literal\">ln(y)=ln(b)+a*x</item> or <item type=\"literal\">ln(y)=ln(b)+ln(m)*x</item> respectively."
+msgstr "La regresión exponencial sigue la siguiente ecuación <item type=\"literal\">y=b*exp(a*x)</item> o <item type=\"literal\">y=b*m^x</item>, el cual se transforma a <item type=\"literal\">ln(y)=ln(b)+a*x</item> o <item type=\"literal\">ln(y)=ln(b)+ln(m)*x</item> respectivamente."
+
+#: 04050100.xhp#par_id4416638.help.text
+msgid "a = SLOPE(LN(Data_Y);Data_X) "
+msgstr "a = PENDIENTE(LN(Datos_Y);Datos_X) "
+
+#: 04050100.xhp#par_id1039155.help.text
+msgid "The variables for the second variation are calculated as follows:"
+msgstr "Las variables para la segunda variación son calculadas así:"
+
+#: 04050100.xhp#par_id7184057.help.text
+msgid "m = EXP(SLOPE(LN(Data_Y);Data_X)) "
+msgstr "m = EXP(PENDIENTE(LN(Datos_Y);Datos_X)) "
+
+#: 04050100.xhp#par_id786767.help.text
+msgid "b = EXP(INTERCEPT(LN(Data_Y);Data_X)) "
+msgstr "b = EXP(INTERSECCIÓN.EJE(LN(Datos_Y);Datos_X)) "
+
+#: 04050100.xhp#par_id7127292.help.text
+msgctxt "04050100.xhp#par_id7127292.help.text"
+msgid "Calculate the coefficient of determination by"
+msgstr "Calcula el coeficiente de determinación por"
+
+#: 04050100.xhp#par_id5437177.help.text
+msgid "r² = RSQ(LN(Data_Y);Data_X) "
+msgstr "r² = RAÍZ(LN(Datos_Y);Datos_X) "
+
+#: 04050100.xhp#par_id6946317.help.text
+msgid "Besides m, b and r² the array function LOGEST provides additional statistics for a regression analysis."
+msgstr "La función LOGEST provee estadísticas adicionales para análisis de regresión aparte de los arreglos de r², b y m."
+
+#: 04050100.xhp#hd_id6349375.help.text
+msgid "The power regression equation"
+msgstr "La ecuación de regresión potencial"
+
+#: 04050100.xhp#par_id1857661.help.text
+msgid " For <emph>power regression</emph> curves a transformation to a linear model takes place. The power regression follows the equation <item type=\"literal\">y=b*x^a</item> , which is transformed to <item type=\"literal\">ln(y)=ln(b)+a*ln(x)</item>."
+msgstr " Para curvas de <emph>regresión de potencia</emph> una transformación al modelo lineal toma lugar. La regresión de potencia sigue la ecuación <item type=\"literal\">y=b*x^a</item> , el cual se transforma a <item type=\"literal\">ln(y)=ln(b)+a*ln(x)</item>."
+
+#: 04050100.xhp#par_id8517105.help.text
+msgid "a = SLOPE(LN(Data_Y);LN(Data_X)) "
+msgstr "a = PENDIENTE(LN(Datos_Y);LN(Datos_X)) "
+
+#: 04050100.xhp#par_id9827265.help.text
+msgid "b = EXP(INTERCEPT(LN(Data_Y);LN(Data_X)) "
+msgstr "b = EXP(INTERSECCIÓN.EJE(LN(Datos_Y);LN(Datos_X)) "
+
+#: 04050100.xhp#par_id2357249.help.text
+msgid "r² = RSQ(LN(Data_Y);LN(Data_X)) "
+msgstr "r² = Raíz(LN(Datos_Y);LN(Datos_X)) "
+
+#: 04050100.xhp#hd_id9204077.help.text
+msgid "Constraints"
+msgstr "Limitantes"
+
+#: 04050100.xhp#par_id7393719.help.text
+msgid " The calculation of the trend line considers only data pairs with the following values:"
+msgstr "El cálculo de la curva de regresión sólo considera pares de datos con los siguientes valores:"
+
+#: 04050100.xhp#par_id7212744.help.text
+msgid "logarithm regression: only positive x-values are considered,"
+msgstr "regresión logarítmica: sólo se consideran valores de x positivos,"
+
+#: 04050100.xhp#par_id1664479.help.text
+msgid "exponential regression: only positive y-values are considered,"
+msgstr "regresión exponencial: sólo valores de y son considerados,"
+
+#: 04050100.xhp#par_id8734702.help.text
+msgid "power regression: only positive x-values and positive y-values are considered."
+msgstr "regresión de potencia: sólo valores de x positivos y valores de y positivos son considerados."
+
+#: 04050100.xhp#par_id181279.help.text
+msgid "You should transform your data accordingly; it is best to work on a copy of the original data and transform the copied data."
+msgstr "Debes transformar tus datos; es mejor trabajar en una copia de los datos originales y transformar los datos copiados."
+
+#: 04050100.xhp#hd_id7907040.help.text
+msgid "The polynomial regression equation"
+msgstr "La ecuación de regresión polínominal"
+
+#: 04050100.xhp#par_id8918729.help.text
+msgid "A <emph>polynomial regression</emph> curve cannot be added automatically. You must calculate this curve manually. "
+msgstr "Una curva de <emph>regresión poligonal</emph> se agrega automáticamente. Debes calcular esta curva manualmente. "
+
+#: 04050100.xhp#par_id33875.help.text
+msgid "Create a table with the columns x, x², x³, … , xⁿ, y up to the desired degree n. "
+msgstr "Crea una tabla con las columnas x, x², x³, … , xⁿ, y hasta los grados n deseados. "
+
+#: 04050100.xhp#par_id8720053.help.text
+msgid "Use the formula <item type=\"literal\">=LINEST(Data_Y,Data_X)</item> with the complete range x to xⁿ (without headings) as Data_X. "
+msgstr "Usa la fórmula <item type=\"literal\">=ESTIMACIÓN.LINEAL(Datos_Y,Datos_X)</item> con los rangos completos de x a xⁿ (sin encabezados) como Datos_X. "
+
+#: 04050100.xhp#par_id5068514.help.text
+msgid "The first row of the LINEST output contains the coefficients of the regression polynomial, with the coefficient of xⁿ at the leftmost position."
+msgstr "La salida de la primera fila de ESTIMACIÓN.LINEAL contiene los coeficientes de regresión polinómica con el coeficiente de xⁿ en la posición más a la izquierda."
+
+#: 04050100.xhp#par_id8202154.help.text
+msgid "The first element of the third row of the LINEST output is the value of r². See the <link href=\"text/scalc/01/04060107.xhp#Section8\">LINEST</link> function for details on proper use and an explanation of the other output parameters."
+msgstr "El primer elemento de la tercera fila de la salida de ESTIMACIÓN.LINEAL es el valor de r². Ver el <link href=\"text/scalc/01/04060107.xhp#Section8\">ESTIMACIÓN.LINEAL</link> función para detalles de su uso correcto y para una explicación de otros parámetros de salida."
+
+#: 04050100.xhp#par_id4562211.help.text
+msgid "<link href=\"text/schart/01/04050000.xhp\">Y Error Bars tab page</link>"
+msgstr "<link href=\"text/schart/01/04050000.xhp\">Cuadro de diálogo Barras de Error Y</link>"
+
+#: 04070000.xhp#tit.help.text
+msgctxt "04070000.xhp#tit.help.text"
+msgid "Grids"
+msgstr "Cuadrículas"
+
+#: 04070000.xhp#bm_id3147434.help.text
+msgid "<bookmark_value>axes; inserting grids</bookmark_value><bookmark_value>grids; inserting in charts</bookmark_value>"
+msgstr "<bookmark_value>ejes; insertar cuadrículas</bookmark_value><bookmark_value>cuadrículas; insertar en gráficos</bookmark_value>"
+
+#: 04070000.xhp#hd_id3147434.1.help.text
+msgctxt "04070000.xhp#hd_id3147434.1.help.text"
+msgid "Grids"
+msgstr "Cuadrículas"
+
+#: 04070000.xhp#par_id3146974.2.help.text
+msgid "<variable id=\"gitter\"><ahelp hid=\".\">You can divide the axes into sections by assigning gridlines to them. This allows you to get a better overview of the chart, especially if you are working with large charts.</ahelp></variable> The Y axis major grid is activated by default."
+msgstr "<variable id=\"gitter\"><ahelp hid=\".\">Puede dividir los ejes en secciones asignándoles líneas de cuadrículas. De este modo puede obtener una visión general del gráfico, especialmente si trabaja con gráficos grandes.</ahelp></variable> La cuadrícula principal del eje Y se activa de forma predeterminada."
+
+#: 04070000.xhp#hd_id3156286.3.help.text
+msgid "Major grids"
+msgstr "Cuadrícula principal"
+
+#: 04070000.xhp#par_id3154511.4.help.text
+msgid "Defines the axis to be set as the major grid."
+msgstr "Define el eje que se debe fijar como cuadrícula principal."
+
+#: 04070000.xhp#hd_id3149400.5.help.text
+msgctxt "04070000.xhp#hd_id3149400.5.help.text"
+msgid "X axis"
+msgstr "Eje X"
+
+#: 04070000.xhp#par_id3150749.6.help.text
+msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_X_MAIN\">Adds gridlines to the X axis of the chart.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_X_MAIN\">Añade líneas de cuadrículas al eje X del gráfico.</ahelp>"
+
+#: 04070000.xhp#par_id3154754.7.help.text
+msgid "<variable id=\"sytextxgitter\"><ahelp hid=\".uno:ToggleGridHorizontal\">The <emph>Horizontal Grid On/Off</emph> icon on the <emph>Formatting</emph> bar toggles the visibility of the grid display for the X axis. Note: This only works if the <emph>Minor grid</emph> check boxes in <emph>Insert - Grids</emph> are cleared.</ahelp></variable> Otherwise, the minor grid remains visible when the major grid is turned off."
+msgstr "<variable id=\"sytextxgitter\"><ahelp hid=\".uno:ToggleGridHorizontal\">El icono <emph>Activar o desactivar cuadrícula horizontal</emph> de la barra <emph>Formato</emph> conmuta la visualización de la cuadrícula en el eje X. Nota: sólo funciona si se anula la selección de las casillas de verificación de <emph>Cuadrícula auxiliar</emph> de <emph>Insertar cuadrículas</emph>.</ahelp></variable> De lo contrario, la cuadrícula auxiliar quedará visible cuando se desconecte la cuadrícula principal."
+
+#: 04070000.xhp#hd_id3145228.8.help.text
+msgctxt "04070000.xhp#hd_id3145228.8.help.text"
+msgid "Y axis"
+msgstr "Eje Y"
+
+#: 04070000.xhp#par_id3147004.9.help.text
+msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_Y_MAIN\">Adds gridlines to the Y axis of the chart.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_Y_MAIN\">Añade líneas de cuadrículas al eje Y del gráfico.</ahelp>"
+
+#: 04070000.xhp#par_id3150344.10.help.text
+msgid "<variable id=\"sytextygitter\"><ahelp hid=\".uno:ToggleGridVertical\">The <emph>Vertical Grid On/Off</emph> icon on the <emph>Formatting</emph> bar toggles the visibility of the grid display for the Y axis. Note: This only works if the X-axis <emph>Minor grid</emph> is not selected in <emph>Insert - Grids</emph>.</ahelp></variable> Otherwise, the minor grid remains visible when the major grid is turned off."
+msgstr "<variable id=\"sytextygitter\"><ahelp hid=\".uno:ToggleGridVertical\">El icono <emph>Activar o desactivar cuadrícula vertical</emph> de la barra <emph>Formato</emph> conmuta la visualización de la cuadrícula en el eje Y. Nota: esta opción sólo funciona si no se selecciona la <emph>Cuadrícula auxiliar</emph> del eje X en <emph>Insertar cuadrículas</emph>.</ahelp></variable> De lo contrario, la cuadrícula auxiliar quedará visible cuando se desconecte la cuadrícula principal."
+
+#: 04070000.xhp#hd_id3166430.11.help.text
+msgctxt "04070000.xhp#hd_id3166430.11.help.text"
+msgid "Z axis"
+msgstr "Eje Z"
+
+#: 04070000.xhp#par_id3155378.12.help.text
+msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_Z_MAIN\">Adds gridlines to the Z axis of the chart.</ahelp> This option is only available if you're working with 3D charts."
+msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_Z_MAIN\">Añade líneas de cuadrículas al eje Z del gráfico.</ahelp> Esta opción sólo está disponible si se trabaja con gráficos 3D."
+
+#: 04070000.xhp#hd_id3146978.13.help.text
+msgctxt "04070000.xhp#hd_id3146978.13.help.text"
+msgid "Minor grids"
+msgstr "Cuadrícula auxiliar"
+
+#: 04070000.xhp#par_id3156449.14.help.text
+msgid "Use this area to assign a minor grid for each axis. Assigning minor grids to the axis reduces the distance between the major grids."
+msgstr "Con esta opción se puede incluir una cuadrícula auxiliar para cada eje, así como reducir más los espacios de subdivisión. Para ello debe estar activada la correspondiente cuadrícula principal."
+
+#: 04070000.xhp#hd_id3153308.15.help.text
+msgctxt "04070000.xhp#hd_id3153308.15.help.text"
+msgid "X axis"
+msgstr "Eje X"
+
+#: 04070000.xhp#par_id3148704.16.help.text
+msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_X_HELP\">Adds gridlines that subdivide the X axis into smaller sections.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_X_HELP\">Añade cuadrículas que subdividen el eje X en secciones más pequeñas.</ahelp>"
+
+#: 04070000.xhp#hd_id3153917.17.help.text
+msgctxt "04070000.xhp#hd_id3153917.17.help.text"
+msgid "Y axis"
+msgstr "Eje Y"
+
+#: 04070000.xhp#par_id3154536.18.help.text
+msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_Y_HELP\">Adds gridlines that subdivide the Y axis into smaller sections.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_Y_HELP\">Añade cuadrículas que subdividen el eje Y en secciones más pequeñas.</ahelp>"
+
+#: 04070000.xhp#hd_id3148607.19.help.text
+msgctxt "04070000.xhp#hd_id3148607.19.help.text"
+msgid "Z axis"
+msgstr "Eje Z"
+
+#: 04070000.xhp#par_id3153247.20.help.text
+msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_Z_HELP\">Adds gridlines that subdivide the Z axis into smaller sections.</ahelp> This option is only available if you're working with 3D charts."
+msgstr "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_Z_HELP\">Añade cuadrículas que subdividen el eje Z en secciones más pequeñas.</ahelp> Esta opción sólo está disponible si se trabaja con gráficos 3D."
+
+#: 05010200.xhp#tit.help.text
+msgid "Data Series"
+msgstr "Serie de datos"
+
+#: 05010200.xhp#hd_id3150449.1.help.text
+msgid "<link href=\"text/schart/01/05010200.xhp\" name=\"Data Series\">Data Series</link>"
+msgstr "<link href=\"text/schart/01/05010200.xhp\" name=\"Data Series\">Serie de datos</link>"
+
+#: 05010200.xhp#par_id3145750.2.help.text
+msgid "Use this to change the properties of a selected data series. This dialog appears when one data series is selected when you choose <emph>Format - Format Selection</emph>. Some of the menu entries are only available for 2D or 3D charts."
+msgstr "Permite modificar las propiedades de una serie de datos seleccionada. Este diálogo se muestra si al activar el comando de menú <emph>Formato - Formato de selección</emph>, se ha seleccionado una serie de datos. Algunas entradas del menú están disponibles sólo para gráficos 2D y 3D."
+
+#: 05010200.xhp#par_id3154015.4.help.text
+msgid "Any changes made here affect the entire data series. For example, if you change the color, all elements belonging to this data series will change color."
+msgstr "Las modificaciones efectuadas se aplican a toda la serie de datos. Así, por ejemplo, si se modifica el color, todos los elementos de la serie de datos se modifican también."
+
+#: 05010200.xhp#hd_id3146916.3.help.text
+msgctxt "05010200.xhp#hd_id3146916.3.help.text"
+msgid "<link href=\"text/schart/01/04050000.xhp\" name=\"Y Error Bars\">Y Error Bars</link>"
+msgstr "<link href=\"text/schart/01/04050000.xhp\" name=\"Y Error Bars\">Barras de error Y</link>"
+
+#: 05020201.xhp#tit.help.text
+msgctxt "05020201.xhp#tit.help.text"
+msgid "Alignment"
+msgstr "Alineación"
+
+#: 05020201.xhp#hd_id3149656.1.help.text
+msgid "<link href=\"text/schart/01/05020201.xhp\" name=\"Alignment\">Alignment</link>"
+msgstr "<link href=\"text/schart/01/05020201.xhp\" name=\"Alignment\">Alineación</link>"
+
+#: 05020201.xhp#par_id3156422.2.help.text
+msgid "Modifies the alignment of axes or title labels."
+msgstr "Modifica la alineación de ejes o etiquetas de títulos."
+
+#: 05020201.xhp#par_id3150439.76.help.text
+msgid "Some of the options listed here are not available for all labels. For example, there are different options for 2D and 3D object labels."
+msgstr "Algunas de las opciones enumeradas aquí no están disponibles en todas las etiquetas. Por ejemplo, hay varias opciones para las etiquetas de los objetos 2D y 3D."
+
+#: 05020201.xhp#hd_id3145750.71.help.text
+msgid "Show labels"
+msgstr "Mostrar etiqueta"
+
+#: 05020201.xhp#par_id3154319.72.help.text
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_AXIS_LABEL:CB_AXIS_LABEL_SCHOW_DESCR\">Specifies whether to show or hide the axis labels.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_AXIS_LABEL:CB_AXIS_LABEL_SCHOW_DESCR\">Especifica si se mostrarán o no las etiquetas del eje.</ahelp>"
+
+#: 05020201.xhp#par_id3147436.75.help.text
+msgid "<variable id=\"sytextbeschr\"><ahelp hid=\".uno:ToggleAxisDescr\">The<emph> AxesTitle On/Off </emph>icon on the <emph>Formatting</emph> bar switches the labeling of all axes on or off.</ahelp></variable>"
+msgstr "<variable id=\"sytextbeschr\"><ahelp hid=\".uno:ToggleAxisDescr\">El icono <emph> Activar o desactivar título del eje</emph> de la barra <emph>Formato</emph> activa o desactiva el etiquetado de todos los ejes.</ahelp></variable>"
+
+#: 05020201.xhp#hd_id3150717.4.help.text
+msgid "Rotate text"
+msgstr "Girar texto"
+
+#: 05020201.xhp#par_id3154510.5.help.text
+msgid "<ahelp hid=\".uno:ToggleAxisDescr\">Defines the text direction of cell contents.</ahelp> Click one of the ABCD buttons to assign the required direction."
+msgstr "<ahelp hid=\".uno:ToggleAxisDescr\">Define la orientación del texto contenido en las celdas.</ahelp> Haga clic en uno de los botones ABCD para asignar la orientación necesaria."
+
+#: 05020201.xhp#hd_id3150327.50.help.text
+msgid "ABCD wheel"
+msgstr "Rueda ABCD"
+
+#: 05020201.xhp#par_id3149018.49.help.text
+msgid "<ahelp hid=\"HID_SCH_ALIGNMENT_CTR_DIAL\">Clicking anywhere on the wheel defines the variable text orientation.</ahelp> The letters \"ABCD\" on the button correspond to the new setting."
+msgstr "<ahelp hid=\"HID_SCH_ALIGNMENT_CTR_DIAL\">Al hacer clic en cualquier parte de la rueda se establece la orientación del texto.</ahelp> Las letras \"ABCD\" del botón corresponden a la nueva configuración."
+
+#: 05020201.xhp#hd_id3154254.51.help.text
+msgid "ABCD button"
+msgstr "Botón ABCD"
+
+#: 05020201.xhp#par_id3154702.52.help.text
+msgid "<ahelp hid=\"HID_SCH_ALIGNMENT_STACKED\">Assigns vertical text orientation for cell contents.</ahelp>"
+msgstr "<ahelp hid=\"HID_SCH_ALIGNMENT_STACKED\">Asigna orientación vertical al texto de las celdas.</ahelp>"
+
+#: 05020201.xhp#par_id3150342.53.help.text
+msgid "If you define a vertical x-axis label, the text may be cut off by the line of the x-axis."
+msgstr "Si el título del eje X es vertical, puede ser que se corte con la línea de dicho eje."
+
+#: 05020201.xhp#hd_id3166432.54.help.text
+msgctxt "05020201.xhp#hd_id3166432.54.help.text"
+msgid "Degrees"
+msgstr "Grados"
+
+#: 05020201.xhp#par_id3150199.55.help.text
+msgid "<ahelp hid=\"HID_SCH_ALIGNMENT_DEGREES\">Allows you to manually enter the orientation angle.</ahelp>"
+msgstr "<ahelp hid=\"HID_SCH_ALIGNMENT_DEGREES\">Permite introducir manualmente el ángulo de orientación.</ahelp>"
+
+#: 05020201.xhp#hd_id3152985.73.help.text
+msgid "Text flow"
+msgstr "Flujo de texto"
+
+#: 05020201.xhp#par_id3155089.74.help.text
+msgid "Determines the text flow of the data label."
+msgstr "Determina el flujo de texto de la etiqueta de datos."
+
+#: 05020201.xhp#hd_id3148837.57.help.text
+msgctxt "05020201.xhp#hd_id3148837.57.help.text"
+msgid "Overlap"
+msgstr "Sobreponer"
+
+#: 05020201.xhp#par_id3151240.58.help.text
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_AXIS_LABEL:CB_AXIS_LABEL_TEXTOVERLAP\">Specifies that the text in cells may overlap other cells.</ahelp> This can be especially useful if there is a lack of space. This option is not available with different title directions."
+msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_AXIS_LABEL:CB_AXIS_LABEL_TEXTOVERLAP\">Especifica que el texto de las celdas se puede superponer a otras celdas.</ahelp> Puede ser especialmente útil si hay falta de espacio. Esta opción no está disponible con orientaciones de títulos diferentes."
+
+#: 05020201.xhp#hd_id3157982.68.help.text
+msgid "Break"
+msgstr "Salto"
+
+#: 05020201.xhp#par_id3155268.69.help.text
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_AXIS_LABEL:CB_AXIS_LABEL_TEXTBREAK\">Allows a text break.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_AXIS_LABEL:CB_AXIS_LABEL_TEXTBREAK\">Permite un salto de texto.</ahelp>"
+
+#: 05020201.xhp#hd_id3159205.56.help.text
+msgid "The following options are not available for all chart types:"
+msgstr "Las opciones siguientes no están disponibles para todos los tipos de gráfico:"
+
+#: 05020201.xhp#hd_id3152872.59.help.text
+msgid "Order"
+msgstr "Ordenar"
+
+#: 05020201.xhp#par_id3159230.11.help.text
+msgid "The options on this tab are only available for a 2D chart, under <emph>Format - Axis - Y Axis</emph> or <emph>X Axis</emph>. In this area, you can define the alignment of the number labels on the X or Y axis."
+msgstr "Las opciones de esta ficha sólo están disponibles en los gráficos 2D, en <emph>Formato - Eje - Eje Y</emph> o <emph>Eje X</emph>. En esta área, puede establecer la alineación de las etiquetas de números en el eje X o Y."
+
+#: 05020201.xhp#hd_id3146963.60.help.text
+msgid "Tile"
+msgstr "Mosaico"
+
+#: 05020201.xhp#par_id3155758.61.help.text
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_AXIS_LABEL:RB_AXIS_LABEL_SIDEBYSIDE\">Arranges numbers on the axis side by side.</ahelp>"
+msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_AXIS_LABEL:RB_AXIS_LABEL_SIDEBYSIDE\">Ordena los números del eje, uno al lado del otro.</ahelp>"
+
+#: 05020201.xhp#hd_id3151195.62.help.text
+msgid "Stagger odd"
+msgstr "Organización impar"
+
+#: 05020201.xhp#par_id3145114.63.help.text
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_AXIS_LABEL:RB_AXIS_LABEL_UPDOWN\">Staggers numbers on the axis, even numbers lower than odd numbers.</ahelp>"
+msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_AXIS_LABEL:RB_AXIS_LABEL_UPDOWN\">Organiza los números del eje: los números pares debajo de los impares.</ahelp>"
+
+#: 05020201.xhp#hd_id3147250.64.help.text
+msgid "Stagger even"
+msgstr "Organización par"
+
+#: 05020201.xhp#par_id3153958.65.help.text
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_AXIS_LABEL:RB_AXIS_LABEL_DOWNUP\">Stagger numbers on the axes, odd numbers lower than even numbers.</ahelp>"
+msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_AXIS_LABEL:RB_AXIS_LABEL_DOWNUP\">Organiza los números del eje: los números impares debajo de los pares.</ahelp>"
+
+#: 05020201.xhp#hd_id3147301.66.help.text
+msgctxt "05020201.xhp#hd_id3147301.66.help.text"
+msgid "Automatic"
+msgstr "Automático"
+
+#: 05020201.xhp#par_id3147404.67.help.text
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_AXIS_LABEL:RB_AXIS_LABEL_AUTOORDER\">Automatically arranges numbers on the axis.</ahelp>"
+msgstr "<ahelp hid=\"SCH:RADIOBUTTON:TP_AXIS_LABEL:RB_AXIS_LABEL_AUTOORDER\">Ordena automáticamente los números del eje.</ahelp>"
+
+#: 05020201.xhp#par_id3149353.70.help.text
+msgid "Problems may arise in displaying labels if the size of your chart is too small. You can avoid this by either enlarging the view or decreasing the font size."
+msgstr "Pueden surgir problemas al mostrar etiquetas si el tamaño del gráfico es demasiado pequeño. Puede evitar este problema agrandando la vista o reduciendo el tamaño de la fuente."
+
+#: 05020201.xhp#hd_id1106200812235146.help.text
+msgctxt "05020201.xhp#hd_id1106200812235146.help.text"
+msgid "Text Direction"
+msgstr "Dirección de texto"
+
+#: 05020201.xhp#par_id1106200812235271.help.text
+msgctxt "05020201.xhp#par_id1106200812235271.help.text"
+msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifica la dirección del texto para un párrafo que usa la capa compleja de texto (CTL). Esta característica solamente esta disponible si el soporte para capa compleja de texto esta habilitado.</ahelp>"
+
+#: three_d_view.xhp#tit.help.text
+msgid "3D View "
+msgstr "Vista 3D"
+
+#: three_d_view.xhp#bm_id3156423.help.text
+msgid "<bookmark_value>3D charts</bookmark_value> <bookmark_value>charts; 3D views</bookmark_value> <bookmark_value>illumination; 3D charts</bookmark_value>"
+msgstr "<bookmark_value>gráficos 3D</bookmark_value><bookmark_value>gráficos; vistas 3D</bookmark_value><bookmark_value>iluminación; gráficos 3D</bookmark_value>"
+
+#: three_d_view.xhp#hd_id3464461.help.text
+msgid "<variable id=\"three_d_view\"><link href=\"text/schart/01/three_d_view.xhp\">3D View</link></variable>"
+msgstr "<variable id=\"three_d_view\"><link href=\"text/schart/01/three_d_view.xhp\">Vista 3D</link></variable>"
+
+#: three_d_view.xhp#par_id6998809.help.text
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> or in the context menu of a chart you can choose a chart type. <ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to edit the properties of a three dimensional view for Column, Bar, Pie, and Area charts. For Line and XY (Scatter) charts you can see 3D lines.</ahelp>"
+msgstr "En la primera página del <link href=\"text/schart/01/wiz_chart_type.xhp\">Asistente para gráficos</link> o en el menú de contexto donde puede escoger el tipo de gráfico. <ahelp hid=\".\" visibility=\"hidden\">Te permite visualizar en tercera dimensión para Columna, Barras, Círculo y Área. Para la gráfica lineal y XY (Dispersión) puede ver las lineas 3D.</ahelp>"
+
+#: three_d_view.xhp#par_id6942045.help.text
+msgid "The chart preview responds to the new settings that you enter in the dialog. "
+msgstr "La vista previa del gráfico responde a la nueva configuración que usted introdujo en el dialogo."
+
+#: three_d_view.xhp#par_id3806878.help.text
+msgid "When you leave the dialog with OK, the settings are applied permanently. "
+msgstr "Cuando dejas el diálogo como OK, la configuración se aplica permanentemente. "
+
+#: three_d_view.xhp#par_id130619.help.text
+msgid "When you leave the dialog with Cancel or Escape, the chart returns to the state when you opened the dialog."
+msgstr "Cuando dejas el diálogo con Cancelar o Escape, el gráfico regresa al estado original."
+
+#: three_d_view.xhp#par_id8081911.help.text
+msgid "For a 3D chart you can choose <item type=\"menuitem\">Format - 3D View</item> to set perspective, appearance and illumination."
+msgstr "Para fijar la perspectiva, apariencia e iluminación de un gráfico 3D puede elegir <item type=\"menuitem\">Formato - Vista 3D</item>."
+
+#: three_d_view.xhp#hd_id2924283.help.text
+msgid "Perspective"
+msgstr "Perspectiva"
+
+#: three_d_view.xhp#par_id5781731.help.text
+msgid "Enter the values for rotation of the chart on the three axes and for a perspective view."
+msgstr "Introduzca los valores para la rotación del gráfico sobre los tres ejes y para una vista perspectiva."
+
+#: three_d_view.xhp#par_id9999694.help.text
+msgid "Set all angles to 0 for a front view of the chart. Pie charts and donut charts are shown as circles."
+msgstr "Fije todos los ángulos a 0 para una vista frontal del gráfico. Los gráficos de círculo y los gráficos de anillos se muestran como círculos."
+
+#: three_d_view.xhp#par_id2861720.help.text
+msgid "With Right-angled axes enabled, you can rotate the chart contents only in X and Y direction, that is, parallel to the chart borders."
+msgstr "Con la opción Ejes de ángulo derecho habilitada, puede rotar el contenido del gráfico únicamente en la dirección del eje X y Y, es decir, paralelo a los bordes del gráfico."
+
+#: three_d_view.xhp#par_id2216559.help.text
+msgid "An x value of 90, with y and z set to 0, provides a view from top down to the chart. With x set to -90, you see the bottom of the chart."
+msgstr "Un valor x de 90, con Y y Z fijado a 0, proporciona una vista superior del gráfico. Con X fijado a -90, se ve el gráfico desde un plano inferior."
+
+#: three_d_view.xhp#par_id7869502.help.text
+msgid "The rotations are applied in the order first x, then y, last z."
+msgstr "Las rotaciones se aplican en el orden primero X, luego Y, por último, Z."
+
+#: three_d_view.xhp#par_id9852900.help.text
+msgid "When shading is enabled and you rotate a chart, the lights are rotated as if they are fixed to the chart."
+msgstr "Cuando el sombreado está habilitado y se rote el gráfico, las luces se rotarán como si estuviesen fijadas al gráfico."
+
+#: three_d_view.xhp#par_id2578203.help.text
+msgid "The rotation axes always relate to the page, not to the chart's axes. This is different from some other chart programs."
+msgstr "La rotación de los ejes se relaciona siempre a la página, no a los ejes del gráfico. Esto es diferente desde cualquier otro programa de gráficos."
+
+#: three_d_view.xhp#par_id4923245.help.text
+msgid "Select the Perspective check box to view the chart in central perspective as through a camera lens instead of using a parallel projection. "
+msgstr "Seleccione la casilla de verificación perspectiva para ver el gráfico en el centro de la perspectiva como a través de una lente de cámara en vez de utilizar una proyección paralela."
+
+#: three_d_view.xhp#par_id3416547.help.text
+msgid "Set the focus length with the spin button. 100% gives a perspective view where a far edge in the chart looks approximately half as big as a near edge."
+msgstr "Fije la longitud del foco con el botón de selección. El 100% le brinda una vista perspectiva donde la mitad de un borde lejano en el gráfico se ve aproximadamente tan grande como un borde cercano."
+
+#: three_d_view.xhp#par_id3791924.help.text
+msgid "Older versions of %PRODUCTNAME cannot display the percentage of perspective the same way as the current version."
+msgstr "Viejas versiones de %PRODUCTNAME no pueden mostrar el porcentaje de perspectiva de la misma manera que la versión actual."
+
+#: three_d_view.xhp#par_id7623828.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">If Right-angled axes is enabled, you can rotate the chart contents only in X and Y direction, that is, parallel to the chart borders. Right-angled axes is enabled by default for newly created 3D charts. Pie and Donut charts do not support right-angled axes.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Si el eje de ángulo derecho está habilitado, puede rotar el contenido del gráfico únicamente en dirección del eje X y Y, es decir, paralelamente a los bordes del gráfico. Ejes con el ángulo derecho están habilitados por defecto para la creación de gráficos en 3D. Gráficos de círculo y anillo no soportan ejes con ángulo derecho.</ahelp>"
+
+#: three_d_view.xhp#par_id4721823.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the x axis. The preview responds to the new settings.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fija la rotación del gráfico sobre el eje X. La vista previa responde a las nuevas configuraciones.</ahelp>"
+
+#: three_d_view.xhp#par_id5806756.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the y axis. The preview responds to the new settings.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fija la rotación del gráfico sobre el eje Y. La vista previa responde a las nuevas configuraciones.</ahelp>"
+
+#: three_d_view.xhp#par_id8915372.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the z axis. The preview responds to the new settings.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fija la rotación del gráfico sobre el eje Z. La vista previa responde a las nuevas configuraciones.</ahelp>"
+
+#: three_d_view.xhp#par_id6070436.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Mark the Perspective box to view the chart as through a camera lens. Use the spin button to set the percentage. With a high percentage nearer objects look bigger than more distant objects.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Marque la casilla de Perspectiva para ver el gráfico a través de una lente. Use el botón de selección para ajustar el porcentaje. Con un porcentaje alto los objetos cercanos se ven más grandes que los objetos distantes.</ahelp>"
+
+#: three_d_view.xhp#hd_id7564012.help.text
+msgid "Appearance"
+msgstr "Apariencia"
+
+#: three_d_view.xhp#par_id1186254.help.text
+msgid "Select a scheme from the list box."
+msgstr "Selecciona un esquema del cuadro de lista."
+
+#: three_d_view.xhp#par_id7432477.help.text
+msgid "By selecting a scheme, the check boxes and the light sources are set accordingly."
+msgstr "Al seleccionar un esquema, las casillas de verificación y el origen de luz se establecen en consecuencia."
+
+#: three_d_view.xhp#par_id7141026.help.text
+msgid "If you mark or unmark a combination of check boxes that is not given by the Realistic or Simple scheme, you create a Custom scheme."
+msgstr "Si marcas o desmarcas una combinación de casillas de verificación que no se ha dado por esquema Simple o Realista, creas un esquema personalizado."
+
+#: three_d_view.xhp#par_id1579027.help.text
+msgid "Mark <emph>Shading</emph> to use the Gouraud method for rendering the surface, otherwise a flat method is used. "
+msgstr "Marca <emph>Sombreado</emph> para usar el método Gouraud de compilación de capas, de lo contrario el método plano es usado."
+
+#: three_d_view.xhp#par_id5624561.help.text
+msgid "The flat method sets a single color and brightness for each polygon. The edges are visible, soft gradients and spot lights are not possible. "
+msgstr "El método plano establece un único color y brillo para cada polígono. Los bordes son visibles, de suaves gradientes y los spot ligths no son posibles."
+
+#: three_d_view.xhp#par_id5901058.help.text
+msgid "The Gouraud method applies gradients for a smoother, more realistic look."
+msgstr "El método Gouraud aplica gradientes, para un aspecto suave y más realista."
+
+#: three_d_view.xhp#par_id8469191.help.text
+msgid "Mark <emph>Object Borders</emph> to draw lines along the edges."
+msgstr "Marca <emph>Bordes del Objeto</emph> para dibujar líneas a lo largo de los bordes."
+
+#: three_d_view.xhp#par_id4407483.help.text
+msgid "Mark <emph>Rounded Edges</emph> to smooth the edges of box shapes."
+msgstr "Marca <emph>Redondear bordes</emph> para suavizar los bordes de las formas cuadradas. "
+
+#: three_d_view.xhp#par_id8531449.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a scheme from the list box, or click any of the check boxes below.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleccione un esquema del cuadro de lista, o haga clic en cualquier casilla de verificación debajo.</ahelp>"
+
+#: three_d_view.xhp#par_id9183935.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies Gouraud shading if marked, or flat shading if unmarked.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Aplique sombreado Gouraud si está marcado, o sombreado plano si está sin marcar.</ahelp>"
+
+#: three_d_view.xhp#par_id946684.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows borders around the areas by setting the line style to Solid.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Muestra los bordes alrededor de las áreas mediante la configuración del estilo de línea a sólido.</ahelp>"
+
+#: three_d_view.xhp#par_id9607226.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Edges are rounded by 5%.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Esquinas redondeadas por 5%.</ahelp>"
+
+#: three_d_view.xhp#hd_id1939451.help.text
+msgid "Illumination"
+msgstr "Iluminación"
+
+#: three_d_view.xhp#par_id9038972.help.text
+msgid "Set the light sources for the 3D view."
+msgstr "Establecer las fuentes de luz para la vista 3D."
+
+#: three_d_view.xhp#par_id6531266.help.text
+msgid "Click any of the eight buttons to switch a directed light source on or off."
+msgstr "Haga clic en cualquiera de los ocho botones para cambiar a encendido o apagado la fuente de luz directa."
+
+#: three_d_view.xhp#par_id6173894.help.text
+msgid "By default, the second light source is switched on. It is the first of seven \"normal\", uniform light sources. The light source number one projects a specular light with highlights."
+msgstr "Por defecto, la segunda fuente de luz está apagada. Es la primera de las siete fuentes de luz uniforme \"normales\". La primera fuente de luz proyecta una luz especular con resaltes."
+
+#: three_d_view.xhp#par_id2761314.help.text
+msgid "For the selected light source, you can then choose a color and intensity in the list box just below the eight buttons. The brightness values of all lights are added, so use dark colors when you enable multiple lights."
+msgstr "Para la fuente de luz seleccionada, se puede escoger el color y la intensidad en el cuadro de lista que está debajo de los ocho botones. Dado que valores de brillo se acumulan, es aconsejable utilizar colores oscuros cuando se activan múltiples luces."
+
+#: three_d_view.xhp#par_id3912778.help.text
+msgid "The small preview inside this tab page has two sliders to set the vertical and horizontal position of the selected light source. The light source always aims to the middle of the object."
+msgstr "La previsualización pequeña dentro de la página de etiqueta tiene dos barras deslizantes para posicionar vertical y horizontales de la fuente de luz seleccionada. La fuente de luz siempre apunta a la mitad del objeto."
+
+#: three_d_view.xhp#par_id3163853.help.text
+msgid "The button in the corner of the small preview switches the internal illumination model between a sphere and a cube."
+msgstr "El botón en la esquina de la previsualización pequeñas que el modelo de iluminación interna entre la esfera y el cubo."
+
+#: three_d_view.xhp#par_id121158.help.text
+msgid "Use the Ambient light list box to define the ambient light which shines with a uniform intensity from all directions."
+msgstr "Usa de la caja de lista, la luz de ambiente la cual brilla con una intensidad uniforme desde cualquier dirección."
+
+#: three_d_view.xhp#par_id2423780.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Drag the right slider to set the vertical height and direction of the selected light source.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Arrastre el control deslizante derecho para establecer la altura vertical y la dirección del origen de luz seleccionado.</ahelp>"
+
+#: three_d_view.xhp#par_id2569658.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Drag the bottom slider to set the horizontal position and direction of the selected light source.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Arrastre el control deslizante inferior para establecer la posición horizontaly la dirección del origen de luz seleccionado.</ahelp>"
+
+#: three_d_view.xhp#par_id6394238.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to switch between an illumination model of a sphere or a cube.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Haz clic para cambiar entre la iluminación del modelo, esfera o un cubo.</ahelp>"
+
+#: three_d_view.xhp#par_id533768.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to enable or disable the specular light source with highlights.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Clic para activar o desactivar la fuente de luz especular con resaltes.</ahelp>"
+
+#: three_d_view.xhp#par_id7214270.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to enable or disable the uniform light source.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Clic para activar o desactivar la fuente de luz uniforme.</ahelp>"
+
+#: three_d_view.xhp#par_id2186346.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color for the selected light source.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selecciona colores para la luz seleccionada.</ahelp>"
+
+#: three_d_view.xhp#par_id1331217.help.text
+msgctxt "three_d_view.xhp#par_id1331217.help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color using the color dialog.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selecciona colores usando el dialogo de color.</ahelp>"
+
+#: three_d_view.xhp#par_id393993.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color for the ambient light.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleccione un color para la luz ambiental.</ahelp>"
+
+#: three_d_view.xhp#par_id5871761.help.text
+msgctxt "three_d_view.xhp#par_id5871761.help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color using the color dialog.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selecciona un color usando el diálogo de color.</ahelp>"
+
+#: 05030000.xhp#tit.help.text
+msgctxt "05030000.xhp#tit.help.text"
+msgid "Legend"
+msgstr "Leyenda"
+
+#: 05030000.xhp#hd_id3145800.1.help.text
+msgctxt "05030000.xhp#hd_id3145800.1.help.text"
+msgid "Legend"
+msgstr "Leyenda"
+
+#: 05030000.xhp#par_id3146972.2.help.text
+msgid "<variable id=\"legende\"><ahelp hid=\".uno:Legend\">Defines the border, area and character attributes for a legend.</ahelp></variable>"
+msgstr "<variable id=\"legende\"><ahelp hid=\".uno:Legend\">Establece el borde, el área y los atributos de los caracteres de una leyenda.</ahelp></variable>"
+
+#: 05030000.xhp#hd_id3145232.4.help.text
+msgctxt "05030000.xhp#hd_id3145232.4.help.text"
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Characters\">Caracteres</link>"
+
+#: 05030000.xhp#hd_id3147344.3.help.text
+msgid "<link href=\"text/schart/01/04020000.xhp\" name=\"Display\">Display</link>"
+msgstr "<link href=\"text/schart/01/04020000.xhp\" name=\"Display\">Posición</link>"
+
+#: 05040201.xhp#tit.help.text
+msgctxt "05040201.xhp#tit.help.text"
+msgid "Scale"
+msgstr "Escala"
+
+#: 05040201.xhp#bm_id3150868.help.text
+msgid "<bookmark_value>scaling; axes</bookmark_value><bookmark_value>logarithmic scaling along axes</bookmark_value><bookmark_value>charts;scaling axes</bookmark_value><bookmark_value>X axes;scaling</bookmark_value><bookmark_value>Y axes; scaling</bookmark_value>"
+msgstr "<bookmark_value>escalas; ejes</bookmark_value><bookmark_value>escalas logarítmicas en ejes</bookmark_value><bookmark_value>gráficos; escala de ejes</bookmark_value><bookmark_value>ejes X; escala</bookmark_value><bookmark_value>ejes Y; escala</bookmark_value><bookmark_value>ejes;marcas de intervalo</bookmark_value>"
+
+#: 05040201.xhp#hd_id3150868.1.help.text
+msgid "<link href=\"text/schart/01/05040201.xhp\" name=\"Scale\">Scale</link>"
+msgstr "<link href=\"text/schart/01/05040201.xhp\" name=\"Escala\">Escala</link>"
+
+#: 05040201.xhp#par_id3154013.2.help.text
+msgid "Controls the scaling of the X or Y axis."
+msgstr "Controla la escala de los ejes X o Y."
+
+#: 05040201.xhp#par_id3148576.79.help.text
+msgid "The axes are automatically scaled by $[officename] so that all values are optimally displayed."
+msgstr "$[officename] ajusta automáticamente la escala de los ejes para que todos los valores se muestren de forma óptima."
+
+#: 05040201.xhp#par_id3149379.3.help.text
+msgid "To achieve specific results, you can manually change the axis scaling. For example, you can display only the top areas of the columns by shifting the zero line upwards."
+msgstr "Puede cambiar manualmente la escala del eje para conseguir unos resultados concretos. Por ejemplo, puede visualizar solamente el área superior de las columnas moviendo la línea cero hacia arriba."
+
+#: 05040201.xhp#hd_id3154730.4.help.text
+msgctxt "05040201.xhp#hd_id3154730.4.help.text"
+msgid "Scale"
+msgstr "Escala"
+
+#: 05040201.xhp#par_id3149400.5.help.text
+msgid "You can enter values for subdividing axes in this area. You can automatically set the properties <emph>Minimum, Maximum, Major interval, Minor interval count</emph> and <emph>Reference value</emph>."
+msgstr "En este área se introducen los valores de subdivisión del eje. Permite definir automáticamente las cinco propiedades: <emph>Mínimo, Máximo, Intervalo principal, Intervalo auxiliar</emph> y <emph>Valor de referencia</emph>."
+
+#: 05040201.xhp#hd_id3150751.6.help.text
+msgid "Minimum"
+msgstr "Mínimo"
+
+#: 05040201.xhp#par_id3153713.7.help.text
+msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MIN\">Defines the minimum value for the beginning of the axis.</ahelp>"
+msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MIN\">Define el valor mínimo inicial del eje.</ahelp>"
+
+#: 05040201.xhp#hd_id3156385.8.help.text
+msgid "Maximum"
+msgstr "Máximo"
+
+#: 05040201.xhp#par_id3159266.9.help.text
+msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MAX\">Defines the maximum value for the end of the axis.</ahelp>"
+msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MAX\">Define el valor máximo final del eje.</ahelp>"
+
+#: 05040201.xhp#hd_id3155336.10.help.text
+msgid "Major interval"
+msgstr "Intervalo mayor"
+
+#: 05040201.xhp#par_id3143218.11.help.text
+msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_MAIN\">Defines the interval for the main division of the axes.</ahelp> The main interval cannot be larger than the value area."
+msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_MAIN\">Define el intervalo para la división principal de los ejes.</ahelp> El intervalo principal no puede ser mayor que el área de valores."
+
+#: 05040201.xhp#hd_id3154020.12.help.text
+msgid "Minor interval count"
+msgstr "valor mínimo de intervalo"
+
+#: 05040201.xhp#par_id3154656.13.help.text
+msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_HELP\">Defines the interval for the subdivision of the axes.</ahelp>"
+msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_HELP\">Define el intervalo para la subdivisión de los ejes.</ahelp>"
+
+#: 05040201.xhp#hd_id3150089.14.help.text
+msgid "Reference value"
+msgstr "Valor de referencia"
+
+#: 05040201.xhp#par_id3152990.15.help.text
+msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_ORIGIN\">Specifies at which position to display the values along the axis.</ahelp>"
+msgstr "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_ORIGIN\">Especifica en que posición se muestran los valores a lo largo del eje.</ahelp>"
+
+#: 05040201.xhp#hd_id3166432.62.help.text
+msgctxt "05040201.xhp#hd_id3166432.62.help.text"
+msgid "Automatic"
+msgstr "Automático"
+
+#: 05040201.xhp#par_id3145389.63.help.text
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_AUTO_ORIGIN\">You must first deselect the <emph>Automatic</emph> option in order to modify the values.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_AUTO_ORIGIN\">Usted tiene que des-seleccionar primero la opción de <emph>Automático</emph> para poder modificar los valores.</ahelp>"
+
+#: 05040201.xhp#par_id3149129.64.help.text
+msgid "Disable this feature if you are working with \"fixed\" values, as it does not permit automatic scaling."
+msgstr "Para trabajar con valores \"fijos\", desactive esta opción. De esta forma se evita que se produzca un redimensionamiento automático (dinámico)."
+
+#: 05040201.xhp#hd_id3159206.16.help.text
+msgid "Logarithmic scale"
+msgstr "Escala logarítmica"
+
+#: 05040201.xhp#par_id3145360.17.help.text
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_LOGARITHM\">Specifies that you want the axis to be subdivided logarithmically.</ahelp>"
+msgstr "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_LOGARITHM\">Especifica si desea que el eje se subdivida logarítmicamente.</ahelp>"
+
+#: 05040201.xhp#par_id3153956.61.help.text
+msgid "Use this feature if you are working with values that differ sharply from each other. You can use logarithmic scaling to make the grid lines of the axis equidistant but have values that may increase or decrease."
+msgstr "Utilice esta función cuando aplique valores muy desiguales entre sí. Con el redimensionamiento logarítmico se logra igualar los espacios entre las líneas de cuadrícula del eje, aunque representen valores distintos."
+
+#: 05040201.xhp#hd_id9941404.help.text
+msgid "Reverse direction"
+msgstr "Dirección inversa"
+
+#: 05040201.xhp#par_id5581835.help.text
+msgid "<ahelp hid=\".\">Defines where the lower and where the higher values are displayed at the axis. The unchecked state is the mathematical direction.</ahelp> That means for Cartesian coordinate systems that the x-axis shows the lower values on the left and the y-axis shows the lower values at the bottom. For polar coordinate systems the mathematical angle axis direction is counterclockwise and the radial axis is from inner to outer."
+msgstr "<ahelp hid=\".\">Defina donde se muestran los valores menores y los mayores en el eje. El estado no activado es la dirección matemática.</ahelp> Significa que para sistemas de coordenadas cartesianas, el eje-x muestra los valores menores a la izquierda y que el eje-y muestra los valores menores al fondo. Para sistemas de coordenadas polares la dirección del eje de ángulo matemático es contra el sentido de reloj y el eje radial es de adentro hacia afuera."
+
+#: 05040201.xhp#hd_id922204.help.text
+msgid "Type"
+msgstr "Tipo"
+
+#: 05040201.xhp#par_id59225.help.text
+msgid "<ahelp hid=\".\">For some types of axes, you can select to format an axis as text or date, or to detect the type automatically.</ahelp> For the axis type \"Date\" you can set the following options."
+msgstr "<ahelp hid=\".\">En algunos tipos de ejes puede seleccionar que se formateen como texto o fecha, o que se detecte automáticamente el tipo.</ahelp> Para el tipo de eje \"Fecha\" puede establecer las siguientes opciones."
+
+#: 05040201.xhp#par_id1159225.help.text
+msgid "Minimum and maximum value to be shown on the ends of the scale."
+msgstr "Los valores mínimo y máximo que se mostrarán en los extremos de la escala."
+
+#: 05040201.xhp#par_id2259225.help.text
+msgid "<ahelp hid=\".\">Resolution can be set to show days, months, or years as interval steps.</ahelp>"
+msgstr "<ahelp hid=\".\">Puede establecerse que la resolución muestre días, meses o años como medidas del intervalo</ahelp>"
+
+#: 05040201.xhp#par_id3359225.help.text
+msgid "<ahelp hid=\".\">Major interval can be set to show a certain number of days, months, or years.</ahelp>"
+msgstr "<ahelp hid=\".\">El intervalo principal puede establecerse para que muestre una cierta cantidad de días, meses o años.</ahelp>"
+
+#: 05040201.xhp#par_id4459225.help.text
+msgid "<ahelp hid=\".\">Minor interval can be set to show a certain number of days, months, or years.</ahelp>"
+msgstr "<ahelp hid=\".\">Puede establecer el intervalo menor para mostrar un cierto número de días, meses o años.</ahelp>"
+
+#: 05020000.xhp#tit.help.text
+msgctxt "05020000.xhp#tit.help.text"
+msgid "Title"
+msgstr "Título"
+
+#: 05020000.xhp#bm_id3150791.help.text
+msgid "<bookmark_value>titles; formatting charts</bookmark_value><bookmark_value>formatting; chart titles</bookmark_value>"
+msgstr "<bookmark_value>títulos;formato de gráficos</bookmark_value><bookmark_value>formato;títulos de gráficos</bookmark_value><bookmark_value>Títulos</bookmark_value>"
+
+#: 05020000.xhp#hd_id3150791.1.help.text
+msgid "<link href=\"text/schart/01/05020000.xhp\" name=\"Title\">Title</link>"
+msgstr "<link href=\"text/schart/01/05020000.xhp\" name=\"Títle\">Título</link>"
+
+#: 05020000.xhp#par_id3125863.2.help.text
+msgid "The<emph> Title </emph>menu command opens a submenu for editing the properties of the titles in the chart."
+msgstr "La orden del menú <emph>Título</emph> abre un submenú que permite editar las propiedades de los títulos del gráfico."
+
+#: 05020000.xhp#hd_id3155414.3.help.text
+msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Main title\">Main title</link>"
+msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Main title\">Título principal</link>"
+
+#: 05020000.xhp#hd_id3156441.4.help.text
+msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Subtitle\">Subtitle</link>"
+msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Subtitle\">Subtítulo</link>"
+
+#: 05020000.xhp#hd_id3151073.5.help.text
+msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"X-axis title\">X-axis title</link>"
+msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"X-axis title\">Título del eje X</link>"
+
+#: 05020000.xhp#hd_id3154732.6.help.text
+msgid "<link href=\"text/schart/01/05020200.xhp\" name=\"Y-axis title\">Y-axis title</link>"
+msgstr "<link href=\"text/schart/01/05020200.xhp\" name=\"Título del eje Y\">Título del eje Y</link>"
+
+#: 05020000.xhp#hd_id3154017.7.help.text
+msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Z-axis title\">Z-axis title</link>"
+msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Z-axis title\">Título del eje Z</link>"
+
+#: 05020000.xhp#hd_id3153711.8.help.text
+msgid "<link href=\"text/schart/01/05020200.xhp\" name=\"All titles\">All titles</link>"
+msgstr "<link href=\"text/schart/01/05020200.xhp\" name=\"All titles\">Todos los títulos</link>"
+
+#: 05010100.xhp#tit.help.text
+msgid "Data Point"
+msgstr "Punto de datos"
+
+#: 05010100.xhp#hd_id3153768.1.help.text
+msgid "<link href=\"text/schart/01/05010100.xhp\" name=\"Data Point\">Data Point</link>"
+msgstr "<link href=\"text/schart/01/05010100.xhp\" name=\"Data Point\">Punto de datos</link>"
+
+#: 05010100.xhp#par_id3152577.2.help.text
+msgid "This dialog allows you to change the properties of a selected data point. The dialog appears when there is only one data point selected when you choose <emph>Format - Format Selection</emph>. Some of the menu entries are only available for 2D or 3D charts."
+msgstr "Este diálogo permite cambiar las propiedades de un punto de datos seleccionado. El diálogo aparece cuando solamente hay un punto de datos seleccionado, si elige <emph>Formato - Formato de selección</emph>. Algunas de las entradas del menú están disponibles sólo en los gráficos 2D o 3D."
+
+#: 05010100.xhp#par_id3149121.3.help.text
+msgid "Any changes made only affect this one data point. For example, if you edit the color of a bar, only the color of that bar will be different."
+msgstr "Cualquier cambio realizado afectan solamente a este punto de datos. Por ejemplo, si edita el color de una barra, sólo el color de esa barra será diferente."
+
+#: 05010000.xhp#tit.help.text
+msgctxt "05010000.xhp#tit.help.text"
+msgid "Format Selection"
+msgstr "Formato de selección"
+
+#: 05010000.xhp#bm_id3149666.help.text
+msgid "<bookmark_value>objects;properties of charts</bookmark_value><bookmark_value>charts; properties</bookmark_value><bookmark_value>properties;charts</bookmark_value>"
+msgstr "<bookmark_value>objetos;propiedades de gráficos</bookmark_value><bookmark_value>gráficos; propiedades</bookmark_value><bookmark_value>propiedades; de gráficos</bookmark_value>"
+
+#: 05010000.xhp#hd_id3149666.1.help.text
+msgctxt "05010000.xhp#hd_id3149666.1.help.text"
+msgid "Format Selection"
+msgstr "Formato de selección"
+
+#: 05010000.xhp#par_id3156284.2.help.text
+msgid "<variable id=\"objekteigenschaften\"><ahelp hid=\".\">Formats the selected object.</ahelp></variable> Depending on the object selected, the command opens dialogs that you can also open by choosing the following commands from the <emph>Format</emph> menu:"
+msgstr "<variable id=\"objekteigenschaften\"><ahelp hid=\".\">Asigna ciertas propiedades al objeto seleccionado.</ahelp></variable> Dependiendo del objeto seleccionado, el comando abre los diálogos que también son posibles de abrir eligiendo los siguientes comandos desde el menú <emph>Formato</emph>:"
+
+#: 05010000.xhp#hd_id3153418.3.help.text
+msgid "<link href=\"text/schart/01/05060000.xhp\" name=\"Chart Wall\">Chart Wall</link>"
+msgstr "<link href=\"text/schart/01/05060000.xhp\" name=\"Chart Wall\">Plano lateral...</link>"
+
+#: 05010000.xhp#hd_id3155766.4.help.text
+msgid "<link href=\"text/schart/01/05080000.xhp\" name=\"Chart Area\">Chart Area</link>"
+msgstr "<link href=\"text/schart/01/05080000.xhp\" name=\"Chart Area\">Área del gráfico</link>"
+
+#: 05010000.xhp#hd_id3154255.5.help.text
+msgid "<link href=\"text/schart/01/05070000.xhp\" name=\"Chart Floor\">Chart Floor</link>"
+msgstr "<link href=\"text/schart/01/05070000.xhp\" name=\"Chart Floor\">Base del gráfico</link>"
+
+#: 05010000.xhp#hd_id3146313.6.help.text
+msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Title\">Title</link>"
+msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Título\">Título</link>"
+
+#: 05010000.xhp#hd_id3150297.7.help.text
+msgid "<link href=\"text/schart/01/05030000.xhp\" name=\"Legend\">Legend</link>"
+msgstr "<link href=\"text/schart/01/05030000.xhp\" name=\"Legend\">Leyenda...</link>"
+
+#: 05010000.xhp#hd_id3143219.8.help.text
+msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"X Axis\">X Axis</link>"
+msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"X Axis\">Eje X...</link>"
+
+#: 05010000.xhp#hd_id3150207.9.help.text
+msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Y Axis\">Y Axis</link>"
+msgstr "<link href=\"text/schart/01/05040200.xhp\" name=\"Y Axis\">Eje Y...</link>"
+
+#: 05010000.xhp#hd_id3166432.10.help.text
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Grid\">Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Grid\">Cuadrícula</link>"
+
+#: 04030000.xhp#tit.help.text
+msgid "Data Labels "
+msgstr "Etiquetas de datos"
+
+#: 04030000.xhp#bm_id3150275.help.text
+msgid "<bookmark_value>data labels in charts</bookmark_value> <bookmark_value>labels; for charts</bookmark_value> <bookmark_value>charts; data labels</bookmark_value> <bookmark_value>data values in charts</bookmark_value> <bookmark_value>chart legends; showing icons with labels</bookmark_value>"
+msgstr "<bookmark_value>rótulos de datos en gráficos</bookmark_value><bookmark_value>rótulos; para gráficos</bookmark_value><bookmark_value>gráficos; rótulos de datos</bookmark_value><bookmark_value>valores de datos en gráficos</bookmark_value><bookmark_value>leyendas de gráficos; mostrar iconos con rótulos</bookmark_value>"
+
+#: 04030000.xhp#hd_id3150275.1.help.text
+msgid "<variable id=\"datenbeschriftung\"><link href=\"text/schart/01/04030000.xhp\" name=\"Data labels\">Data Labels</link></variable>"
+msgstr "<variable id=\"datenbeschriftung\"><link href=\"text/schart/01/04030000.xhp\" name=\"Data labels\">Etiqueta de datos</link></variable>"
+
+#: 04030000.xhp#par_id3154684.2.help.text
+msgid "<variable id=\"besch\"><ahelp hid=\".uno:InsertMenuDataLabels\">Opens the<emph> Data Labels </emph>dialog, which enables you to set the data labels.</ahelp></variable>"
+msgstr "<variable id=\"besch\"><ahelp hid=\".uno:InsertMenuDataLabels\">Abre el cuadro de diálogo de <emph>Rótulos de datos</emph> que le permite establecer los rótulos de los datos.</ahelp></variable>"
+
+#: 04030000.xhp#par_id0810200912120416.help.text
+msgid "If an element of a data series is selected, this command works on that data series only. If no element is selected, this command works on all data series."
+msgstr "Si un elemento de una serie de datos es seleccionada, este comando trabaja en la series de datos. Si no hay elementos esta seleccionado, este comando trabaja en todas las series de datos."
+
+#: 04030000.xhp#hd_id3149401.17.help.text
+msgid "Show value as number"
+msgstr "como número"
+
+#: 04030000.xhp#par_id3150751.18.help.text
+msgid "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_NUMBER\">Displays the absolute values of the data points.</ahelp>"
+msgstr "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_NUMBER\">Muestra los valores absolutos de los puntos de datos.</ahelp>"
+
+#: 04030000.xhp#hd_id5077059.help.text
+msgid "Number format"
+msgstr "Formato numérico"
+
+#: 04030000.xhp#par_id9794610.help.text
+msgid "<ahelp hid=\".\">Opens a dialog to select the number format.</ahelp>"
+msgstr "<ahelp hid=\".\">Abre un cuadro de diálogo para seleccionar el formato de número.</ahelp>"
+
+#: 04030000.xhp#hd_id3145643.9.help.text
+msgid "Show value as percentage"
+msgstr "Mostrar valor como porcentaje"
+
+#: 04030000.xhp#par_id3156382.10.help.text
+msgid "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_PERCENT\">Displays the percentage of the data points in each column.</ahelp>"
+msgstr "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_PERCENT\">Muestra el porcentaje de los puntos de datos en cada columna.</ahelp>"
+
+#: 04030000.xhp#hd_id1316873.help.text
+msgid "Percentage format"
+msgstr "Formato de porcentaje"
+
+#: 04030000.xhp#par_id5476241.help.text
+msgid "<ahelp hid=\".\">Opens a dialog to select the percentage format.</ahelp>"
+msgstr "<ahelp hid=\".\">Abre un cuadro de dialogo para seleccionar el formato de porcentaje.</ahelp>"
+
+#: 04030000.xhp#hd_id3145228.11.help.text
+msgid "Show category"
+msgstr "Mostrar categoría"
+
+#: 04030000.xhp#par_id3154702.12.help.text
+msgid "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_TEXT\">Shows the data point text labels.</ahelp>"
+msgstr "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_TEXT\">Muestra las etiquetas de texto de los puntos de datos.</ahelp>"
+
+#: 04030000.xhp#hd_id3150298.15.help.text
+msgid "Show legend key"
+msgstr "Mostrar claves de etiquetas"
+
+#: 04030000.xhp#par_id3150205.16.help.text
+msgid "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_SYMBOL\">Displays the legend icons next to each data point label.</ahelp>"
+msgstr "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_SYMBOL\">Muestra los iconos de la leyenda junto a cada etiqueta de puntos de datos.</ahelp>"
+
+#: 04030000.xhp#hd_id3836787.help.text
+msgid "Separator"
+msgstr "Separador"
+
+#: 04030000.xhp#par_id6668904.help.text
+msgid "<ahelp hid=\".\">Selects the separator between multiple text strings for the same object.</ahelp>"
+msgstr "<ahelp hid=\".\">Selecciona el separador entre multiples cadenas de texto para un mismo objeto.</ahelp>"
+
+#: 04030000.xhp#hd_id4319284.help.text
+msgid "Placement"
+msgstr "Posicionamiento"
+
+#: 04030000.xhp#par_id5159459.help.text
+msgid "<ahelp hid=\".\">Selects the placement of data labels relative to the objects.</ahelp>"
+msgstr "<ahelp hid=\".\">Selecciona el posicionamiento de las etiquetas de datos relativas al objeto.</ahelp>"
+
+#: 04030000.xhp#hd_id1106200812280727.help.text
+msgctxt "04030000.xhp#hd_id1106200812280727.help.text"
+msgid "Text Direction"
+msgstr "Dirección de texto"
+
+#: 04030000.xhp#par_id1106200812280719.help.text
+msgctxt "04030000.xhp#par_id1106200812280719.help.text"
+msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique la dirección de texto para un parrafo que usa distribución de texto complejo (CTL). Esta herramienta es solo disponible si la distribución de texto complejo esta activado.</ahelp>"
+
+#: 04030000.xhp#hd_id1007200901590713.help.text
+msgid "Rotate Text"
+msgstr "Girar texto"
+
+#: 04030000.xhp#par_id1007200901590752.help.text
+msgid "<ahelp hid=\".\">Click in the dial to set the text orientation for the data labels.</ahelp>"
+msgstr "<ahelp hid=\".\">Haga clic en el dial para establecer la orientación del texto para las etiquetas de datos.</ahelp>"
+
+#: 04030000.xhp#par_id1007200901590757.help.text
+msgid "<ahelp hid=\".\">Enter the counterclockwise rotation angle for the data labels.</ahelp>"
+msgstr "<ahelp hid=\".\">Introduzca el ángulo de rotación contrario a las agujas del reloj para las etiquetas de datos.</ahelp>"
+
+#: type_line.xhp#tit.help.text
+msgid "Chart Type Line"
+msgstr "Gráfico de tipo línea"
+
+#: type_line.xhp#bm_id2187566.help.text
+msgid "<bookmark_value>line charts</bookmark_value><bookmark_value>chart types;line</bookmark_value>"
+msgstr "<bookmark_value>gráficos de linea</bookmark_value><bookmark_value>tipos de gráficos;linea</bookmark_value>"
+
+#: type_line.xhp#hd_id9422894.help.text
+msgid "<variable id=\"type_line\"><link href=\"text/schart/01/type_line.xhp\">Chart Type Line</link></variable>"
+msgstr "<variable id=\"type_line\"><link href=\"text/schart/01/type_line.xhp\">Gráfico de Linea</link></variable>"
+
+#: type_line.xhp#par_id389721.help.text
+msgctxt "type_line.xhp#par_id389721.help.text"
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type. "
+msgstr "En la primera página del <link href=\"text/schart/01/wiz_chart_type.xhp\">Asistente para Gráficos</link> puedes seleccionar el tipo de gráfico."
+
+#: type_line.xhp#hd_id9826349.help.text
+msgid "Line"
+msgstr "Linea"
+
+#: type_line.xhp#par_id2334665.help.text
+msgid "A line chart shows values as points on the y axis. The x axis shows categories. The y values of each data series can be connected by a line."
+msgstr "Una gráfica de linea muestra valores como puntos sobre el eje y. El eje y muestra categorias. El valor y de cada serie de datos puedde ser conectado por una liena."
+
+#: type_line.xhp#par_id8956572.help.text
+msgid "Points only - this subtype plots only points."
+msgstr "Sólo puntos – este subtipo muestra sólo puntos."
+
+#: type_line.xhp#par_id500808.help.text
+msgid "Points and lines - this subtype plots points and connects points of the same data series by a line."
+msgstr "Puntos y lineas - esta subcategoria agrupa puntos y los conecta de la misma serie de datos como una linea."
+
+#: type_line.xhp#par_id8366649.help.text
+msgid "Lines only - this subtype plots only lines."
+msgstr "Sólo lineas – este subtipo muestra sólo lineas."
+
+#: type_line.xhp#par_id476393.help.text
+msgid "3D lines - this subtype connects points of the same data series by a 3D line."
+msgstr "Lineas 3D - esta subcategoria conecta los puntos de la misma serie de datos con una Linea 3D."
+
+#: type_line.xhp#par_id2655720.help.text
+msgid "Mark <emph>Stack series</emph> to arrange the points' y values cumulative above each other. The y values no longer represent absolute values, except for the first column which is drawn at the bottom of the stacked points. If you select <emph>Percent</emph>, the y values are scaled as percentage of the category total."
+msgstr "Marcar <emph>Series apiladas</emph> para arreglar los puntos y valores acumulados por encima de los demás. Los valores ya no representan valores absolutos, a excepción de la primera columna que se dibuja en el botón de los puntos aplicados. Si usted selecciona <emph>Porcentaje</emph>, los valores son escalados como porcentaje de la categoría total. "
+
+#: type_line.xhp#par_id3682058.help.text
+msgid "Mark <emph>Smooth lines</emph> to draw curves through the points instead of straight lines. Click <emph>Properties</emph> for a <link href=\"text/schart/01/smooth_line_properties.xhp\">dialog</link> to change the curves' properties."
+msgstr "Marca<emph>Lineas Suaves</emph> para dibujar curvas a través de los puntos en vez de lineas rectas. Haga clic en <emph>Propiedades</emph> por un<link href=\"text/schart/01/smooth_line_properties.xhp\">dialogo</link> para cambiar las propiedades de las curvas."
diff --git a/source/es/helpcontent2/source/text/schart/02.po b/source/es/helpcontent2/source/text/schart/02.po
new file mode 100644
index 00000000000..b0d59799395
--- /dev/null
+++ b/source/es/helpcontent2/source/text/schart/02.po
@@ -0,0 +1,124 @@
+#. extracted from helpcontent2/source/text/schart/02.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fschart%2F02.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"PO-Revision-Date: 2011-04-05 19:50+0200\n"
+"Last-Translator: Alexandro <jza@openoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 01220000.xhp#tit.help.text
+msgctxt "01220000.xhp#tit.help.text"
+msgid "Automatic Layout"
+msgstr "Diseño automático"
+
+#: 01220000.xhp#bm_id3150400.help.text
+msgid "<bookmark_value>reorganizing charts</bookmark_value><bookmark_value>charts; reorganizing</bookmark_value>"
+msgstr "<bookmark_value>reorganizar gráficos</bookmark_value><bookmark_value>gráficos; reorganizar</bookmark_value>"
+
+#: 01220000.xhp#hd_id3150400.1.help.text
+msgid "<link href=\"text/schart/02/01220000.xhp\" name=\"Automatic Layout\">Automatic Layout</link>"
+msgstr "<link href=\"text/schart/02/01220000.xhp\" name=\"Automatic Layout\">Diseño automático</link>"
+
+#: 01220000.xhp#par_id3146120.2.help.text
+msgid "<ahelp hid=\".uno:NewArrangement\">Moves all chart elements to their default positions inside the current chart. This function does not alter the chart type or any other attributes other than the position of elements.</ahelp>"
+msgstr "<ahelp hid=\".uno:NewArrangement\">Mueve todos los objetos de los gráficos a las posiciones predeterminadas. Esta función no altera el tipo del gráfico ni ninguno de los atributos a excepción de la posición de los objetos.</ahelp>"
+
+#: 01220000.xhp#par_id3150010.help.text
+msgid "<image id=\"img_id3152577\" src=\"cmd/sc_newarrangement.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152577\">Icon</alt></image>"
+msgstr "<image id=\"img_id3152577\" src=\"cmd/sc_newarrangement.png\"><alt id=\"alt_id3152577\">Icono</alt></image>"
+
+#: 01220000.xhp#par_id3153143.3.help.text
+msgctxt "01220000.xhp#par_id3153143.3.help.text"
+msgid "Automatic Layout"
+msgstr "Diseño automático"
+
+#: 01200000.xhp#tit.help.text
+msgctxt "01200000.xhp#tit.help.text"
+msgid "Data in Columns"
+msgstr "Datos en columnas"
+
+#: 01200000.xhp#hd_id3150868.1.help.text
+msgid "<link href=\"text/schart/02/01200000.xhp\" name=\"Data in Columns\">Data in Columns</link>"
+msgstr "<link href=\"text/schart/02/01200000.xhp\" name=\"Datos en columnas\">Datos en columnas</link>"
+
+#: 01200000.xhp#par_id3145749.2.help.text
+msgid "<ahelp hid=\".uno:DataInColumns\">Changes the arrangement of the chart data.</ahelp>"
+msgstr "<ahelp hid=\".uno:DataInColumns\">Cambia la disposición de los datos del gráfico.</ahelp>"
+
+#: 01200000.xhp#par_id3149260.help.text
+msgid "<image id=\"img_id3149379\" src=\"cmd/sc_dataincolumns.png\"><alt id=\"alt_id3149379\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149379\" src=\"cmd/sc_dataincolumns.png\"><alt id=\"alt_id3149379\">Icono</alt></image>"
+
+#: 01200000.xhp#par_id3149377.3.help.text
+msgctxt "01200000.xhp#par_id3149377.3.help.text"
+msgid "Data in Columns"
+msgstr "Datos en columnas"
+
+#: 01210000.xhp#tit.help.text
+msgctxt "01210000.xhp#tit.help.text"
+msgid "Scale Text"
+msgstr "Escala de texto"
+
+#: 01210000.xhp#bm_id3152996.help.text
+msgid "<bookmark_value>text scaling in charts</bookmark_value><bookmark_value>scaling; text in charts</bookmark_value><bookmark_value>charts;scaling text</bookmark_value>"
+msgstr "<bookmark_value>escala de texto; gráficos</bookmark_value><bookmark_value>escalas; texto de gráficos</bookmark_value>"
+
+#: 01210000.xhp#hd_id3152996.1.help.text
+msgid "<link href=\"text/schart/02/01210000.xhp\" name=\"Scale Text\">Scale Text</link>"
+msgstr "<link href=\"text/schart/02/01210000.xhp\" name=\"Escala de texto\">Escala de texto</link>"
+
+#: 01210000.xhp#par_id3144510.2.help.text
+msgid "<ahelp hid=\".uno:ScaleText\">Rescales the text in the chart when you change the size of the chart.</ahelp>"
+msgstr "<ahelp hid=\".uno:ScaleText\">Cambia la escala del texto del gráfico cuando se cambia el tamaño de éste.</ahelp>"
+
+#: 01210000.xhp#par_id3150441.help.text
+msgid "<image id=\"img_id3159153\" src=\"cmd/sc_scaletext.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3159153\">Icon</alt></image>"
+msgstr "<image id=\"img_id3159153\" src=\"cmd/sc_scaletext.png\"><alt id=\"alt_id3159153\">Icono</alt></image>"
+
+#: 01210000.xhp#par_id3153190.3.help.text
+msgctxt "01210000.xhp#par_id3153190.3.help.text"
+msgid "Scale Text"
+msgstr "Escala de texto"
+
+#: 01190000.xhp#tit.help.text
+msgctxt "01190000.xhp#tit.help.text"
+msgid "Data in Rows"
+msgstr "Datos en filas"
+
+#: 01190000.xhp#hd_id3146976.1.help.text
+msgid "<link href=\"text/schart/02/01190000.xhp\" name=\"Data in Rows\">Data in Rows</link>"
+msgstr "<link href=\"text/schart/02/01190000.xhp\" name=\"Data in Rows\">Datos en filas</link>"
+
+#: 01190000.xhp#par_id3154490.2.help.text
+msgid "<ahelp hid=\".uno:DataInRows\">Changes the arrangement of the chart data.</ahelp>"
+msgstr "<ahelp hid=\".uno:DataInRows\">Cambia la disposición de los datos del gráfico.</ahelp>"
+
+#: 01190000.xhp#par_id3150751.help.text
+msgid "<image id=\"img_id3145643\" src=\"cmd/sc_datainrows.png\"><alt id=\"alt_id3145643\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145643\" src=\"cmd/sc_datainrows.png\"><alt id=\"alt_id3145643\">Icono</alt></image>"
+
+#: 01190000.xhp#par_id3154754.3.help.text
+msgctxt "01190000.xhp#par_id3154754.3.help.text"
+msgid "Data in Rows"
+msgstr "Datos en filas"
+
+#: 02020000.xhp#tit.help.text
+msgid "Current Chart Type"
+msgstr "Tipo de gráfico actual"
+
+#: 02020000.xhp#hd_id3150791.1.help.text
+msgid "<link href=\"text/schart/02/02020000.xhp\" name=\"Current Chart Type\">Current Chart Type</link>"
+msgstr "<link href=\"text/schart/02/02020000.xhp\" name=\"Current Chart Type\">Tipo de gráfico actual</link>"
+
+#: 02020000.xhp#par_id3145173.2.help.text
+msgid "<ahelp hid=\".uno:ContextType\" visibility=\"visible\">Displays the name of the current chart type.</ahelp>"
+msgstr "<ahelp hid=\".uno:ContextType\" visibility=\"visible\">Muestra el nombre del tipo de gráfico actual.</ahelp>"
diff --git a/source/es/helpcontent2/source/text/schart/04.po b/source/es/helpcontent2/source/text/schart/04.po
new file mode 100644
index 00000000000..dccec7b7791
--- /dev/null
+++ b/source/es/helpcontent2/source/text/schart/04.po
@@ -0,0 +1,144 @@
+#. extracted from helpcontent2/source/text/schart/04.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fschart%2F04.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"PO-Revision-Date: 2011-06-12 10:02+0200\n"
+"Last-Translator: Alexandro <jza@openoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 01020000.xhp#tit.help.text
+msgid "Shortcuts for Charts"
+msgstr "Acceso directo para gráficos"
+
+#: 01020000.xhp#bm_id3150767.help.text
+msgid "<bookmark_value>shortcut keys; charts</bookmark_value><bookmark_value>charts; shortcuts</bookmark_value>"
+msgstr "<bookmark_value>teclas de acceso directo; gráficos</bookmark_value><bookmark_value>gráficos;accesos directos</bookmark_value>"
+
+#: 01020000.xhp#hd_id3150767.1.help.text
+msgid "<variable id=\"Chart_keys\"><link href=\"text/schart/04/01020000.xhp\" name=\"Shortcuts for Charts\">Shortcuts for Charts</link></variable>"
+msgstr "<variable id=\"Chart_keys\"><link href=\"text/schart/04/01020000.xhp\" name=\"Shortcuts for Charts\">Atajos de teclado para gráficos</link></variable>"
+
+#: 01020000.xhp#par_id3155412.2.help.text
+msgid "You can use the following shortcut keys in charts."
+msgstr "Puede usar los siguientes atajos de teclado en los gráficos."
+
+#: 01020000.xhp#par_id3159154.3.help.text
+msgid "You can also use the general <link href=\"text/shared/04/01010000.xhp\" name=\"shortcut keys\">shortcut keys</link> for $[officename]."
+msgstr "También puede usar las <link href=\"text/shared/04/01010000.xhp\" name=\"shortcut keys\">teclas de acceso directo</link> generales de $[officename]."
+
+#: 01020000.xhp#hd_id3149262.4.help.text
+msgid "Shortcuts in Charts"
+msgstr "Atajos de teclado en gráficos"
+
+#: 01020000.xhp#hd_id3151073.5.help.text
+msgid "Shortcut Keys"
+msgstr "Combinación de teclas"
+
+#: 01020000.xhp#par_id3154490.6.help.text
+msgid "Results"
+msgstr "Resultado"
+
+#: 01020000.xhp#hd_id3154729.7.help.text
+msgid "Tab"
+msgstr "Tabulador"
+
+#: 01020000.xhp#par_id3154511.8.help.text
+msgid "Select next object."
+msgstr "Seleccionar el objeto siguiente."
+
+#: 01020000.xhp#hd_id3155064.9.help.text
+msgid "Shift+Tab"
+msgstr "Mayús+Tab"
+
+#: 01020000.xhp#par_id3149020.10.help.text
+msgid "Select previous object."
+msgstr "Seleccionar el objeto anterior."
+
+#: 01020000.xhp#hd_id3155443.11.help.text
+msgid "Home"
+msgstr "Inicio"
+
+#: 01020000.xhp#par_id3156382.12.help.text
+msgid "Select first object."
+msgstr "Seleccionar el primer objeto."
+
+#: 01020000.xhp#hd_id3153963.13.help.text
+msgid "End"
+msgstr "Fin"
+
+#: 01020000.xhp#par_id3154702.14.help.text
+msgid "Select last object."
+msgstr "Seleccionar el último objeto."
+
+#: 01020000.xhp#hd_id3143218.15.help.text
+msgid "Esc"
+msgstr "Esc"
+
+#: 01020000.xhp#par_id3147005.16.help.text
+msgid "Cancel selection"
+msgstr "Cancelar selección"
+
+#: 01020000.xhp#hd_id3159239.17.help.text
+msgid "up/down/left/right arrow"
+msgstr "flechas hacia arriba/abajo/izquierda/derecha"
+
+#: 01020000.xhp#par_id3149210.18.help.text
+msgid "Move the object in the direction of the arrow."
+msgstr "Mover el objeto en la dirección de las flechas."
+
+#: 01020000.xhp#hd_id3150364.19.help.text
+msgid "up/down/left/right arrow in pie charts"
+msgstr "flechas hacia arriba/abajo/izquierda/derecha en los gráficos de círculo"
+
+#: 01020000.xhp#par_id3150369.20.help.text
+msgid "Moves the selected pie segment in the direction of the arrow."
+msgstr "Mover el segmento seleccionado del gráfico de círculo en la dirección de la flecha."
+
+#: 01020000.xhp#hd_id3145584.21.help.text
+msgid "F2 in titles"
+msgstr "F2 en los títulos"
+
+#: 01020000.xhp#par_id3154372.22.help.text
+msgid "Enter text input mode."
+msgstr "Comenzar el modo de entrada de texto."
+
+#: 01020000.xhp#hd_id3146980.23.help.text
+msgid "F3"
+msgstr "F3"
+
+#: 01020000.xhp#par_id3152988.24.help.text
+msgid "Open group so that you can edit the individual components (in legend and data series)."
+msgstr "Abrir el grupo de forma que se pueda editar los componentes por separado (en la series de leyenda y datos)."
+
+#: 01020000.xhp#hd_id3153815.25.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
+
+#: 01020000.xhp#par_id3153915.26.help.text
+msgid "Exit group (in legend and data series)."
+msgstr "Salir del grupo (en las series de leyenda y datos)."
+
+#: 01020000.xhp#hd_id3155269.27.help.text
+msgid "+/-"
+msgstr "+/-"
+
+#: 01020000.xhp#par_id3156016.28.help.text
+msgid "Reduce or enlarge the chart"
+msgstr "Reducir o aumentar el gráfico"
+
+#: 01020000.xhp#hd_id3150210.29.help.text
+msgid "+/- in pie charts"
+msgstr "+/- en los gráficos de círculo"
+
+#: 01020000.xhp#par_id3159204.30.help.text
+msgid "Moves the selected pie segment off or into the pie chart."
+msgstr "Mueve el segmento seleccionado hacia el centro o hacia el exterior del gráfico de círculo."
diff --git a/source/es/helpcontent2/source/text/sdraw.po b/source/es/helpcontent2/source/text/sdraw.po
new file mode 100644
index 00000000000..51218931630
--- /dev/null
+++ b/source/es/helpcontent2/source/text/sdraw.po
@@ -0,0 +1,548 @@
+#. extracted from helpcontent2/source/text/sdraw.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsdraw.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"PO-Revision-Date: 2012-05-11 12:33+0200\n"
+"Last-Translator: Santiago <santiago.bosio@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: main0101.xhp#tit.help.text
+msgid "File"
+msgstr "Archivo"
+
+#: main0101.xhp#hd_id3149655.1.help.text
+msgid "<link href=\"text/sdraw/main0101.xhp\" name=\"File\">File</link>"
+msgstr "<link href=\"text/sdraw/main0101.xhp\" name=\"File\">Archivo</link>"
+
+#: main0101.xhp#par_id3150868.2.help.text
+msgid "This menu contains general commands for working with Draw documents, such as open, close and print. To close $[officename] Draw, click <emph>Exit</emph>."
+msgstr "Este menú agrupa comandos para manejar documentos en general. Con él es posible crear un documento nuevo, abrir, cerrar, imprimir un documento, introducir las propiedades del documento y mucho más. Para finalizar su tarea con $[officename]Impress basta con pulsar el comando de menú <emph>Terminar</emph>."
+
+#: main0101.xhp#hd_id3156441.4.help.text
+msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
+msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Abrir</link>"
+
+#: main0101.xhp#hd_id3153876.6.help.text
+msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
+msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Guardar como</link>"
+
+#: main0101.xhp#hd_id3150718.7.help.text
+msgid "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">Export</link>"
+msgstr "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">Exportar</link>"
+
+#: main0101.xhp#hd_id3154754.14.help.text
+msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
+msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versiones</link>"
+
+#: main0101.xhp#hd_id3150044.9.help.text
+msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
+msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Propiedades</link>"
+
+#: main0101.xhp#hd_id3149127.12.help.text
+msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
+msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Imprimir</link>"
+
+#: main0101.xhp#hd_id3145790.13.help.text
+msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Printer Settings</link>"
+msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Configuración de la impresora</link>"
+
+#: main0104.xhp#tit.help.text
+msgid "Insert"
+msgstr "Insertar"
+
+#: main0104.xhp#hd_id3148797.1.help.text
+msgid "<link href=\"text/sdraw/main0104.xhp\" name=\"Insert\">Insert</link>"
+msgstr "<link href=\"text/sdraw/main0104.xhp\" name=\"Insert\">Insertar</link>"
+
+#: main0104.xhp#par_id3153770.2.help.text
+msgid "This menu allows you to insert elements, such as graphics and guides, into Draw documents."
+msgstr "Este menú permite insertar en documentos Draw elementos tales como gráficos y guías."
+
+#: main0104.xhp#hd_id3154320.3.help.text
+msgid "<link href=\"text/sdraw/01/04010000.xhp\" name=\"Slide\">Slide</link>"
+msgstr "<link href=\"text/sdraw/01/04010000.xhp\" name=\"Slide\">Diapositiva</link>"
+
+#: main0104.xhp#hd_id3146974.4.help.text
+msgid "<link href=\"text/simpress/01/04020000.xhp\" name=\"Layer\">Layer</link>"
+msgstr "<link href=\"text/simpress/01/04020000.xhp\" name=\"Layer\">Capa</link>"
+
+#: main0104.xhp#hd_id3147397.5.help.text
+msgid "<link href=\"text/simpress/01/04030000.xhp\" name=\"Insert Snap Point/Line\">Insert Snap Point/Line</link>"
+msgstr "<link href=\"text/simpress/01/04030000.xhp\" name=\"Insert Snap Point/Line\">Insertar ajustar Punto/Línea</link>"
+
+#: main0104.xhp#hd_id0915200910361385.help.text
+msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comment</link>"
+msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comentarios</link>"
+
+#: main0104.xhp#hd_id3154018.6.help.text
+msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
+msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Símbolos</link>"
+
+#: main0104.xhp#hd_id3150749.11.help.text
+msgctxt "main0104.xhp#hd_id3150749.11.help.text"
+msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
+msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hiperenlace</link>"
+
+#: main0104.xhp#hd_id3156385.7.help.text
+msgid "<link href=\"text/simpress/01/04080100.xhp\" name=\"Table\">Table</link>"
+msgstr "<link href=\"text/simpress/01/04080100.xhp\" name=\"Table\">Tabla</link>"
+
+#: main0104.xhp#hd_id3147003.8.help.text
+msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Chart</link>"
+msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Gráfico</link>"
+
+#: main0104.xhp#par_id0302200904020595.help.text
+msgid "Inserts a chart."
+msgstr "Inserta un gráfico"
+
+#: main0104.xhp#hd_id3155111.9.help.text
+msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
+msgstr "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Marco flotante</link>"
+
+#: main0104.xhp#hd_id3157867.10.help.text
+msgid "<link href=\"text/simpress/01/04110000.xhp\" name=\"File\">File</link>"
+msgstr "<link href=\"text/simpress/01/04110000.xhp\" name=\"File\">Archivo</link>"
+
+#: main0210.xhp#tit.help.text
+msgid "Drawing Bar"
+msgstr "Barra Dibujo"
+
+#: main0210.xhp#hd_id3150398.1.help.text
+msgid "<link href=\"text/sdraw/main0210.xhp\" name=\"Drawing Bar\">Drawing Bar</link>"
+msgstr "<link href=\"text/sdraw/main0210.xhp\" name=\"Drawing Bar\">Barra de Dibujo</link>"
+
+#: main0210.xhp#par_id3149656.2.help.text
+msgid "The <emph>Drawing</emph> bar holds the main drawing tools."
+msgstr "La barra <emph>Dibujo</emph> contiene las herramientas de dibujo principales."
+
+#: main0210.xhp#par_idN105D1.help.text
+msgid "<link href=\"text/simpress/02/10060000.xhp\">Rectangle</link>"
+msgstr "<link href=\"text/simpress/02/10060000.xhp\">Rectángulo</link>"
+
+#: main0210.xhp#par_idN105E1.help.text
+msgid "Draws a filled rectangle where you drag in the current document. Click where you want to place a corner of the rectangle, and drag to the size you want. To draw a square, hold down Shift while you drag."
+msgstr "Dibuja un rectángulo relleno al arrastrar en el documento actual. Haga clic donde desee situar una de las esquinas del rectángulo y arrastre hasta lograr el tamaño deseado. Para dibujar un cuadrado, mantenga pulsada la tecla Mayús al arrastrar."
+
+#: main0210.xhp#par_idN105EE.help.text
+msgid "<link href=\"text/simpress/02/10070000.xhp\">Ellipse</link>"
+msgstr "<link href=\"text/simpress/02/10070000.xhp\">Elipse</link>"
+
+#: main0210.xhp#par_idN105FE.help.text
+msgid "Draws a filled oval where you drag in the current document. Click where you want to draw the oval, and drag to the size you want. To draw a circle, hold down Shift while you drag."
+msgstr "Dibuja un óvalo relleno al arrastrar en el documento actual. Haga clic donde desee dibujar el óvalo y arrastre hasta alcanzar el tamaño deseado. Para dibujar un círculo, mantenga pulsada la tecla Mayús al arrastrar."
+
+#: main0210.xhp#par_idN1060B.help.text
+msgid "<link href=\"text/simpress/02/10050000.xhp\">Text</link>"
+msgstr "<link href=\"text/simpress/02/10050000.xhp\">Texto</link>"
+
+#: main0210.xhp#par_idN1061B.help.text
+msgid "Draws a text box where you click or drag in the current document. Click anywhere in the document, and then type or paste your text."
+msgstr "Dibuja un cuadro de texto al hacer clic o arrastrar en el documento actual. Haga clic en cualquier lugar del documento y escriba o pegue el texto."
+
+#: main0210.xhp#par_idN107C8.help.text
+msgid "<link href=\"text/simpress/02/10120000.xhp\" name=\"Lines and Arrows\">Lines and Arrows</link>"
+msgstr "<link href=\"text/simpress/02/10120000.xhp\" name=\"Líneas y flechas\">Líneas y flechas</link>"
+
+#: main0210.xhp#par_idN126D7.help.text
+msgid "Opens the Arrows toolbar to insert lines and arrows."
+msgstr "Abre la barra de herramientas \"Flechas\" para insertar líneas y flechas."
+
+#: main0210.xhp#par_idN106B4.help.text
+msgctxt "main0210.xhp#par_idN106B4.help.text"
+msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
+msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Puntos</link>"
+
+#: main0210.xhp#par_idN106C3.help.text
+msgctxt "main0210.xhp#par_idN106C3.help.text"
+msgid "Enables you to edit points on your drawing."
+msgstr "Permite editar puntos en el dibujo."
+
+#: main0210.xhp#par_idN106C8.help.text
+msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Glue Points</link>"
+msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Puntos de adhesión</link>"
+
+#: main0210.xhp#par_idN106D7.help.text
+msgctxt "main0210.xhp#par_idN106D7.help.text"
+msgid "Enables you to edit glue points on your drawing."
+msgstr "Permite editar puntos de adhesión en el dibujo."
+
+#: main0210.xhp#par_idN10754.help.text
+msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"From File\">From File</link>"
+msgstr "<link href=\"text/shared/01/04140000.xhp\" name=\"From File\">Desde Archivo</link>"
+
+#: main0210.xhp#par_idN1072C.help.text
+msgid "<link href=\"text/shared/02/01170000.xhp\" name=\"Form Controls\">Form Controls</link>"
+msgstr "<link href=\"text/shared/02/01170000.xhp\" name=\"Form Controls\">Controles del formulario</link>"
+
+#: main0210.xhp#par_idN1074B.help.text
+msgid "<link href=\"text/shared/3dsettings_toolbar.xhp\">Extrusion On/Off</link>"
+msgstr "<link href=\"text/shared/3dsettings_toolbar.xhp\">Activar o desactivar extrusión</link>"
+
+#: main0210.xhp#par_idN1075A.help.text
+msgid "Switches the 3D effects on and off for the selected objects."
+msgstr "Activa y desactiva los efectos 3D para los objetos seleccionados."
+
+#: main0000.xhp#tit.help.text
+msgid "Welcome to the $[officename] Draw Help"
+msgstr "Bienvenido a la ayuda de $[officename] Draw"
+
+#: main0000.xhp#hd_id3155960.1.help.text
+msgid "<switchinline select=\"appl\"> <caseinline select=\"DRAW\"/> </switchinline>Welcome to the $[officename] Draw Help"
+msgstr "<switchinline select=\"appl\"> <caseinline select=\"DRAW\"/> </switchinline>Bienvenido a la ayuda de $[officename] Draw"
+
+#: main0000.xhp#hd_id3154022.3.help.text
+msgid "How to Work With $[officename] Draw"
+msgstr "Cómo trabajar con $[officename] Draw"
+
+#: main0000.xhp#hd_id3150363.5.help.text
+msgid "$[officename] Draw Menus, Toolbars, and Keys"
+msgstr "Menús, barras de herramientas y teclas en $[officename] Draw"
+
+#: main0000.xhp#hd_id3166430.4.help.text
+msgid "Help about the Help"
+msgstr "Ayuda sobre la Ayuda"
+
+#: main0103.xhp#tit.help.text
+msgid "View"
+msgstr "Ver"
+
+#: main0103.xhp#hd_id3152576.1.help.text
+msgid "<link href=\"text/sdraw/main0103.xhp\" name=\"View\">View</link>"
+msgstr "<link href=\"text/sdraw/main0103.xhp\" name=\"View\">Ver</link>"
+
+#: main0103.xhp#par_id3159155.2.help.text
+msgid "Sets the display properties of Draw documents."
+msgstr "Establece las propiedades de visualización de los documentos de Draw."
+
+#: main0103.xhp#par_idN105AB.help.text
+msgid "Normal"
+msgstr "Normal"
+
+#: main0103.xhp#par_idN105AF.help.text
+msgid "Switch to normal view of the page."
+msgstr "Activar la vista de página normal."
+
+#: main0103.xhp#par_idN105B2.help.text
+msgid "Master"
+msgstr "Documento maestro"
+
+#: main0103.xhp#par_idN105B6.help.text
+msgid "Switch to the master page view."
+msgstr "Activar la vista de página maestra."
+
+#: main0103.xhp#hd_id3149666.3.help.text
+msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
+msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
+
+#: main0100.xhp#tit.help.text
+msgid "Menus"
+msgstr "Menús"
+
+#: main0100.xhp#hd_id3148664.1.help.text
+msgid "<variable id=\"main0100\"><link href=\"text/sdraw/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
+msgstr "<variable id=\"main0100\"><link href=\"text/sdraw/main0100.xhp\" name=\"Menus\">Menús</link></variable>"
+
+#: main0100.xhp#par_id3154684.2.help.text
+msgid "The following is a description of all $[officename] Draw menus, submenus and their dialogs."
+msgstr "A continuación se describen todos los menús de $[officename] Draw con sus submenús y sus diálogos."
+
+#: main0200.xhp#tit.help.text
+msgid "Toolbars"
+msgstr "Barras de herramientas"
+
+#: main0200.xhp#hd_id3148663.1.help.text
+msgid "<variable id=\"main0200\"><link href=\"text/sdraw/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
+msgstr "<variable id=\"main0200\"><link href=\"text/sdraw/main0200.xhp\" name=\"Toolbars\">Barras de símbolos</link></variable>"
+
+#: main0200.xhp#par_id3125863.2.help.text
+msgid "This section provides an overview of the toolbars available in $[officename] Draw."
+msgstr "Este apartado ofrece información general sobre las barras de herramientas disponibles en $[officename] Draw."
+
+#: main0503.xhp#tit.help.text
+msgid "$[officename] Draw Features"
+msgstr "Funciones de $[officename] Draw"
+
+#: main0503.xhp#hd_id3148797.1.help.text
+msgid "<variable id=\"main0503\"><link href=\"text/sdraw/main0503.xhp\" name=\"$[officename] Draw Features\">$[officename] Draw Features</link></variable>"
+msgstr "<variable id=\"main0503\"><link href=\"text/sdraw/main0503.xhp\" name=\"$[officename] Draw Features\">Funciones de $[officename] Draw</link></variable>"
+
+#: main0503.xhp#par_id3146975.2.help.text
+msgid "$[officename] Draw lets you create simple and complex drawings and export them in a number of common image formats. You can also insert tables, charts, formulas and other items created in $[officename] programs into your drawings."
+msgstr "$[officename] Draw permite crear dibujos simples y complejos, así como exportarlos en varios formatos habituales para imágenes. Puede insertar tablas, diagramas, fórmulas y otros elementos creados con programas de $[officename] en sus dibujos."
+
+#: main0503.xhp#hd_id3147435.11.help.text
+msgid "Vector Graphics"
+msgstr "Imágenes Vectoriales"
+
+#: main0503.xhp#par_id3153142.12.help.text
+msgid "$[officename] Draw creates vector graphics using lines and curves defined by mathematical vectors. Vectors describe lines, ellipses, and polygons according to their geometry."
+msgstr "$[officename] Draw crea imágenes vectoriales usando líneas y curvas definidas por vectores matemáticos. Los vectores describen líneas, elipses y polígonos, según su geometría."
+
+#: main0503.xhp#hd_id3154320.14.help.text
+msgid "Creating 3D Objects"
+msgstr "Creación de Objetos 3D"
+
+#: main0503.xhp#par_id3145251.15.help.text
+msgid "You can create simple 3D objects such as cubes, spheres, and cylinders in $[officename] Draw and even modify the light source of the objects."
+msgstr "Puede crear objetos 3D sencillos como cubos, esferas y cilindros en $[officename] Draw e incluso modificar la fuente de luz de los objetos."
+
+#: main0503.xhp#hd_id3154491.20.help.text
+msgid "Grids and Snap Lines"
+msgstr "Cuadrículas y guías"
+
+#: main0503.xhp#par_id3149379.6.help.text
+msgid "Grids and snap lines provide a visual cue to help you align objects in your drawing. You can also choose to snap an object to a grid line, snap line or to the edge of another object."
+msgstr "Las cuadrículas y guías proporcionan una referencia visual para ayudarlo a alinear los objetos del dibujo. Existen las pociones de ajustar un objeto a una línea de la cuadrícula, a una línea de guía, o al borde de algún otro objeto."
+
+#: main0503.xhp#hd_id3155601.16.help.text
+msgid "Connecting Objects to Show Relationships"
+msgstr "Conexión de Objetos para Mostrar Relaciones"
+
+#: main0503.xhp#par_id3149124.17.help.text
+msgid "You can connect objects in $[officename] Draw with special lines called \"connectors\" to show the relationship between objects. Connectors attach to glue points on drawing objects and remain attached when the connected objects are moved. Connectors are useful for creating organization charts and technical diagrams."
+msgstr "Puede conectar objetos de $[officename] Draw mediante líneas especiales llamadas \"conectores\" para mostrar la relación entre los objetos. Los conectores se acoplan a los puntos de adhesión de los objetos de dibujo y permanecen acoplados cuando los objetos conectados se mueven. Los conectores son útiles para crear diagramas de organización y técnicos."
+
+#: main0503.xhp#hd_id3155764.21.help.text
+msgid "Displaying Dimensions"
+msgstr "Visualización de las Dimensiones"
+
+#: main0503.xhp#par_id3155333.22.help.text
+msgid "Technical diagrams often show the dimensions of objects in the drawing. In $[officename] Draw, you can use dimension lines to calculate and display linear dimensions."
+msgstr "Los diagramas técnicos muestran con frecuencia las dimensiones de los objetos en el dibujo. En $[officename] Draw puede usar las líneas de dimensiones para calcular y visualizar las dimensiones lineales."
+
+#: main0503.xhp#hd_id3154705.18.help.text
+msgid "Gallery"
+msgstr "Galería"
+
+#: main0503.xhp#par_id3154022.7.help.text
+msgid "The Gallery contains images, animations, sounds and other items that you can insert and use in your drawings as well as other $[officename] programs."
+msgstr "La galería contiene imágenes, animaciones, sonidos y otros elementos que se pueden insertar y utilizar en los dibujos, así como en otros programas de $[officename]."
+
+#: main0503.xhp#hd_id3149207.19.help.text
+msgid "Graphic File Formats"
+msgstr "Formatos de Archivos de Imágenes"
+
+#: main0503.xhp#par_id3155112.5.help.text
+msgid "$[officename] Draw can export to many common graphic file formats, such as BMP, GIF, JPG, and PNG."
+msgstr "$[officename] Draw exporta en muchos de los formatos habituales de archivo gráfico como BMP, GIF, JPG y PNG."
+
+#: main0105.xhp#tit.help.text
+msgid "Format"
+msgstr "Formato"
+
+#: main0105.xhp#hd_id3153770.1.help.text
+msgid "<link href=\"text/sdraw/main0105.xhp\" name=\"Format\">Format</link>"
+msgstr "<link href=\"text/sdraw/main0105.xhp\" name=\"Format\">Formato</link>"
+
+#: main0105.xhp#par_id3152578.2.help.text
+msgid "Contains commands for formatting the layout and the contents of your document."
+msgstr "Contiene órdenes para dar formato al diseño y al contenido del documento."
+
+#: main0105.xhp#hd_id3155111.10.help.text
+msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Carácter</link>"
+
+#: main0105.xhp#hd_id3146979.12.help.text
+msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Párrafo</link>"
+
+#: main0105.xhp#hd_id3166426.19.help.text
+msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
+msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Numeración y viñetas</link>"
+
+#: main0105.xhp#hd_id3155091.14.help.text
+msgid "<link href=\"text/simpress/01/01180000.xhp\" name=\"Page\">Page</link>"
+msgstr "<link href=\"text/simpress/01/01180000.xhp\" name=\"Page\">Página</link>"
+
+#: main0105.xhp#hd_id3146971.6.help.text
+msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Position and Size</link>"
+msgstr "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Posicion y diapositiva</link>"
+
+#: main0105.xhp#hd_id3148576.3.help.text
+msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
+msgstr "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Línea</link>"
+
+#: main0105.xhp#hd_id3151076.4.help.text
+msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Área</link>"
+
+#: main0105.xhp#hd_id3153878.5.help.text
+msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
+msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Texto</link>"
+
+#: main0105.xhp#hd_id3153913.16.help.text
+msgid "<link href=\"text/simpress/01/05140000.xhp\" name=\"Layer\">Layer</link>"
+msgstr "<link href=\"text/simpress/01/05140000.xhp\" name=\"Layer\">Capa</link>"
+
+#: main0102.xhp#tit.help.text
+msgid "Edit"
+msgstr "Editar"
+
+#: main0102.xhp#hd_id3150868.1.help.text
+msgid "<link href=\"text/sdraw/main0102.xhp\" name=\"Edit\">Edit</link>"
+msgstr "<link href=\"text/sdraw/main0102.xhp\" name=\"Edit\">Editar</link>"
+
+#: main0102.xhp#par_id3146974.2.help.text
+msgid "The commands in this menu are used to edit Draw documents (for example, copying and pasting)."
+msgstr "Los comandos en este menú son utilizados para modificar documentos de Draw (por ejemplo, copiando y pegando)."
+
+#: main0102.xhp#hd_id3147396.3.help.text
+msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
+msgstr "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Pegado especial</link>"
+
+#: main0102.xhp#hd_id3149400.4.help.text
+msgid "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
+msgstr "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Buscar y reemplazar</link>"
+
+#: main0102.xhp#hd_id3153713.13.help.text
+msgctxt "main0102.xhp#hd_id3153713.13.help.text"
+msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
+msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Puntos</link>"
+
+#: main0102.xhp#par_id3147340.14.help.text
+msgctxt "main0102.xhp#par_id3147340.14.help.text"
+msgid "Enables you to edit points on your drawing."
+msgstr "Permite editar los puntos del dibujo."
+
+#: main0102.xhp#hd_id3149258.15.help.text
+msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Glue points</link>"
+msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Puntos de adhesión</link>"
+
+#: main0102.xhp#par_id3146315.16.help.text
+msgctxt "main0102.xhp#par_id3146315.16.help.text"
+msgid "Enables you to edit glue points on your drawing."
+msgstr "Permite editar los puntos de adhesión del dibujo."
+
+#: main0102.xhp#hd_id3147005.5.help.text
+msgid "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplicate\">Duplicate</link>"
+msgstr "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplicate\">Duplicar</link>"
+
+#: main0102.xhp#hd_id3150205.6.help.text
+msgid "<link href=\"text/simpress/01/02150000.xhp\" name=\"Cross-fading\">Cross-fading</link>"
+msgstr "<link href=\"text/simpress/01/02150000.xhp\" name=\"Cross-fading\">Desvanecimiento</link>"
+
+#: main0102.xhp#hd_id3154650.7.help.text
+msgid "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
+msgstr "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Campos</link>"
+
+#: main0102.xhp#hd_id3156446.10.help.text
+msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
+msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Vínculos</link>"
+
+#: main0102.xhp#hd_id3148699.11.help.text
+msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
+msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">Mapa de imagen</link>"
+
+#: main0102.xhp#hd_id3157867.12.help.text
+msgctxt "main0102.xhp#hd_id3157867.12.help.text"
+msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
+msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hiperenlace</link>"
+
+#: main0213.xhp#tit.help.text
+msgid "Options Bar"
+msgstr "Barra de Opciones"
+
+#: main0213.xhp#hd_id3150793.1.help.text
+msgid "<link href=\"text/sdraw/main0213.xhp\" name=\"Options Bar\">Options Bar</link>"
+msgstr "<link href=\"text/sdraw/main0213.xhp\" name=\"Options Bar\">Barra de Opciones</link>"
+
+#: main0213.xhp#par_id3154685.2.help.text
+msgid "The <emph>Options</emph> bar can be displayed by choosing <emph>View - Toolbars - Options</emph>."
+msgstr "La <emph>barra de opciones</emph> se muestra al seleccionar <emph>Ver - Barras de Herramientas - Opciones</emph>."
+
+#: main0213.xhp#hd_id3145251.3.help.text
+msgid "<link href=\"text/shared/02/01171200.xhp\" name=\"Display Grid\">Display Grid</link>"
+msgstr "<link href=\"text/shared/02/01171200.xhp\" name=\"Display Grid\">Mostrar Cuadrícula</link>"
+
+#: main0213.xhp#hd_id3149018.5.help.text
+msgid "<link href=\"text/shared/02/01171400.xhp\" name=\"Helplines While Moving\">Helplines While Moving</link>"
+msgstr "<link href=\"text/shared/02/01171400.xhp\" name=\"Helplines While Moving\">Guías al desplazar</link>"
+
+#: main0213.xhp#hd_id3147338.6.help.text
+msgid "<link href=\"text/shared/02/01171300.xhp\" name=\"Snap to Grid\">Snap to Grid</link>"
+msgstr "<link href=\"text/shared/02/01171300.xhp\" name=\"Snap to Grid\">Ajustar Cuadrícula</link>"
+
+#: main0213.xhp#hd_id3146313.7.help.text
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
+msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Alinear a las guías</link>"
+
+#: main0213.xhp#hd_id3155111.8.help.text
+msgid "<link href=\"text/simpress/02/13150000.xhp\" name=\"Snap to Page Margins\">Snap to Page Margins</link>"
+msgstr "<link href=\"text/simpress/02/13150000.xhp\" name=\"Snap to Page Margins\">Ajustar a Margenes de Página</link>"
+
+#: main0213.xhp#hd_id3150343.9.help.text
+msgid "<link href=\"text/simpress/02/13160000.xhp\" name=\"Snap to Object Border\">Snap to Object Border</link>"
+msgstr "<link href=\"text/simpress/02/13160000.xhp\" name=\"Snap to Object Border\">Ajustar al Borde del Objeto</link>"
+
+#: main0213.xhp#hd_id3150368.10.help.text
+msgid "<link href=\"text/simpress/02/13170000.xhp\" name=\"Snap to Object Points\">Snap to Object Points</link>"
+msgstr "<link href=\"text/simpress/02/13170000.xhp\" name=\"Snap to Object Points\">Ajustar a Puntos del Objeto</link>"
+
+#: main0213.xhp#hd_id3146980.11.help.text
+msgid "<link href=\"text/simpress/02/13180000.xhp\" name=\"Allow Quick Editing\">Allow Quick Editing</link>"
+msgstr "<link href=\"text/simpress/02/13180000.xhp\" name=\"Allow Quick Editing\">Permitir Edición Rápida</link>"
+
+#: main0213.xhp#hd_id3148870.12.help.text
+msgid "<link href=\"text/simpress/02/13190000.xhp\" name=\"Select Text Area Only\">Select Text Area Only</link>"
+msgstr "<link href=\"text/simpress/02/13190000.xhp\" name=\"Select Text Area Only\">Seleccionar Solo Área de Texto</link>"
+
+#: main0106.xhp#tit.help.text
+msgid "Tools"
+msgstr "Herramientas"
+
+#: main0106.xhp#hd_id3159155.1.help.text
+msgid "<link href=\"text/sdraw/main0106.xhp\" name=\"Tools\">Tools</link>"
+msgstr "<link href=\"text/sdraw/main0106.xhp\" name=\"Tools\">Herramientas</link>"
+
+#: main0106.xhp#par_id3156443.2.help.text
+msgid "This menu provides tools for $[officename] Draw as well as access to language and system settings."
+msgstr "Este menú contiene comandos referidos a la lingüística y a diversas opciones de programa para $[officename] Draw."
+
+#: main0106.xhp#hd_id3153415.4.help.text
+msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"Opciones de AutoCorrección\">Opciones de AutoCorrección</link>"
+
+#: main0106.xhp#hd_id3150044.6.help.text
+msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
+msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Personalizar</link>"
+
+#: main0202.xhp#tit.help.text
+msgid "Line and Filling Bar"
+msgstr "Barra Líneas y Relleno"
+
+#: main0202.xhp#hd_id3149669.1.help.text
+msgid "<link href=\"text/sdraw/main0202.xhp\" name=\"Line and Filling Bar\">Line and Filling Bar</link>"
+msgstr "<link href=\"text/sdraw/main0202.xhp\" name=\"Line and Filling Bar\">Barra Líneas y relleno</link>"
+
+#: main0202.xhp#par_id3150543.2.help.text
+msgid "The Line and Filling bar contains commands for the current editing mode."
+msgstr "La barra Líneas y Relleno contiene comandos para el modo de edición actual."
+
+#: main0202.xhp#hd_id3149664.3.help.text
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Estilo de línea</link>"
+
+#: main0202.xhp#hd_id3156285.4.help.text
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Ancho de línea</link>"
+
+#: main0202.xhp#hd_id3154015.5.help.text
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Line Color</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Color de línea</link>"
+
+#: main0202.xhp#hd_id3155767.6.help.text
+msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Area Style / Filling</link>"
+msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Área Estilo/Relleno</link>"
+
+#: main0202.xhp#hd_id3341471.help.text
+msgid "<link href=\"text/shared/01/05210600.xhp\" name=\"Shadow\">Shadow</link>"
+msgstr "<link href=\"text/shared/01/05210600.xhp\" name=\"Shadow\">Sombra</link>"
diff --git a/source/es/helpcontent2/source/text/sdraw/00.po b/source/es/helpcontent2/source/text/sdraw/00.po
new file mode 100644
index 00000000000..331635a3def
--- /dev/null
+++ b/source/es/helpcontent2/source/text/sdraw/00.po
@@ -0,0 +1,24 @@
+#. extracted from helpcontent2/source/text/sdraw/00.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsdraw%2F00.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"PO-Revision-Date: 2011-04-05 19:50+0200\n"
+"Last-Translator: Alexandro <jza@openoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 00000004.xhp#tit.help.text
+msgid "To access this command..."
+msgstr "Para acceder a esta orden..."
+
+#: 00000004.xhp#hd_id3156024.1.help.text
+msgid "<variable id=\"wie\">To access this command...</variable>"
+msgstr "<variable id=\"wie\">Para acceder a esta orden</variable>"
diff --git a/source/es/helpcontent2/source/text/sdraw/01.po b/source/es/helpcontent2/source/text/sdraw/01.po
new file mode 100644
index 00000000000..811f2c88edd
--- /dev/null
+++ b/source/es/helpcontent2/source/text/sdraw/01.po
@@ -0,0 +1,28 @@
+#. extracted from helpcontent2/source/text/sdraw/01.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsdraw%2F01.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"PO-Revision-Date: 2011-04-05 19:50+0200\n"
+"Last-Translator: Alexandro <jza@openoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 04010000.xhp#tit.help.text
+msgid "Insert Page"
+msgstr "Insertar Página"
+
+#: 04010000.xhp#hd_id3150202.1.help.text
+msgid "<link href=\"text/sdraw/01/04010000.xhp\" name=\"Insert Page\">Insert Page</link>"
+msgstr "<link href=\"text/sdraw/01/04010000.xhp\" name=\"Insertar página\">Insertar Página</link>"
+
+#: 04010000.xhp#par_id3152988.2.help.text
+msgid "<variable id=\"seitetext\">Inserts a blank page after the selected page.</variable>"
+msgstr "<variable id=\"seitetext\">Inserta una página en blanco después de la página seleccionada.</variable>"
diff --git a/source/es/helpcontent2/source/text/sdraw/04.po b/source/es/helpcontent2/source/text/sdraw/04.po
new file mode 100644
index 00000000000..f4b5ea87311
--- /dev/null
+++ b/source/es/helpcontent2/source/text/sdraw/04.po
@@ -0,0 +1,438 @@
+#. extracted from helpcontent2/source/text/sdraw/04.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsdraw%2F04.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"PO-Revision-Date: 2012-04-17 16:49+0200\n"
+"Last-Translator: Vicente Rafael <rafaestevez@yahoo.es>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 01020000.xhp#tit.help.text
+msgctxt "01020000.xhp#tit.help.text"
+msgid "Shortcut Keys for Drawings"
+msgstr "Combinaciones de Teclas para Dibujos"
+
+#: 01020000.xhp#bm_id3156441.help.text
+msgid "<bookmark_value>shortcut keys;in drawings</bookmark_value> <bookmark_value>drawings; shortcut keys</bookmark_value>"
+msgstr "<bookmark_value>combinación de teclas;en los dibujos</bookmark_value> <bookmark_value>dibujos;combinación de teclas</bookmark_value>"
+
+#: 01020000.xhp#hd_id3156441.1.help.text
+msgid "<variable id=\"draw_keys\"><link href=\"text/sdraw/04/01020000.xhp\" name=\"Shortcut Keys for Drawings\">Shortcut Keys for Drawings</link></variable>"
+msgstr "<variable id=\"draw_keys\"><link href=\"text/sdraw/04/01020000.xhp\" name=\"Combinación de teclas para dibujos\">Combinación de Teclas para Dibujos</link></variable>"
+
+#: 01020000.xhp#par_id3153877.2.help.text
+msgid "The following is a list of shortcut keys specific to Drawing documents."
+msgstr "A continuación se incluye una lista de combinaciones de teclas de interés específico para trabajar con documentos de dibujo."
+
+#: 01020000.xhp#par_id3154730.103.help.text
+msgid "You can also use the <link href=\"text/shared/04/01010000.xhp\" name=\"general shortcut keys for $[officename]\">general shortcut keys for $[officename]</link>."
+msgstr "Además serán válidas las <link href=\"text/shared/04/01010000.xhp\" name=\"general shortcut keys for $[officename]\">combinaciones de teclas de $[officename]</link>."
+
+#: 01020000.xhp#hd_id3149121.3.help.text
+msgid "Function Keys for Drawings"
+msgstr "Teclas de función en los documentos de dibujo"
+
+#: 01020000.xhp#hd_id3155768.4.help.text
+msgctxt "01020000.xhp#hd_id3155768.4.help.text"
+msgid "Shortcut Keys"
+msgstr "Teclas rápidas"
+
+#: 01020000.xhp#par_id3153713.6.help.text
+msgctxt "01020000.xhp#par_id3153713.6.help.text"
+msgid "<emph>Effect</emph>"
+msgstr "<emph>Efecto</emph>"
+
+#: 01020000.xhp#hd_id3150044.7.help.text
+msgctxt "01020000.xhp#hd_id3150044.7.help.text"
+msgid "F2"
+msgstr "(F2)"
+
+#: 01020000.xhp#par_id3152346.8.help.text
+msgid "Add or edit text."
+msgstr "Agregar o editar texto."
+
+#: 01020000.xhp#hd_id3154705.9.help.text
+msgid "F3"
+msgstr "(F3)"
+
+#: 01020000.xhp#par_id3147004.10.help.text
+msgid "Opens group to edit individual objects."
+msgstr "Abre el grupo para editar los objetos por separado."
+
+#: 01020000.xhp#hd_id3155113.11.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Control</defaultinline></switchinline>+F3"
+
+#: 01020000.xhp#par_id3159238.12.help.text
+msgid "Close group editor."
+msgstr "Cerrar el editor de grupos."
+
+#: 01020000.xhp#hd_id3150199.13.help.text
+msgid "Shift+F3"
+msgstr "(Mayús)(F3)"
+
+#: 01020000.xhp#par_id3152994.14.help.text
+msgid "Opens the <emph>Duplicate</emph> dialog."
+msgstr "Abre el diálogo <emph>Duplicar</emph>."
+
+#: 01020000.xhp#hd_id3154488.15.help.text
+msgid "F4"
+msgstr "(F4)"
+
+#: 01020000.xhp#par_id3149406.16.help.text
+msgid "Opens the <emph>Position and Size</emph> dialog."
+msgstr "Abre el diálogo <emph>Posición y tamaño</emph>."
+
+#: 01020000.xhp#hd_id3148870.21.help.text
+msgid "F5"
+msgstr "(F5)"
+
+#: 01020000.xhp#par_id3153917.22.help.text
+msgid "Opens the <emph>Navigator</emph>."
+msgstr "Abre el <emph>Navegador</emph>."
+
+#: 01020000.xhp#hd_id3157982.25.help.text
+msgid "F7"
+msgstr "(F7)"
+
+#: 01020000.xhp#par_id3154649.26.help.text
+msgid "Checks spelling."
+msgstr "Revisa la ortografía."
+
+#: 01020000.xhp#hd_id3152869.27.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F7"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Control</defaultinline></switchinline>+F7"
+
+#: 01020000.xhp#par_id3154765.28.help.text
+msgid "Opens the <emph>Thesaurus</emph>."
+msgstr "Abre el <emph>Diccionario de Sinónimos</emph>."
+
+#: 01020000.xhp#hd_id3146962.29.help.text
+msgid "F8"
+msgstr "(F8)"
+
+#: 01020000.xhp#par_id3154707.30.help.text
+msgid "Edit points on/off."
+msgstr "Activar/desactivar edición de puntos."
+
+#: 01020000.xhp#hd_id3149317.31.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F8"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Control</defaultinline></switchinline>+Mayús+F8"
+
+#: 01020000.xhp#par_id3147250.32.help.text
+msgid "Fits to frame."
+msgstr "Se ajusta al marco."
+
+#: 01020000.xhp#hd_id3150434.35.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando+T</caseinline><defaultinline>F11</defaultinline></switchinline>"
+
+#: 01020000.xhp#par_id3151389.36.help.text
+msgid "Opens Styles and Formatting window."
+msgstr "Abre la ventana Estilo y formato."
+
+#: 01020000.xhp#bm_id3150393.help.text
+msgid "<bookmark_value>zooming;shortcut keys</bookmark_value> <bookmark_value>drawings; zoom function in</bookmark_value>"
+msgstr "<bookmark_value>escala;combinación de teclas</bookmark_value><bookmark_value>dibujos;función de escala activada</bookmark_value>"
+
+#: 01020000.xhp#hd_id3150393.41.help.text
+msgctxt "01020000.xhp#hd_id3150393.41.help.text"
+msgid "Shortcut Keys for Drawings"
+msgstr "Combinación de Teclas para Dibujos"
+
+#: 01020000.xhp#hd_id3156401.42.help.text
+msgctxt "01020000.xhp#hd_id3156401.42.help.text"
+msgid "Shortcut Keys"
+msgstr "<emph>Combinación de Teclas</emph>"
+
+#: 01020000.xhp#par_id3146323.43.help.text
+msgctxt "01020000.xhp#par_id3146323.43.help.text"
+msgid "<emph>Effect</emph>"
+msgstr "<emph>Efecto</emph>"
+
+#: 01020000.xhp#hd_id3149946.44.help.text
+msgid "Plus(+) Key"
+msgstr "Tecla +"
+
+#: 01020000.xhp#par_id3159119.45.help.text
+msgid "Zooms in."
+msgstr "Aumenta la escala."
+
+#: 01020000.xhp#hd_id3150655.46.help.text
+msgid "Minus(-) Key"
+msgstr "Tecla -"
+
+#: 01020000.xhp#par_id3145827.47.help.text
+msgid "Zooms out."
+msgstr "Reduce la escala."
+
+#: 01020000.xhp#hd_id3149886.99.help.text
+msgid "Multiple(×) Key (number pad)"
+msgstr "Tecla * (bloque numérico)"
+
+#: 01020000.xhp#par_id3150746.102.help.text
+msgid "Zooms to fit entire page in screen."
+msgstr "Modifica la escala para mostrar toda la página en pantalla."
+
+#: 01020000.xhp#hd_id3154841.101.help.text
+msgid "Divide (÷) Key (number pad)"
+msgstr "Tecla / (bloque numérico)"
+
+#: 01020000.xhp#par_id3153039.100.help.text
+msgid "Zooms in on the current selection."
+msgstr "Aumenta la escala en la selección actual."
+
+#: 01020000.xhp#hd_id3150867.52.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+G"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Control</defaultinline></switchinline>+Mayús+G"
+
+#: 01020000.xhp#par_id3149250.53.help.text
+msgid "Groups selected objects."
+msgstr "Agrupa objetos seleccionados."
+
+#: 01020000.xhp#hd_id3149955.54.help.text
+msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+A"
+msgstr "Mayús+<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando+Opción</caseinline><defaultinline>Control+Alt</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3148582.55.help.text
+msgid "Ungroups selected group."
+msgstr "Separa el grupo seleccionado."
+
+#: 01020000.xhp#hd_id3146852.56.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+K"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Control</defaultinline></switchinline>+Mayús+K"
+
+#: 01020000.xhp#par_id3153110.57.help.text
+msgid "Combines selected objects."
+msgstr "Combina objetos seleccionados."
+
+#: 01020000.xhp#hd_id3153567.58.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+Shift+K"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando+Opción</caseinline><defaultinline>Control+Alt</defaultinline></switchinline>+Mayús+K"
+
+#: 01020000.xhp#par_id3147366.59.help.text
+msgid "Uncombines selected objects."
+msgstr "Desagrupa los objetos seleccionados."
+
+#: 01020000.xhp#hd_id3153730.60.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+ +"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Control</defaultinline></switchinline>+Mayús++"
+
+#: 01020000.xhp#par_id3155928.61.help.text
+msgid "Bring to front."
+msgstr "Traer al frente."
+
+#: 01020000.xhp#hd_id3145245.62.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ +"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Control</defaultinline></switchinline>++"
+
+#: 01020000.xhp#par_id3148393.63.help.text
+msgid "Bring forward."
+msgstr "Traer adelante."
+
+#: 01020000.xhp#hd_id3150928.64.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ -"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Control</defaultinline></switchinline>+-"
+
+#: 01020000.xhp#par_id3156062.65.help.text
+msgid "Send backward."
+msgstr "Enviar atrás."
+
+#: 01020000.xhp#hd_id3145298.66.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+ -"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Control</defaultinline></switchinline>+Mayús+-"
+
+#: 01020000.xhp#par_id3149028.67.help.text
+msgid "Send to back."
+msgstr "Enviar al fondo."
+
+#: 01020000.xhp#hd_id3147533.68.help.text
+msgid "Shortcut Keys Specific to Drawings"
+msgstr "Combinación de Teclas Específicas para Dibujos"
+
+#: 01020000.xhp#hd_id3154865.69.help.text
+msgctxt "01020000.xhp#hd_id3154865.69.help.text"
+msgid "Shortcut Keys"
+msgstr "<emph>Combinación de Teclas</emph>"
+
+#: 01020000.xhp#par_id3155370.70.help.text
+msgctxt "01020000.xhp#par_id3155370.70.help.text"
+msgid "<emph>Effect</emph>"
+msgstr "<emph>Efecto</emph>"
+
+#: 01020000.xhp#par_idN10AD7.help.text
+msgid "Page Up"
+msgstr "AvPág"
+
+#: 01020000.xhp#par_idN10ADC.help.text
+msgid "Switch to previous page"
+msgstr "Pasa a la página anterior"
+
+#: 01020000.xhp#par_idN10AE2.help.text
+msgid "Page Down"
+msgstr "RePág"
+
+#: 01020000.xhp#par_idN10AE7.help.text
+msgid "Switch to next page"
+msgstr "Pasa a la página siguiente"
+
+#: 01020000.xhp#par_idN10AED.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Control</defaultinline></switchinline>+Mayús+G"
+
+#: 01020000.xhp#par_idN10AFD.help.text
+msgid "Switch to previous layer"
+msgstr "Pasa a la capa anterior"
+
+#: 01020000.xhp#par_idN10AF8.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Down"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Control</defaultinline></switchinline>+Tecla de flecha"
+
+#: 01020000.xhp#par_idN10AF2.help.text
+msgid "Switch to next layer"
+msgstr "Pasa a la capa siguiente"
+
+#: 01020000.xhp#hd_id3153927.71.help.text
+msgid "Arrow Key"
+msgstr "Tecla de Flecha"
+
+#: 01020000.xhp#par_id3155986.72.help.text
+msgid "Moves the selected object in the direction of the arrow key."
+msgstr "Desplaza el objeto seleccionado en la dirección de la flecha"
+
+#: 01020000.xhp#hd_id3156259.73.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Arrow Key"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Control</defaultinline></switchinline>+Tecla de flecha"
+
+#: 01020000.xhp#par_id3147171.74.help.text
+msgid "Moves the page view in the direction of the arrow key."
+msgstr "Desplaza la visualización de la página en la dirección seleccionada."
+
+#: 01020000.xhp#hd_id3152484.79.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-click while dragging an object. Note: you must first enable the <link href=\"text/shared/optionen/01070500.xhp\" name=\"Copy when moving\">Copy when moving</link> option in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Draw - General to use this shortcut key."
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-clic mientras arrastra un objeto. Observación: para poder usar este atajo de teclado, deberá activar antes la opción <link href=\"text/shared/optionen/01070500.xhp\" name=\"Copiar al mover\">Copiar al mover</link> en <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Herramientas - Opciones</defaultinline></switchinline> - %PRODUCTNAME Draw - General."
+
+#: 01020000.xhp#par_id3149450.80.help.text
+msgid "Creates a copy of the dragged object when mouse button is released."
+msgstr "Al mover el objeto seleccionado se creará una copia."
+
+#: 01020000.xhp#hd_id3154643.104.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter with keyboard focus (F6) on a drawing object icon on Tools bar"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Control</defaultinline></switchinline>+Enter con la tecla F6 en un icono de objeto de dibujo sobre la barra de herramientas"
+
+#: 01020000.xhp#par_id3150756.105.help.text
+msgid "Inserts a drawing object of default size into the center of the current view."
+msgstr "Inserta un dibujo de tamaño predeterminado en el centro de la vista actual."
+
+#: 01020000.xhp#hd_id3151189.106.help.text
+msgid "Shift+F10"
+msgstr "Mayús+F10"
+
+#: 01020000.xhp#par_id3151266.107.help.text
+msgid "Opens the context menu for the selected object."
+msgstr "Abre el menú contextual del objeto seleccionado."
+
+#: 01020000.xhp#hd_id3156100.108.help.text
+msgctxt "01020000.xhp#hd_id3156100.108.help.text"
+msgid "F2"
+msgstr "F2"
+
+#: 01020000.xhp#par_id3156323.109.help.text
+msgid "Enters text mode."
+msgstr "Cambia a modo texto."
+
+#: 01020000.xhp#hd_id3147563.110.help.text
+msgid "Enter"
+msgstr "Entrar"
+
+#: 01020000.xhp#par_id3150258.111.help.text
+msgid "Enters text mode if a text object is selected."
+msgstr "Cambia a modo texto si se selecciona un objeto de texto."
+
+#: 01020000.xhp#hd_id3155851.112.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Control</defaultinline></switchinline>++"
+
+#: 01020000.xhp#par_id3154046.113.help.text
+msgid "Enters text mode if a text object is selected. If there are no text objects or if you have cycled through all of the text objects on the page, a new page is inserted."
+msgstr "Cambia a modo texto si se selecciona un objeto de texto. Si no hay objetos de texto o si ha pasado por todos los objetos de texto de la página, se insertará una nueva página."
+
+#: 01020000.xhp#hd_id3149977.81.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Opción</caseinline><defaultinline>Alt</defaultinline></switchinline>"
+
+#: 01020000.xhp#par_id3152812.82.help.text
+msgid "Press the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key and drag with the mouse to draw or resize an object from the center of the object outward."
+msgstr "Pulse <switchinline select=\"sys\"><caseinline select=\"MAC\">Opción</caseinline><defaultinline>Alt</defaultinline></switchinline> y arrastre el ratón para dibujar un objeto o modificar su tamaño desde el centro hacia fuera."
+
+#: 01020000.xhp#hd_id3143232.83.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+ click on an object"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Opción</caseinline><defaultinline>Alt</defaultinline></switchinline>+ click en el objeto"
+
+#: 01020000.xhp#par_id3156007.84.help.text
+msgid "Selects the object behind the currently selected object."
+msgstr "Selección de objetos superpuestos. Se seleccionará el objeto que se encuentre justo detrás del objeto actualmente seleccionado."
+
+#: 01020000.xhp#hd_id3147252.85.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Shift+click an object"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Opción</caseinline><defaultinline>Alt</defaultinline></switchinline>+Mayús y hacer clic sobre un objeto"
+
+#: 01020000.xhp#par_id3145666.86.help.text
+msgid "Selects the object in front of the currently selected object."
+msgstr "Selección de objetos superpuestos. Se seleccionará el objeto que se encuentre justo delante del objeto actualmente seleccionado."
+
+#: 01020000.xhp#hd_id3155325.87.help.text
+msgid "Shift key while selecting an object"
+msgstr "Tecla Mayús al seleccionar"
+
+#: 01020000.xhp#par_id3159343.88.help.text
+msgid "Adds or removes object to or from the selection."
+msgstr "Si el objeto todavía no se ha seleccionado, se añade a la selección; si lo estaba, se elimina de la misma."
+
+#: 01020000.xhp#hd_id3083282.75.help.text
+msgid "Shift+ drag while moving an object"
+msgstr "Shift+ arrastrar al mismo tiempo un objeto"
+
+#: 01020000.xhp#par_id3145620.76.help.text
+msgid "The movement of the selected object is constrained by multiples of 45 degrees."
+msgstr "El objeto seleccionado se desplaza exactamente en la dirección seleccionada, ya sea en horizontal o en vertical."
+
+#: 01020000.xhp#hd_id3154933.89.help.text
+msgid "Shift+drag while creating or resizing an object"
+msgstr "Tecla Mayús al aumentar/crear"
+
+#: 01020000.xhp#par_id3148831.90.help.text
+msgid "Constrains the size to keep the object's aspect ratio."
+msgstr "Limita el tamaño para mantener el aspecto del objeto."
+
+#: 01020000.xhp#hd_id3154205.91.help.text
+msgid "Tab"
+msgstr "Tecla (Tab)"
+
+#: 01020000.xhp#par_id3148804.92.help.text
+msgid "Cycles through the objects on the page in the order in which they were created."
+msgstr "Se produce una selección de objetos sueltos según el orden de su creación, del primero al último."
+
+#: 01020000.xhp#hd_id3145410.93.help.text
+msgid "Shift+Tab"
+msgstr "Tecla Mayús (Tab)"
+
+#: 01020000.xhp#par_id3149764.94.help.text
+msgid "Cycles through the objects on the page in the reverse-order in which they were created."
+msgstr "Selección de objetos según el orden de su creación, del último al primero."
+
+#: 01020000.xhp#hd_id3158399.97.help.text
+msgid "Esc"
+msgstr "Tecla (Esc)"
+
+#: 01020000.xhp#par_id3109840.98.help.text
+msgid "Exits current mode."
+msgstr "Sale del modo actual."
diff --git a/source/es/helpcontent2/source/text/sdraw/guide.po b/source/es/helpcontent2/source/text/sdraw/guide.po
new file mode 100644
index 00000000000..1529ca153cc
--- /dev/null
+++ b/source/es/helpcontent2/source/text/sdraw/guide.po
@@ -0,0 +1,1138 @@
+#. extracted from helpcontent2/source/text/sdraw/guide.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsdraw%2Fguide.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"PO-Revision-Date: 2012-03-19 15:09+0200\n"
+"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: draw_sector.xhp#tit.help.text
+msgid "Drawing Sectors and Segments"
+msgstr "Dibujar sectores y segmentos"
+
+#: draw_sector.xhp#bm_id3146974.help.text
+msgid "<bookmark_value>sectors of circles/ellipses</bookmark_value><bookmark_value>segments of circles/ellipses</bookmark_value><bookmark_value>circle segments</bookmark_value><bookmark_value>ellipses; segments</bookmark_value><bookmark_value>drawing; sectors and segments</bookmark_value>"
+msgstr "<bookmark_value>sectores de círculos/elipses</bookmark_value><bookmark_value>segmentos de círculos/elipses</bookmark_value><bookmark_value>segmentos de círculos</bookmark_value><bookmark_value>elipses;segmentos</bookmark_value><bookmark_value>dibujar; sectores y segmentos</bookmark_value>"
+
+#: draw_sector.xhp#hd_id3146974.30.help.text
+msgid "<variable id=\"draw_sector\"><link href=\"text/sdraw/guide/draw_sector.xhp\" name=\"Drawing Sectors and Segments\">Drawing Sectors and Segments</link></variable>"
+msgstr "<variable id=\"draw_sector\"><link href=\"text/sdraw/guide/draw_sector.xhp\" name=\"Drawing Sectors and Segments\">Dibujar Sectores y Segmentos</link></variable>"
+
+#: draw_sector.xhp#par_id3147396.31.help.text
+msgid "The <emph>Ellipse</emph> toolbar contains tools for drawing ellipses and circles. You can also draw segments and sectors of circles and ellipses."
+msgstr "La barra de herramientas <emph>Elipse</emph> contiene herramientas para dibujar elipses y círculos. También es posible dibujar segmentos y sectores de círculos y elipses."
+
+#: draw_sector.xhp#hd_id3151075.32.help.text
+msgid "To draw a sector of a circle or an ellipse:"
+msgstr "Dibujar un sector de elipse o círculo es un proceso de varias etapas:"
+
+#: draw_sector.xhp#par_id3155335.33.help.text
+msgid "Open the <emph>Ellipses</emph> toolbar and click one of the <emph>Circle Pie</emph> or <emph>Ellipse Pie</emph> icons <image id=\"img_id3155768\" src=\"cmd/sc_circlepie_unfilled.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3155768\">Icon</alt></image>. The mouse pointer changes to a cross hair with a small icon of a sector."
+msgstr "Abra la barra de herramientas <emph>Elipse</emph> y haga clic en el icono <emph>Sector de círculo</emph> o <emph>Sector de elipse</emph> <image id=\"img_id3155768\" src=\"cmd/sc_circlepie_unfilled.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3155768\">Icono</alt></image>. El puntero del ratón se convierte en una cruz con un pequeño icono de un sector."
+
+#: draw_sector.xhp#par_id3150199.34.help.text
+msgid "Position the pointer at the edge of the circle you want to draw and drag to create the circle."
+msgstr "Mantenga pulsado el botón del ratón y tire de él. Al movimiento del ratón le seguirá un contorno de círculo."
+
+#: draw_sector.xhp#par_id3148868.35.help.text
+msgid "To create a circle by dragging from the center, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> while dragging."
+msgstr "Para crear un círculo arrastrando desde el centro, mantenga pulsadas las teclas <switchinline select=\"sys\"><caseinline select=\"MAC\">Opción </caseinline><defaultinline>Alt</defaultinline></switchinline> mientras realiza la operación."
+
+#: draw_sector.xhp#par_id3145361.36.help.text
+msgid "Release the mouse button when the circle has reached the size you want. A line corresponding to the circle radius appears in the circle."
+msgstr "Suelte el botón del ratón cuando el círculo haya alcanzado el tamaño deseado. Ahora verá que en el círculo se ha dibujado un radio que sigue cada movimiento del ratón."
+
+#: draw_sector.xhp#par_id3149872.37.help.text
+msgid "Position the pointer where you want to place the first boundary of the sector and click."
+msgstr "Sitúe el puntero donde desee colocar el primer límite del sector y realice una pulsación."
+
+#: draw_sector.xhp#par_id3157871.51.help.text
+msgid "As the radius line that follows the pointer is constrained to the circle boundaries, you can click anywhere in the document."
+msgstr "Debido a que el radio que sigue al puntero se restringe a los límites del círculo, puede pulsar sobre cualquier punto del documento."
+
+#: draw_sector.xhp#par_id3146874.38.help.text
+msgid "Position the pointer where you want to place the second boundary of the sector and click. The completed sector is displayed."
+msgstr "Si desplaza ahora el ratón, el primer radio quedará determinado y el segundo seguirá el movimiento del ratón. Desde que pulse nuevamente, el sector de círculo se completará."
+
+#: draw_sector.xhp#par_id3148581.41.help.text
+msgid "To draw a segment of a circle or ellipse, follow the steps for creating a sector based on a circle."
+msgstr "Para dibujar un segmento de un círculo o elipse, siga los pasos para crear un sector basado en un círculo."
+
+#: draw_sector.xhp#par_id3153084.42.help.text
+msgid "To draw an arc based on an ellipse, choose one of the arc icons and follow the same steps for creating a sector based on a circle."
+msgstr "Para dibujar un arco basado en una elipse, seleccione uno de los símbolos de arcos y siga los mismos pasos que para crear un sector basado en un círculo."
+
+#: combine_etc.xhp#tit.help.text
+msgid "Combining Objects and Constructing Shapes"
+msgstr "Combinar objetos y construir formas"
+
+#: combine_etc.xhp#bm_id3156443.help.text
+msgid "<bookmark_value>combining; draw objects</bookmark_value><bookmark_value>merging; draw objects</bookmark_value><bookmark_value>connecting; draw objects</bookmark_value><bookmark_value>draw objects; combining</bookmark_value><bookmark_value>intersecting draw objects</bookmark_value><bookmark_value>polygons; intersecting/subtracting/merging</bookmark_value><bookmark_value>subtracting polygons</bookmark_value><bookmark_value>constructing shapes</bookmark_value>"
+msgstr "<bookmark_value>combinar;objetos de dibujo</bookmark_value><bookmark_value>fusionar;objetos de dibujo</bookmark_value><bookmark_value>conectar;objetos de dibujo</bookmark_value><bookmark_value>objetos de dibujo;combinar</bookmark_value><bookmark_value>intersecar objetos de dibujo</bookmark_value><bookmark_value>polígonos;intersectar/restar/fusionar</bookmark_value><bookmark_value>restar polígonos</bookmark_value><bookmark_value>construir formas</bookmark_value>"
+
+#: combine_etc.xhp#hd_id3156443.64.help.text
+msgid "<variable id=\"combine_etc\"><link href=\"text/sdraw/guide/combine_etc.xhp\" name=\"Combining Objects and Constructing Shapes\">Combining Objects and Constructing Shapes</link> </variable>"
+msgstr "<variable id=\"combine_etc\"><link href=\"text/sdraw/guide/combine_etc.xhp\" name=\"Combining Objects and Constructing Shapes\">Combinar Objetos y Construir Formas</link></variable>"
+
+#: combine_etc.xhp#par_id3149020.65.help.text
+msgid "Combined drawing objects act as grouped objects, except that you cannot enter the group to edit the individual objects. "
+msgstr "Los objetos de dibujo combinados actúan como objetos agrupados, excepto que no se puede entrar en el grupo para editar los objetos de forma separada."
+
+#: combine_etc.xhp#par_id3154659.87.help.text
+msgid "You can only combine 2D objects."
+msgstr "Sólo puede combinar objetos 2D."
+
+#: combine_etc.xhp#hd_id3150344.32.help.text
+msgid "To combine 2D objects:"
+msgstr "Para combinar objetos 2D:"
+
+#: combine_etc.xhp#par_id3166428.66.help.text
+msgctxt "combine_etc.xhp#par_id3166428.66.help.text"
+msgid "Select two or more 2D objects."
+msgstr "Seleccione dos objetos 2D o más:"
+
+#: combine_etc.xhp#par_id3145587.67.help.text
+msgid "Choose <emph>Modify - Combine</emph>."
+msgstr "Seleccione el comando <emph>Combinar</emph> del menú contextual."
+
+#: combine_etc.xhp#par_id3146978.33.help.text
+msgid "Unlike groups, a combined object takes on the properties of the lowermost object in the stacking order. You can split apart combined objects, but the original object properties are lost."
+msgstr "A diferencia de los grupos, un objeto combinado toma las propiedades del objeto inferior en el orden de apilado. Puede dividir los objetos combinados, pero tenga en cuenta que las propiedades del original se perderán."
+
+#: combine_etc.xhp#par_id3155088.34.help.text
+msgid "When you combine objects, holes appear where the objects overlap."
+msgstr "Cuando combine objetos aparecerán agujeros donde se superponen los objetos."
+
+#: combine_etc.xhp#par_id3156019.help.text
+msgid " <image id=\"img_id3157978\" src=\"res/helpimg/kombi1.png\" width=\"8.3646inch\" height=\"2.5inch\"><alt id=\"alt_id3157978\">Illustration for combining objects</alt></image>"
+msgstr " <image id=\"img_id3157978\" src=\"res/helpimg/kombi1.png\" width=\"8.3646inch\" height=\"2.5inch\"><alt id=\"alt_id3157978\">Ilustración para combinar objetos</alt></image>"
+
+#: combine_etc.xhp#par_id3153249.35.help.text
+msgid "In the illustration, the uncombined objects are on the left and the combined objects on the right."
+msgstr "En la ilustración, los objetos sin combinar están a la izquierda y los objetos combinados a la derecha."
+
+#: combine_etc.xhp#hd_id3159229.68.help.text
+msgid "Constructing Shapes"
+msgstr "Elaborar formas"
+
+#: combine_etc.xhp#par_id3150049.63.help.text
+msgid "You can construct shapes by applying the <link href=\"text/simpress/01/13180000.xhp\" name=\"Shapes\"><emph>Shapes</emph></link> <emph>- Merge, Subtract and Intersect</emph> commands to two or more drawing objects."
+msgstr "Puede construir formas aplicando las <link href=\"text/simpress/01/13180000.xhp\" name=\"Shapes\"><emph>Formas</emph></link><emph>- Combinar, Substraer y Cortar</emph> comandos para dos o más objetos de dibujo."
+
+#: combine_etc.xhp#par_id3147403.88.help.text
+msgid "Shape commands only work on 2D objects."
+msgstr "Las órdenes de forma sólo funcionan en objetos 2D."
+
+#: combine_etc.xhp#par_id3150539.89.help.text
+msgid "Constructed shapes take on the properties of the lowermost object in the stacking order."
+msgstr "Las formas construidas toman las propiedades del objeto inferior en el orden de apilado."
+
+#: combine_etc.xhp#hd_id3156402.90.help.text
+msgid "To construct a shape:"
+msgstr "Para construir una forma:"
+
+#: combine_etc.xhp#par_id3157874.69.help.text
+msgctxt "combine_etc.xhp#par_id3157874.69.help.text"
+msgid "Select two or more 2D objects."
+msgstr "Seleccione dos objetos 2D o más:"
+
+#: combine_etc.xhp#par_id3150650.70.help.text
+msgid "Choose <emph>Modify - Shapes</emph> and one of the following:"
+msgstr "Seleccione <emph>Modificar - Formas</emph> y una de las siguientes opciones:"
+
+#: combine_etc.xhp#par_id3145829.91.help.text
+msgid " <emph>Merge</emph> "
+msgstr "<emph>Combinar</emph>"
+
+#: combine_etc.xhp#par_id3154680.92.help.text
+msgid " <emph>Subtract</emph> "
+msgstr "<emph>Substraer</emph>"
+
+#: combine_etc.xhp#par_id3153034.93.help.text
+msgid " <emph>Intersect</emph>."
+msgstr "<emph>Cortar</emph>."
+
+#: combine_etc.xhp#hd_id3145144.94.help.text
+msgid "Shape Commands"
+msgstr "Comandos de Forma"
+
+#: combine_etc.xhp#par_id3153931.71.help.text
+msgid "In the following illustrations, the original objects are on the left and the modified shapes on the right."
+msgstr "En la siguiente ilustración verá a la izquierda las superficies de origen y a la derecha el resultado de la operación."
+
+#: combine_etc.xhp#hd_id3149950.72.help.text
+msgid "Shapes - Merge"
+msgstr "Formas - Unir"
+
+#: combine_etc.xhp#par_id3148585.help.text
+msgid " <image id=\"img_id3145593\" src=\"res/helpimg/formvers.png\" width=\"3.4791inch\" height=\"1.3126inch\"><alt id=\"alt_id3145593\">Illustration for merging shapes</alt></image>"
+msgstr "<image id=\"img_id3145593\" src=\"res/helpimg/formvers.png\" width=\"88.37mm\" height=\"33.34mm\"><alt id=\"alt_id3145593\">Ilustración para combinar formas</alt></image>"
+
+#: combine_etc.xhp#par_id3150001.73.help.text
+msgid "Adds the area of the selected objects to the area of the lowermost object in the stacking order."
+msgstr "Los polígonos seleccionados se unirán para obtener un objeto cuya superficie sea la suma de todos los objetos (O lógico)."
+
+#: combine_etc.xhp#hd_id3153002.74.help.text
+msgid "Shapes - Subtract"
+msgstr "Formas - Restar"
+
+#: combine_etc.xhp#par_id3150338.help.text
+msgid " <image id=\"img_id3154505\" src=\"res/helpimg/formsubt.png\" width=\"3.4689inch\" height=\"1.3126inch\"><alt id=\"alt_id3154505\">Illustration for subtracting shapes</alt></image>"
+msgstr " <image id=\"img_id3154505\" src=\"res/helpimg/formsubt.png\" width=\"3.4689inch\" height=\"1.3126inch\"><alt id=\"alt_id3154505\">Ilustración para substraer formas</alt></image>"
+
+#: combine_etc.xhp#par_id3150022.75.help.text
+msgid "Subtracts the area of the selected objects from the area of the lowermost object in the stacking order."
+msgstr "Todos los polígonos seleccionados se extraerán del polígono situado más al fondo de la selección."
+
+#: combine_etc.xhp#hd_id3147370.78.help.text
+msgid "Shapes - Intersect"
+msgstr "Formas - Intersectar"
+
+#: combine_etc.xhp#par_id3150570.help.text
+msgid " <image id=\"img_id3150658\" src=\"res/helpimg/formschn.png\" width=\"3.4272inch\" height=\"1.302inch\"><alt id=\"alt_id3150658\">Illustration for intersecting shapes</alt></image>"
+msgstr " <image id=\"img_id3150658\" src=\"res/helpimg/formschn.png\" width=\"3.4272inch\" height=\"1.302inch\"><alt id=\"alt_id3150658\">Ilustración para cortar formas</alt></image>"
+
+#: combine_etc.xhp#par_id3157972.79.help.text
+msgid "The overlapping area of the selected objects creates the new shape."
+msgstr "Los polígonos seleccionados se juntan en un solo polígono correspondiente a la intersección de los conjuntos de todas las superficies (Y lógico)."
+
+#: combine_etc.xhp#par_id3151020.80.help.text
+msgid "The area outside the overlap is removed."
+msgstr "Sólo queda la superficie en la que se superponen <emph>todos</emph> los polígonos."
+
+#: eyedropper.xhp#tit.help.text
+msgid "Replacing Colors"
+msgstr "Sustituir colores"
+
+#: eyedropper.xhp#bm_id3147436.help.text
+msgid "<bookmark_value>eyedropper tool</bookmark_value><bookmark_value>colors; replacing</bookmark_value><bookmark_value>replacing;colors in bitmaps</bookmark_value><bookmark_value>metafiles;replacing colors</bookmark_value><bookmark_value>bitmaps;replacing colors</bookmark_value><bookmark_value>GIF images;replacing colors</bookmark_value>"
+msgstr "<bookmark_value>pipeta</bookmark_value><bookmark_value>colores;reemplazar</bookmark_value><bookmark_value>reemplazar;colores en mapas de bits</bookmark_value><bookmark_value>metaarchivos;reemplazar colores</bookmark_value><bookmark_value>mapas de bits;reemplazar colores</bookmark_value><bookmark_value>imágenes GIF;reemplazar colores</bookmark_value>"
+
+#: eyedropper.xhp#hd_id3147436.38.help.text
+msgid "<variable id=\"eyedropper\"><link href=\"text/sdraw/guide/eyedropper.xhp\" name=\"Replacing Colors\">Replacing Colors</link></variable>"
+msgstr "<variable id=\"eyedropper\"><link href=\"text/sdraw/guide/eyedropper.xhp\" name=\"Replacing Colors\">Sustituir Colores</link></variable>"
+
+#: eyedropper.xhp#par_id3156286.24.help.text
+msgid "You can replace colors in bitmaps with the <emph>Color Replacer</emph> tool."
+msgstr "Puede sustituir colores en mapas de bits con la herramienta <emph>Pipeta</emph>."
+
+#: eyedropper.xhp#par_id3154704.25.help.text
+msgid "Up to four colors can be replaced at once."
+msgstr "La Pipeta permite sustituir colores seleccionados por otros, así como colores similares en un campo de tolerancia seleccionable. Se pueden sustituir hasta cuatro colores a la vez. Si no le gusta la sustitución puede deshacer las modificaciones efectuadas pulsando sobre el símbolo <emph>Deshacer</emph> de la barra de funciones. Utilice la Pipeta para p.ej. unificar los colores de diferentes imágenes Bitmap o para asignar los colores del logotipo de su empresa a una imagen Bitmap."
+
+#: eyedropper.xhp#par_id3147344.26.help.text
+msgid "You can also use the <emph>Transparency</emph> option to replace the transparent areas of an image with a color."
+msgstr "El atributo <emph>Transparencia</emph> se considera también un color. La transparencia de una imagen se puede sustituir por otro color, por ejemplo, blanco. Esto sería aconsejable si el controlador de la impresora tuviera problemas con la impresión de imágenes transparentes."
+
+#: eyedropper.xhp#par_id3148488.27.help.text
+msgid "Similarly, you can use the <emph>Color Replacer</emph> to make a color on your image transparent."
+msgstr "De manera similar, puede usar la <emph>Pipeta</emph> para conseguir que un color de la imagen se vuelva transparente."
+
+#: eyedropper.xhp#hd_id3150205.28.help.text
+msgid "To replace colors with the Color Replacer tool"
+msgstr "Para sustituir colores con la Pipeta"
+
+#: eyedropper.xhp#par_id3154656.29.help.text
+msgid "Ensure that the image you are using is a bitmap (for example, BMP, GIF, JPG, or PNG) or a metafile (for example, WMF)."
+msgstr "Inserte una imagen en formato Bitmap (BMP, GIF, JPG, TIF) o metaarchivo (WMF). En $[officename]Draw y $[officename]Impress, el comando será <emph>Insertar - Imagen</emph>"
+
+#: eyedropper.xhp#par_id3150202.30.help.text
+msgid "Choose <emph>Tools - Color Replacer</emph>."
+msgstr "Seleccione <emph>Herramientas - Pipeta</emph>."
+
+#: eyedropper.xhp#par_id3155531.31.help.text
+msgid "Click the Color Replacer icon and position the mouse pointer over the color you want to replace in the image. The color appears in the box next to the icon."
+msgstr "Pulse en el icono de la Pipeta y posicione el puntero del ratón sobre el color que quiere sustituir en la imagen. El color aparece en el cuadro junto al icono."
+
+#: eyedropper.xhp#par_id3152985.32.help.text
+msgid "Click the color in the image. The color appears in the first <emph>Source color</emph> box and the check box next to the color is selected."
+msgstr "Pulse el botón izquierdo del ratón cuando haya encontrado el color que se deba sustituir. Este color se incluirá automáticamente en la primera de las cuatro líneas de la ventana <emph>Pipeta</emph>."
+
+#: eyedropper.xhp#par_id3148866.33.help.text
+msgid "In the <emph>Replace with</emph> box, select the new color."
+msgstr "Seleccione en el listado de la derecha el nuevo color que deba sustituir al color seleccionado en la imagen Bitmap."
+
+#: eyedropper.xhp#par_id3145362.41.help.text
+msgid "This replaces all occurrences of the <emph>Source color</emph> in the image."
+msgstr "De esta forma se sustituyen todas las apariciones de <emph>Color fuente</emph> en la imagen."
+
+#: eyedropper.xhp#par_id3151191.34.help.text
+msgid "If you want to replace another color while the dialog is open, select the check box in front of <emph>Source color</emph> in the next row and repeat steps 3 to 5."
+msgstr "Si desea sustituir otro color durante la misma operación marque la casilla delante de la siguiente línea, a continuación vuelva a pulsar el símbolo de la Pipeta, arriba a la izquierda, y seguidamente seleccione un color. Mientras no cierre la Pipeta podrá seleccionar hasta cuatro colores."
+
+#: eyedropper.xhp#par_id3149876.36.help.text
+msgid "Click <emph>Replace</emph>."
+msgstr "Pulse <emph>Reemplazar por</emph>."
+
+#: eyedropper.xhp#par_id3157871.37.help.text
+msgid "If you want to expand or contract the color selection area, increase or decrease the tolerance of the <emph>Color Replacer</emph> tool and repeat your selection."
+msgstr "Si desea aumentar o reducir el área de selección de colores, incremente o disminuya la tolerancia de la herramienta <emph>Pipeta</emph> y repita la selección."
+
+#: eyedropper.xhp#par_id3146878.39.help.text
+msgid "<link href=\"text/shared/01/06030000.xhp\" name=\"Color Replacer\">Color Replacer</link>"
+msgstr "<link href=\"text/shared/01/06030000.xhp\" name=\"Color Replacer\">Pipeta</link>"
+
+#: rotate_object.xhp#tit.help.text
+msgid "Rotating Objects"
+msgstr "Girar objetos"
+
+#: rotate_object.xhp#bm_id3154684.help.text
+msgid "<bookmark_value>rotating; draw objects</bookmark_value><bookmark_value>draw objects; rotating</bookmark_value><bookmark_value>pivot points of draw objects</bookmark_value><bookmark_value>skewing draw objects</bookmark_value>"
+msgstr "<bookmark_value>girar;objetos de dibujo</bookmark_value><bookmark_value>objetos de dibujo;girar</bookmark_value><bookmark_value>puntos de rotación de objetos de dibujo</bookmark_value><bookmark_value>desviar objetos de dibujo</bookmark_value>"
+
+#: rotate_object.xhp#hd_id3154684.12.help.text
+msgid "<variable id=\"rotate_object\"><link href=\"text/sdraw/guide/rotate_object.xhp\" name=\"Rotating Objects\">Rotating Objects</link></variable>"
+msgstr "<variable id=\"rotate_object\"><link href=\"text/sdraw/guide/rotate_object.xhp\" name=\"Rotating Objects\">Giro de Objetos</link></variable>"
+
+#: rotate_object.xhp#par_id3149262.13.help.text
+msgid "You can rotate an object around its default pivot point (center point) or a pivot point that you designate."
+msgstr "Al pulsar sobre un objeto por primera vez, aparecerán ocho agarraderas con las que podrá modificar el tamaño. Si sitúa el cursor en el centro del objeto y tira de la cruz que aparece también podrá modificar su posición en la página."
+
+#: rotate_object.xhp#par_id3146975.help.text
+msgid "<image id=\"img_id3154729\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3154729\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154729\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3154729\">Icono</alt></image>"
+
+#: rotate_object.xhp#par_id3150716.14.help.text
+msgid "Select the object you want to rotate. On the <emph>Mode</emph> toolbar in $[officename] Draw or on the <emph>Drawing</emph> bar in $[officename] Impress, click the <emph>Rotate</emph> icon."
+msgstr "Seleccione el objeto que desee girar. En la barra de herramientas <emph>Modo</emph> de $[officename] Draw o en la barra <emph>Dibujo</emph> de $[officename] Impress, haga clic en el icono <emph>Girar</emph>."
+
+#: rotate_object.xhp#par_id3149021.69.help.text
+msgid "Move the pointer to a corner handle so that the pointer changes to a rotate symbol. Drag the handle to rotate the object."
+msgstr "Mueva el puntero a una manilla de esquina para que el puntero se convierta en un icono de giro. Arrastre la manilla para girar un objeto."
+
+#: rotate_object.xhp#par_id0930200803002335.help.text
+msgid "Hold down the Shift key to restrict the rotation to multiples of 15 degrees."
+msgstr "Mantenga presionada la tecla Shift para restringir la rotación a múltiples de 15 grados ."
+
+#: rotate_object.xhp#par_id0930200803002463.help.text
+msgid "Right-click the object to open the context menu. Choose Position and Size - Rotation to enter an exact rotation value."
+msgstr "Haga clic-Derecho en el objeto para abrir el menú de contexto. Escoja la Posición y Tamaño - Rotación para ingresar un valor de rotación exacto ."
+
+#: rotate_object.xhp#par_id3155962.help.text
+msgid "<image id=\"img_id3154023\" src=\"res/helpimg/rotieren.png\" width=\"5.424cm\" height=\"3.916cm\"><alt id=\"alt_id3154023\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154023\" src=\"res/helpimg/rotieren.png\" width=\"5.424cm\" height=\"3.916cm\"><alt id=\"alt_id3154023\">Icono</alt></image>"
+
+#: rotate_object.xhp#par_id3166424.16.help.text
+msgid "To change the pivot point, drag the small circle in the center of the object to a new location."
+msgstr "Pulse otra vez sobre el objeto y verá de nuevo las ocho agarraderas normales. Si pulsa dos veces dentro de él las agarraderas se modifican y aparece un cursor de texto en el centro del objeto. Ahora podrá introducir un texto unido automáticamente al objeto."
+
+#: rotate_object.xhp#par_id3159236.28.help.text
+msgid "To skew the object vertically or horizontally, drag one of the side handles."
+msgstr "Para sesgar el objeto verticalmente u horizontalmente, arrastralo de las manillas laterales."
+
+#: gradient.xhp#tit.help.text
+msgid "Creating Gradient Fills"
+msgstr "Crear rellenos de gradientes"
+
+#: gradient.xhp#bm_id3150792.help.text
+msgid "<bookmark_value>gradients; applying and defining</bookmark_value><bookmark_value>editing;gradients</bookmark_value><bookmark_value>defining;gradients</bookmark_value><bookmark_value>custom gradients</bookmark_value><bookmark_value>transparency;adjusting</bookmark_value>"
+msgstr "<bookmark_value>gradiantes; aplicar y definir</bookmark_value><bookmark_value>editar;gradiantes</bookmark_value><bookmark_value>definir;gradiantes</bookmark_value><bookmark_value>gradiantes personalizados</bookmark_value><bookmark_value>transparencia;ajustar</bookmark_value>"
+
+#: gradient.xhp#hd_id3150792.3.help.text
+msgid "<variable id=\"gradient\"><link href=\"text/sdraw/guide/gradient.xhp\" name=\"Creating Gradient Fills\">Creating Gradient Fills</link> </variable>"
+msgstr "<variable id=\"gradient\"><link href=\"text/sdraw/guide/gradient.xhp\" name=\"Creating Gradient Fills\">Crear Gradiantes Completos</link></variable>"
+
+#: gradient.xhp#par_id3154012.4.help.text
+msgid "A gradient fill is an incremental blend of two different colors, or shades of the same color, that you can apply to a drawing object."
+msgstr "Un relleno de gradiente es la mezcla creciente de dos colores diferentes o sombras del mismo color que se aplica a un objeto de dibujo."
+
+#: gradient.xhp#hd_id3147436.61.help.text
+msgid "To apply a gradient:"
+msgstr "Para aplicar un gradiente:"
+
+#: gradient.xhp#par_id3146974.5.help.text
+msgid "Select a drawing object."
+msgstr "Seleccione un objeto de dibujo."
+
+#: gradient.xhp#par_id3154491.6.help.text
+msgid "Choose <emph>Format - Area</emph> and select <emph>Gradient</emph> as the <emph>Fill</emph> type."
+msgstr "Seleccione <emph>Formato - Relleno</emph> y seleccione <emph>Gradiente</emph> como el tipo de <emph>Relleno</emph>."
+
+#: gradient.xhp#par_id3153415.7.help.text
+msgid "Select a gradient style from the list and click <emph>OK</emph>."
+msgstr "Seleccione la opción <emph>Gradiente</emph> y a continuación uno de los gradientes de la lista."
+
+#: gradient.xhp#hd_id3154702.8.help.text
+msgid "Creating Custom Gradients"
+msgstr "Crear gradientes personalizados"
+
+#: gradient.xhp#par_id3145791.9.help.text
+msgid "You can define your own gradients and modify existing gradients, as well as save and load a list of gradient files."
+msgstr "Puede definir sus propios gradientes, modificar otros ya creados, así como guardar y cargar una lista de archivos de gradientes."
+
+#: gradient.xhp#hd_id3145384.62.help.text
+msgid "To create a custom gradient:"
+msgstr "Para crear un gradiente personalizado:"
+
+#: gradient.xhp#par_id3151242.11.help.text
+msgctxt "gradient.xhp#par_id3151242.11.help.text"
+msgid "Choose <emph>Format - Area</emph> and click the <emph>Gradients</emph> tab."
+msgstr "Seleccione <emph>Formato - Relleno</emph> y pulse la pestaña <emph>Gradientes</emph>."
+
+#: gradient.xhp#par_id3150046.12.help.text
+msgid "Select a gradient from the list to use as the basis for your new gradient and click <emph>Add</emph>."
+msgstr "Seleccione de la lista de los gradientes ya existentes el que desee usar como punto de partida para el nuevo gradiente."
+
+#: gradient.xhp#par_id3145116.13.help.text
+msgid "Type a name for the gradient in the text box and click <emph>OK</emph>."
+msgstr "Escriba el nombre del gradiente en el cuadro de texto y haga clic en <emph>Aceptar</emph>."
+
+#: gradient.xhp#par_id6535843.help.text
+msgid "The name appears at the end of the gradient list and is selected for editing."
+msgstr "El nombre aparece al final de la lista de gradientes, seleccionado para editarlo."
+
+#: gradient.xhp#par_id3150391.15.help.text
+msgid "Set the gradient properties and click <emph>Modify</emph> to save the gradient."
+msgstr "Pulse en <emph>Modificar...</emph> para guardar las modificaciones del nuevo gradiente. En la previsualización verá el gradiente visualizado."
+
+#: gradient.xhp#par_id3156396.16.help.text
+msgid "Click <emph>OK.</emph> "
+msgstr "Haga clic en <emph>Aceptar</emph>."
+
+#: gradient.xhp#hd_id3149947.40.help.text
+msgid "Using Gradients and Transparency"
+msgstr "Usar Gradientes y Transparencias"
+
+#: gradient.xhp#par_id3157905.41.help.text
+msgid "You can adjust the properties of a gradient as well as the transparency of a drawing object with your mouse."
+msgstr "Puede ajustar con el ratón las propiedades de un gradiente así como la transparencia de un objeto de dibujo."
+
+#: gradient.xhp#hd_id3150653.63.help.text
+msgid "To adjust the gradient of a drawing object:"
+msgstr "Para ajustar el gradiente de un objeto de dibujo:"
+
+#: gradient.xhp#par_id3154844.42.help.text
+msgid "Select a drawing object with the gradient that you want to modify."
+msgstr "Seleccione un objeto de dibujo con el gradiente que desee modificar."
+
+#: gradient.xhp#par_id3145592.43.help.text
+msgctxt "gradient.xhp#par_id3145592.43.help.text"
+msgid "Choose <emph>Format - Area</emph> and click the <emph>Gradients</emph> tab."
+msgstr "Seleccione <emph>Formato - Relleno</emph> y haga clic en la ficha <emph>Gradientes</emph>."
+
+#: gradient.xhp#par_idN107BE.help.text
+msgid "Adjust the values for the gradient to suit your needs and click <emph>OK</emph>."
+msgstr "Ajusta el valor para las gradientes de acuerdo a tus preferencias y haz clic en <emph>OK</emph>."
+
+#: gradient.xhp#par_id3150659.46.help.text
+msgid "To adjust the transparency of an object, select the object, choose <emph>Format - Area</emph> and click the <emph>Transparency</emph> tab."
+msgstr "Para ajustar la transparencia de un objeto, selecciónelo, elija <emph>Formato - Relleno</emph> y haga clic en la ficha <emph>Transparencia</emph>."
+
+#: text_enter.xhp#tit.help.text
+msgid "Adding Text"
+msgstr "Agregar texto"
+
+#: text_enter.xhp#bm_id3153144.help.text
+msgid "<bookmark_value>text frames</bookmark_value> <bookmark_value>inserting;text frames</bookmark_value> <bookmark_value>copying;text from other documents</bookmark_value> <bookmark_value>pasting;text from other documents</bookmark_value> <bookmark_value>legends; drawings</bookmark_value>"
+msgstr "<bookmark_value>marcos de texto </bookmark_value><bookmark_value>insertar;marcos de texto </bookmark_value><bookmark_value>copiar;texto de otros documentos</bookmark_value><bookmark_value>pegar;texto desde otros documentos</bookmark_value><bookmark_value>leyendas; dibujos</bookmark_value>"
+
+#: text_enter.xhp#hd_id3153144.45.help.text
+msgid "<variable id=\"text_enter\"><link href=\"text/sdraw/guide/text_enter.xhp\" name=\"Adding Text\">Adding Text</link></variable>"
+msgstr "<variable id=\"text_enter\"><link href=\"text/sdraw/guide/text_enter.xhp\" name=\"Agregar Texto\">Agregar Texto</link></variable>"
+
+#: text_enter.xhp#par_id3145750.46.help.text
+msgid "There are several types of text you can add to a drawing or presentation: "
+msgstr "Hay varios tipos de texto que pueden agregarse a un dibujo o a una presentación: "
+
+#: text_enter.xhp#par_idN10824.help.text
+msgid "Text in a text box"
+msgstr "Texto en un marco de texto"
+
+#: text_enter.xhp#par_idN10828.help.text
+msgid "Text that changes character size to fill the frame size"
+msgstr "Texto que cambia el tamaño de los caracteres para ajustarlos al tamaño del marco"
+
+#: text_enter.xhp#par_idN1082C.help.text
+msgid "Text that is added to any drawing object by double-clicking the object"
+msgstr "Texto que se agrega a cualquier objeto de dibujo haciendo doble clic en el objeto"
+
+#: text_enter.xhp#par_idN10830.help.text
+msgid "Text that is copied from a Writer document"
+msgstr "Texto que se copia de un documento de Writer"
+
+#: text_enter.xhp#par_idN10834.help.text
+msgid "Text that is inserted from a text document or HTML document"
+msgstr "Texto que se inserta de un texto o un documento HTML"
+
+#: text_enter.xhp#hd_id3150202.48.help.text
+msgid "Adding a Text Box"
+msgstr "Agregando una caja de texto"
+
+#: text_enter.xhp#par_id3155266.49.help.text
+msgid "Click the <emph>Text</emph> icon <image id=\"img_id3156450\" src=\"cmd/sc_text.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3156450\">Icon</alt></image> and move the mouse pointer to where you want to enter the text box."
+msgstr "Haga clic en el icono <emph>Texto</emph> <image id=\"img_id3156450\" src=\"cmd/sc_text.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156450\">Icono</alt></image> y coloque el puntero del ratón donde quiera escribir el texto."
+
+#: text_enter.xhp#par_id3149052.50.help.text
+msgid "Drag a text box to the size you want in your document."
+msgstr "Redimensione el marco de texto al tamaño que desee en su documento."
+
+#: text_enter.xhp#par_id3151194.51.help.text
+msgid "Type or paste your text into the text box."
+msgstr "Escriba o pegue el texto dentro del marco de texto."
+
+#: text_enter.xhp#par_id3145118.53.help.text
+msgid "Double-click the text to edit it or to format text properties, such as font size or font color. Click the border of the text box to edit the object properties, such as border color or arranging in front or behind other objects."
+msgstr "Haga doble clic en el texto para editarlo o para dar formato a las propiedades del texto, como el tamaño o el color del tipo de letra. Haga clic en el borde del objeto de texto para modificar las propiedades del objeto, como el color del borde o la colocación delante o detrás de otros objetos."
+
+#: text_enter.xhp#hd_id3150437.54.help.text
+msgid "Fitting Text to Frames"
+msgstr "Ajustar Texto al Marco"
+
+#: text_enter.xhp#par_id3146877.56.help.text
+msgid "Create a text box as described in the steps above."
+msgstr "Crea la caja de texto y describe en los pasos anteriores."
+
+#: text_enter.xhp#par_idN108A3.help.text
+msgid "With the text object selected, choose <emph>Format - Text</emph>. The <emph>Text</emph> dialog opens."
+msgstr "Con el objeto de texto seleccionado, elija <emph>Formato - Texto</emph>. Se abre el diálogo <emph>Texto</emph>."
+
+#: text_enter.xhp#par_idN108AF.help.text
+msgid "On the <emph>Text</emph> tab page, clear the <emph>Fit height to text</emph> checkbox, then select the <emph>Fit to frame</emph> checkbox. Click <emph>OK</emph>."
+msgstr "En la ficha <emph>Texto</emph>, desmarque la casilla de verificación <emph>Ajustar alto a texto</emph> y seleccione la casilla de verificación <emph>Ajustar al marco</emph>. Haga clic en <emph>Aceptar</emph>."
+
+#: text_enter.xhp#par_id0610200902133994.help.text
+msgid "Now you can resize the text box to change the size and shape of the text characters."
+msgstr "Ahora puedes redimensionar la caja de texto para cambiar el tamaño y forma de los caracteres de texto."
+
+#: text_enter.xhp#hd_id3155955.58.help.text
+msgid "Text Tied to a Graphic"
+msgstr "Texto vinculado a un gráfico"
+
+#: text_enter.xhp#par_idN10917.help.text
+msgid "You can add text to any graphic after double-clicking the graphic."
+msgstr "Se puede agregar texto a cualquier gráfico si se hace doble clic en el gráfico."
+
+#: text_enter.xhp#par_id1827448.help.text
+msgid "To determine the position of the text, use the settings in <emph>Format - Text</emph>."
+msgstr "To determine the position of the text, use the settings in <emph>Format - Text</emph>."
+
+#: text_enter.xhp#par_id3147366.59.help.text
+msgid "For example, click the arrow next to the <emph>Callouts</emph> icon <image id=\"img_id3154508\" src=\"cmd/sc_calloutshapes.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3154508\">Icon</alt></image> to open the Callouts toolbar."
+msgstr "Haga clic en la flecha que hay junto al icono <emph>Llamadas</emph> <image id=\"img_id3154508\" src=\"cmd/sc_calloutshapes.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3154508\">Icono</alt></image> para abrir la barra de herramientas Llamadas."
+
+#: text_enter.xhp#par_idN108FD.help.text
+msgid "Select a callout and move the mouse pointer to where you want the callout to start."
+msgstr "Seleccione una llamada y sitúe el puntero del ratón en la ubicación donde desee que comience la llamada."
+
+#: text_enter.xhp#par_id3150272.60.help.text
+msgid "Drag to draw the callout."
+msgstr "Arrastre para dibujar la llamada."
+
+#: text_enter.xhp#par_id1978514.help.text
+msgid "Enter the text."
+msgstr "Ingrese el texto."
+
+#: text_enter.xhp#par_idN1091A.help.text
+msgid "Copying Text"
+msgstr "Copiar texto"
+
+#: text_enter.xhp#par_idN10921.help.text
+msgid "Select the text in your Writer document."
+msgstr "Seleccione el texto en el documento de Writer."
+
+#: text_enter.xhp#par_idN10925.help.text
+msgid "Copy the text to the clipboard (<emph>Edit - Copy</emph>)."
+msgstr "Copie el texto en el portapapeles (<emph>Editar - Copiar</emph>)."
+
+#: text_enter.xhp#par_idN1092D.help.text
+msgid "Click the page or slide where you want to paste the text."
+msgstr "Haga clic en la página o diapositiva donde desee pegar el texto."
+
+#: text_enter.xhp#par_idN10931.help.text
+msgid "Paste the text using <emph>Edit - Paste</emph> or <emph>Edit - Paste special</emph>."
+msgstr "Pegue el texto mediante <emph>Editar - Pegar</emph> o <emph>Editar - Pegado especial</emph>."
+
+#: text_enter.xhp#par_idN1093C.help.text
+msgid "Using <emph>Paste special</emph>, you can choose the text format to be pasted. Depending on formats, you can copy different text attributes."
+msgstr "Mediante <emph>Pegado especial</emph>, se puede elegir el formato del texto que se debe pegar. En función del formato, se pueden copiar distintos atributos de texto."
+
+#: text_enter.xhp#par_idN1093F.help.text
+msgid "Importing Text"
+msgstr "Importar texto"
+
+#: text_enter.xhp#par_idN10946.help.text
+msgid "Click the page or slide where you want to import the text."
+msgstr "Haga clic en la página o diapositiva donde desee importar el texto."
+
+#: text_enter.xhp#par_idN1094A.help.text
+msgid "Choose <emph>Insert - File</emph>."
+msgstr "Elija <emph>Insertar - Archivo</emph>."
+
+#: text_enter.xhp#par_idN10952.help.text
+msgid "Select a text file (*.txt) or an HTML file and click <emph>Insert</emph>. The <emph>Insert Text</emph> dialog opens. Click <emph>OK</emph> to insert the text."
+msgstr "Seleccione un archivo de texto (*.txt) o HTML, y haga clic en <emph>Insertar</emph>. Se abre el diálogo <emph>Insertar texto</emph>. Haga clic en <emph>Aceptar</emph> para insertar el texto."
+
+#: align_arrange.xhp#tit.help.text
+msgid "Arranging, Aligning and Distributing Objects"
+msgstr "Organizar, alinear y distribuir objetos"
+
+#: align_arrange.xhp#hd_id3149656.73.help.text
+msgid "<variable id=\"align_arrange\"><link href=\"text/sdraw/guide/align_arrange.xhp\" name=\"Arranging and Aligning Objects\">Arranging, Aligning and Distributing Objects</link></variable>"
+msgstr "<variable id=\"align_arrange\"><link href=\"text/sdraw/guide/align_arrange.xhp\" name=\"Arranging and Aligning Objects\">Organizar, Alinear y Distribuir Objetos</link></variable>"
+
+#: align_arrange.xhp#bm_id3125863.help.text
+msgid "<bookmark_value>arranging; objects (guide)</bookmark_value><bookmark_value>objects;aligning</bookmark_value><bookmark_value>distributing draw objects</bookmark_value><bookmark_value>aligning;draw objects</bookmark_value>"
+msgstr "<bookmark_value>organizar;objetos (guía)</bookmark_value><bookmark_value>objetos;alinear</bookmark_value><bookmark_value>distribuir objetos de dibujo</bookmark_value><bookmark_value>alinear;objetos de dibujo</bookmark_value>"
+
+#: align_arrange.xhp#hd_id3125863.17.help.text
+msgid "Arranging Objects"
+msgstr "Organizar objetos"
+
+#: align_arrange.xhp#par_id3153727.18.help.text
+msgid "Each object that you place in your document is successively stacked on the preceding object. To re-arrange the stacking order of a selected object, proceed as follows."
+msgstr "Cada objeto que pones en tu documento es almacenada sucesivamente en el objeto anterior. Para re-acomodar el orden del alamacenamiento de un objeto seleccionaod, prosigue de esta manera."
+
+#: align_arrange.xhp#par_idN107D5.help.text
+msgctxt "align_arrange.xhp#par_idN107D5.help.text"
+msgid "Click the object whose position you want to change."
+msgstr "Haz clic en el objeto que quieras modificar su posición."
+
+#: align_arrange.xhp#par_id3150327.78.help.text
+msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to bring up the context menu and choose one of the arrange options:"
+msgstr "Elija <item type=\"menuitem\">Modificar - Organizar</item> para abrir el menú contextual y seleccione una de las opciones disponibles:"
+
+#: align_arrange.xhp#par_idN107E6.help.text
+msgid "<emph>Bring to Front</emph> places the object on top of all other objects"
+msgstr "<emph>Traer al frente</emph> sitúa el objeto sobre todos los demás"
+
+#: align_arrange.xhp#par_idN107EC.help.text
+msgid "<emph>Bring Forward</emph> places the object one place forward in the stack of objects"
+msgstr "<emph>Traer adelante</emph> sitúa el objeto una posición más adelantada en la pila de objetos"
+
+#: align_arrange.xhp#par_idN107F2.help.text
+msgid "<emph>Send Backward</emph> places the object one place back in the stack of objects"
+msgstr "<emph>Enviar atrás</emph> sitúa el objeto al fondo de la pila de objetos"
+
+#: align_arrange.xhp#par_idN107F8.help.text
+msgid "<emph>Send to Back</emph> places the object behind all other objects"
+msgstr "<emph>Enviar al fondo</emph> sitúa el objeto detrás de todos los demás"
+
+#: align_arrange.xhp#par_idN107FE.help.text
+msgid "<emph>Behind Object</emph> places the object behind another object that you select"
+msgstr "<emph>Detrás del objeto</emph> sitúa el objeto detrás de otro objeto seleccionado"
+
+#: align_arrange.xhp#hd_id3155766.79.help.text
+msgid "Arranging an Object Behind Another Object"
+msgstr "Colocar un Objeto Detrás de Otro"
+
+#: align_arrange.xhp#par_idN10811.help.text
+msgctxt "align_arrange.xhp#par_idN10811.help.text"
+msgid "Click the object whose position you want to change."
+msgstr "Haz clic en el objeto cuya posición quieras modificar."
+
+#: align_arrange.xhp#par_id3154253.80.help.text
+msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to open the context menu and choose <emph>Behind Object</emph>. The mouse pointer changes to a hand."
+msgstr "Elija <item type=\"menuitem\">Modificar - Organizar</item> para abrir el menú contextual y seleccione <emph>Detrás del objeto</emph>. El puntero del ratón adopta el aspecto de una mano."
+
+#: align_arrange.xhp#par_id3149126.81.help.text
+msgid "Click the object behind which you want to place the selected object."
+msgstr "Haz clic en el objeto que desee posicionar en el objeto seleccionado."
+
+#: align_arrange.xhp#hd_id3145789.20.help.text
+msgid "Reversing The Stacking Order of Two Objects"
+msgstr "Invertir el orden en que se apilan dos objetos"
+
+#: align_arrange.xhp#par_id3154022.83.help.text
+msgid "Shift-click both objects to select them."
+msgstr "Mantenga pulsada la tecla Mayús mientras hace clic en ambos objetos para seleccionarlos."
+
+#: align_arrange.xhp#par_id3155114.84.help.text
+msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to open the context menu and choose <emph>Reverse</emph>."
+msgstr "Elija <item type=\"menuitem\">Modificar - Organizar</item> para abrir el menú contextual y seleccione <emph>Invertir</emph>."
+
+#: align_arrange.xhp#hd_id3166425.21.help.text
+msgid "Aligning Objects"
+msgstr "Alinear Objetos"
+
+#: align_arrange.xhp#par_id3152994.22.help.text
+msgid "The <emph>Alignment</emph> function enables you to align objects relative to each other or relative to the page."
+msgstr "La función <emph>Alineación</emph> permite alinear objetos según la relación entre ellos o con la página."
+
+#: align_arrange.xhp#par_idN108A3.help.text
+msgid "Select an object to align it to the page or select multiple objects to align them relative to each other."
+msgstr "Seleccione un objeto para alinearlo a la página, o varios objetos para alinearlos en relación unos con otros."
+
+#: align_arrange.xhp#par_idN108A7.help.text
+msgid "Choose <item type=\"menuitem\">Modify - Alignment</item> and select one of the alignment options."
+msgstr "Eliija <item type=\"menuitem\">Modificar - Alineación</item> y seleccione una de las opciones disponibles."
+
+#: align_arrange.xhp#par_idN108AE.help.text
+msgid "Distributing Objects"
+msgstr "Distribuir Objetos"
+
+#: align_arrange.xhp#par_id3151390.71.help.text
+msgid "If you select three or more objects in Draw, you can also use the <link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\"><emph>Distribution</emph></link> command to distribute the vertical and horizontal spacing evenly between the objects."
+msgstr "Si selecciona tres objetos o más en Draw, también puede usar la orden <link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\"><emph>Distribución</emph></link> para conseguir un espaciado vertical y horizontal uniforme entre los objetos."
+
+#: align_arrange.xhp#par_idN108CE.help.text
+msgid "Select three or more objects to be distributed."
+msgstr "Seleccione tres objetos o más para distribuirlos."
+
+#: align_arrange.xhp#par_idN108D2.help.text
+msgid "Choose <item type=\"menuitem\">Modify - Distribution</item>."
+msgstr "Elija <item type=\"menuitem\">Modificar - Distribución</item>."
+
+#: align_arrange.xhp#par_idN108DA.help.text
+msgid "Select the horizontal and vertical distribution option and click <emph>OK</emph>."
+msgstr "Seleccione la opción de distribución horizontal o vertical y haga clic en <emph>Aceptar</emph>."
+
+#: align_arrange.xhp#par_id3150535.72.help.text
+msgid "Selected objects are distributed evenly along the horizontal or vertical axis. The two outermost objects are used as reference points and do not move when the <emph>Distribution</emph> command is applied."
+msgstr "Los objetos seleccionados aparecen en el eje horizontal o vertical, distribuidos en intervalos regulares. Los dos objetos más próximos a los extremos se usan como puntos de referencia y no se mueven al aplicar la orden <emph>Distribución</emph>."
+
+#: color_define.xhp#tit.help.text
+msgid "Defining Custom Colors"
+msgstr "Definir colores personalizados"
+
+#: color_define.xhp#bm_id3149263.help.text
+msgid "<bookmark_value>colors; defining and saving</bookmark_value> <bookmark_value>user-defined colors</bookmark_value> <bookmark_value>custom colors</bookmark_value>"
+msgstr "<bookmark_value>colores;definir y guardar</bookmark_value><bookmark_value>colores definidos por el usuario</bookmark_value><bookmark_value>colores personalizados</bookmark_value>"
+
+#: color_define.xhp#hd_id3149263.7.help.text
+msgid "<variable id=\"color_define\"><link href=\"text/sdraw/guide/color_define.xhp\" name=\"Defining Custom Colors\">Defining Custom Colors</link></variable>"
+msgstr "<variable id=\"color_define\"><link href=\"text/sdraw/guide/color_define.xhp\" name=\"Defining Custom Colors\">Definición de colores personalizados</link></variable>"
+
+#: color_define.xhp#par_id3154511.8.help.text
+msgid "If you want, you can mix a custom color and add it to a color table."
+msgstr "Podrá definir tantos colores como desee, atribuirles nombres y depositarlos en archivos de paletas de colores."
+
+#: color_define.xhp#hd_id3155600.9.help.text
+msgid "To define a custom color"
+msgstr "Para definir un color personalizado:"
+
+#: color_define.xhp#par_id3150327.25.help.text
+msgid "Choose <emph>Format - Area</emph> and click the <emph>Colors</emph> tab. A table of the predefined colors is displayed."
+msgstr "Seleccione <emph>Formato - Área</emph> y pulse la ficha <emph>Colores</emph>. Aparece una tabla de colores predefinidos."
+
+#: color_define.xhp#par_id3154657.13.help.text
+msgid "Changes made to the standard color table are permanent and are saved automatically."
+msgstr "Las modificaciones realizadas en la tabla predeterminada de colores son duraderas, es decir, se guardan automáticamente y no son reversibles. Esto no acarrea ningún problema si sólo amplía la tabla de colores añadiéndole uno; sin embargo si modifica los colores predeterminados puede resultar problemático."
+
+#: color_define.xhp#par_id3166425.14.help.text
+msgid "Click a color in the table that is similar to the one you want to mix. The color appears in the upper preview box to the right of the table."
+msgstr "Para definir un nuevo color, lo más fácil es seleccionar primero un color de la tabla de colores parecido al deseado. El color seleccionado se muestra en la superior de las dos ventanas de previsualización, para facilitar la comparación."
+
+#: color_define.xhp#par_id3152992.15.help.text
+msgid "Select the RGB or CMYK color model in the box below the preview boxes."
+msgstr "A continuación seleccione en el listado el modelo de color según el cual desee definir el nuevo color. El listado incluye los modelos RGB y CMYK."
+
+#: color_define.xhp#par_id4979705.help.text
+msgid "%PRODUCTNAME uses only the RGB color model for printing in color. The CMYK controls are provided only to ease the input of color values using CMYK notation."
+msgstr "%PRODUCTNAME uses only the RGB color model for printing in color. The CMYK controls are provided only to ease the input of color values using CMYK notation."
+
+#: color_define.xhp#par_id3152987.16.help.text
+msgid "The RGB color model mixes red, green and blue light to create colors on a computer screen. In the RGB model, the three color components are additive and can have values ranging from 0 (black) to 255 (white). The CMYK color model combines Cyan (C), Magenta (M), Yellow (Y), and blacK (K, also used for \"Key\") to create colors for printing. The four colors of the CMYK models are subtractive and are defined as percentages. Black corresponds to 100 % and white to 0 %."
+msgstr "El modelo de color RGB mezcla el rojo, el verde y el azul claro para crear colores en la pantalla del equipo. Al modelo RGB se pueden agregar los tres componentes de colores con valores que vayan de 0 (negro) a 255 (blanco). El modelo de color CMYK combina el cián (C), el magenta (M), el amarillo (Y) y el negro (K, también usado para \"Key\") con el fin de crear colores para imprimir. Los cuatro colores de los modelos CMYK son substractivos y se definen como porcentajes. El negro se corresponde con el 100% y el blanco con el 0%."
+
+#: color_define.xhp#par_id3145386.17.help.text
+msgid "Enter a numeric value in the boxes next to the color components. The new color appears in the preview box directly above the color model box."
+msgstr "Ajuste el color modificando los valores en los campos giratorios. Puede introducir valores numéricos directamente o pulsar sobre los botones con flechas para modificar los valores. En la parte inferior de las ventanas de previsualización se verá inmediatamente el efecto."
+
+#: color_define.xhp#par_id3152871.18.help.text
+msgid "You can also create a color using a color spectrum. Click the <emph>Edit</emph> button to open the <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>Color</emph></link> dialog. Click a color. Use the Hue, Saturation, and Brightness boxes to adjust your color selection."
+msgstr "También puede crear un color mediante un espectro de colores. Pulse el botón <emph>Editar</emph> para abrir el diálogo <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>Color</emph></link>. Pulse sobre un color y en <emph>Aceptar</emph>. Use los cuadros Color, Saturación y Brillo para ajustar la selección del color."
+
+#: color_define.xhp#par_id3153011.19.help.text
+msgid "Do one of the following:"
+msgstr "Haz una de las siguientes:"
+
+#: color_define.xhp#par_id3147244.26.help.text
+msgid "If you want to replace the color in the standard color table that your custom color is based on, click <emph>Modify</emph>."
+msgstr "Si desea reemplazar el color de la tabla de colores estándar en el que se basa el color personalizado, pulse <emph>Modificar</emph>."
+
+#: color_define.xhp#par_id3145116.20.help.text
+msgid "If you want to add your custom color to the standard color table, enter a name in the <emph>Name</emph> text box and click <emph>Add</emph>."
+msgstr "Para establecer el nuevo color definido personalmente, escriba primero un nuevo nombre en el campo <emph>Nombre</emph> y pulse a continuación sobre <emph>Añadir</emph> y <emph>Aceptar</emph>."
+
+#: color_define.xhp#par_id3145236.23.help.text
+msgid "<link href=\"text/shared/01/03170000.xhp\" name=\"Color bar\">Color bar</link>"
+msgstr "<link href=\"text/shared/01/03170000.xhp\" name=\"Color bar\">Barra de colores</link>"
+
+#: duplicate_object.xhp#tit.help.text
+msgid "Duplicating Objects"
+msgstr "Duplicar Objetos"
+
+#: duplicate_object.xhp#bm_id3145750.help.text
+msgid "<bookmark_value>doubling draw objects</bookmark_value><bookmark_value>draw objects; duplicating</bookmark_value><bookmark_value>duplicating draw objects</bookmark_value><bookmark_value>multiplying draw objects</bookmark_value>"
+msgstr "<bookmark_value>doblar objetos de dibujo</bookmark_value><bookmark_value>objetos de dibujo;duplicar</bookmark_value><bookmark_value>duplicar objetos de dibujo</bookmark_value><bookmark_value>multiplicar objetos de dibujo</bookmark_value>"
+
+#: duplicate_object.xhp#hd_id3145750.3.help.text
+msgid "<variable id=\"duplicate_object\"><link href=\"text/sdraw/guide/duplicate_object.xhp\" name=\"Duplicating Objects\">Duplicating Objects</link></variable>"
+msgstr "<variable id=\"duplicate_object\"><link href=\"text/sdraw/guide/duplicate_object.xhp\" name=\"Duplicar un objeto\">Duplicar un objeto</link></variable>"
+
+#: duplicate_object.xhp#par_id3149400.4.help.text
+msgid "You can create duplicate or multiple copies of an object. The copies can be identical or can differ in size, color, orientation and location."
+msgstr "La duplicación de objetos le permitirá crear una cantidad determinada de copias de un objeto de manera fácil y rápida. Estas copias se diferencian las unas de las otras por su posición, orientación, tamaño y color."
+
+#: duplicate_object.xhp#par_id3153415.5.help.text
+msgid "The following example creates a stack of coins by making multiple copies of a single ellipse."
+msgstr "El ejemplo siguiente crea una pila de monedas mediante copias múltiples de una única elipse."
+
+#: duplicate_object.xhp#par_id3149129.6.help.text
+msgid "Use the <emph>Ellipse</emph> tool to draw a solid yellow ellipse."
+msgstr "Dibuje una elipse o un círculo, uno junto al otro, en el borde inferior de la página."
+
+#: duplicate_object.xhp#par_id3149209.8.help.text
+msgid "Select the ellipse and choose <emph>Edit - Duplicate</emph>."
+msgstr "Active el comando <emph>Editar - Duplicar</emph>. Verá el diálogo <emph>Duplicar</emph>."
+
+#: duplicate_object.xhp#par_id3145585.9.help.text
+msgid "Enter 12 as <emph>Number of copies.</emph>"
+msgstr "Escriba 12 como número de <emph>Ejemplares.</emph>"
+
+#: duplicate_object.xhp#par_id3151192.11.help.text
+msgid "Enter a negative value for the <emph>Width</emph> and <emph>Height</emph> so that the coins decrease in size as you go up the stack."
+msgstr "Si el tamaño de las monedas debiera disminuir hacia arriba, por razones de perspectiva, defina un valor de aumento negativo para el ancho y la altura."
+
+#: duplicate_object.xhp#par_id3151387.39.help.text
+msgid "To define a color transition for the coins, select different colors in the <emph>Start</emph> and <emph>End</emph> boxes. The <emph>Start</emph> color is applied to the object that you are duplicating."
+msgstr "Ahora sólo le queda por definir la variación de los colores de abajo hacia arriba. Seleccione para ello un color algo más oscuro respecto al color final."
+
+#: duplicate_object.xhp#par_id3149947.12.help.text
+msgid "Click <emph>OK</emph> to create the duplicates."
+msgstr "Pulse sobre <emph>Aceptar</emph> y se crearán las copias."
+
+#: duplicate_object.xhp#par_id3153935.50.help.text
+msgid "<link href=\"text/simpress/01/02120000.xhp\" name=\"Edit - Duplicate\">Edit - Duplicate</link>"
+msgstr "<link href=\"text/simpress/01/02120000.xhp\" name=\"Edit - Duplicate\">Editar - Duplicar</link>"
+
+#: groups.xhp#tit.help.text
+msgid "Grouping Objects"
+msgstr "Agrupar objetos"
+
+#: groups.xhp#bm_id3150793.help.text
+msgid "<bookmark_value>grouping; draw objects</bookmark_value><bookmark_value>draw objects; grouping</bookmark_value>"
+msgstr "<bookmark_value>Agrupar; dibujar objetos</bookmark_value><bookmark_value>dibujar objetos; agrupar</bookmark_value>"
+
+#: groups.xhp#hd_id3150793.26.help.text
+msgid "<variable id=\"groups\"><link href=\"text/sdraw/guide/groups.xhp\" name=\"Grouping Objects\">Grouping Objects</link></variable>"
+msgstr "<v<variable id=\"groups\"><link href=\"text/sdraw/guide/groups.xhp\" name=\"Grouping Objects\">Agrupar Objetos</link></variable>"
+
+#: groups.xhp#par_id3153728.27.help.text
+msgid "You can combine several objects into a group so that they act as a single object. You can move and transform all objects in a group as a single unit. You can also change the properties (for example, line size, fill color) of all objects in a group as a whole or for individual objects in a group. Groups can be temporary or assigned:"
+msgstr "Es posible seleccionar, agrupar, combinar, substraer o cortar varios objetos conjuntamente."
+
+#: groups.xhp#par_id3147434.64.help.text
+msgid "Temporary - group only lasts as long as all of the combined objects are selected."
+msgstr "Temporalmente - el grupo solo dura tanto como todo los objetos combinados esten seleccionado."
+
+#: groups.xhp#par_id3154490.65.help.text
+msgid "Assigned - group lasts until it is ungrouped through a menu command."
+msgstr "Assignar - los grupos perduran hasta que son desagrupados atravez del comando del menú."
+
+#: groups.xhp#par_id3145252.66.help.text
+msgid "Groups can also be grouped in other groups. Actions applied to a group do not affect the relative position of the individual objects to each other in the group."
+msgstr "Los comandos también se pueden combinar, por ejemplo para asociar varios grupos a uno solo, para añadir una combinación, unir el resultado como grupo o como combinación, etc."
+
+#: groups.xhp#hd_id3150716.28.help.text
+msgid "To group objects:"
+msgstr "Para agrupar objetos:"
+
+#: groups.xhp#par_id3149018.help.text
+msgid "<image id=\"img_id3145643\" src=\"cmd/sc_formatgroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3145643\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145643\" src=\"cmd/sc_formatgroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3145643\">Icono</alt></image>"
+
+#: groups.xhp#par_id3147346.29.help.text
+msgid "Select the objects you want to group and choose <emph>Modify - Group</emph>."
+msgstr "Selecciona el objeto quieres agrupar y escoger <emph>Modificar - Agrupar</emph>."
+
+#: groups.xhp#par_id3148485.30.help.text
+msgid "For example, you can group all of the objects in a company logo to move and resize the logo as a single object."
+msgstr "Por ejemplo, puedes agrupoar todo los objetos en el logo de una compañia y redimensionar el logo como un objeto único."
+
+#: groups.xhp#par_id3147002.31.help.text
+msgid "After you have grouped objects, selecting any part of the group selects the entire group."
+msgstr "Despues de haber agrupado los objetos, selecciona cada parte del grupo selecciona el grupo entero."
+
+#: groups.xhp#hd_id3150205.55.help.text
+msgid "Selecting Objects in a Group"
+msgstr "Seleccionar objetos en un grupo"
+
+#: groups.xhp#par_id3150370.help.text
+msgid "<image id=\"img_id3155376\" src=\"cmd/sc_entergroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155376\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155376\" src=\"cmd/sc_entergroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155376\">Icono</alt></image>"
+
+#: groups.xhp#par_id3156450.56.help.text
+msgid "You can select single objects in a group by entering the group. Double-click a group to enter it and click on the object to select it. You can also add or delete objects to and from a group in this mode. The objects that are not part of the group are grayed out."
+msgstr "Para entrar en un grupo y poder editarlo, debe seleccionarlo primero (pulsándolo o por medio del teclado - véase más adelante). A continuación puede entrar en el grupo a través del menú contextual, pulsando la tecla (F3) o con una doble pulsación en el grupo. Al entrar mediante una doble pulsación se deshará la selección del grupo, si existiera, y ningún objeto del grupo quedará seleccionado."
+
+#: groups.xhp#par_id3151239.help.text
+msgid "<image id=\"img_id3155264\" src=\"cmd/sc_leavegroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155264\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155264\" src=\"cmd/sc_leavegroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155264\">Icono</alt></image>"
+
+#: groups.xhp#par_id3150213.58.help.text
+msgid "To exit a group, double-click anywhere outside it."
+msgstr "Para salir de un grupo, puede hacer doble clic en cualquier lugar fuera."
+
+#: graphic_insert.xhp#tit.help.text
+msgid "Inserting Graphics"
+msgstr "Insertar imagen"
+
+#: graphic_insert.xhp#bm_id3156443.help.text
+msgid "<bookmark_value>pictures; inserting</bookmark_value><bookmark_value>images; inserting</bookmark_value><bookmark_value>files; inserting pictures</bookmark_value><bookmark_value>inserting;pictures</bookmark_value>"
+msgstr "<bookmark_value>fotos;insertar</bookmark_value><bookmark_value>imágenes;insertar</bookmark_value><bookmark_value>archivos;insertar imágenes</bookmark_value><bookmark_value>insertar;fotos</bookmark_value>"
+
+#: graphic_insert.xhp#hd_id3156443.1.help.text
+msgid "<variable id=\"graphic_insert\"><link href=\"text/sdraw/guide/graphic_insert.xhp\" name=\"Inserting Graphics\">Inserting Pictures</link></variable>"
+msgstr "<variable id=\"graphic_insert\"><link href=\"text/sdraw/guide/graphic_insert.xhp\" name=\"Inserting Graphics\">Insertar Imágenes</link></variable>"
+
+#: graphic_insert.xhp#par_id3155600.2.help.text
+msgid "Choose <emph>Insert - Picture - From File</emph>."
+msgstr "Seleccione <emph>Insertar - Imagen - A partir de archivo...</emph>."
+
+#: graphic_insert.xhp#par_id3150749.3.help.text
+msgid "Locate the picture you want to insert. Select the <emph>Link</emph> check box to insert only a link to the picture. If you want to see the picture before you insert it, select <emph>Preview</emph>."
+msgstr "Busque la imagen que desee insertar. Seleccione la casilla de verificación <emph>Vínculo</emph> para insertar sólo un vínculo en la imagen. Si desea ver la imagen antes de insertarla, seleccione <emph>Vista previa</emph>."
+
+#: graphic_insert.xhp#par_id3155764.4.help.text
+msgid "After you insert a linked picture, do not change the name of the source picture or move the source picture to another directory."
+msgstr "Después de insertar una imagen vinculada, tenga cuidado de no cambiar el nombre de la imagen de origen ni mover ésta a otro directorio."
+
+#: graphic_insert.xhp#par_id3150044.5.help.text
+msgid "Click <emph>Open</emph> to insert the picture."
+msgstr "Haga clic en <emph>Abrir</emph> para insertar la imagen."
+
+#: keyboard.xhp#tit.help.text
+msgid "Shortcut Keys for Drawing Objects"
+msgstr "Teclas de acceso directo para objetos de dibujo"
+
+#: keyboard.xhp#bm_id3155628.help.text
+msgid "<bookmark_value>accessibility; %PRODUCTNAME Draw</bookmark_value><bookmark_value>draw objects; text entry mode</bookmark_value><bookmark_value>text entry mode for draw objects</bookmark_value>"
+msgstr "<bookmark_value>accesibilidad;%PRODUCTNAME Draw</bookmark_value><bookmark_value>objetos de dibujo;modo de entrada de texto</bookmark_value><bookmark_value>modo de entrada de texto para dibujar objetos</bookmark_value>"
+
+#: keyboard.xhp#hd_id3155628.1.help.text
+msgid "<variable id=\"keyboard\"><link href=\"text/sdraw/guide/keyboard.xhp\" name=\"Shortcut Keys for Drawing Objects\">Shortcut Keys for Drawing Objects</link></variable>"
+msgstr "<variable id=\"keyboard\"><link href=\"text/sdraw/guide/keyboard.xhp\" name=\"Shortcut Keys for Drawing Objects\">Combinaciones de Teclas para los Objetos - Función de Accesibilidad</link></variable>"
+
+#: keyboard.xhp#par_id3148663.13.help.text
+msgid "You can create and edit drawing objects using the keyboard."
+msgstr "Puede crear y editar objetos de dibujo mediante el teclado."
+
+#: keyboard.xhp#hd_id3125863.12.help.text
+msgid "To Create and Edit a Drawing Object"
+msgstr "Para crear y editar un rectángulo"
+
+#: keyboard.xhp#par_id3153188.11.help.text
+msgid "Press <item type=\"keycode\">F6</item> to navigate to the <emph>Drawing</emph> bar."
+msgstr "Pulse <item type=\"keycode\">F6</item> para ir a la barra <emph>Dibujo</emph>."
+
+#: keyboard.xhp#par_id3146971.10.help.text
+msgid "Press the <item type=\"keycode\">Right</item> arrow key until you reach the toolbar icon of a drawing tool."
+msgstr "Pulse la tecla de flecha <item type=\"keycode\">derecha</item> hasta alcanzar el icono de herramienta de dibujo en la barra de herramientas."
+
+#: keyboard.xhp#par_idN106CD.help.text
+msgid "If there is an arrow next to the icon, the drawing tool opens a sub toolbar. Press the <item type=\"keycode\">Up</item> or <item type=\"keycode\">Down</item> arrow key to open the sub toolbar, then press the <item type=\"keycode\">Right</item> or <item type=\"keycode\">Left</item> key to select an icon."
+msgstr "Si junto al icono hay una flecha, la herramienta de dibujo abre una barra de herramientas secundaria. Pulse la tecla de flecha <item type=\"keycode\">arriba</item> o <item type=\"keycode\">abajo</item> para abrir la barra de herramientas secundaria; a continuación, pulse la tecla de flecha <item type=\"keycode\">derecha</item> o <item type=\"keycode\">izquierda</item> para seleccionar un icono."
+
+#: keyboard.xhp#par_id3147338.8.help.text
+msgid "Press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter</item>."
+msgstr "Presionar <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Control</defaultinline></switchinline>+Enter</item>."
+
+#: keyboard.xhp#par_id3154705.7.help.text
+msgid "The object is created at the center of the current document."
+msgstr "Se crea el objeto en el centro del documento."
+
+#: keyboard.xhp#par_id3155962.6.help.text
+msgid "To return to the document, press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6</item>."
+msgstr "Para volver al documento, presione <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Control</defaultinline></switchinline>+F6</item>."
+
+#: keyboard.xhp#par_id3155062.5.help.text
+msgid "You can use the arrow keys to position the object where you want. To choose a command from the context menu for the object, press <item type=\"keycode\">Shift+F10</item>."
+msgstr "Puede usar las teclas de flecha para situar el objeto donde desee. Para elegir una orden en el menú contextual, pulse <item type=\"keycode\">Mayús+F10</item>."
+
+#: keyboard.xhp#hd_id3150306.4.help.text
+msgid "To Select an Object"
+msgstr "Para seleccionar un objeto"
+
+#: keyboard.xhp#par_id3152990.3.help.text
+msgid "Press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6</item> to enter the document."
+msgstr "Presione <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Control</defaultinline></switchinline>+F6</item> para ingresar al documento."
+
+#: keyboard.xhp#par_id3145587.2.help.text
+msgid "Press <item type=\"keycode\">Tab</item> until you reach the object you want to select."
+msgstr "Pulse la tecla <item type=\"keycode\">Tab</item> las veces necesarias para llegar al objeto que desee seleccionar."
+
+#: cross_fading.xhp#tit.help.text
+msgid "Cross-Fading Two Objects"
+msgstr "Disolvencia de Dos Objetos"
+
+#: cross_fading.xhp#bm_id3150715.help.text
+msgid "<bookmark_value>draw objects; cross-fading two objects</bookmark_value><bookmark_value>cross-fading; two draw objects</bookmark_value>"
+msgstr "<bookmark_value>objetos de dibujo;disolvencia de dos objetos</bookmark_value><bookmark_value>disolvencia;dos objetos de dibujo</bookmark_value>"
+
+#: cross_fading.xhp#hd_id3150715.17.help.text
+msgid "<variable id=\"cross_fading\"><link href=\"text/sdraw/guide/cross_fading.xhp\" name=\"Cross-Fading Two Objects\">Cross-Fading Two Objects</link></variable>"
+msgstr "<variable id=\"cross_fading\"><link href=\"text/sdraw/guide/cross_fading.xhp\" name=\"Cross-Fading Two Objects\">Desvanecimiento de Dos Objetos</link></variable>"
+
+#: cross_fading.xhp#par_id3154754.18.help.text
+msgid "Cross-fading creates shapes and distributes them by uniform increments between two drawing objects."
+msgstr "La disolvencia crea formas y las distribuye en aumentos uniformes entre dos objetos de dibujo."
+
+#: cross_fading.xhp#par_id3155112.41.help.text
+msgid "The cross-fading command is only available in $[officename] Draw. You can, however, copy and paste cross-faded objects into $[officename] Impress."
+msgstr "La orden de disolvencia sólo está disponible en $[officename] Draw. No obstante, puede copiar y pegar objetos con disolvencia en $[officename] Impress."
+
+#: cross_fading.xhp#hd_id3149209.20.help.text
+msgid "To cross-fade two objects:"
+msgstr "Para disolver dos objetos:"
+
+#: cross_fading.xhp#par_id3150370.45.help.text
+msgid "Hold down Shift and click each object."
+msgstr "Mantenga pulsada la tecla Mayús mientras pulsa el botón izquierdo del ratón sobre cada objeto."
+
+#: cross_fading.xhp#par_id3166428.22.help.text
+msgid "Choose <emph>Edit - Cross-fading</emph>."
+msgstr "Seleccione <emph>Editar - Disolvencia</emph>."
+
+#: cross_fading.xhp#par_id3156450.44.help.text
+msgid "Enter a value to specify the number of objects between the start and end of the cross-fade in the <emph>Increments</emph> box."
+msgstr "Escriba un valor para especificar el número de objetos entre el inicio y el final de la disolvencia en el cuadro <emph>Pasos</emph>."
+
+#: cross_fading.xhp#par_id3149405.23.help.text
+msgid "Click <emph>OK</emph>."
+msgstr "Pulse en <emph>Aceptar</emph>."
+
+#: cross_fading.xhp#par_id3151240.24.help.text
+msgid "A group containing the two original objects and the specified number (increments) of cross-faded objects is displayed."
+msgstr "Se muestra un grupo que contiene dos objetos originales y el número especificado (aumentos) de objetos disueltos."
+
+#: cross_fading.xhp#par_id3159203.help.text
+msgid "<image id=\"img_id3150210\" src=\"res/helpimg/ueberblenden.png\" width=\"74.88mm\" height=\"65.62mm\"><alt id=\"alt_id3150210\">Illustration for crossfading</alt></image>"
+msgstr "<image id=\"img_id3150210\" src=\"res/helpimg/ueberblenden.png\" width=\"74.88mm\" height=\"65.62mm\"><alt id=\"alt_id3150210\">Ilustración para disolvencia</alt></image>"
+
+#: cross_fading.xhp#par_id3154766.25.help.text
+msgid "You can edit the individual objects of a group by selecting the group and pressing F3. Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3 to exit the group editing mode."
+msgstr "Puede editar los objetos individualmente de un grupo seleccionando el grupo y presionando F3. Presione <switchinline select=\"sys\"><caseinline select=\"MAC\"> Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3 para salir del modo edición del grupo ."
+
+#: cross_fading.xhp#par_id3155760.42.help.text
+msgid "<link href=\"text/simpress/01/02150000.xhp\" name=\"Editing - Cross-fading\">Editing - Cross-fading</link>"
+msgstr "<link href=\"text/simpress/01/02150000.xhp\" name=\"Editing - Cross-fading\">Editar - Desvanecimiento</link>"
+
+#: join_objects3d.xhp#tit.help.text
+msgid "Assembling 3D Objects"
+msgstr "Montar objetos 3D"
+
+#: join_objects3d.xhp#bm_id3154014.help.text
+msgid "<bookmark_value>3D objects; assembling</bookmark_value><bookmark_value>assembled objects in 3D</bookmark_value><bookmark_value>combining;3D objects</bookmark_value><bookmark_value>joining;3D objects</bookmark_value>"
+msgstr "<bookmark_value>objetos 3D;montar</bookmark_value><bookmark_value>objetos montados en 3D</bookmark_value><bookmark_value>combinar;objetos 3D</bookmark_value><bookmark_value>unir;objetos 3D</bookmark_value>"
+
+#: join_objects3d.xhp#hd_id3156442.29.help.text
+msgid "<variable id=\"join_objects3d\"><link href=\"text/sdraw/guide/join_objects3d.xhp\" name=\"Assembling 3D Objects\">Assembling 3D Objects</link></variable>"
+msgstr "<variable id=\"join_objects3d\"><link href=\"text/sdraw/guide/join_objects3d.xhp\" name=\"Assembling 3D Objects\">Componer Objetos 3D</link></variable>"
+
+#: join_objects3d.xhp#par_id3145251.30.help.text
+msgid "3D objects that each form a 3D scene can be combined into a single 3D scene."
+msgstr "Los objetos 3D que forman por sí mismos una escena 3D pueden combinarse en una única escena 3D."
+
+#: join_objects3d.xhp#hd_id3150042.41.help.text
+msgid "To combine 3D objects:"
+msgstr "Para combinar objetos 3D:"
+
+#: join_objects3d.xhp#par_id3154702.31.help.text
+msgid "Insert a 3D object from the <emph>3D Objects</emph> toolbar (for example, a cube)."
+msgstr "Inserte uno de los objetos 3D disponibles en la barra de herramientas <emph>Objetos 3D</emph> (por ejemplo, un cubo)."
+
+#: join_objects3d.xhp#par_id3155335.32.help.text
+msgid "Insert a second slightly larger 3D object (for example, a sphere)."
+msgstr "Inserte un segundo objeto 3D, por ejemplo, una esfera, que sea algo mayor que el cubo."
+
+#: join_objects3d.xhp#par_id3148488.33.help.text
+msgid "Select the second 3D object (sphere) and choose <emph>Edit - Cut</emph>."
+msgstr "Seleccione el segundo objeto (esfera) 3D y escoge <emph>Editar - Cortar</emph>."
+
+#: join_objects3d.xhp#par_id3149211.34.help.text
+msgid "Double-click the first object (cube) to enter its group."
+msgstr "Edite el grupo del cubo; a continuación, seleccione el cubo y pulse (F3)."
+
+#: join_objects3d.xhp#par_id3154652.35.help.text
+msgid "Choose <emph>Edit - Paste</emph>. Both objects are now part of the same group. If you want, you can edit the individual objects or change their position within the group."
+msgstr "Elija <emph>Editar - Pegar</emph>. Los dos objetos pasan a formar parte del mismo grupo. Si lo desea, los objetos se pueden editar por separado o cambiar de posición dentro del grupo."
+
+#: join_objects3d.xhp#par_id3155376.36.help.text
+msgid "Double-click outside the group to exit the group."
+msgstr "Mientras los tenga agrupados, puede editar los objetos y situarlos donde desee. Haga una doble pulsación fuera del grupo para cerrarlo."
+
+#: join_objects3d.xhp#par_id3148606.38.help.text
+msgid "You cannot intersect or subtract 3D objects."
+msgstr "Los objetos 3D no permiten ni sustracciones ni intersecciones."
+
+#: join_objects3d.xhp#par_id3154537.39.help.text
+msgid "<link href=\"text/simpress/02/10090000.xhp\" name=\"Objects in 3D\">Objects in 3D</link>"
+msgstr "<link href=\"text/simpress/02/10090000.xhp\" name=\"Objetos 3D\">Objetos 3D</link>"
+
+#: join_objects.xhp#tit.help.text
+msgid "Connecting Lines"
+msgstr "Conectar líneas"
+
+#: join_objects.xhp#bm_id3145799.help.text
+msgid "<bookmark_value>draw objects; connecting lines to</bookmark_value><bookmark_value>connecting; lines</bookmark_value><bookmark_value>lines; connecting objects</bookmark_value><bookmark_value>areas; from connected lines</bookmark_value>"
+msgstr "<bookmark_value>objetos de dibujo;conectar líneas con</bookmark_value><bookmark_value>conectar;líneas</bookmark_value><bookmark_value>líneas;conectar objetos</bookmark_value><bookmark_value>área;de líneas conectadas</bookmark_value>"
+
+#: join_objects.xhp#hd_id3145799.1.help.text
+msgid "<variable id=\"join_objects\"><link href=\"text/sdraw/guide/join_objects.xhp\" name=\"Connecting Lines\">Connecting Lines</link></variable>"
+msgstr "<variable id=\"join_objects\"><link href=\"text/sdraw/guide/join_objects.xhp\" name=\"Connecting Lines\">Conectar Líneas</link></variable>"
+
+#: join_objects.xhp#par_id3154512.3.help.text
+msgid "When you connect lines, lines are drawn between neighboring endpoints."
+msgstr "Cuando se conectan líneas, éstas se dibujan entre puntos finales cercanos."
+
+#: join_objects.xhp#hd_id3150752.2.help.text
+msgid "To connect lines:"
+msgstr "Para conectar líneas:"
+
+#: join_objects.xhp#par_id3153714.4.help.text
+msgid "Select two or more lines."
+msgstr "Seleccione dos líneas o más."
+
+#: join_objects.xhp#par_id3156383.5.help.text
+msgid "Right-click and choose <emph>Modify - Connect</emph>."
+msgstr "Pulse el botón derecho del ratón y seleccione <emph>Modificar - Unir</emph>."
+
+#: join_objects.xhp#par_id3149257.11.help.text
+msgid "To create a closed object, right-click a line and choose <emph>Close Object</emph>."
+msgstr "Para crear un objeto cerrado, pulse con el botón derecho del ratón sobre una línea y seleccione <emph>Cerrar objeto</emph>."
+
+#: join_objects.xhp#par_id3150363.9.help.text
+msgid "You can only use the <emph>Close Object</emph> command on connected lines, <emph>Freeform Lines </emph>and unfilled <emph>Curves</emph>."
+msgstr "Sólo puede usar la orden <emph>Cerrar objeto</emph> en las líneas unidas, las <emph>Líneas a mano alzada</emph> y en las <emph>Curvas</emph> sin relleno."
+
+#: main.xhp#tit.help.text
+msgid "Instructions for Using $[officename] Draw"
+msgstr "Instrucciones para Utilizar $[officename] Draw"
+
+#: main.xhp#bm_id3146119.help.text
+msgid "<bookmark_value>Draw instructions</bookmark_value><bookmark_value>instructions; $[officename] Draw</bookmark_value><bookmark_value>Howtos for Draw</bookmark_value>"
+msgstr "<bookmark_value>intrucciones de Draw</bookmark_value><bookmark_value>instrucciones; $[officename] Draw</bookmark_value><bookmark_value>Tutoriales para Draw</bookmark_value>"
+
+#: main.xhp#hd_id3146119.1.help.text
+msgid "<variable id=\"main\"><link href=\"text/sdraw/guide/main.xhp\" name=\"Instructions for Using $[officename] Draw\">Instructions for Using $[officename] Draw</link></variable>"
+msgstr "<variable id=\"main\"><link href=\"text/sdraw/guide/main.xhp\" name=\"Instructions for Using $[officename] Draw\">Instrucciones para usar $[officename] Draw</link></variable>"
+
+#: main.xhp#hd_id3143218.2.help.text
+msgid "Editing and Grouping Objects"
+msgstr "Agrupar y Editar Objetos"
+
+#: main.xhp#hd_id3149018.3.help.text
+msgid "Editing Colors and Textures"
+msgstr "Editar Colores y Texturas"
+
+#: main.xhp#hd_id3150043.4.help.text
+msgid "Editing Text"
+msgstr "Editar Texto"
+
+#: main.xhp#hd_id3147003.6.help.text
+msgid "Working with Layers"
+msgstr "El Trabajo con Capas"
+
+#: main.xhp#hd_id3145585.5.help.text
+msgid "Miscellaneous"
+msgstr "Otros"
diff --git a/source/es/helpcontent2/source/text/shared.po b/source/es/helpcontent2/source/text/shared.po
new file mode 100644
index 00000000000..398618f87e2
--- /dev/null
+++ b/source/es/helpcontent2/source/text/shared.po
@@ -0,0 +1,1509 @@
+#. extracted from helpcontent2/source/text/shared.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fshared.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"PO-Revision-Date: 2012-05-11 12:45+0200\n"
+"Last-Translator: Santiago <santiago.bosio@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: main0226.xhp#tit.help.text
+msgid "Form Design Toolbar"
+msgstr "Barra de herramientas Diseño de formularios"
+
+#: main0226.xhp#hd_id3148520.1.help.text
+msgid "<link href=\"text/shared/main0226.xhp\" name=\"Form Design Toolbar\">Form Design Toolbar</link>"
+msgstr "<link href=\"text/shared/main0226.xhp\" name=\"Form Design Toolbar\">Barra de herramientas Diseño de formularios</link>"
+
+#: main0226.xhp#par_id3155364.2.help.text
+msgid "The Form Design toolbar becomes visible as soon as you select a form object when working in the design mode."
+msgstr "La barra de herramientas Diseño de formularios aparece cuando se selecciona un objeto de formulario al trabajar en el modo diseño."
+
+#: main0226.xhp#hd_id3163802.8.help.text
+msgid "<link href=\"text/shared/02/01170400.xhp\" name=\"Add Field\">Add Field</link>"
+msgstr "<link href=\"text/shared/02/01170400.xhp\" name=\"Add Field\">Agregar campo</link>"
+
+#: main0226.xhp#hd_id3150669.4.help.text
+msgid "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">Group</link>"
+msgstr "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">Grupo</link>"
+
+#: main0226.xhp#hd_id3147335.5.help.text
+msgid "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Ungroup</link>"
+msgstr "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Desagrupar</link>"
+
+#: main0226.xhp#hd_id3156024.6.help.text
+msgid "<link href=\"text/shared/01/05290300.xhp\" name=\"Enter Group\">Enter Group</link>"
+msgstr "<link href=\"text/shared/01/05290300.xhp\" name=\"Enter Group\">Entrar al Grupo</link>"
+
+#: main0226.xhp#hd_id3149295.7.help.text
+msgid "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Exit Group</link>"
+msgstr "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Salir del grupo</link>"
+
+#: main0226.xhp#hd_id3150398.9.help.text
+msgctxt "main0226.xhp#hd_id3150398.9.help.text"
+msgid "<link href=\"text/shared/02/01171200.xhp\" name=\"Display Grid\">Display Grid</link>"
+msgstr "<link href=\"text/shared/02/01171200.xhp\" name=\"Display Grid\">Mostrar cuadrícula</link>"
+
+#: main0226.xhp#hd_id3148798.10.help.text
+msgid "<link href=\"text/shared/02/01171300.xhp\" name=\"Snap to Grid\">Snap to Grid</link>"
+msgstr "<link href=\"text/shared/02/01171300.xhp\" name=\"Snap to Grid\">Ajustar cuadrícula</link>"
+
+#: main0226.xhp#par_id3145419.12.help.text
+msgid "<ahelp hid=\".uno:GridUse\">Specifies that you can move objects only between grid points.</ahelp>"
+msgstr "<ahelp hid=\".uno:GridUse\">Especifica que sólo se pueden desplazar los objetos entre puntos de cuadrícula.</ahelp>"
+
+#: main0226.xhp#hd_id3148920.11.help.text
+msgid "<link href=\"text/shared/02/01171400.xhp\" name=\"Helplines While Moving\">Helplines While Moving</link>"
+msgstr "<link href=\"text/shared/02/01171400.xhp\" name=\"Helplines While Moving\">Guías al desplazar</link>"
+
+#: fontwork_toolbar.xhp#tit.help.text
+msgid "Fontwork"
+msgstr "Fontwork"
+
+#: fontwork_toolbar.xhp#par_idN1055A.help.text
+msgid "<link href=\"text/shared/fontwork_toolbar.xhp\">Fontwork</link>"
+msgstr "<link href=\"text/shared/fontwork_toolbar.xhp\">Fontwork</link>"
+
+#: fontwork_toolbar.xhp#par_idN1056A.help.text
+msgid "The Fontwork toolbar opens when you select a Fontwork object."
+msgstr "Al seleccionar un objeto Fontwork, se abre la barra de herramientas Fontwork."
+
+#: fontwork_toolbar.xhp#par_idN1056D.help.text
+msgid "Fontwork Gallery"
+msgstr "Galería de Fontwork"
+
+#: fontwork_toolbar.xhp#par_idN10571.help.text
+msgid "<ahelp hid=\".\">Opens the Fontwork Gallery where you can select another preview. Click OK to apply the new set of properties to your Fontwork object.</ahelp>"
+msgstr "<ahelp hid=\".\">Abre la Galería de Fontwork donde puede seleccionar otra vista previa. Haga clic en Aceptar para aplicar el nuevo conjunto de propiedades al objeto Fontwork.</ahelp>"
+
+#: fontwork_toolbar.xhp#par_idN10588.help.text
+msgid "Fontwork Shape"
+msgstr "Forma de Fontwork"
+
+#: fontwork_toolbar.xhp#par_idN1058C.help.text
+msgid "<ahelp hid=\".\">Opens the Fontwork Shape toolbar. Click a shape to apply the shape to all selected Fontwork objects.</ahelp>"
+msgstr "<ahelp hid=\".\">Abre la barra de herramientas Forma de Fontwork. Haga clic en una forma para aplicarla a todos los objetos Fontwork seleccionados.</ahelp>"
+
+#: fontwork_toolbar.xhp#par_idN105A6.help.text
+msgid "Fontwork Same Letter Heights"
+msgstr "Mismo alto de letras de Fontwork"
+
+#: fontwork_toolbar.xhp#par_idN105AA.help.text
+msgid "<ahelp hid=\".\">Switches the letter height of the selected Fontwork objects from normal to the same height for all objects.</ahelp>"
+msgstr "<ahelp hid=\".\">Cambia el alto normal de las letras de los objetos Fontwork seleccionados al mismo alto para todos los objetos.</ahelp>"
+
+#: fontwork_toolbar.xhp#par_idN105C1.help.text
+msgid "Fontwork Alignment"
+msgstr "Alineación de Fontwork"
+
+#: fontwork_toolbar.xhp#par_idN105C5.help.text
+msgid "<ahelp hid=\".\">Opens the Fontwork Alignment window.</ahelp>"
+msgstr "<ahelp hid=\".\">Abre la ventana Alineación de Fontwork.</ahelp>"
+
+#: fontwork_toolbar.xhp#par_idN105DC.help.text
+msgid "<ahelp hid=\".\">Click to apply the alignment to the selected Fontwork objects.</ahelp>"
+msgstr "<ahelp hid=\".\">Haga clic para aplicar la alineación a los objetos Fontwork seleccionados.</ahelp>"
+
+#: fontwork_toolbar.xhp#par_idN105F3.help.text
+msgid "Fontwork Character Spacing"
+msgstr "Espacio entre caracteres de Fontwork"
+
+#: fontwork_toolbar.xhp#par_idN105F7.help.text
+msgid "<ahelp hid=\".\">Opens the Fontwork Character Spacing window.</ahelp>"
+msgstr "<ahelp hid=\".\">Abre la ventana Espacio entre caracteres de Fontwork.</ahelp>"
+
+#: fontwork_toolbar.xhp#par_idN1060E.help.text
+msgid "<ahelp hid=\".\">Click to apply the character spacing to the selected Fontwork objects.</ahelp>"
+msgstr "<ahelp hid=\".\">Haga clic para aplicar el espacio entre caracteres a los objetos Fontwork seleccionados.</ahelp>"
+
+#: fontwork_toolbar.xhp#par_idN1061D.help.text
+msgid "Custom"
+msgstr "Personalizado"
+
+#: fontwork_toolbar.xhp#par_idN10621.help.text
+msgid "<ahelp hid=\".\">Opens the Fontwork Character Spacing dialog where you can enter a new character spacing value.</ahelp>"
+msgstr "<ahelp hid=\".\">Abre el diálogo Espacio entre caracteres de Fontwork, que permite introducir un nuevo valor para el espacio entre caracteres.</ahelp>"
+
+#: fontwork_toolbar.xhp#par_idN10638.help.text
+msgid "Value"
+msgstr "Valor"
+
+#: fontwork_toolbar.xhp#par_idN1063C.help.text
+msgid "<ahelp hid=\".\">Enter the Fontwork character spacing value.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique el valor de espacio entre caracteres de Fontwork.</ahelp>"
+
+#: fontwork_toolbar.xhp#par_idN1064B.help.text
+msgid "Kern Character Pairs"
+msgstr "Ajustar interletraje de pares de caracteres"
+
+#: fontwork_toolbar.xhp#par_idN1064F.help.text
+msgid "<ahelp hid=\".\">Switches the <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning</link> of character pairs on and off.</ahelp>"
+msgstr "<ahelp hid=\".\">Activa y desactiva el <link href=\"text/shared/00/00000005.xhp#kerning\">interletraje</link> de los pares de caracteres.</ahelp>"
+
+#: main0214.xhp#tit.help.text
+msgid "Query Design Bar"
+msgstr "Barra Diseño de consulta"
+
+#: main0214.xhp#hd_id3159176.1.help.text
+msgid "<link href=\"text/shared/main0214.xhp\" name=\"Query Design Bar\">Query Design Bar</link>"
+msgstr "<link href=\"text/shared/main0214.xhp\" name=\"Query Design Bar\">Barra Diseño de consulta</link>"
+
+#: main0214.xhp#par_id3150085.2.help.text
+msgid "<ahelp hid=\".\">When creating or editing an SQL query, use the icons in the <emph>Query Design</emph> Bar to control the display of data.</ahelp>"
+msgstr "<ahelp hid=\".\">Al crear o editar una consulta SQL, utilice los iconos de la barra <emph>Diseño de consultas</emph> para controlar la visualización de datos.</ahelp>"
+
+#: main0214.xhp#par_id3150276.5.help.text
+msgid "Depending on whether you have created the query or view in the <emph>Design</emph> or <emph>SQL</emph> tab page, the following icons appear:"
+msgstr "Según haya creado la consulta o vista en la pestaña <emph>Diseño</emph> o en <emph>SQL</emph> se mostrarán los símbolos siguientes:"
+
+#: main0214.xhp#hd_id3151384.3.help.text
+msgid "<link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Add Tables</link>"
+msgstr "<link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Agregar tablas</link>"
+
+#: main0214.xhp#par_id3151041.4.help.text
+msgid "The following icon is on the <emph>SQL</emph> tab page:"
+msgstr "En la ficha <emph>SQL</emph> verá el siguiente símbolo:"
+
+#: main0500.xhp#tit.help.text
+msgid "Glossaries"
+msgstr "Glosarios"
+
+#: main0500.xhp#hd_id3156183.1.help.text
+msgid "<link href=\"text/shared/main0500.xhp\" name=\"Glossaries\">Glossaries</link>"
+msgstr "<link href=\"text/shared/main0500.xhp\" name=\"Glossaries\">Glosarios</link>"
+
+#: main0500.xhp#par_id3157898.2.help.text
+msgid "This section provides a general glossary of technical terms used in $[officename], along with a list of Internet terms."
+msgstr "Esta sección ofrece un glosario general de términos técnicos utilizados en $[officename], así como una lista de términos de Internet."
+
+#: main0204.xhp#tit.help.text
+msgid "Table Bar"
+msgstr "Barra de tablas"
+
+#: main0204.xhp#hd_id3145587.help.text
+msgid "<link href=\"text/shared/main0204.xhp\" name=\"Table Bar\">Table Bar</link>"
+msgstr "<link href=\"text/shared/main0204.xhp\" name=\"Table Bar\">Barra de tablas</link>"
+
+#: main0204.xhp#par_id3154252.help.text
+msgid "<ahelp hid=\".\">The <emph>Table</emph> Bar contains functions you need when working with tables. It appears when you move the cursor into a table.</ahelp>"
+msgstr "<ahelp hid=\".\">La barra de <emph>Tablas</emph> contiene funciones relacionadas con el manejo de tablas. Aparece cuando mueve el cursor a una tabla.</ahelp>"
+
+#: main0204.xhp#hd_id319945759.help.text
+msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Area Style / Filling</link>"
+msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Área de estilos / llenado\">Área de estilos / llenado</link>"
+
+#: main0204.xhp#hd_id3147592.6.help.text
+msgid "<link href=\"text/shared/01/05100100.xhp\" name=\"Merge Cells\">Merge Cells</link>"
+msgstr "<link href=\"text/shared/01/05100100.xhp\" name=\"Merge Cells\">Unir celdas</link>"
+
+#: main0204.xhp#hd_id3147820.9.help.text
+msgid "<link href=\"text/swriter/01/05110500.xhp\" name=\"Delete Row\">Delete Row</link>"
+msgstr "<link href=\"text/swriter/01/05110500.xhp\" name=\"Borrar fila\">Borrar fila</link>"
+
+#: main0204.xhp#hd_id3147231.10.help.text
+msgid "<link href=\"text/swriter/01/05120500.xhp\" name=\"Delete Column\">Delete Column</link>"
+msgstr "<link href=\"text/swriter/01/05120500.xhp\" name=\"Borrar columna\">Borrar columna</link>"
+
+#: main0204.xhp#hd_id3134447820.help.text
+msgid "<link href=\"text/simpress/01/taskpanel.xhp\" name=\"Table Design\">Table Design</link>"
+msgstr "<link href=\"text/simpress/01/taskpanel.xhp\" name=\"Diseño de tabla\">Diseño de tabla</link>"
+
+#: main0204.xhp#par_id16200812240344.help.text
+msgid "Opens the Table Design. Double-click a preview to insert a new table."
+msgstr "Abre la Tabla de Diseño. Haga doble-clic en previsualizar para insertar una tabla nueva ."
+
+#: main0204.xhp#hd_id947820.help.text
+msgid "<link href=\"text/simpress/01/05090000m.xhp\" name=\"Table Properties\">Table Properties</link>"
+msgstr "<link href=\"text/simpress/01/05090000m.xhp\" name=\"Propiedades de tabla\">Propiedades de tabla</link>"
+
+#: tree_strings.xhp#par_id3147571.3.help.text
+msgid "<help_section application=\"swriter\" id=\"02\" title=\"Text Documents\">"
+msgstr "<help_section application=\"swriter\" id=\"02\" title=\"Documento de texto\">"
+
+#: tree_strings.xhp#par_id3157959.4.help.text
+msgid "<node id=\"0201\" title=\"General Information and User Interface Usage\">"
+msgstr "<node id=\"0201\" title=\"Información general y uso de la interfaz de usuario\">"
+
+#: tree_strings.xhp#par_id3153527.5.help.text
+msgid "<node id=\"0202\" title=\"Command and Menu Reference\">"
+msgstr "<node id=\"0202\" title=\"Comandos y referencias de menús\">"
+
+#: tree_strings.xhp#par_id3153311.6.help.text
+msgid "<node id=\"020201\" title=\"Menus\">"
+msgstr "<node id=\"020201\" title=\"Menús\">"
+
+#: tree_strings.xhp#par_id3149182.7.help.text
+msgid "<node id=\"020202\" title=\"Toolbars\">"
+msgstr "<node id=\"020202\" title=\"Barra de Herramientas\">"
+
+#: tree_strings.xhp#par_id3145383.8.help.text
+msgid "<node id=\"0203\" title=\"Creating Text Documents\">"
+msgstr "<node id=\"0203\" title=\"Creando documentos de texto\">"
+
+#: tree_strings.xhp#par_id3149812.9.help.text
+msgid "<node id=\"0204\" title=\"Graphics in Text Documents\">"
+msgstr "<node id=\"0204\" title=\"Gráficos en Documentos de Texto\">"
+
+#: tree_strings.xhp#par_id3166461.10.help.text
+msgid "<node id=\"0205\" title=\"Tables in Text Documents\">"
+msgstr "<node id=\"0205\" title=\"Tablas en documentos de texto\">"
+
+#: tree_strings.xhp#par_id3155136.11.help.text
+msgid "<node id=\"0206\" title=\"Objects in Text Documents\">"
+msgstr "<node id=\"0206\" title=\"Objetos de documentos de texto\">"
+
+#: tree_strings.xhp#par_id3155629.12.help.text
+msgid "<node id=\"0207\" title=\"Sections and Frames in Text Documents\">"
+msgstr "<node id=\"0207\" title=\"Sección y maros en documentos de texto\">"
+
+#: tree_strings.xhp#par_id3150670.13.help.text
+msgid "<node id=\"0208\" title=\"Tables of Contents and Indexes\">"
+msgstr "<node id=\"0208\" title=\"Tablas de contenido e índices\">"
+
+#: tree_strings.xhp#par_id3153349.14.help.text
+msgid "<node id=\"0209\" title=\"Fields in Text Documents\">"
+msgstr "<node id=\"0209\" title=\"Campos en documentos de texto\">"
+
+#: tree_strings.xhp#par_id3145120.15.help.text
+msgid "<node id=\"0210\" title=\"Navigating Text Documents\">"
+msgstr "<node id=\"0210\" title=\"Navegando documentos de texto\">"
+
+#: tree_strings.xhp#par_id3159400.16.help.text
+msgid "<node id=\"0211\" title=\"Calculating in Text Documents\">"
+msgstr "<node id=\"0211\" title=\"Calculando en documento de textos\">"
+
+#: tree_strings.xhp#par_id3145674.17.help.text
+msgid "<node id=\"0212\" title=\"Formatting Text Documents\">"
+msgstr "<node id=\"0212\" title=\"Dando formato a documentos de texto\">"
+
+#: tree_strings.xhp#par_id3143229.18.help.text
+msgid "<node id=\"021201\" title=\"Templates and Styles\">"
+msgstr "<node id=\"021201\" title=\"Plantillas y estilos\">"
+
+#: tree_strings.xhp#par_id3157910.19.help.text
+msgid "<node id=\"0213\" title=\"Special Text Elements\">"
+msgstr "<node id=\"0213\" title=\"Elementos de textos especiales\">"
+
+#: tree_strings.xhp#par_id3148564.20.help.text
+msgid "<node id=\"0214\" title=\"Automatic Functions\">"
+msgstr "<node id=\"0214\" title=\"Funciones Automáticas\">"
+
+#: tree_strings.xhp#par_id3145609.21.help.text
+msgid "<node id=\"0215\" title=\"Numbering and Lists\">"
+msgstr "<node id=\"0215\" title=\"Numeración y listado\">"
+
+#: tree_strings.xhp#par_id3146794.22.help.text
+msgid "<node id=\"0216\" title=\"Spellchecking, Thesaurus, and Languages\">"
+msgstr "<node id=\"0216\" title=\"Ortografia, sinonimos e idiomas\">"
+
+#: tree_strings.xhp#par_id3159413.23.help.text
+msgid "<node id=\"0217\" title=\"Forms in Text Documents\">"
+msgstr "<node id=\"0217\" title=\"Documentos de texto en formas\">"
+
+#: tree_strings.xhp#par_id3149656.24.help.text
+msgid "<node id=\"0218\" title=\"Troubleshooting Tips\">"
+msgstr "<node id=\"0218\" title=\"Tips para Solución de Problemas\">"
+
+#: tree_strings.xhp#par_id3150398.25.help.text
+msgid "<node id=\"0219\" title=\"Loading, Saving, Importing, and Exporting\">"
+msgstr "<node id=\"0219\" title=\"Cargando, Guardando, Importando, y Exportando\">"
+
+#: tree_strings.xhp#par_id3153524.26.help.text
+msgid "<node id=\"0220\" title=\"Master Documents\">"
+msgstr "<node id=\"0220\" title=\"Documentos maestros\">"
+
+#: tree_strings.xhp#par_id3154367.27.help.text
+msgid "<node id=\"0221\" title=\"Links and References\">"
+msgstr "<node id=\"0221\" title=\"Vinculos y referencias\">"
+
+#: tree_strings.xhp#par_id3159152.28.help.text
+msgid "<node id=\"0222\" title=\"Printing\">"
+msgstr "<node id=\"0222\" title=\"Imprimir\">"
+
+#: tree_strings.xhp#par_id3145421.29.help.text
+msgid "<node id=\"0223\" title=\"Searching and Replacing\">"
+msgstr "<node id=\"0223\" title=\"Buscando y reemplazando\">"
+
+#: tree_strings.xhp#par_id3150871.30.help.text
+msgid "<help_section application=\"swriter\" id=\"06\" title=\"HTML Documents\">"
+msgstr "<help_section application=\"swriter\" id=\"06\" title=\"Documentos HTML\">"
+
+#: tree_strings.xhp#par_id3150768.32.help.text
+msgid "<help_section application=\"swriter\" id=\"01\" title=\"Installation\">"
+msgstr "<help_section application=\"swriter\" id=\"01\" title=\"Instalación\">"
+
+#: tree_strings.xhp#par_id3147229.33.help.text
+msgid "<help_section application=\"swriter\" id=\"10\" title=\"Common Help Topics\">"
+msgstr "<help_section application=\"swriter\" id=\"10\" title=\"Topicos comunes de ayuda\">"
+
+#: tree_strings.xhp#par_id3152934.34.help.text
+msgid "<node id=\"1001\" title=\"General Information\">"
+msgstr "<node id=\"1001\" title=\"Información General\">"
+
+#: tree_strings.xhp#par_id3155429.107.help.text
+msgid "<node id=\"1002\" title=\"%PRODUCTNAME and Microsoft Office\">"
+msgstr "<node id=\"1002\" title=\"%PRODUCTNAME y Microsoft Office\">"
+
+#: tree_strings.xhp#par_id3153368.35.help.text
+msgid "<node id=\"1003\" title=\"Command and Menu Reference\">"
+msgstr "<node id=\"1003\" title=\"Comandos y referencias de menús\">"
+
+#: tree_strings.xhp#par_id3146147.36.help.text
+msgid "<node id=\"1004\" title=\"%PRODUCTNAME Options\">"
+msgstr "<node id=\"1004\" title=\"Opciones %PRODUCTNAME \">"
+
+#: tree_strings.xhp#par_id3145365.37.help.text
+msgid "<node id=\"1005\" title=\"Wizards\">"
+msgstr "<node id=\"1005\" title=\"Asistentes\">"
+
+#: tree_strings.xhp#par_id3150487.38.help.text
+msgid "<node id=\"100501\" title=\"Letter Wizard\">"
+msgstr "<node id=\"100501\" title=\"Asistente para cartas\">"
+
+#: tree_strings.xhp#par_id3151113.39.help.text
+msgid "<node id=\"100502\" title=\"Fax Wizard\">"
+msgstr "<node id=\"100502\" title=\"Asistente para Fax\">"
+
+#: tree_strings.xhp#par_id3156442.41.help.text
+msgid "<node id=\"100504\" title=\"Agenda Wizard\">"
+msgstr "<node id=\"100504\" title=\"Asistente de agenda\">"
+
+#: tree_strings.xhp#par_id3146975.42.help.text
+msgid "<node id=\"100505\" title=\"Presentation Wizard\">"
+msgstr "<node id=\"100505\" title=\"Asistente de presentación\">"
+
+#: tree_strings.xhp#par_id3148617.43.help.text
+msgid "<node id=\"100506\" title=\"HTML Export Wizard\">"
+msgstr "<node id=\"100506\" title=\"Asistente para Exportar HTML\">"
+
+#: tree_strings.xhp#par_id3153143.44.help.text
+msgid "<node id=\"100507\" title=\"Group Element Wizard\">"
+msgstr "<node id=\"100507\" title=\"Asistente de Elemento de Grupo\">"
+
+#: tree_strings.xhp#par_id3153574.46.help.text
+msgid "<node id=\"100509\" title=\"Forms Wizard\">"
+msgstr "<node id=\"100509\" title=\"Asistente de formularios\">"
+
+#: tree_strings.xhp#par_id3146921.47.help.text
+msgid "<node id=\"100510\" title=\"Document Converter Wizard\">"
+msgstr "<node id=\"100510\" title=\"Asistente de convertidor de documentos\">"
+
+#: tree_strings.xhp#par_id3154096.48.help.text
+msgid "<node id=\"100511\" title=\"Table Element Wizard\">"
+msgstr "<node id=\"100511\" title=\"Asistente de elemento de tablas\">"
+
+#: tree_strings.xhp#par_id3144766.49.help.text
+msgid "<node id=\"100512\" title=\"Combo Box/List Box Wizard\">"
+msgstr "<node id=\"100512\" title=\"Caja de Combo/Asistente de lista de cajas\">"
+
+#: tree_strings.xhp#par_id3154729.108.help.text
+msgid "<node id=\"1006\" title=\"Configuring %PRODUCTNAME\">"
+msgstr "<node id=\"1006\" title=\"%PRODUCTNAME Configurando\">"
+
+#: tree_strings.xhp#par_id3151076.109.help.text
+msgid "<node id=\"1007\" title=\"Working with the User Interface\">"
+msgstr "<node id=\"1007\" title=\"Trabajando con la Interfaz de Usuario\">"
+
+#: tree_strings.xhp#par_id3147125.110.help.text
+msgid "<node id=\"1008\" title=\"Printing, Faxing, Sending\">"
+msgstr "<node id=\"1008\" title=\"Impresión, envío, faxes\">"
+
+#: tree_strings.xhp#par_id3149418.111.help.text
+msgid "<node id=\"1009\" title=\"Drag & Drop\">"
+msgstr "<node id=\"1009\" title=\"Arrastrar y dejar\">"
+
+#: tree_strings.xhp#par_id3154016.112.help.text
+msgid "<node id=\"1010\" title=\"Copy and Paste\">"
+msgstr "<node id=\"1010\" title=\"Copiar y pegar\">"
+
+#: tree_strings.xhp#par_id3156180.113.help.text
+msgid "<node id=\"1011\" title=\"Databases\">"
+msgstr "<node id=\"1011\" title=\"Base de datos\">"
+
+#: tree_strings.xhp#par_id3150715.114.help.text
+msgid "<node id=\"1012\" title=\"Charts and Diagrams\">"
+msgstr "<node id=\"1012\" title=\"Gráficos y Diagramas\">"
+
+#: tree_strings.xhp#par_id3154164.115.help.text
+msgid "<node id=\"1013\" title=\"Load, Save, Import, Export\">"
+msgstr "<node id=\"1013\" title=\"Cargar, guardar, importar, exportar\">"
+
+#: tree_strings.xhp#par_id3145650.116.help.text
+msgid "<node id=\"1014\" title=\"Links and References\">"
+msgstr "<node id=\"1014\" title=\"Vinculos y referencias\">"
+
+#: tree_strings.xhp#par_id3153838.117.help.text
+msgid "<node id=\"1015\" title=\"Document Version Tracking\">"
+msgstr "<node id=\"1015\" title=\"Seguimiento de versión de documentos\">"
+
+#: tree_strings.xhp#par_id3150327.118.help.text
+msgid "<node id=\"1016\" title=\"Labels and Business Cards\">"
+msgstr "<node id=\"1016\" title=\"Etiquetas y Tarjetas de presentación\">"
+
+#: tree_strings.xhp#par_id3153708.119.help.text
+msgid "<node id=\"1018\" title=\"Inserting External Data\">"
+msgstr "<node id=\"1018\" title=\"Insertar datos externos\">"
+
+#: tree_strings.xhp#par_id3148916.120.help.text
+msgid "<node id=\"1019\" title=\"Automatic Functions\">"
+msgstr "<node id=\"1019\" title=\"Funciones Automáticas\">"
+
+#: tree_strings.xhp#par_id3152964.121.help.text
+msgid "<node id=\"1020\" title=\"Searching and Replacing\">"
+msgstr "<node id=\"1020\" title=\"Buscar y Reemplazar\">"
+
+#: tree_strings.xhp#par_id3153765.50.help.text
+msgid "<node id=\"1021\" title=\"Guides\">"
+msgstr "<node id=\"1021\" title=\"Guías\">"
+
+#: tree_strings.xhp#par_id3154361.51.help.text
+msgid "<help_section application=\"swriter\" id=\"09\" title=\"Database Functionality\">"
+msgstr "<help_section application=\"swriter\" id=\"09\" title=\"Funcionalidad de base de datos\">"
+
+#: tree_strings.xhp#par_id3150043.122.help.text
+msgid "<node id=\"0901\" title=\"General Information\">"
+msgstr "<node id=\"0901\" title=\"Información General\">"
+
+#: tree_strings.xhp#par_id3154254.123.help.text
+msgid "<node id=\"0902\" title=\"Data Sources\">"
+msgstr "<node id=\"0902\" title=\"Fuentes de datos\">"
+
+#: tree_strings.xhp#par_id3149565.124.help.text
+msgid "<node id=\"0903\" title=\"Forms\">"
+msgstr "<node id=\"0903\" title=\"Formas\">"
+
+#: tree_strings.xhp#par_id3155334.125.help.text
+msgid "<node id=\"0904\" title=\"Tables, Queries and Indexes\">"
+msgstr "<node id=\"0904\" title=\"Tablas, consultas e indices\">"
+
+#: tree_strings.xhp#par_id3149107.126.help.text
+msgid "<node id=\"0905\" title=\"Relations\">"
+msgstr "<node id=\"0905\" title=\"Relaciones\">"
+
+#: tree_strings.xhp#par_id3155937.127.help.text
+msgid "<node id=\"0906\" title=\"Reports\">"
+msgstr "<node id=\"0906\" title=\"Reportes\">"
+
+#: tree_strings.xhp#par_id3153963.53.help.text
+msgid "<help_section application=\"sbasic\" id=\"07\" title=\"Macros and Programming\">"
+msgstr "<help_section application=\"sbasic\" id=\"07\" title=\"Macros y programación\">"
+
+#: tree_strings.xhp#par_id3151248.54.help.text
+msgid "<node id=\"0701\" title=\"General Information and User Interface Usage\">"
+msgstr "<node id=\"0701\" title=\"Información General y Uso de la Interfaz de Usuario\">"
+
+#: tree_strings.xhp#par_id3154023.55.help.text
+msgid "<node id=\"0702\" title=\"Command Reference\">"
+msgstr "<node id=\"0702\" title=\"Referencia de comandos\">"
+
+#: tree_strings.xhp#par_id3149924.56.help.text
+msgid "<node id=\"070201\" title=\"Alphabetic List of Functions, Statements, and Operators\">"
+msgstr "<node id=\"070201\" title=\"Listas Alfabéticas de Funciones, Instrucciones, y Operadores\">"
+
+#: tree_strings.xhp#par_id3145769.128.help.text
+msgid "<node id=\"070202\" title=\"Run-Time Functions, Statements, and Operators\">"
+msgstr "<node id=\"070202\" title=\"Ejecución, funciones, instrucciones y operadores\">"
+
+#: tree_strings.xhp#par_id3155606.57.help.text
+msgid "<node id=\"0703\" title=\"Guides\">"
+msgstr "<node id=\"0703\" title=\"Guias\">"
+
+#: tree_strings.xhp#par_id3149210.59.help.text
+msgid "<help_section application=\"scalc\" id=\"08\" title=\"Spreadsheets\">"
+msgstr "<help_section application=\"scalc\" id=\"08\" title=\"Hojas de cálculo\">"
+
+#: tree_strings.xhp#par_id3155582.60.help.text
+msgid "<node id=\"0801\" title=\"General Information and User Interface Usage\">"
+msgstr "<node id=\"0801\" title=\"Información general y uso de la interfaz de usuario\">"
+
+#: tree_strings.xhp#par_id3149033.61.help.text
+msgid "<node id=\"0802\" title=\"Command and Menu Reference\">"
+msgstr "<node id=\"0802\" title=\"Comandos y referencias de menús\">"
+
+#: tree_strings.xhp#par_id3148630.62.help.text
+msgid "<node id=\"080201\" title=\"Menus\">"
+msgstr "<node id=\"080201\" title=\"Menús\">"
+
+#: tree_strings.xhp#par_id3156138.63.help.text
+msgid "<node id=\"080202\" title=\"Toolbars\">"
+msgstr "<node id=\"080202\" title=\"Barra de herramientas\">"
+
+#: tree_strings.xhp#par_id3159236.64.help.text
+msgid "<node id=\"0803\" title=\"Functions Types and Operators\">"
+msgstr "<node id=\"0803\" title=\"Tipos de funciones y operadores\">"
+
+#: tree_strings.xhp#par_id3153197.65.help.text
+msgid "<node id=\"0804\" title=\"Loading, Saving, Importing, and Exporting\">"
+msgstr "<node id=\"0804\" title=\"Cargando, Guardando, Importando, y Exportando\">"
+
+#: tree_strings.xhp#par_id3153705.66.help.text
+msgid "<node id=\"0805\" title=\"Formatting\">"
+msgstr "<node id=\"0805\" title=\"Formatear\">"
+
+#: tree_strings.xhp#par_id3166425.67.help.text
+msgid "<node id=\"0806\" title=\"Filtering and Sorting\">"
+msgstr "<node id=\"0806\" title=\"Ordenar y filtrar\">"
+
+#: tree_strings.xhp#par_id3154716.68.help.text
+msgid "<node id=\"0807\" title=\"Printing\">"
+msgstr "<node id=\"0807\" title=\"Impresión\">"
+
+#: tree_strings.xhp#par_id3150344.69.help.text
+msgid "<node id=\"0808\" title=\"Data Ranges\">"
+msgstr "<node id=\"0808\" title=\"Rangos de Datos\">"
+
+#: tree_strings.xhp#par_id3150364.70.help.text
+msgid "<node id=\"0809\" title=\"Pivot Table\">"
+msgstr "<node id=\"0809\" title=\"Piloto de Datos\">"
+
+#: tree_strings.xhp#par_id3149966.71.help.text
+msgid "<node id=\"0810\" title=\"Scenarios\">"
+msgstr "<node id=\"0810\" title=\"Escenarios\">"
+
+#: tree_strings.xhp#par_id3146811.72.help.text
+msgid "<node id=\"0811\" title=\"References\">"
+msgstr "<node id=\"0811\" title=\"Referencias\">"
+
+#: tree_strings.xhp#par_id3148421.73.help.text
+msgid "<node id=\"0812\" title=\"Viewing, Selecting, Copying\">"
+msgstr "<node id=\"0812\" title=\"Ver, seleccionar y copiar\">"
+
+#: tree_strings.xhp#par_id3145258.74.help.text
+msgid "<node id=\"0813\" title=\"Formulas and Calculations\">"
+msgstr "<node id=\"0813\" title=\"Formulas y calculos\">"
+
+#: tree_strings.xhp#par_id3145586.75.help.text
+msgid "<node id=\"0814\" title=\"Protection\">"
+msgstr "<node id=\"0814\" title=\"Protección\">"
+
+#: tree_strings.xhp#par_id3150885.76.help.text
+msgid "<node id=\"0815\" title=\"Miscellaneous\">"
+msgstr "<node id=\"0815\" title=\"Misceláneos\">"
+
+#: tree_strings.xhp#par_id3150519.78.help.text
+msgid "<help_section application=\"smath\" id=\"03\" title=\"Formulas\">"
+msgstr "<help_section application=\"smath\" id=\"03\" title=\"Formulas\">"
+
+#: tree_strings.xhp#par_id3155529.79.help.text
+msgid "<node id=\"0301\" title=\"General Information and User Interface Usage\">"
+msgstr "<node id=\"0301\" title=\"Información general y uso de la interfaz de usuario\">"
+
+#: tree_strings.xhp#par_id3150522.80.help.text
+msgid "<node id=\"0302\" title=\"Command and Menu Reference\">"
+msgstr "<node id=\"0302\" title=\"Referencia de Comando y Menú\">"
+
+#: tree_strings.xhp#par_id3146978.81.help.text
+msgid "<node id=\"0303\" title=\"Working with Formulas\">"
+msgstr "<node id=\"0303\" title=\"Trabajando con formulas\">"
+
+#: tree_strings.xhp#par_id3156168.83.help.text
+msgid "<help_section application=\"simpress\" id=\"04\" title=\"Presentations and Drawings\">"
+msgstr "<help_section application=\"simpress\" id=\"04\" title=\"Presentaciones y dibujos\">"
+
+#: tree_strings.xhp#par_id3155129.84.help.text
+msgid "<node id=\"0401\" title=\"General Information and User Interface Usage\">"
+msgstr "<node id=\"0401\" title=\"Información general y uso de interfaz de usuario\">"
+
+#: tree_strings.xhp#par_id3152890.85.help.text
+msgid "<node id=\"0402\" title=\"Command and Menu Reference\">"
+msgstr "<node id=\"0402\" title=\"Comandos y referencias de menus\">"
+
+#: tree_strings.xhp#par_id3155089.86.help.text
+msgid "<node id=\"040201\" title=\"Presentations (%PRODUCTNAME Impress)\">"
+msgstr "<node id=\"040201\" title=\"Presentaciones (%PRODUCTNAME Impress)\">"
+
+#: tree_strings.xhp#par_id3153305.87.help.text
+msgid "<node id=\"04020101\" title=\"Menus\">"
+msgstr "<node id=\"04020101\" title=\"Menús\">"
+
+#: tree_strings.xhp#par_id3148841.88.help.text
+msgid "<node id=\"04020102\" title=\"Toolbars\">"
+msgstr "<node id=\"04020102\" title=\"Barra de herramientas\">"
+
+#: tree_strings.xhp#par_id3156200.89.help.text
+msgid "<node id=\"040202\" title=\"Drawings (%PRODUCTNAME Draw)\">"
+msgstr "<node id=\"040202\" title=\"Dibujo (%PRODUCTNAME Draw)\">"
+
+#: tree_strings.xhp#par_id3153816.90.help.text
+msgid "<node id=\"04020201\" title=\"Menus\">"
+msgstr "<node id=\"04020201\" title=\"Menús\">"
+
+#: tree_strings.xhp#par_id3146154.91.help.text
+msgid "<node id=\"04020202\" title=\"Toolbars\">"
+msgstr "<node id=\"04020202\" title=\"Barra de herramientas\">"
+
+#: tree_strings.xhp#par_id3148866.92.help.text
+msgid "<node id=\"0403\" title=\"Loading, Saving, Importing, and Exporting\">"
+msgstr "<node id=\"0403\" title=\"Cargando, Guardando, Importando, y Exportando\">"
+
+#: tree_strings.xhp#par_id3151244.93.help.text
+msgid "<node id=\"0404\" title=\"Formatting\">"
+msgstr "<node id=\"0404\" title=\"Formatear\">"
+
+#: tree_strings.xhp#par_id3149329.94.help.text
+msgid "<node id=\"0405\" title=\"Printing\">"
+msgstr "<node id=\"0405\" title=\"Imprimir\">"
+
+#: tree_strings.xhp#par_id3150318.95.help.text
+msgid "<node id=\"0406\" title=\"Effects\">"
+msgstr "<node id=\"0406\" title=\"Efectos\">"
+
+#: tree_strings.xhp#par_id3150107.96.help.text
+msgid "<node id=\"0407\" title=\"Objects, Graphics, and Bitmaps\">"
+msgstr "<node id=\"0407\" title=\"Objetos, Gráficos, y Mapas de bits\">"
+
+#: tree_strings.xhp#par_id3154343.97.help.text
+msgid "<node id=\"0408\" title=\"Groups and Layers\">"
+msgstr "<node id=\"0408\" title=\"Grupos y capas\">"
+
+#: tree_strings.xhp#par_id3148604.98.help.text
+msgid "<node id=\"0409\" title=\"Text in Presentations and Drawings\">"
+msgstr "<node id=\"0409\" title=\"Texto en Presentaciones y Dibujos\">"
+
+#: tree_strings.xhp#par_id3155269.99.help.text
+msgid "<node id=\"0410\" title=\"Viewing\">"
+msgstr "<node id=\"0410\" title=\"Visualización\">"
+
+#: tree_strings.xhp#par_id3156351.101.help.text
+msgid "<help_section application=\"scalc\" id=\"05\" title=\"Charts and Diagrams\">"
+msgstr "<help_section application=\"scalc\" id=\"05\" title=\"Gráficos y diagramas\">"
+
+#: tree_strings.xhp#par_id3156177.102.help.text
+msgid "<node id=\"0501\" title=\"General Information\">"
+msgstr "<node id=\"0501\" title=\"Información general\">"
+
+#: tree_strings.xhp#par_id3156036.103.help.text
+msgid "<node id=\"0502\" title=\"Command and Menu Reference\">"
+msgstr "<node id=\"0502\" title=\"Comandos y referencias de menus\">"
+
+#: tree_strings.xhp#par_id3153285.104.help.text
+msgid "<node id=\"050201\" title=\"Menus\">"
+msgstr "<node id=\"050201\" title=\"Menús\">"
+
+#: tree_strings.xhp#par_id3154959.105.help.text
+msgid "<node id=\"050202\" title=\"Toolbars\">"
+msgstr "<node id=\"050202\" title=\"Barra de herramientas\">"
+
+#: 3dsettings_toolbar.xhp#tit.help.text
+msgid "3D-Settings"
+msgstr "Configuración 3D"
+
+#: 3dsettings_toolbar.xhp#par_idN1055A.help.text
+msgid "<variable id=\"3dtoolbar\"><link href=\"text/shared/3dsettings_toolbar.xhp\">3D-Settings</link></variable>"
+msgstr "<variable id=\"3dtoolbar\"><link href=\"text/shared/3dsettings_toolbar.xhp\">Configuración 3D</link></variable>"
+
+#: 3dsettings_toolbar.xhp#par_idN1056A.help.text
+msgid "<ahelp hid=\".\">The 3D-Settings toolbar controls properties of selected 3D objects.</ahelp>"
+msgstr "<ahelp hid=\".\">La barra de herramientas Configuración 3D controla las propiedades de los objetos 3D seleccionados.</ahelp>"
+
+#: 3dsettings_toolbar.xhp#par_idN10575.help.text
+msgid "Extrusion on/off"
+msgstr "Activar o desactivar extrusión"
+
+#: 3dsettings_toolbar.xhp#par_idN10579.help.text
+msgid "<ahelp hid=\".\">Switches the 3D effects on and off for the selected objects.</ahelp>"
+msgstr "<ahelp hid=\".\">Activa y desactiva los efectos 3D para los objetos seleccionados.</ahelp>"
+
+#: 3dsettings_toolbar.xhp#par_idN10590.help.text
+msgid "Tilt Down"
+msgstr "Inclinar hacia abajo"
+
+#: 3dsettings_toolbar.xhp#par_idN10594.help.text
+msgid "<ahelp hid=\".\">Tilts the selected object downwards by five degrees.</ahelp>"
+msgstr "<ahelp hid=\".\">Inclina el objeto seleccionado cinco grados hacia abajo.</ahelp>"
+
+#: 3dsettings_toolbar.xhp#par_idN105AB.help.text
+msgid "Tilt Up"
+msgstr "Inclinar hacia arriba"
+
+#: 3dsettings_toolbar.xhp#par_idN105AF.help.text
+msgid "<ahelp hid=\".\">Tilts the selected object upwards by five degrees.</ahelp>"
+msgstr "<ahelp hid=\".\">Inclina el objeto seleccionado cinco grados hacia arriba.</ahelp>"
+
+#: 3dsettings_toolbar.xhp#par_idN105C6.help.text